1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818
|
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// AuthProxy - An authorization plugin for Apache Traffic Server that delegates
// the authorization decision to a separate web service. The web service
// (which we refer to here as the Authorization Proxy) is expected to authorize
// the request (or not) by consulting some authoritative source.
//
// This plugin follows the pattern of the basic-auth sample code. We use the
// TS_HTTP_POST_REMAP_HOOK to perform the initial authorization, and
// the TS_HTTP_SEND_RESPONSE_HDR_HOOK to send an error response if necessary.
#include "utils.h"
#include <string>
#include <memory> // placement new
#include <limits>
#include <cstring>
#include <cstdlib>
#include <cstdio>
#include <getopt.h>
#include <arpa/inet.h>
#include <sys/param.h>
#include <ts/remap.h>
using std::strlen;
struct AuthRequestContext;
using AuthRequestTransform = bool (*)(AuthRequestContext *);
const static int MAX_HOST_LENGTH = 4096;
// We can operate in global plugin mode or remap plugin mode. If we are in
// global mode, then we will authorize every request. In remap mode, we will
// only authorize tagged requests.
static int AuthTaggedRequestArg = -1;
static TSCont AuthOsDnsContinuation;
struct AuthOptions {
std::string hostname;
int hostport = -1;
AuthRequestTransform transform = nullptr;
bool force = false;
bool cache_internal_requests = false;
AuthOptions() = default;
~AuthOptions() = default;
};
// Global options; used when we are in global authorization mode.
static AuthOptions *AuthGlobalOptions;
// Generic state handler callback. This should handle the event, and return a
// new event. The return value controls the subsequent state transition:
// TS_EVENT_CONTINUE Continue the state machine, returning to the ATS event loop
// TS_EVENT_NONE Stop processing (because a nested dispatch occurred)
// Anything else Continue the state machine with this event
using StateHandler = TSEvent (*)(struct AuthRequestContext *, void *);
struct StateTransition {
TSEvent event;
StateHandler handler;
const StateTransition *next;
};
static TSEvent StateAuthProxyConnect(AuthRequestContext *, void *);
static TSEvent StateAuthProxyWriteReady(AuthRequestContext *, void *);
static TSEvent StateAuthProxyWriteComplete(AuthRequestContext *, void *);
static TSEvent StateUnauthorized(AuthRequestContext *, void *);
static TSEvent StateAuthorized(AuthRequestContext *, void *);
static TSEvent StateAuthProxyReadHeaders(AuthRequestContext *, void *);
static TSEvent StateAuthProxyCompleteHeaders(AuthRequestContext *, void *);
static TSEvent StateAuthProxyReadContent(AuthRequestContext *, void *);
static TSEvent StateAuthProxyCompleteContent(AuthRequestContext *, void *);
static TSEvent StateAuthProxySendResponse(AuthRequestContext *, void *);
// Trampoline state that just returns TS_EVENT_CONTINUE. We need this to be
// able to transition between state tables when we are in a loop.
static TSEvent
StateContinue(AuthRequestContext *, void *)
{
return TS_EVENT_CONTINUE;
}
// State table for sending the auth proxy response to the client.
static const StateTransition StateTableSendResponse[] = {{TS_EVENT_HTTP_SEND_RESPONSE_HDR, StateAuthProxySendResponse, nullptr},
{TS_EVENT_NONE, nullptr, nullptr}};
// State table for reading the proxy response body content.
static const StateTransition StateTableProxyReadContent[] = {
{TS_EVENT_VCONN_READ_READY, StateAuthProxyReadContent, StateTableProxyReadContent},
{TS_EVENT_VCONN_READ_COMPLETE, StateAuthProxyReadContent, StateTableProxyReadContent},
{TS_EVENT_VCONN_EOS, StateAuthProxyCompleteContent, StateTableProxyReadContent},
{TS_EVENT_HTTP_SEND_RESPONSE_HDR, StateContinue, StateTableSendResponse},
{TS_EVENT_ERROR, StateUnauthorized, nullptr},
{TS_EVENT_IMMEDIATE, StateAuthorized, nullptr},
{TS_EVENT_NONE, nullptr, nullptr}};
// State table for reading the auth proxy response header.
static const StateTransition StateTableProxyReadHeader[] = {
{TS_EVENT_VCONN_READ_READY, StateAuthProxyReadHeaders, StateTableProxyReadHeader},
{TS_EVENT_VCONN_READ_COMPLETE, StateAuthProxyReadHeaders, StateTableProxyReadHeader},
{TS_EVENT_HTTP_READ_REQUEST_HDR, StateAuthProxyCompleteHeaders, StateTableProxyReadHeader},
{TS_EVENT_HTTP_SEND_RESPONSE_HDR, StateContinue, StateTableSendResponse},
{TS_EVENT_HTTP_CONTINUE, StateAuthProxyReadContent, StateTableProxyReadContent},
{TS_EVENT_VCONN_EOS, StateUnauthorized, nullptr}, // XXX Should we check headers on EOS?
{TS_EVENT_ERROR, StateUnauthorized, nullptr},
{TS_EVENT_IMMEDIATE, StateAuthorized, nullptr},
{TS_EVENT_NONE, nullptr, nullptr}};
// State table for sending the request to the auth proxy.
static const StateTransition StateTableProxyRequest[] = {
{TS_EVENT_VCONN_WRITE_READY, StateAuthProxyWriteReady, StateTableProxyRequest},
{TS_EVENT_VCONN_WRITE_COMPLETE, StateAuthProxyWriteComplete, StateTableProxyReadHeader},
{TS_EVENT_ERROR, StateUnauthorized, nullptr},
{TS_EVENT_NONE, nullptr, nullptr}};
// Initial state table.
static const StateTransition StateTableInit[] = {{TS_EVENT_HTTP_POST_REMAP, StateAuthProxyConnect, StateTableProxyRequest},
{TS_EVENT_ERROR, StateUnauthorized, nullptr},
{TS_EVENT_NONE, nullptr, nullptr}};
struct AuthRequestContext {
TSHttpTxn txn = nullptr; // Original client transaction we are authorizing.
TSCont cont = nullptr; // Continuation for this state machine.
TSVConn vconn = nullptr; // Virtual connection to the auth proxy.
TSHttpParser hparser; // HTTP response header parser.
HttpHeader rheader; // HTTP response header.
HttpIoBuffer iobuf;
const char *method = nullptr; // Client request method (e.g. GET)
bool read_body = true;
const StateTransition *state = nullptr;
AuthRequestContext()
: cont(TSContCreate(dispatch, TSMutexCreate())), hparser(TSHttpParserCreate()), rheader(), iobuf(TS_IOBUFFER_SIZE_INDEX_4K)
{
TSContDataSet(this->cont, this);
}
~AuthRequestContext()
{
TSContDataSet(this->cont, nullptr);
TSContDestroy(this->cont);
TSHttpParserDestroy(this->hparser);
if (this->vconn) {
TSVConnClose(this->vconn);
}
}
const AuthOptions *
options() const
{
AuthOptions *opt;
opt = static_cast<AuthOptions *>(TSUserArgGet(this->txn, AuthTaggedRequestArg));
return opt ? opt : AuthGlobalOptions;
}
static AuthRequestContext *allocate();
static void destroy(AuthRequestContext *);
static int dispatch(TSCont, TSEvent, void *);
};
AuthRequestContext *
AuthRequestContext::allocate()
{
void *ptr = TSmalloc(sizeof(AuthRequestContext));
return new (ptr) AuthRequestContext();
}
void
AuthRequestContext::destroy(AuthRequestContext *auth)
{
if (auth) {
auth->~AuthRequestContext();
TSfree(auth);
}
}
int
AuthRequestContext::dispatch(TSCont cont, TSEvent event, void *edata)
{
AuthRequestContext *auth = static_cast<AuthRequestContext *>(TSContDataGet(cont));
const StateTransition *s;
pump:
for (s = auth->state; s && s->event; ++s) {
if (s->event == event) {
break;
}
}
// If we don't have a handler, the state machine is borked.
TSReleaseAssert(s != nullptr);
TSReleaseAssert(s->handler != nullptr);
// Move to the next state. We have to set this *before* invoking the
// handler because the handler itself can invoke the next handler.
auth->state = s->next;
event = s->handler(auth, edata);
// If the handler returns TS_EVENT_NONE, it means that a re-entrant event
// was dispatched. In this case, the state machine continues from the
// nested call to dispatch.
if (event == TS_EVENT_NONE) {
return TS_EVENT_NONE;
}
// If there are no more states, the state machine has terminated.
if (auth->state == nullptr) {
AuthRequestContext::destroy(auth);
return TS_EVENT_NONE;
}
// If the handler gave us an event, pump the it back into the current state
// table, otherwise we will return back to the ATS event loop.
if (event != TS_EVENT_CONTINUE) {
goto pump;
}
return TS_EVENT_NONE;
}
// Return whether the client request was a HEAD request.
const char *
AuthRequestGetMethod(TSHttpTxn txn)
{
TSMBuffer mbuf;
TSMLoc mhdr;
int len;
const char *method;
TSReleaseAssert(TSHttpTxnClientReqGet(txn, &mbuf, &mhdr) == TS_SUCCESS);
method = TSHttpHdrMethodGet(mbuf, mhdr, &len);
TSHandleMLocRelease(mbuf, TS_NULL_MLOC, mhdr);
return method;
}
// Chain the response header hook to send the proxy's authorization response.
static void
AuthChainAuthorizationResponse(AuthRequestContext *auth)
{
if (auth->vconn) {
TSVConnClose(auth->vconn);
auth->vconn = nullptr;
}
TSHttpTxnHookAdd(auth->txn, TS_HTTP_SEND_RESPONSE_HDR_HOOK, auth->cont);
TSHttpTxnReenable(auth->txn, TS_EVENT_HTTP_ERROR);
}
// Transform the client request into a HEAD request and write it out.
static bool
AuthWriteHeadRequest(AuthRequestContext *auth)
{
HttpHeader rq;
TSMBuffer mbuf;
TSMLoc mhdr;
TSReleaseAssert(TSHttpTxnClientReqGet(auth->txn, &mbuf, &mhdr) == TS_SUCCESS);
// First, copy the whole client request to our new auth proxy request.
TSReleaseAssert(TSHttpHdrCopy(rq.buffer, rq.header, mbuf, mhdr) == TS_SUCCESS);
// Next, we need to rewrite the client request URL to be a HEAD request.
TSReleaseAssert(TSHttpHdrMethodSet(rq.buffer, rq.header, TS_HTTP_METHOD_HEAD, -1) == TS_SUCCESS);
HttpSetMimeHeader(rq.buffer, rq.header, TS_MIME_FIELD_CONTENT_LENGTH, 0u);
HttpSetMimeHeader(rq.buffer, rq.header, TS_MIME_FIELD_CACHE_CONTROL, "no-cache");
HttpDebugHeader(rq.buffer, rq.header);
// Serialize the HTTP request to the write IO buffer.
TSHttpHdrPrint(rq.buffer, rq.header, auth->iobuf.buffer);
// We have to tell the auth context not to try to ready the response
// body (since HEAD can have a content-length but must not have any
// content).
auth->read_body = false;
TSHandleMLocRelease(mbuf, TS_NULL_MLOC, mhdr);
return true;
}
// Transform the client request into a GET Range: bytes=0-0 request. This is useful
// for example of the authentication service is a caching proxy which might not
// cache HEAD requests.
static bool
AuthWriteRangeRequest(AuthRequestContext *auth)
{
HttpHeader rq;
TSMBuffer mbuf;
TSMLoc mhdr;
TSReleaseAssert(TSHttpTxnClientReqGet(auth->txn, &mbuf, &mhdr) == TS_SUCCESS);
// First, copy the whole client request to our new auth proxy request.
TSReleaseAssert(TSHttpHdrCopy(rq.buffer, rq.header, mbuf, mhdr) == TS_SUCCESS);
// Next, assure that the request to the auth server is a GET request, since we'll send a Range:
if (TS_HTTP_METHOD_GET != auth->method) {
TSReleaseAssert(TSHttpHdrMethodSet(rq.buffer, rq.header, TS_HTTP_METHOD_GET, -1) == TS_SUCCESS);
}
HttpSetMimeHeader(rq.buffer, rq.header, TS_MIME_FIELD_CONTENT_LENGTH, 0u);
HttpSetMimeHeader(rq.buffer, rq.header, TS_MIME_FIELD_RANGE, "bytes=0-0");
HttpSetMimeHeader(rq.buffer, rq.header, TS_MIME_FIELD_CACHE_CONTROL, "no-cache");
HttpDebugHeader(rq.buffer, rq.header);
// Serialize the HTTP request to the write IO buffer.
TSHttpHdrPrint(rq.buffer, rq.header, auth->iobuf.buffer);
// We have to tell the auth context not to try to ready the response
// body, since we'are asking for a zero length Range.
auth->read_body = false;
TSHandleMLocRelease(mbuf, TS_NULL_MLOC, mhdr);
return true;
}
// Transform the client request into a form that the auth proxy can consume and
// write it out.
static bool
AuthWriteRedirectedRequest(AuthRequestContext *auth)
{
const AuthOptions *options = auth->options();
HttpHeader rq;
TSMBuffer mbuf;
TSMLoc mhdr;
TSMLoc murl;
char hostbuf[MAX_HOST_LENGTH + 1];
TSReleaseAssert(TSHttpTxnClientReqGet(auth->txn, &mbuf, &mhdr) == TS_SUCCESS);
// First, copy the whole client request to our new auth proxy request.
TSReleaseAssert(TSHttpHdrCopy(rq.buffer, rq.header, mbuf, mhdr) == TS_SUCCESS);
// Next, we need to rewrite the client request URL so that the request goes to
// the auth proxy instead of the original request.
TSReleaseAssert(TSHttpHdrUrlGet(rq.buffer, rq.header, &murl) == TS_SUCCESS);
// XXX Possibly we should rewrite the URL to remove the host, port and
// scheme, forcing ATS to go to the Host header. I wonder how HTTPS would
// work in that case. At any rate, we should add a new header containing
// the original host so that the auth proxy can examine it.
TSUrlHostSet(rq.buffer, murl, options->hostname.c_str(), options->hostname.size());
if (-1 != options->hostport) {
snprintf(hostbuf, sizeof(hostbuf), "%s:%d", options->hostname.c_str(), options->hostport);
TSUrlPortSet(rq.buffer, murl, options->hostport);
} else {
snprintf(hostbuf, sizeof(hostbuf), "%s", options->hostname.c_str());
}
TSHandleMLocRelease(rq.buffer, rq.header, murl);
HttpSetMimeHeader(rq.buffer, rq.header, TS_MIME_FIELD_HOST, hostbuf);
HttpSetMimeHeader(rq.buffer, rq.header, TS_MIME_FIELD_CONTENT_LENGTH, 0u);
HttpSetMimeHeader(rq.buffer, rq.header, TS_MIME_FIELD_CACHE_CONTROL, "no-cache");
HttpDebugHeader(rq.buffer, rq.header);
// Serialize the HTTP request to the write IO buffer.
TSHttpHdrPrint(rq.buffer, rq.header, auth->iobuf.buffer);
TSHandleMLocRelease(mbuf, TS_NULL_MLOC, mhdr);
TSHandleMLocRelease(rq.buffer, rq.header, murl);
return true;
}
static TSEvent
StateAuthProxyConnect(AuthRequestContext *auth, void * /* edata ATS_UNUSED */)
{
const AuthOptions *options = auth->options();
struct sockaddr const *ip = TSHttpTxnClientAddrGet(auth->txn);
TSReleaseAssert(ip); // We must have a client IP.
auth->method = AuthRequestGetMethod(auth->txn);
AuthLogDebug("client request %s a HEAD request", auth->method == TS_HTTP_METHOD_HEAD ? "is" : "is not");
auth->vconn = TSHttpConnect(ip);
if (auth->vconn == nullptr) {
return TS_EVENT_ERROR;
}
// Transform the client request into an auth proxy request and write it
// out to the auth proxy vconn.
if (!options->transform(auth)) {
return TS_EVENT_ERROR;
}
// Start a write and transition to WriteAuthProxyState.
TSVConnWrite(auth->vconn, auth->cont, auth->iobuf.reader, TSIOBufferReaderAvail(auth->iobuf.reader));
return TS_EVENT_CONTINUE;
}
static TSEvent
StateAuthProxyCompleteHeaders(AuthRequestContext *auth, void * /* edata ATS_UNUSED */)
{
TSHttpStatus status;
HttpDebugHeader(auth->rheader.buffer, auth->rheader.header);
status = TSHttpHdrStatusGet(auth->rheader.buffer, auth->rheader.header);
AuthLogDebug("authorization proxy returned status %d", (int)status);
// Authorize the original request on a 2xx response.
if (status >= 200 && status < 300) {
return TS_EVENT_IMMEDIATE;
}
if (auth->read_body) {
// We can't support sending the auth proxy response back to the client
// without writing a transform. Since that's more trouble than I want to
// deal with right now, let's just fail fast ...
if (HttpIsChunkedEncoding(auth->rheader.buffer, auth->rheader.header)) {
AuthLogDebug("ignoring chunked authorization proxy response");
} else {
// OK, we have a non-chunked response. If there's any content, let's go and
// buffer it so that we can send it on to the client.
unsigned nbytes = HttpGetContentLength(auth->rheader.buffer, auth->rheader.header);
if (nbytes > 0) {
AuthLogDebug("content length is %u", nbytes);
return TS_EVENT_HTTP_CONTINUE;
}
}
}
// We are going to reply with the auth proxy's response. The response body
// is empty in this case.
AuthChainAuthorizationResponse(auth);
return TS_EVENT_HTTP_SEND_RESPONSE_HDR;
}
static TSEvent
StateAuthProxySendResponse(AuthRequestContext *auth, void * /* edata ATS_UNUSED */)
{
TSMBuffer mbuf;
TSMLoc mhdr;
TSHttpStatus status;
char msg[128];
// The auth proxy denied this request. We need to copy the auth proxy
// response header to the client response header, then read any available
// body data and copy that as well.
// There's only a client response if the auth proxy sent one. There
TSReleaseAssert(TSHttpTxnClientRespGet(auth->txn, &mbuf, &mhdr) == TS_SUCCESS);
TSReleaseAssert(TSHttpHdrCopy(mbuf, mhdr, auth->rheader.buffer, auth->rheader.header) == TS_SUCCESS);
status = TSHttpHdrStatusGet(mbuf, mhdr);
snprintf(msg, sizeof(msg), "%d %s\n", status, TSHttpHdrReasonLookup(status));
TSHttpTxnErrorBodySet(auth->txn, TSstrdup(msg), strlen(msg), TSstrdup("text/plain"));
// We must not whack the content length for HEAD responses, since the
// client already knows that there is no body. Forcing content length to
// zero breaks hdiutil(1) on macOS
if (TS_HTTP_METHOD_HEAD != auth->method) {
HttpSetMimeHeader(mbuf, mhdr, TS_MIME_FIELD_CONTENT_LENGTH, 0u);
}
AuthLogDebug("sending auth proxy response for status %d", status);
TSHandleMLocRelease(mbuf, TS_NULL_MLOC, mhdr);
TSHttpTxnReenable(auth->txn, TS_EVENT_HTTP_CONTINUE);
return TS_EVENT_CONTINUE;
}
static TSEvent
StateAuthProxyReadHeaders(AuthRequestContext *auth, void * /* edata ATS_UNUSED */)
{
TSIOBufferBlock blk;
ssize_t consumed = 0;
bool complete = false;
AuthLogDebug("reading header data, %u bytes available", (unsigned)TSIOBufferReaderAvail(auth->iobuf.reader));
for (blk = TSIOBufferReaderStart(auth->iobuf.reader); blk; blk = TSIOBufferBlockNext(blk)) {
const char *ptr;
const char *end;
int64_t nbytes;
TSParseResult result;
ptr = TSIOBufferBlockReadStart(blk, auth->iobuf.reader, &nbytes);
if (ptr == nullptr || nbytes == 0) {
continue;
}
end = ptr + nbytes;
result = TSHttpHdrParseResp(auth->hparser, auth->rheader.buffer, auth->rheader.header, &ptr, end);
switch (result) {
case TS_PARSE_ERROR:
return TS_EVENT_ERROR;
case TS_PARSE_DONE:
// We consumed the buffer we got minus the remainder.
consumed += (nbytes - std::distance(ptr, end));
complete = true;
break;
case TS_PARSE_CONT:
consumed += (nbytes - std::distance(ptr, end));
break;
}
if (complete) {
break;
}
}
AuthLogDebug("consuming %u bytes, %u remain", (unsigned)consumed, (unsigned)TSIOBufferReaderAvail(auth->iobuf.reader));
TSIOBufferReaderConsume(auth->iobuf.reader, consumed);
// If the headers are complete, send a completion event.
return complete ? TS_EVENT_HTTP_READ_REQUEST_HDR : TS_EVENT_CONTINUE;
}
static TSEvent
StateAuthProxyWriteReady(AuthRequestContext *auth, void * /* edata ATS_UNUSED */)
{
TSVConnWrite(auth->vconn, auth->cont, auth->iobuf.reader, TSIOBufferReaderAvail(auth->iobuf.reader));
return TS_EVENT_CONTINUE;
}
static TSEvent
StateAuthProxyWriteComplete(AuthRequestContext *auth, void * /* edata ATS_UNUSED */)
{
// We finished writing the auth proxy request. Kick off a read to get the response.
auth->iobuf.reset();
TSVConnRead(auth->vconn, auth->cont, auth->iobuf.buffer, std::numeric_limits<int64_t>::max());
// XXX Do we need to keep the read and write VIOs and close them?
return TS_EVENT_CONTINUE;
}
static TSEvent
StateAuthProxyReadContent(AuthRequestContext *auth, void * /* edata ATS_UNUSED */)
{
unsigned needed;
int64_t avail = 0;
avail = TSIOBufferReaderAvail(auth->iobuf.reader);
needed = HttpGetContentLength(auth->rheader.buffer, auth->rheader.header);
AuthLogDebug("we have %u of %u needed bytes", (unsigned)avail, needed);
if (avail >= needed) {
// OK, we have what we need. Let's respond to the client request.
AuthChainAuthorizationResponse(auth);
return TS_EVENT_HTTP_SEND_RESPONSE_HDR;
}
return TS_EVENT_CONTINUE;
}
static TSEvent
StateAuthProxyCompleteContent(AuthRequestContext *auth, void * /* edata ATS_UNUSED */)
{
unsigned needed;
int64_t avail;
avail = TSIOBufferReaderAvail(auth->iobuf.reader);
needed = HttpGetContentLength(auth->rheader.buffer, auth->rheader.header);
AuthLogDebug("we have %u of %u needed bytes", (unsigned)avail, needed);
if (avail >= needed) {
// OK, we have what we need. Let's respond to the client request.
AuthChainAuthorizationResponse(auth);
return TS_EVENT_HTTP_SEND_RESPONSE_HDR;
}
// We got EOS before reading all the content we expected.
return TS_EVENT_ERROR;
}
// Terminal state. Force a 403 Forbidden response.
static TSEvent
StateUnauthorized(AuthRequestContext *auth, void *)
{
static const char msg[] = "authorization denied\n";
TSHttpTxnStatusSet(auth->txn, TS_HTTP_STATUS_FORBIDDEN);
TSHttpTxnErrorBodySet(auth->txn, TSstrdup(msg), sizeof(msg) - 1, TSstrdup("text/plain"));
TSHttpTxnReenable(auth->txn, TS_EVENT_HTTP_ERROR);
return TS_EVENT_CONTINUE;
}
// Terminal state. Allow the original request to proceed.
static TSEvent
StateAuthorized(AuthRequestContext *auth, void *)
{
const AuthOptions *options = auth->options();
AuthLogDebug("request authorized");
// Since the original request might have authentication headers, we may
// need to force ATS to ignore those in order to make it cacheable.
if (options->force) {
TSHttpTxnConfigIntSet(auth->txn, TS_CONFIG_HTTP_CACHE_IGNORE_AUTHENTICATION, 1);
}
TSHttpTxnReenable(auth->txn, TS_EVENT_HTTP_CONTINUE);
return TS_EVENT_CONTINUE;
}
// Return true if the given request was tagged by a remap rule as needing
// authorization.
static bool
AuthRequestIsTagged(TSHttpTxn txn)
{
return AuthTaggedRequestArg != -1 && TSUserArgGet(txn, AuthTaggedRequestArg) != nullptr;
}
// Return true if the internal requests can be cached.
static bool
CacheInternalRequests(TSHttpTxn txn)
{
AuthOptions *opt = static_cast<AuthOptions *>(TSUserArgGet(txn, AuthTaggedRequestArg));
return opt ? opt->cache_internal_requests : false;
}
static int
AuthProxyGlobalHook(TSCont /* cont ATS_UNUSED */, TSEvent event, void *edata)
{
TSHttpTxn txn = static_cast<TSHttpTxn>(edata);
AuthLogDebug("handling event=%d edata=%p", (int)event, edata);
switch (event) {
case TS_EVENT_HTTP_POST_REMAP:
// Ignore internal requests since we generated them.
if (TSHttpTxnIsInternal(txn)) {
// All our internal requests *must* hit the origin since it is the
// agent that needs to make the authorization decision. We can't
// allow that to be cached. Note that this only affects the remap
// rule that this plugin is instantiated for, *unless* you are using
// it as a global plugin (not highly recommended). Also remember that
// the HEAD auth request might trip a different remap rule, particularly
// if you do not have pristine host-headers enabled.
if (!CacheInternalRequests(txn))
TSHttpTxnConfigIntSet(txn, TS_CONFIG_HTTP_CACHE_HTTP, 0);
AuthLogDebug("re-enabling internal transaction");
TSHttpTxnReenable(txn, TS_EVENT_HTTP_CONTINUE);
return TS_EVENT_NONE;
}
// Hook this request if we are in global authorization mode or if a
// remap rule tagged it.
if (AuthGlobalOptions != nullptr || AuthRequestIsTagged(txn)) {
AuthRequestContext *auth = AuthRequestContext::allocate();
auth->state = StateTableInit;
auth->txn = txn;
return AuthRequestContext::dispatch(auth->cont, event, edata);
}
// fallthrough
default:
return TS_EVENT_NONE;
}
}
static AuthOptions *
AuthParseOptions(int argc, const char **argv)
{
// The const_cast<> here is magic to work around a flaw in the definition of struct option
// on some platforms (e.g. Solaris / Illumos). On sane platforms (e.g. linux), it'll get
// automatically casted back to the const char*, as the struct is defined in <getopt.h>.
static const struct option longopt[] = {
{const_cast<char *>("auth-host"), required_argument, nullptr, 'h'},
{const_cast<char *>("auth-port"), required_argument, nullptr, 'p'},
{const_cast<char *>("auth-transform"), required_argument, nullptr, 't'},
{const_cast<char *>("force-cacheability"), no_argument, nullptr, 'c'},
{const_cast<char *>("cache-internal"), no_argument, nullptr, 'i'},
{nullptr, 0, nullptr, 0},
};
AuthOptions *options = AuthNew<AuthOptions>();
options->transform = AuthWriteRedirectedRequest;
for (;;) {
int opt;
opt = getopt_long(argc, const_cast<char *const *>(argv), "", longopt, nullptr);
switch (opt) {
case 'h':
options->hostname = optarg;
break;
case 'p':
options->hostport = std::atoi(optarg);
break;
case 'c':
options->force = true;
break;
case 'i':
options->cache_internal_requests = true;
break;
case 't':
if (strcasecmp(optarg, "redirect") == 0) {
options->transform = AuthWriteRedirectedRequest;
} else if (strcasecmp(optarg, "head") == 0) {
options->transform = AuthWriteHeadRequest;
} else if (strcasecmp(optarg, "range") == 0) {
options->transform = AuthWriteRangeRequest;
} else {
AuthLogError("invalid authorization transform '%s'", optarg);
// XXX make this a fatal error?
}
break;
}
if (opt == -1) {
break;
}
}
if (options->hostname.empty()) {
options->hostname = "127.0.0.1";
}
return options;
}
#undef LONGOPT_OPTION_CAST
void
TSPluginInit(int argc, const char *argv[])
{
TSPluginRegistrationInfo info;
info.plugin_name = (char *)"authproxy";
info.vendor_name = (char *)"Apache Software Foundation";
info.support_email = (char *)"dev@trafficserver.apache.org";
if (TSPluginRegister(&info) != TS_SUCCESS) {
AuthLogError("plugin registration failed");
}
TSReleaseAssert(TSUserArgIndexReserve(TS_USER_ARGS_TXN, "AuthProxy", "AuthProxy authorization tag", &AuthTaggedRequestArg) ==
TS_SUCCESS);
AuthOsDnsContinuation = TSContCreate(AuthProxyGlobalHook, nullptr);
AuthGlobalOptions = AuthParseOptions(argc, argv);
AuthLogDebug("using authorization proxy at %s:%d", AuthGlobalOptions->hostname.c_str(), AuthGlobalOptions->hostport);
// Use the appropriate hook for consistent auth checks.
TSHttpHookAdd(TS_HTTP_POST_REMAP_HOOK, AuthOsDnsContinuation);
}
TSReturnCode
TSRemapInit(TSRemapInterface * /* api ATS_UNUSED */, char * /* err ATS_UNUSED */, int /* errsz ATS_UNUSED */)
{
TSReleaseAssert(TSUserArgIndexReserve(TS_USER_ARGS_TXN, "AuthProxy", "AuthProxy authorization tag", &AuthTaggedRequestArg) ==
TS_SUCCESS);
AuthOsDnsContinuation = TSContCreate(AuthProxyGlobalHook, nullptr);
return TS_SUCCESS;
}
TSReturnCode
TSRemapNewInstance(int argc, char *argv[], void **instance, char * /* err ATS_UNUSED */, int /* errsz ATS_UNUSED */)
{
AuthOptions *options;
AuthLogDebug("using authorization proxy for remapping %s -> %s", argv[0], argv[1]);
// The first two arguments are the "from" and "to" URL string. We need to
// skip them, but we also require that there be an option to masquerade as
// argv[0], so we increment the argument indexes by 1 rather than by 2.
argc--;
argv++;
options = AuthParseOptions(argc, (const char **)argv);
*instance = options;
return TS_SUCCESS;
}
void
TSRemapDeleteInstance(void *instance)
{
AuthOptions *options = static_cast<AuthOptions *>(instance);
AuthDelete(options);
}
TSRemapStatus
TSRemapDoRemap(void *instance, TSHttpTxn txn, TSRemapRequestInfo * /* rri ATS_UNUSED */)
{
AuthOptions *options = static_cast<AuthOptions *>(instance);
TSUserArgSet(txn, AuthTaggedRequestArg, options);
TSHttpTxnHookAdd(txn, TS_HTTP_POST_REMAP_HOOK, AuthOsDnsContinuation);
return TSREMAP_NO_REMAP;
}
// vim: set ts=4 sw=4 et :
|