]> git.ipfire.org Git - thirdparty/squid.git/blob - src/http.cc
Replace String with SBuf for storage of header names in HttpHeaderEntry
[thirdparty/squid.git] / src / http.cc
1 /*
2 * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 /* DEBUG: section 11 Hypertext Transfer Protocol (HTTP) */
10
11 /*
12 * Anonymizing patch by lutz@as-node.jena.thur.de
13 * have a look into http-anon.c to get more informations.
14 */
15
16 #include "squid.h"
17 #include "acl/FilledChecklist.h"
18 #include "base/AsyncJobCalls.h"
19 #include "base/TextException.h"
20 #include "base64.h"
21 #include "CachePeer.h"
22 #include "client_side.h"
23 #include "comm/Connection.h"
24 #include "comm/Read.h"
25 #include "comm/Write.h"
26 #include "CommRead.h"
27 #include "err_detail_type.h"
28 #include "errorpage.h"
29 #include "fd.h"
30 #include "fde.h"
31 #include "globals.h"
32 #include "http.h"
33 #include "http/one/ResponseParser.h"
34 #include "http/one/TeChunkedParser.h"
35 #include "http/Stream.h"
36 #include "HttpControlMsg.h"
37 #include "HttpHdrCc.h"
38 #include "HttpHdrContRange.h"
39 #include "HttpHdrSc.h"
40 #include "HttpHdrScTarget.h"
41 #include "HttpHeaderTools.h"
42 #include "HttpReply.h"
43 #include "HttpRequest.h"
44 #include "log/access_log.h"
45 #include "MemBuf.h"
46 #include "MemObject.h"
47 #include "neighbors.h"
48 #include "peer_proxy_negotiate_auth.h"
49 #include "profiler/Profiler.h"
50 #include "refresh.h"
51 #include "RefreshPattern.h"
52 #include "rfc1738.h"
53 #include "SquidConfig.h"
54 #include "SquidTime.h"
55 #include "StatCounters.h"
56 #include "Store.h"
57 #include "StrList.h"
58 #include "tools.h"
59 #include "URL.h"
60 #include "util.h"
61
62 #if USE_AUTH
63 #include "auth/UserRequest.h"
64 #endif
65 #if USE_DELAY_POOLS
66 #include "DelayPools.h"
67 #endif
68
69 #define SQUID_ENTER_THROWING_CODE() try {
70 #define SQUID_EXIT_THROWING_CODE(status) \
71 status = true; \
72 } \
73 catch (const std::exception &e) { \
74 debugs (11, 1, "Exception error:" << e.what()); \
75 status = false; \
76 }
77
78 CBDATA_CLASS_INIT(HttpStateData);
79
80 static const char *const crlf = "\r\n";
81
82 static void httpMaybeRemovePublic(StoreEntry *, Http::StatusCode);
83 static void copyOneHeaderFromClientsideRequestToUpstreamRequest(const HttpHeaderEntry *e, const String strConnection, const HttpRequest * request,
84 HttpHeader * hdr_out, const int we_do_ranges, const Http::StateFlags &);
85
86 HttpStateData::HttpStateData(FwdState *theFwdState) :
87 AsyncJob("HttpStateData"),
88 Client(theFwdState),
89 lastChunk(0),
90 httpChunkDecoder(NULL),
91 payloadSeen(0),
92 payloadTruncated(0),
93 sawDateGoBack(false)
94 {
95 debugs(11,5,HERE << "HttpStateData " << this << " created");
96 ignoreCacheControl = false;
97 surrogateNoStore = false;
98 serverConnection = fwd->serverConnection();
99
100 // reset peer response time stats for %<pt
101 request->hier.peer_http_request_sent.tv_sec = 0;
102 request->hier.peer_http_request_sent.tv_usec = 0;
103
104 if (fwd->serverConnection() != NULL)
105 _peer = cbdataReference(fwd->serverConnection()->getPeer()); /* might be NULL */
106
107 if (_peer) {
108 request->flags.proxying = true;
109 /*
110 * This NEIGHBOR_PROXY_ONLY check probably shouldn't be here.
111 * We might end up getting the object from somewhere else if,
112 * for example, the request to this neighbor fails.
113 */
114 if (_peer->options.proxy_only)
115 entry->releaseRequest();
116
117 #if USE_DELAY_POOLS
118 entry->setNoDelay(_peer->options.no_delay);
119 #endif
120 }
121
122 /*
123 * register the handler to free HTTP state data when the FD closes
124 */
125 typedef CommCbMemFunT<HttpStateData, CommCloseCbParams> Dialer;
126 closeHandler = JobCallback(9, 5, Dialer, this, HttpStateData::httpStateConnClosed);
127 comm_add_close_handler(serverConnection->fd, closeHandler);
128 }
129
130 HttpStateData::~HttpStateData()
131 {
132 /*
133 * don't forget that ~Client() gets called automatically
134 */
135
136 if (httpChunkDecoder)
137 delete httpChunkDecoder;
138
139 cbdataReferenceDone(_peer);
140
141 debugs(11,5, HERE << "HttpStateData " << this << " destroyed; " << serverConnection);
142 }
143
144 const Comm::ConnectionPointer &
145 HttpStateData::dataConnection() const
146 {
147 return serverConnection;
148 }
149
150 void
151 HttpStateData::httpStateConnClosed(const CommCloseCbParams &params)
152 {
153 debugs(11, 5, "httpStateFree: FD " << params.fd << ", httpState=" << params.data);
154 doneWithFwd = "httpStateConnClosed()"; // assume FwdState is monitoring too
155 mustStop("HttpStateData::httpStateConnClosed");
156 }
157
158 void
159 HttpStateData::httpTimeout(const CommTimeoutCbParams &)
160 {
161 debugs(11, 4, serverConnection << ": '" << entry->url() << "'");
162
163 if (entry->store_status == STORE_PENDING) {
164 fwd->fail(new ErrorState(ERR_READ_TIMEOUT, Http::scGatewayTimeout, fwd->request));
165 }
166
167 closeServer();
168 mustStop("HttpStateData::httpTimeout");
169 }
170
171 static StoreEntry *
172 findPreviouslyCachedEntry(StoreEntry *newEntry) {
173 assert(newEntry->mem_obj);
174 return newEntry->mem_obj->request ?
175 storeGetPublicByRequest(newEntry->mem_obj->request.getRaw()) :
176 storeGetPublic(newEntry->mem_obj->storeId(), newEntry->mem_obj->method);
177 }
178
179 /// Remove an existing public store entry if the incoming response (to be
180 /// stored in a currently private entry) is going to invalidate it.
181 static void
182 httpMaybeRemovePublic(StoreEntry * e, Http::StatusCode status)
183 {
184 int remove = 0;
185 int forbidden = 0;
186
187 // If the incoming response already goes into a public entry, then there is
188 // nothing to remove. This protects ready-for-collapsing entries as well.
189 if (!EBIT_TEST(e->flags, KEY_PRIVATE))
190 return;
191
192 // If the new/incoming response cannot be stored, then it does not
193 // compete with the old stored response for the public key, and the
194 // old stored response should be left as is.
195 if (e->mem_obj->request && !e->mem_obj->request->flags.cachable)
196 return;
197
198 switch (status) {
199
200 case Http::scOkay:
201
202 case Http::scNonAuthoritativeInformation:
203
204 case Http::scMultipleChoices:
205
206 case Http::scMovedPermanently:
207
208 case Http::scFound:
209
210 case Http::scSeeOther:
211
212 case Http::scGone:
213
214 case Http::scNotFound:
215 remove = 1;
216
217 break;
218
219 case Http::scForbidden:
220
221 case Http::scMethodNotAllowed:
222 forbidden = 1;
223
224 break;
225
226 #if WORK_IN_PROGRESS
227
228 case Http::scUnauthorized:
229 forbidden = 1;
230
231 break;
232
233 #endif
234
235 default:
236 #if QUESTIONABLE
237 /*
238 * Any 2xx response should eject previously cached entities...
239 */
240
241 if (status >= 200 && status < 300)
242 remove = 1;
243
244 #endif
245
246 break;
247 }
248
249 if (!remove && !forbidden)
250 return;
251
252 StoreEntry *pe = findPreviouslyCachedEntry(e);
253
254 if (pe != NULL) {
255 assert(e != pe);
256 #if USE_HTCP
257 neighborsHtcpClear(e, nullptr, e->mem_obj->request.getRaw(), e->mem_obj->method, HTCP_CLR_INVALIDATION);
258 #endif
259 pe->release();
260 }
261
262 /** \par
263 * Also remove any cached HEAD response in case the object has
264 * changed.
265 */
266 if (e->mem_obj->request)
267 pe = storeGetPublicByRequestMethod(e->mem_obj->request.getRaw(), Http::METHOD_HEAD);
268 else
269 pe = storeGetPublic(e->mem_obj->storeId(), Http::METHOD_HEAD);
270
271 if (pe != NULL) {
272 assert(e != pe);
273 #if USE_HTCP
274 neighborsHtcpClear(e, nullptr, e->mem_obj->request.getRaw(), HttpRequestMethod(Http::METHOD_HEAD), HTCP_CLR_INVALIDATION);
275 #endif
276 pe->release();
277 }
278 }
279
280 void
281 HttpStateData::processSurrogateControl(HttpReply *reply)
282 {
283 if (request->flags.accelerated && reply->surrogate_control) {
284 HttpHdrScTarget *sctusable = reply->surrogate_control->getMergedTarget(Config.Accel.surrogate_id);
285
286 if (sctusable) {
287 if (sctusable->hasNoStore() ||
288 (Config.onoff.surrogate_is_remote
289 && sctusable->noStoreRemote())) {
290 surrogateNoStore = true;
291 entry->makePrivate();
292 }
293
294 /* The HttpHeader logic cannot tell if the header it's parsing is a reply to an
295 * accelerated request or not...
296 * Still, this is an abstraction breach. - RC
297 */
298 if (sctusable->hasMaxAge()) {
299 if (sctusable->maxAge() < sctusable->maxStale())
300 reply->expires = reply->date + sctusable->maxAge();
301 else
302 reply->expires = reply->date + sctusable->maxStale();
303
304 /* And update the timestamps */
305 entry->timestampsSet();
306 }
307
308 /* We ignore cache-control directives as per the Surrogate specification */
309 ignoreCacheControl = true;
310
311 delete sctusable;
312 }
313 }
314 }
315
316 int
317 HttpStateData::cacheableReply()
318 {
319 HttpReply const *rep = finalReply();
320 HttpHeader const *hdr = &rep->header;
321 const char *v;
322 #if USE_HTTP_VIOLATIONS
323
324 const RefreshPattern *R = NULL;
325
326 /* This strange looking define first looks up the refresh pattern
327 * and then checks if the specified flag is set. The main purpose
328 * of this is to simplify the refresh pattern lookup and USE_HTTP_VIOLATIONS
329 * condition
330 */
331 #define REFRESH_OVERRIDE(flag) \
332 ((R = (R ? R : refreshLimits(entry->mem_obj->storeId()))) , \
333 (R && R->flags.flag))
334 #else
335 #define REFRESH_OVERRIDE(flag) 0
336 #endif
337
338 if (EBIT_TEST(entry->flags, RELEASE_REQUEST)) {
339 debugs(22, 3, "NO because " << *entry << " has been released.");
340 return 0;
341 }
342
343 // RFC 7234 section 4: a cache MUST use the most recent response
344 // (as determined by the Date header field)
345 if (sawDateGoBack) {
346 debugs(22, 3, "NO because " << *entry << " has an older date header.");
347 return 0;
348 }
349
350 // Check for Surrogate/1.0 protocol conditions
351 // NP: reverse-proxy traffic our parent server has instructed us never to cache
352 if (surrogateNoStore) {
353 debugs(22, 3, HERE << "NO because Surrogate-Control:no-store");
354 return 0;
355 }
356
357 // RFC 2616: HTTP/1.1 Cache-Control conditions
358 if (!ignoreCacheControl) {
359 // XXX: check to see if the request headers alone were enough to prevent caching earlier
360 // (ie no-store request header) no need to check those all again here if so.
361 // for now we are not reliably doing that so we waste CPU re-checking request CC
362
363 // RFC 2616 section 14.9.2 - MUST NOT cache any response with request CC:no-store
364 if (request && request->cache_control && request->cache_control->hasNoStore() &&
365 !REFRESH_OVERRIDE(ignore_no_store)) {
366 debugs(22, 3, HERE << "NO because client request Cache-Control:no-store");
367 return 0;
368 }
369
370 // NP: request CC:no-cache only means cache READ is forbidden. STORE is permitted.
371 if (rep->cache_control && rep->cache_control->hasNoCacheWithParameters()) {
372 /* TODO: we are allowed to cache when no-cache= has parameters.
373 * Provided we strip away any of the listed headers unless they are revalidated
374 * successfully (ie, must revalidate AND these headers are prohibited on stale replies).
375 * That is a bit tricky for squid right now so we avoid caching entirely.
376 */
377 debugs(22, 3, HERE << "NO because server reply Cache-Control:no-cache has parameters");
378 return 0;
379 }
380
381 // NP: request CC:private is undefined. We ignore.
382 // NP: other request CC flags are limiters on HIT/MISS. We don't care about here.
383
384 // RFC 2616 section 14.9.2 - MUST NOT cache any response with CC:no-store
385 if (rep->cache_control && rep->cache_control->hasNoStore() &&
386 !REFRESH_OVERRIDE(ignore_no_store)) {
387 debugs(22, 3, HERE << "NO because server reply Cache-Control:no-store");
388 return 0;
389 }
390
391 // RFC 2616 section 14.9.1 - MUST NOT cache any response with CC:private in a shared cache like Squid.
392 // CC:private overrides CC:public when both are present in a response.
393 // TODO: add a shared/private cache configuration possibility.
394 if (rep->cache_control &&
395 rep->cache_control->hasPrivate() &&
396 !REFRESH_OVERRIDE(ignore_private)) {
397 /* TODO: we are allowed to cache when private= has parameters.
398 * Provided we strip away any of the listed headers unless they are revalidated
399 * successfully (ie, must revalidate AND these headers are prohibited on stale replies).
400 * That is a bit tricky for squid right now so we avoid caching entirely.
401 */
402 debugs(22, 3, HERE << "NO because server reply Cache-Control:private");
403 return 0;
404 }
405 }
406
407 // RFC 2068, sec 14.9.4 - MUST NOT cache any response with Authentication UNLESS certain CC controls are present
408 // allow HTTP violations to IGNORE those controls (ie re-block caching Auth)
409 if (request && (request->flags.auth || request->flags.authSent)) {
410 if (!rep->cache_control) {
411 debugs(22, 3, HERE << "NO because Authenticated and server reply missing Cache-Control");
412 return 0;
413 }
414
415 if (ignoreCacheControl) {
416 debugs(22, 3, HERE << "NO because Authenticated and ignoring Cache-Control");
417 return 0;
418 }
419
420 bool mayStore = false;
421 // HTTPbis pt6 section 3.2: a response CC:public is present
422 if (rep->cache_control->hasPublic()) {
423 debugs(22, 3, HERE << "Authenticated but server reply Cache-Control:public");
424 mayStore = true;
425
426 // HTTPbis pt6 section 3.2: a response CC:must-revalidate is present
427 } else if (rep->cache_control->hasMustRevalidate()) {
428 debugs(22, 3, HERE << "Authenticated but server reply Cache-Control:must-revalidate");
429 mayStore = true;
430
431 #if USE_HTTP_VIOLATIONS
432 // NP: given the must-revalidate exception we should also be able to exempt no-cache.
433 // HTTPbis WG verdict on this is that it is omitted from the spec due to being 'unexpected' by
434 // some. The caching+revalidate is not exactly unsafe though with Squids interpretation of no-cache
435 // (without parameters) as equivalent to must-revalidate in the reply.
436 } else if (rep->cache_control->hasNoCacheWithoutParameters()) {
437 debugs(22, 3, HERE << "Authenticated but server reply Cache-Control:no-cache (equivalent to must-revalidate)");
438 mayStore = true;
439 #endif
440
441 // HTTPbis pt6 section 3.2: a response CC:s-maxage is present
442 } else if (rep->cache_control->hasSMaxAge()) {
443 debugs(22, 3, HERE << "Authenticated but server reply Cache-Control:s-maxage");
444 mayStore = true;
445 }
446
447 if (!mayStore) {
448 debugs(22, 3, HERE << "NO because Authenticated transaction");
449 return 0;
450 }
451
452 // NP: response CC:no-cache is equivalent to CC:must-revalidate,max-age=0. We MAY cache, and do so.
453 // NP: other request CC flags are limiters on HIT/MISS/REFRESH. We don't care about here.
454 }
455
456 /* HACK: The "multipart/x-mixed-replace" content type is used for
457 * continuous push replies. These are generally dynamic and
458 * probably should not be cachable
459 */
460 if ((v = hdr->getStr(Http::HdrType::CONTENT_TYPE)))
461 if (!strncasecmp(v, "multipart/x-mixed-replace", 25)) {
462 debugs(22, 3, HERE << "NO because Content-Type:multipart/x-mixed-replace");
463 return 0;
464 }
465
466 switch (rep->sline.status()) {
467 /* Responses that are cacheable */
468
469 case Http::scOkay:
470
471 case Http::scNonAuthoritativeInformation:
472
473 case Http::scMultipleChoices:
474
475 case Http::scMovedPermanently:
476 case Http::scPermanentRedirect:
477
478 case Http::scGone:
479 /*
480 * Don't cache objects that need to be refreshed on next request,
481 * unless we know how to refresh it.
482 */
483
484 if (!refreshIsCachable(entry) && !REFRESH_OVERRIDE(store_stale)) {
485 debugs(22, 3, "NO because refreshIsCachable() returned non-cacheable..");
486 return 0;
487 } else {
488 debugs(22, 3, HERE << "YES because HTTP status " << rep->sline.status());
489 return 1;
490 }
491 /* NOTREACHED */
492 break;
493
494 /* Responses that only are cacheable if the server says so */
495
496 case Http::scFound:
497 case Http::scTemporaryRedirect:
498 if (rep->date <= 0) {
499 debugs(22, 3, HERE << "NO because HTTP status " << rep->sline.status() << " and Date missing/invalid");
500 return 0;
501 }
502 if (rep->expires > rep->date) {
503 debugs(22, 3, HERE << "YES because HTTP status " << rep->sline.status() << " and Expires > Date");
504 return 1;
505 } else {
506 debugs(22, 3, HERE << "NO because HTTP status " << rep->sline.status() << " and Expires <= Date");
507 return 0;
508 }
509 /* NOTREACHED */
510 break;
511
512 /* Errors can be negatively cached */
513
514 case Http::scNoContent:
515
516 case Http::scUseProxy:
517
518 case Http::scBadRequest:
519
520 case Http::scForbidden:
521
522 case Http::scNotFound:
523
524 case Http::scMethodNotAllowed:
525
526 case Http::scUriTooLong:
527
528 case Http::scInternalServerError:
529
530 case Http::scNotImplemented:
531
532 case Http::scBadGateway:
533
534 case Http::scServiceUnavailable:
535
536 case Http::scGatewayTimeout:
537 case Http::scMisdirectedRequest:
538
539 debugs(22, 3, "MAYBE because HTTP status " << rep->sline.status());
540 return -1;
541
542 /* NOTREACHED */
543 break;
544
545 /* Some responses can never be cached */
546
547 case Http::scPartialContent: /* Not yet supported */
548
549 case Http::scSeeOther:
550
551 case Http::scNotModified:
552
553 case Http::scUnauthorized:
554
555 case Http::scProxyAuthenticationRequired:
556
557 case Http::scInvalidHeader: /* Squid header parsing error */
558
559 case Http::scHeaderTooLarge:
560
561 case Http::scPaymentRequired:
562 case Http::scNotAcceptable:
563 case Http::scRequestTimeout:
564 case Http::scConflict:
565 case Http::scLengthRequired:
566 case Http::scPreconditionFailed:
567 case Http::scPayloadTooLarge:
568 case Http::scUnsupportedMediaType:
569 case Http::scUnprocessableEntity:
570 case Http::scLocked:
571 case Http::scFailedDependency:
572 case Http::scInsufficientStorage:
573 case Http::scRequestedRangeNotSatisfied:
574 case Http::scExpectationFailed:
575
576 debugs(22, 3, HERE << "NO because HTTP status " << rep->sline.status());
577 return 0;
578
579 default:
580 /* RFC 2616 section 6.1.1: an unrecognized response MUST NOT be cached. */
581 debugs (11, 3, HERE << "NO because unknown HTTP status code " << rep->sline.status());
582 return 0;
583
584 /* NOTREACHED */
585 break;
586 }
587
588 /* NOTREACHED */
589 }
590
591 /// assemble a variant key (vary-mark) from the given Vary header and HTTP request
592 static void
593 assembleVaryKey(String &vary, SBuf &vstr, const HttpRequest &request)
594 {
595 static const SBuf asterisk("*");
596 const char *pos = nullptr;
597 const char *item = nullptr;
598 int ilen = 0;
599
600 while (strListGetItem(&vary, ',', &item, &ilen, &pos)) {
601 SBuf name(item, ilen);
602 if (name == asterisk) {
603 vstr = asterisk;
604 break;
605 }
606 name.toLower();
607 if (!vstr.isEmpty())
608 vstr.append(", ", 2);
609 vstr.append(name);
610 String hdr(request.header.getByName(name));
611 const char *value = hdr.termedBuf();
612 if (value) {
613 value = rfc1738_escape_part(value);
614 vstr.append("=\"", 2);
615 vstr.append(value);
616 vstr.append("\"", 1);
617 }
618
619 hdr.clean();
620 }
621 }
622
623 /*
624 * For Vary, store the relevant request headers as
625 * virtual headers in the reply
626 * Returns an empty SBuf if the variance cannot be stored
627 */
628 SBuf
629 httpMakeVaryMark(HttpRequest * request, HttpReply const * reply)
630 {
631 SBuf vstr;
632 String vary;
633
634 vary = reply->header.getList(Http::HdrType::VARY);
635 assembleVaryKey(vary, vstr, *request);
636
637 #if X_ACCELERATOR_VARY
638 vary.clean();
639 vary = reply->header.getList(Http::HdrType::HDR_X_ACCELERATOR_VARY);
640 assembleVaryKey(vary, vstr, *request);
641 #endif
642
643 debugs(11, 3, vstr);
644 return vstr;
645 }
646
647 void
648 HttpStateData::keepaliveAccounting(HttpReply *reply)
649 {
650 if (flags.keepalive)
651 if (_peer)
652 ++ _peer->stats.n_keepalives_sent;
653
654 if (reply->keep_alive) {
655 if (_peer)
656 ++ _peer->stats.n_keepalives_recv;
657
658 if (Config.onoff.detect_broken_server_pconns
659 && reply->bodySize(request->method) == -1 && !flags.chunked) {
660 debugs(11, DBG_IMPORTANT, "keepaliveAccounting: Impossible keep-alive header from '" << entry->url() << "'" );
661 // debugs(11, 2, "GOT HTTP REPLY HDR:\n---------\n" << readBuf->content() << "\n----------" );
662 flags.keepalive_broken = true;
663 }
664 }
665 }
666
667 void
668 HttpStateData::checkDateSkew(HttpReply *reply)
669 {
670 if (reply->date > -1 && !_peer) {
671 int skew = abs((int)(reply->date - squid_curtime));
672
673 if (skew > 86400)
674 debugs(11, 3, "" << request->url.host() << "'s clock is skewed by " << skew << " seconds!");
675 }
676 }
677
678 /**
679 * This creates the error page itself.. its likely
680 * that the forward ported reply header max size patch
681 * generates non http conformant error pages - in which
682 * case the errors where should be 'BAD_GATEWAY' etc
683 */
684 void
685 HttpStateData::processReplyHeader()
686 {
687 /** Creates a blank header. If this routine is made incremental, this will not do */
688
689 /* NP: all exit points to this function MUST call ctx_exit(ctx) */
690 Ctx ctx = ctx_enter(entry->mem_obj->urlXXX());
691
692 debugs(11, 3, "processReplyHeader: key '" << entry->getMD5Text() << "'");
693
694 assert(!flags.headers_parsed);
695
696 if (!inBuf.length()) {
697 ctx_exit(ctx);
698 return;
699 }
700
701 /* Attempt to parse the first line; this will define where the protocol, status, reason-phrase and header begin */
702 {
703 if (hp == NULL)
704 hp = new Http1::ResponseParser;
705
706 bool parsedOk = hp->parse(inBuf);
707
708 // sync the buffers after parsing.
709 inBuf = hp->remaining();
710
711 if (hp->needsMoreData()) {
712 if (eof) { // no more data coming
713 /* Bug 2879: Replies may terminate with \r\n then EOF instead of \r\n\r\n.
714 * We also may receive truncated responses.
715 * Ensure here that we have at minimum two \r\n when EOF is seen.
716 */
717 inBuf.append("\r\n\r\n", 4);
718 // retry the parse
719 parsedOk = hp->parse(inBuf);
720 // sync the buffers after parsing.
721 inBuf = hp->remaining();
722 } else {
723 debugs(33, 5, "Incomplete response, waiting for end of response headers");
724 ctx_exit(ctx);
725 return;
726 }
727 }
728
729 if (!parsedOk) {
730 // unrecoverable parsing error
731 // TODO: Use Raw! XXX: inBuf no longer has the [beginning of the] malformed header.
732 debugs(11, 3, "Non-HTTP-compliant header:\n---------\n" << inBuf << "\n----------");
733 flags.headers_parsed = true;
734 HttpReply *newrep = new HttpReply;
735 newrep->sline.set(Http::ProtocolVersion(), hp->parseStatusCode);
736 setVirginReply(newrep);
737 ctx_exit(ctx);
738 return;
739 }
740 }
741
742 /* We know the whole response is in parser now */
743 debugs(11, 2, "HTTP Server " << serverConnection);
744 debugs(11, 2, "HTTP Server RESPONSE:\n---------\n" <<
745 hp->messageProtocol() << " " << hp->messageStatus() << " " << hp->reasonPhrase() << "\n" <<
746 hp->mimeHeader() <<
747 "----------");
748
749 // reset payload tracking to begin after message headers
750 payloadSeen = inBuf.length();
751
752 HttpReply *newrep = new HttpReply;
753 // XXX: RFC 7230 indicates we MAY ignore the reason phrase,
754 // and use an empty string on unknown status.
755 // We do that now to avoid performance regression from using SBuf::c_str()
756 newrep->sline.set(Http::ProtocolVersion(1,1), hp->messageStatus() /* , hp->reasonPhrase() */);
757 newrep->sline.protocol = newrep->sline.version.protocol = hp->messageProtocol().protocol;
758 newrep->sline.version.major = hp->messageProtocol().major;
759 newrep->sline.version.minor = hp->messageProtocol().minor;
760
761 // parse headers
762 if (!newrep->parseHeader(*hp)) {
763 // XXX: when Http::ProtocolVersion is a function, remove this hack. just set with messageProtocol()
764 newrep->sline.set(Http::ProtocolVersion(), Http::scInvalidHeader);
765 newrep->sline.version.protocol = hp->messageProtocol().protocol;
766 newrep->sline.version.major = hp->messageProtocol().major;
767 newrep->sline.version.minor = hp->messageProtocol().minor;
768 debugs(11, 2, "error parsing response headers mime block");
769 }
770
771 // done with Parser, now process using the HttpReply
772 hp = NULL;
773
774 newrep->sources |= request->url.getScheme() == AnyP::PROTO_HTTPS ? Http::Message::srcHttps : Http::Message::srcHttp;
775
776 newrep->removeStaleWarnings();
777
778 if (newrep->sline.protocol == AnyP::PROTO_HTTP && newrep->sline.status() >= 100 && newrep->sline.status() < 200) {
779 handle1xx(newrep);
780 ctx_exit(ctx);
781 return;
782 }
783
784 flags.chunked = false;
785 if (newrep->sline.protocol == AnyP::PROTO_HTTP && newrep->header.chunked()) {
786 flags.chunked = true;
787 httpChunkDecoder = new Http1::TeChunkedParser;
788 }
789
790 if (!peerSupportsConnectionPinning())
791 request->flags.connectionAuthDisabled = true;
792
793 HttpReply *vrep = setVirginReply(newrep);
794 flags.headers_parsed = true;
795
796 keepaliveAccounting(vrep);
797
798 checkDateSkew(vrep);
799
800 processSurrogateControl (vrep);
801
802 request->hier.peer_reply_status = newrep->sline.status();
803
804 ctx_exit(ctx);
805 }
806
807 /// ignore or start forwarding the 1xx response (a.k.a., control message)
808 void
809 HttpStateData::handle1xx(HttpReply *reply)
810 {
811 HttpReply::Pointer msg(reply); // will destroy reply if unused
812
813 // one 1xx at a time: we must not be called while waiting for previous 1xx
814 Must(!flags.handling1xx);
815 flags.handling1xx = true;
816
817 if (!request->canHandle1xx() || request->forcedBodyContinuation) {
818 debugs(11, 2, "ignoring 1xx because it is " << (request->forcedBodyContinuation ? "already sent" : "not supported by client"));
819 proceedAfter1xx();
820 return;
821 }
822
823 #if USE_HTTP_VIOLATIONS
824 // check whether the 1xx response forwarding is allowed by squid.conf
825 if (Config.accessList.reply) {
826 ACLFilledChecklist ch(Config.accessList.reply, originalRequest().getRaw());
827 ch.reply = reply;
828 HTTPMSGLOCK(ch.reply);
829 if (ch.fastCheck() != ACCESS_ALLOWED) { // TODO: support slow lookups?
830 debugs(11, 3, HERE << "ignoring denied 1xx");
831 proceedAfter1xx();
832 return;
833 }
834 }
835 #endif // USE_HTTP_VIOLATIONS
836
837 debugs(11, 2, HERE << "forwarding 1xx to client");
838
839 // the Sink will use this to call us back after writing 1xx to the client
840 typedef NullaryMemFunT<HttpStateData> CbDialer;
841 const AsyncCall::Pointer cb = JobCallback(11, 3, CbDialer, this,
842 HttpStateData::proceedAfter1xx);
843 CallJobHere1(11, 4, request->clientConnectionManager, ConnStateData,
844 ConnStateData::sendControlMsg, HttpControlMsg(msg, cb));
845 // If the call is not fired, then the Sink is gone, and HttpStateData
846 // will terminate due to an aborted store entry or another similar error.
847 // If we get stuck, it is not handle1xx fault if we could get stuck
848 // for similar reasons without a 1xx response.
849 }
850
851 /// restores state and resumes processing after 1xx is ignored or forwarded
852 void
853 HttpStateData::proceedAfter1xx()
854 {
855 Must(flags.handling1xx);
856 debugs(11, 2, "continuing with " << payloadSeen << " bytes in buffer after 1xx");
857 CallJobHere(11, 3, this, HttpStateData, HttpStateData::processReply);
858 }
859
860 /**
861 * returns true if the peer can support connection pinning
862 */
863 bool
864 HttpStateData::peerSupportsConnectionPinning() const
865 {
866 if (!_peer)
867 return true;
868
869 /*If this peer does not support connection pinning (authenticated
870 connections) return false
871 */
872 if (!_peer->connection_auth)
873 return false;
874
875 const HttpReplyPointer rep(entry->mem_obj->getReply());
876
877 /*The peer supports connection pinning and the http reply status
878 is not unauthorized, so the related connection can be pinned
879 */
880 if (rep->sline.status() != Http::scUnauthorized)
881 return true;
882
883 /*The server respond with Http::scUnauthorized and the peer configured
884 with "connection-auth=on" we know that the peer supports pinned
885 connections
886 */
887 if (_peer->connection_auth == 1)
888 return true;
889
890 /*At this point peer has configured with "connection-auth=auto"
891 parameter so we need some extra checks to decide if we are going
892 to allow pinned connections or not
893 */
894
895 /*if the peer configured with originserver just allow connection
896 pinning (squid 2.6 behaviour)
897 */
898 if (_peer->options.originserver)
899 return true;
900
901 /*if the connections it is already pinned it is OK*/
902 if (request->flags.pinned)
903 return true;
904
905 /*Allow pinned connections only if the Proxy-support header exists in
906 reply and has in its list the "Session-Based-Authentication"
907 which means that the peer supports connection pinning.
908 */
909 if (rep->header.hasListMember(Http::HdrType::PROXY_SUPPORT, "Session-Based-Authentication", ','))
910 return true;
911
912 return false;
913 }
914
915 // Called when we parsed (and possibly adapted) the headers but
916 // had not starting storing (a.k.a., sending) the body yet.
917 void
918 HttpStateData::haveParsedReplyHeaders()
919 {
920 Client::haveParsedReplyHeaders();
921
922 Ctx ctx = ctx_enter(entry->mem_obj->urlXXX());
923 HttpReply *rep = finalReply();
924
925 entry->timestampsSet();
926
927 /* Check if object is cacheable or not based on reply code */
928 debugs(11, 3, "HTTP CODE: " << rep->sline.status());
929
930 if (const StoreEntry *oldEntry = findPreviouslyCachedEntry(entry))
931 sawDateGoBack = rep->olderThan(oldEntry->getReply());
932
933 if (neighbors_do_private_keys && !sawDateGoBack)
934 httpMaybeRemovePublic(entry, rep->sline.status());
935
936 bool varyFailure = false;
937 if (rep->header.has(Http::HdrType::VARY)
938 #if X_ACCELERATOR_VARY
939 || rep->header.has(Http::HdrType::HDR_X_ACCELERATOR_VARY)
940 #endif
941 ) {
942 const SBuf vary(httpMakeVaryMark(request.getRaw(), rep));
943
944 if (vary.isEmpty()) {
945 entry->makePrivate();
946 if (!fwd->reforwardableStatus(rep->sline.status()))
947 EBIT_CLR(entry->flags, ENTRY_FWD_HDR_WAIT);
948 varyFailure = true;
949 } else {
950 entry->mem_obj->vary_headers = vary;
951
952 // RFC 7231 section 7.1.4
953 // Vary:* can be cached, but has mandatory revalidation
954 static const SBuf asterisk("*");
955 if (vary == asterisk)
956 EBIT_SET(entry->flags, ENTRY_REVALIDATE_ALWAYS);
957 }
958 }
959
960 if (!varyFailure) {
961 /*
962 * If its not a reply that we will re-forward, then
963 * allow the client to get it.
964 */
965 if (!fwd->reforwardableStatus(rep->sline.status()))
966 EBIT_CLR(entry->flags, ENTRY_FWD_HDR_WAIT);
967
968 switch (cacheableReply()) {
969
970 case 1:
971 entry->makePublic();
972 break;
973
974 case 0:
975 entry->makePrivate();
976 break;
977
978 case -1:
979
980 #if USE_HTTP_VIOLATIONS
981 if (Config.negativeTtl > 0)
982 entry->cacheNegatively();
983 else
984 #endif
985 entry->makePrivate();
986 break;
987
988 default:
989 assert(0);
990 break;
991 }
992 }
993
994 if (!ignoreCacheControl) {
995 if (rep->cache_control) {
996 // We are required to revalidate on many conditions.
997 // For security reasons we do so even if storage was caused by refresh_pattern ignore-* option
998
999 // CC:must-revalidate or CC:proxy-revalidate
1000 const bool ccMustRevalidate = (rep->cache_control->hasProxyRevalidate() || rep->cache_control->hasMustRevalidate());
1001
1002 // CC:no-cache (only if there are no parameters)
1003 const bool ccNoCacheNoParams = rep->cache_control->hasNoCacheWithoutParameters();
1004
1005 // CC:s-maxage=N
1006 const bool ccSMaxAge = rep->cache_control->hasSMaxAge();
1007
1008 // CC:private (yes, these can sometimes be stored)
1009 const bool ccPrivate = rep->cache_control->hasPrivate();
1010
1011 if (ccNoCacheNoParams || ccPrivate)
1012 EBIT_SET(entry->flags, ENTRY_REVALIDATE_ALWAYS);
1013 else if (ccMustRevalidate || ccSMaxAge)
1014 EBIT_SET(entry->flags, ENTRY_REVALIDATE_STALE);
1015 }
1016 #if USE_HTTP_VIOLATIONS // response header Pragma::no-cache is undefined in HTTP
1017 else {
1018 // Expensive calculation. So only do it IF the CC: header is not present.
1019
1020 /* HACK: Pragma: no-cache in _replies_ is not documented in HTTP,
1021 * but servers like "Active Imaging Webcast/2.0" sure do use it */
1022 if (rep->header.has(Http::HdrType::PRAGMA) &&
1023 rep->header.hasListMember(Http::HdrType::PRAGMA,"no-cache",','))
1024 EBIT_SET(entry->flags, ENTRY_REVALIDATE_ALWAYS);
1025 }
1026 #endif
1027 }
1028
1029 #if HEADERS_LOG
1030 headersLog(1, 0, request->method, rep);
1031
1032 #endif
1033
1034 ctx_exit(ctx);
1035 }
1036
1037 HttpStateData::ConnectionStatus
1038 HttpStateData::statusIfComplete() const
1039 {
1040 const HttpReply *rep = virginReply();
1041 /** \par
1042 * If the reply wants to close the connection, it takes precedence */
1043
1044 static SBuf close("close", 5);
1045 if (httpHeaderHasConnDir(&rep->header, close))
1046 return COMPLETE_NONPERSISTENT_MSG;
1047
1048 /** \par
1049 * If we didn't send a keep-alive request header, then this
1050 * can not be a persistent connection.
1051 */
1052 if (!flags.keepalive)
1053 return COMPLETE_NONPERSISTENT_MSG;
1054
1055 /** \par
1056 * If we haven't sent the whole request then this can not be a persistent
1057 * connection.
1058 */
1059 if (!flags.request_sent) {
1060 debugs(11, 2, "Request not yet fully sent " << request->method << ' ' << entry->url());
1061 return COMPLETE_NONPERSISTENT_MSG;
1062 }
1063
1064 /** \par
1065 * What does the reply have to say about keep-alive?
1066 */
1067 /**
1068 \bug XXX BUG?
1069 * If the origin server (HTTP/1.0) does not send a keep-alive
1070 * header, but keeps the connection open anyway, what happens?
1071 * We'll return here and http.c waits for an EOF before changing
1072 * store_status to STORE_OK. Combine this with ENTRY_FWD_HDR_WAIT
1073 * and an error status code, and we might have to wait until
1074 * the server times out the socket.
1075 */
1076 if (!rep->keep_alive)
1077 return COMPLETE_NONPERSISTENT_MSG;
1078
1079 return COMPLETE_PERSISTENT_MSG;
1080 }
1081
1082 HttpStateData::ConnectionStatus
1083 HttpStateData::persistentConnStatus() const
1084 {
1085 debugs(11, 3, HERE << serverConnection << " eof=" << eof);
1086 if (eof) // already reached EOF
1087 return COMPLETE_NONPERSISTENT_MSG;
1088
1089 /* If server fd is closing (but we have not been notified yet), stop Comm
1090 I/O to avoid assertions. TODO: Change Comm API to handle callers that
1091 want more I/O after async closing (usually initiated by others). */
1092 // XXX: add canReceive or s/canSend/canTalkToServer/
1093 if (!Comm::IsConnOpen(serverConnection))
1094 return COMPLETE_NONPERSISTENT_MSG;
1095
1096 /** \par
1097 * In chunked response we do not know the content length but we are absolutely
1098 * sure about the end of response, so we are calling the statusIfComplete to
1099 * decide if we can be persistant
1100 */
1101 if (lastChunk && flags.chunked)
1102 return statusIfComplete();
1103
1104 const HttpReply *vrep = virginReply();
1105 debugs(11, 5, "persistentConnStatus: content_length=" << vrep->content_length);
1106
1107 const int64_t clen = vrep->bodySize(request->method);
1108
1109 debugs(11, 5, "persistentConnStatus: clen=" << clen);
1110
1111 /* If the body size is unknown we must wait for EOF */
1112 if (clen < 0)
1113 return INCOMPLETE_MSG;
1114
1115 /** \par
1116 * If the body size is known, we must wait until we've gotten all of it. */
1117 if (clen > 0) {
1118 debugs(11,5, "payloadSeen=" << payloadSeen << " content_length=" << vrep->content_length);
1119
1120 if (payloadSeen < vrep->content_length)
1121 return INCOMPLETE_MSG;
1122
1123 if (payloadTruncated > 0) // already read more than needed
1124 return COMPLETE_NONPERSISTENT_MSG; // disable pconns
1125 }
1126
1127 /** \par
1128 * If there is no message body or we got it all, we can be persistent */
1129 return statusIfComplete();
1130 }
1131
1132 static void
1133 readDelayed(void *context, CommRead const &)
1134 {
1135 HttpStateData *state = static_cast<HttpStateData*>(context);
1136 state->flags.do_next_read = true;
1137 state->maybeReadVirginBody();
1138 }
1139
1140 void
1141 HttpStateData::readReply(const CommIoCbParams &io)
1142 {
1143 Must(!flags.do_next_read); // XXX: should have been set false by mayReadVirginBody()
1144 flags.do_next_read = false;
1145
1146 debugs(11, 5, io.conn);
1147
1148 // Bail out early on Comm::ERR_CLOSING - close handlers will tidy up for us
1149 if (io.flag == Comm::ERR_CLOSING) {
1150 debugs(11, 3, "http socket closing");
1151 return;
1152 }
1153
1154 if (EBIT_TEST(entry->flags, ENTRY_ABORTED)) {
1155 abortTransaction("store entry aborted while reading reply");
1156 return;
1157 }
1158
1159 Must(Comm::IsConnOpen(serverConnection));
1160 Must(io.conn->fd == serverConnection->fd);
1161
1162 /*
1163 * Don't reset the timeout value here. The value should be
1164 * counting Config.Timeout.request and applies to the request
1165 * as a whole, not individual read() calls.
1166 * Plus, it breaks our lame *HalfClosed() detection
1167 */
1168
1169 Must(maybeMakeSpaceAvailable(true));
1170 CommIoCbParams rd(this); // will be expanded with ReadNow results
1171 rd.conn = io.conn;
1172 rd.size = entry->bytesWanted(Range<size_t>(0, inBuf.spaceSize()));
1173
1174 if (rd.size <= 0) {
1175 assert(entry->mem_obj);
1176 AsyncCall::Pointer nilCall;
1177 entry->mem_obj->delayRead(DeferredRead(readDelayed, this, CommRead(io.conn, NULL, 0, nilCall)));
1178 return;
1179 }
1180
1181 switch (Comm::ReadNow(rd, inBuf)) {
1182 case Comm::INPROGRESS:
1183 if (inBuf.isEmpty())
1184 debugs(33, 2, io.conn << ": no data to process, " << xstrerr(rd.xerrno));
1185 flags.do_next_read = true;
1186 maybeReadVirginBody();
1187 return;
1188
1189 case Comm::OK:
1190 {
1191 payloadSeen += rd.size;
1192 #if USE_DELAY_POOLS
1193 DelayId delayId = entry->mem_obj->mostBytesAllowed();
1194 delayId.bytesIn(rd.size);
1195 #endif
1196
1197 statCounter.server.all.kbytes_in += rd.size;
1198 statCounter.server.http.kbytes_in += rd.size;
1199 ++ IOStats.Http.reads;
1200
1201 int bin = 0;
1202 for (int clen = rd.size - 1; clen; ++bin)
1203 clen >>= 1;
1204
1205 ++ IOStats.Http.read_hist[bin];
1206
1207 // update peer response time stats (%<pt)
1208 const timeval &sent = request->hier.peer_http_request_sent;
1209 if (sent.tv_sec)
1210 tvSub(request->hier.peer_response_time, sent, current_time);
1211 else
1212 request->hier.peer_response_time.tv_sec = -1;
1213 }
1214
1215 /* Continue to process previously read data */
1216 break;
1217
1218 case Comm::ENDFILE: // close detected by 0-byte read
1219 eof = 1;
1220 flags.do_next_read = false;
1221
1222 /* Continue to process previously read data */
1223 break;
1224
1225 // case Comm::COMM_ERROR:
1226 default: // no other flags should ever occur
1227 debugs(11, 2, io.conn << ": read failure: " << xstrerr(rd.xerrno));
1228 ErrorState *err = new ErrorState(ERR_READ_ERROR, Http::scBadGateway, fwd->request);
1229 err->xerrno = rd.xerrno;
1230 fwd->fail(err);
1231 flags.do_next_read = false;
1232 closeServer();
1233 mustStop("HttpStateData::readReply");
1234 return;
1235 }
1236
1237 /* Process next response from buffer */
1238 processReply();
1239 }
1240
1241 /// processes the already read and buffered response data, possibly after
1242 /// waiting for asynchronous 1xx control message processing
1243 void
1244 HttpStateData::processReply()
1245 {
1246
1247 if (flags.handling1xx) { // we came back after handling a 1xx response
1248 debugs(11, 5, HERE << "done with 1xx handling");
1249 flags.handling1xx = false;
1250 Must(!flags.headers_parsed);
1251 }
1252
1253 if (!flags.headers_parsed) { // have not parsed headers yet?
1254 PROF_start(HttpStateData_processReplyHeader);
1255 processReplyHeader();
1256 PROF_stop(HttpStateData_processReplyHeader);
1257
1258 if (!continueAfterParsingHeader()) // parsing error or need more data
1259 return; // TODO: send errors to ICAP
1260
1261 adaptOrFinalizeReply(); // may write to, abort, or "close" the entry
1262 }
1263
1264 // kick more reads if needed and/or process the response body, if any
1265 PROF_start(HttpStateData_processReplyBody);
1266 processReplyBody(); // may call serverComplete()
1267 PROF_stop(HttpStateData_processReplyBody);
1268 }
1269
1270 /**
1271 \retval true if we can continue with processing the body or doing ICAP.
1272 */
1273 bool
1274 HttpStateData::continueAfterParsingHeader()
1275 {
1276 if (flags.handling1xx) {
1277 debugs(11, 5, HERE << "wait for 1xx handling");
1278 Must(!flags.headers_parsed);
1279 return false;
1280 }
1281
1282 if (!flags.headers_parsed && !eof) {
1283 debugs(11, 9, "needs more at " << inBuf.length());
1284 flags.do_next_read = true;
1285 /** \retval false If we have not finished parsing the headers and may get more data.
1286 * Schedules more reads to retrieve the missing data.
1287 */
1288 maybeReadVirginBody(); // schedules all kinds of reads; TODO: rename
1289 return false;
1290 }
1291
1292 /** If we are done with parsing, check for errors */
1293
1294 err_type error = ERR_NONE;
1295
1296 if (flags.headers_parsed) { // parsed headers, possibly with errors
1297 // check for header parsing errors
1298 if (HttpReply *vrep = virginReply()) {
1299 const Http::StatusCode s = vrep->sline.status();
1300 const AnyP::ProtocolVersion &v = vrep->sline.version;
1301 if (s == Http::scInvalidHeader && v != Http::ProtocolVersion(0,9)) {
1302 debugs(11, DBG_IMPORTANT, "WARNING: HTTP: Invalid Response: Bad header encountered from " << entry->url() << " AKA " << request->url);
1303 error = ERR_INVALID_RESP;
1304 } else if (s == Http::scHeaderTooLarge) {
1305 fwd->dontRetry(true);
1306 error = ERR_TOO_BIG;
1307 } else if (vrep->header.conflictingContentLength()) {
1308 fwd->dontRetry(true);
1309 error = ERR_INVALID_RESP;
1310 } else {
1311 return true; // done parsing, got reply, and no error
1312 }
1313 } else {
1314 // parsed headers but got no reply
1315 debugs(11, DBG_IMPORTANT, "WARNING: HTTP: Invalid Response: No reply at all for " << entry->url() << " AKA " << request->url);
1316 error = ERR_INVALID_RESP;
1317 }
1318 } else {
1319 assert(eof);
1320 if (inBuf.length()) {
1321 error = ERR_INVALID_RESP;
1322 debugs(11, DBG_IMPORTANT, "WARNING: HTTP: Invalid Response: Headers did not parse at all for " << entry->url() << " AKA " << request->url);
1323 } else {
1324 error = ERR_ZERO_SIZE_OBJECT;
1325 debugs(11, (request->flags.accelerated?DBG_IMPORTANT:2), "WARNING: HTTP: Invalid Response: No object data received for " << entry->url() << " AKA " << request->url);
1326 }
1327 }
1328
1329 assert(error != ERR_NONE);
1330 entry->reset();
1331 fwd->fail(new ErrorState(error, Http::scBadGateway, fwd->request));
1332 flags.do_next_read = false;
1333 closeServer();
1334 mustStop("HttpStateData::continueAfterParsingHeader");
1335 return false; // quit on error
1336 }
1337
1338 /** truncate what we read if we read too much so that writeReplyBody()
1339 writes no more than what we should have read */
1340 void
1341 HttpStateData::truncateVirginBody()
1342 {
1343 assert(flags.headers_parsed);
1344
1345 HttpReply *vrep = virginReply();
1346 int64_t clen = -1;
1347 if (!vrep->expectingBody(request->method, clen) || clen < 0)
1348 return; // no body or a body of unknown size, including chunked
1349
1350 if (payloadSeen - payloadTruncated <= clen)
1351 return; // we did not read too much or already took care of the extras
1352
1353 if (const int64_t extras = payloadSeen - payloadTruncated - clen) {
1354 // server sent more that the advertised content length
1355 debugs(11, 5, "payloadSeen=" << payloadSeen <<
1356 " clen=" << clen << '/' << vrep->content_length <<
1357 " trucated=" << payloadTruncated << '+' << extras);
1358
1359 inBuf.chop(0, inBuf.length() - extras);
1360 payloadTruncated += extras;
1361 }
1362 }
1363
1364 /**
1365 * Call this when there is data from the origin server
1366 * which should be sent to either StoreEntry, or to ICAP...
1367 */
1368 void
1369 HttpStateData::writeReplyBody()
1370 {
1371 truncateVirginBody(); // if needed
1372 const char *data = inBuf.rawContent();
1373 int len = inBuf.length();
1374 addVirginReplyBody(data, len);
1375 inBuf.consume(len);
1376 }
1377
1378 bool
1379 HttpStateData::decodeAndWriteReplyBody()
1380 {
1381 const char *data = NULL;
1382 int len;
1383 bool wasThereAnException = false;
1384 assert(flags.chunked);
1385 assert(httpChunkDecoder);
1386 SQUID_ENTER_THROWING_CODE();
1387 MemBuf decodedData;
1388 decodedData.init();
1389 httpChunkDecoder->setPayloadBuffer(&decodedData);
1390 const bool doneParsing = httpChunkDecoder->parse(inBuf);
1391 inBuf = httpChunkDecoder->remaining(); // sync buffers after parse
1392 len = decodedData.contentSize();
1393 data=decodedData.content();
1394 addVirginReplyBody(data, len);
1395 if (doneParsing) {
1396 lastChunk = 1;
1397 flags.do_next_read = false;
1398 }
1399 SQUID_EXIT_THROWING_CODE(wasThereAnException);
1400 return wasThereAnException;
1401 }
1402
1403 /**
1404 * processReplyBody has two purposes:
1405 * 1 - take the reply body data, if any, and put it into either
1406 * the StoreEntry, or give it over to ICAP.
1407 * 2 - see if we made it to the end of the response (persistent
1408 * connections and such)
1409 */
1410 void
1411 HttpStateData::processReplyBody()
1412 {
1413 Ip::Address client_addr;
1414 bool ispinned = false;
1415
1416 if (!flags.headers_parsed) {
1417 flags.do_next_read = true;
1418 maybeReadVirginBody();
1419 return;
1420 }
1421
1422 #if USE_ADAPTATION
1423 debugs(11,5, HERE << "adaptationAccessCheckPending=" << adaptationAccessCheckPending);
1424 if (adaptationAccessCheckPending)
1425 return;
1426
1427 #endif
1428
1429 /*
1430 * At this point the reply headers have been parsed and consumed.
1431 * That means header content has been removed from readBuf and
1432 * it contains only body data.
1433 */
1434 if (entry->isAccepting()) {
1435 if (flags.chunked) {
1436 if (!decodeAndWriteReplyBody()) {
1437 flags.do_next_read = false;
1438 serverComplete();
1439 return;
1440 }
1441 } else
1442 writeReplyBody();
1443 }
1444
1445 // storing/sending methods like earlier adaptOrFinalizeReply() or
1446 // above writeReplyBody() may release/abort the store entry.
1447 if (EBIT_TEST(entry->flags, ENTRY_ABORTED)) {
1448 // TODO: In some cases (e.g., 304), we should keep persistent conn open.
1449 // Detect end-of-reply (and, hence, pool our idle pconn) earlier (ASAP).
1450 abortTransaction("store entry aborted while storing reply");
1451 return;
1452 } else
1453 switch (persistentConnStatus()) {
1454 case INCOMPLETE_MSG: {
1455 debugs(11, 5, "processReplyBody: INCOMPLETE_MSG from " << serverConnection);
1456 /* Wait for more data or EOF condition */
1457 AsyncCall::Pointer nil;
1458 if (flags.keepalive_broken) {
1459 commSetConnTimeout(serverConnection, 10, nil);
1460 } else {
1461 commSetConnTimeout(serverConnection, Config.Timeout.read, nil);
1462 }
1463
1464 flags.do_next_read = true;
1465 }
1466 break;
1467
1468 case COMPLETE_PERSISTENT_MSG:
1469 debugs(11, 5, "processReplyBody: COMPLETE_PERSISTENT_MSG from " << serverConnection);
1470 /* yes we have to clear all these! */
1471 commUnsetConnTimeout(serverConnection);
1472 flags.do_next_read = false;
1473
1474 comm_remove_close_handler(serverConnection->fd, closeHandler);
1475 closeHandler = NULL;
1476 fwd->unregister(serverConnection);
1477
1478 if (request->flags.spoofClientIp)
1479 client_addr = request->client_addr;
1480
1481 if (request->flags.pinned) {
1482 ispinned = true;
1483 } else if (request->flags.connectionAuth && request->flags.authSent) {
1484 ispinned = true;
1485 }
1486
1487 if (ispinned && request->clientConnectionManager.valid()) {
1488 request->clientConnectionManager->pinConnection(serverConnection, request.getRaw(), _peer,
1489 (request->flags.connectionAuth));
1490 } else {
1491 fwd->pconnPush(serverConnection, request->url.host());
1492 }
1493
1494 serverConnection = NULL;
1495 serverComplete();
1496 return;
1497
1498 case COMPLETE_NONPERSISTENT_MSG:
1499 debugs(11, 5, "processReplyBody: COMPLETE_NONPERSISTENT_MSG from " << serverConnection);
1500 serverComplete();
1501 return;
1502 }
1503
1504 maybeReadVirginBody();
1505 }
1506
1507 bool
1508 HttpStateData::mayReadVirginReplyBody() const
1509 {
1510 // TODO: Be more precise here. For example, if/when reading trailer, we may
1511 // not be doneWithServer() yet, but we should return false. Similarly, we
1512 // could still be writing the request body after receiving the whole reply.
1513 return !doneWithServer();
1514 }
1515
1516 void
1517 HttpStateData::maybeReadVirginBody()
1518 {
1519 // too late to read
1520 if (!Comm::IsConnOpen(serverConnection) || fd_table[serverConnection->fd].closing())
1521 return;
1522
1523 if (!maybeMakeSpaceAvailable(false))
1524 return;
1525
1526 // XXX: get rid of the do_next_read flag
1527 // check for the proper reasons preventing read(2)
1528 if (!flags.do_next_read)
1529 return;
1530
1531 flags.do_next_read = false;
1532
1533 // must not already be waiting for read(2) ...
1534 assert(!Comm::MonitorsRead(serverConnection->fd));
1535
1536 // wait for read(2) to be possible.
1537 typedef CommCbMemFunT<HttpStateData, CommIoCbParams> Dialer;
1538 AsyncCall::Pointer call = JobCallback(11, 5, Dialer, this, HttpStateData::readReply);
1539 Comm::Read(serverConnection, call);
1540 }
1541
1542 bool
1543 HttpStateData::maybeMakeSpaceAvailable(bool doGrow)
1544 {
1545 // how much we are allowed to buffer
1546 const int limitBuffer = (flags.headers_parsed ? Config.readAheadGap : Config.maxReplyHeaderSize);
1547
1548 if (limitBuffer < 0 || inBuf.length() >= (SBuf::size_type)limitBuffer) {
1549 // when buffer is at or over limit already
1550 debugs(11, 7, "wont read up to " << limitBuffer << ". buffer has (" << inBuf.length() << "/" << inBuf.spaceSize() << ") from " << serverConnection);
1551 debugs(11, DBG_DATA, "buffer has {" << inBuf << "}");
1552 // Process next response from buffer
1553 processReply();
1554 return false;
1555 }
1556
1557 // how much we want to read
1558 const size_t read_size = calcBufferSpaceToReserve(inBuf.spaceSize(), (limitBuffer - inBuf.length()));
1559
1560 if (!read_size) {
1561 debugs(11, 7, "wont read up to " << read_size << " into buffer (" << inBuf.length() << "/" << inBuf.spaceSize() << ") from " << serverConnection);
1562 return false;
1563 }
1564
1565 // just report whether we could grow or not, dont actually do it
1566 if (doGrow)
1567 return (read_size >= 2);
1568
1569 // we may need to grow the buffer
1570 inBuf.reserveSpace(read_size);
1571 debugs(11, 8, (!flags.do_next_read ? "wont" : "may") <<
1572 " read up to " << read_size << " bytes info buf(" << inBuf.length() << "/" << inBuf.spaceSize() <<
1573 ") from " << serverConnection);
1574
1575 return (inBuf.spaceSize() >= 2); // only read if there is 1+ bytes of space available
1576 }
1577
1578 /// called after writing the very last request byte (body, last-chunk, etc)
1579 void
1580 HttpStateData::wroteLast(const CommIoCbParams &io)
1581 {
1582 debugs(11, 5, HERE << serverConnection << ": size " << io.size << ": errflag " << io.flag << ".");
1583 #if URL_CHECKSUM_DEBUG
1584
1585 entry->mem_obj->checkUrlChecksum();
1586 #endif
1587
1588 if (io.size > 0) {
1589 fd_bytes(io.fd, io.size, FD_WRITE);
1590 statCounter.server.all.kbytes_out += io.size;
1591 statCounter.server.http.kbytes_out += io.size;
1592 }
1593
1594 if (io.flag == Comm::ERR_CLOSING)
1595 return;
1596
1597 if (io.flag) {
1598 ErrorState *err = new ErrorState(ERR_WRITE_ERROR, Http::scBadGateway, fwd->request);
1599 err->xerrno = io.xerrno;
1600 fwd->fail(err);
1601 closeServer();
1602 mustStop("HttpStateData::wroteLast");
1603 return;
1604 }
1605
1606 sendComplete();
1607 }
1608
1609 /// successfully wrote the entire request (including body, last-chunk, etc.)
1610 void
1611 HttpStateData::sendComplete()
1612 {
1613 /*
1614 * Set the read timeout here because it hasn't been set yet.
1615 * We only set the read timeout after the request has been
1616 * fully written to the peer. If we start the timeout
1617 * after connection establishment, then we are likely to hit
1618 * the timeout for POST/PUT requests that have very large
1619 * request bodies.
1620 */
1621 typedef CommCbMemFunT<HttpStateData, CommTimeoutCbParams> TimeoutDialer;
1622 AsyncCall::Pointer timeoutCall = JobCallback(11, 5,
1623 TimeoutDialer, this, HttpStateData::httpTimeout);
1624
1625 commSetConnTimeout(serverConnection, Config.Timeout.read, timeoutCall);
1626 flags.request_sent = true;
1627 request->hier.peer_http_request_sent = current_time;
1628 }
1629
1630 void
1631 HttpStateData::closeServer()
1632 {
1633 debugs(11,5, HERE << "closing HTTP server " << serverConnection << " this " << this);
1634
1635 if (Comm::IsConnOpen(serverConnection)) {
1636 fwd->unregister(serverConnection);
1637 comm_remove_close_handler(serverConnection->fd, closeHandler);
1638 closeHandler = NULL;
1639 serverConnection->close();
1640 }
1641 }
1642
1643 bool
1644 HttpStateData::doneWithServer() const
1645 {
1646 return !Comm::IsConnOpen(serverConnection);
1647 }
1648
1649 /*
1650 * Fixup authentication request headers for special cases
1651 */
1652 static void
1653 httpFixupAuthentication(HttpRequest * request, const HttpHeader * hdr_in, HttpHeader * hdr_out, const Http::StateFlags &flags)
1654 {
1655 Http::HdrType header = flags.originpeer ? Http::HdrType::AUTHORIZATION : Http::HdrType::PROXY_AUTHORIZATION;
1656
1657 /* Nothing to do unless we are forwarding to a peer */
1658 if (!request->flags.proxying)
1659 return;
1660
1661 /* Needs to be explicitly enabled */
1662 if (!request->peer_login)
1663 return;
1664
1665 /* Maybe already dealt with? */
1666 if (hdr_out->has(header))
1667 return;
1668
1669 /* Nothing to do here for PASSTHRU */
1670 if (strcmp(request->peer_login, "PASSTHRU") == 0)
1671 return;
1672
1673 /* PROXYPASS is a special case, single-signon to servers with the proxy password (basic only) */
1674 if (flags.originpeer && strcmp(request->peer_login, "PROXYPASS") == 0 && hdr_in->has(Http::HdrType::PROXY_AUTHORIZATION)) {
1675 const char *auth = hdr_in->getStr(Http::HdrType::PROXY_AUTHORIZATION);
1676
1677 if (auth && strncasecmp(auth, "basic ", 6) == 0) {
1678 hdr_out->putStr(header, auth);
1679 return;
1680 }
1681 }
1682
1683 uint8_t loginbuf[base64_encode_len(MAX_LOGIN_SZ)];
1684 size_t blen;
1685 struct base64_encode_ctx ctx;
1686 base64_encode_init(&ctx);
1687
1688 /* Special mode to pass the username to the upstream cache */
1689 if (*request->peer_login == '*') {
1690 const char *username = "-";
1691
1692 if (request->extacl_user.size())
1693 username = request->extacl_user.termedBuf();
1694 #if USE_AUTH
1695 else if (request->auth_user_request != NULL)
1696 username = request->auth_user_request->username();
1697 #endif
1698
1699 blen = base64_encode_update(&ctx, loginbuf, strlen(username), reinterpret_cast<const uint8_t*>(username));
1700 blen += base64_encode_update(&ctx, loginbuf+blen, strlen(request->peer_login +1), reinterpret_cast<const uint8_t*>(request->peer_login +1));
1701 blen += base64_encode_final(&ctx, loginbuf+blen);
1702 httpHeaderPutStrf(hdr_out, header, "Basic %.*s", (int)blen, loginbuf);
1703 return;
1704 }
1705
1706 /* external_acl provided credentials */
1707 if (request->extacl_user.size() && request->extacl_passwd.size() &&
1708 (strcmp(request->peer_login, "PASS") == 0 ||
1709 strcmp(request->peer_login, "PROXYPASS") == 0)) {
1710
1711 blen = base64_encode_update(&ctx, loginbuf, request->extacl_user.size(), reinterpret_cast<const uint8_t*>(request->extacl_user.rawBuf()));
1712 blen += base64_encode_update(&ctx, loginbuf+blen, 1, reinterpret_cast<const uint8_t*>(":"));
1713 blen += base64_encode_update(&ctx, loginbuf+blen, request->extacl_passwd.size(), reinterpret_cast<const uint8_t*>(request->extacl_passwd.rawBuf()));
1714 blen += base64_encode_final(&ctx, loginbuf+blen);
1715 httpHeaderPutStrf(hdr_out, header, "Basic %.*s", (int)blen, loginbuf);
1716 return;
1717 }
1718 // if no external user credentials are available to fake authentication with PASS acts like PASSTHRU
1719 if (strcmp(request->peer_login, "PASS") == 0)
1720 return;
1721
1722 /* Kerberos login to peer */
1723 #if HAVE_AUTH_MODULE_NEGOTIATE && HAVE_KRB5 && HAVE_GSSAPI
1724 if (strncmp(request->peer_login, "NEGOTIATE",strlen("NEGOTIATE")) == 0) {
1725 char *Token=NULL;
1726 char *PrincipalName=NULL,*p;
1727 int negotiate_flags = 0;
1728
1729 if ((p=strchr(request->peer_login,':')) != NULL ) {
1730 PrincipalName=++p;
1731 }
1732 if (request->flags.auth_no_keytab) {
1733 negotiate_flags |= PEER_PROXY_NEGOTIATE_NOKEYTAB;
1734 }
1735 Token = peer_proxy_negotiate_auth(PrincipalName, request->peer_host, negotiate_flags);
1736 if (Token) {
1737 httpHeaderPutStrf(hdr_out, header, "Negotiate %s",Token);
1738 }
1739 return;
1740 }
1741 #endif /* HAVE_KRB5 && HAVE_GSSAPI */
1742
1743 blen = base64_encode_update(&ctx, loginbuf, strlen(request->peer_login), reinterpret_cast<const uint8_t*>(request->peer_login));
1744 blen += base64_encode_final(&ctx, loginbuf+blen);
1745 httpHeaderPutStrf(hdr_out, header, "Basic %.*s", (int)blen, loginbuf);
1746 return;
1747 }
1748
1749 /*
1750 * build request headers and append them to a given MemBuf
1751 * used by buildRequestPrefix()
1752 * note: initialised the HttpHeader, the caller is responsible for Clean()-ing
1753 */
1754 void
1755 HttpStateData::httpBuildRequestHeader(HttpRequest * request,
1756 StoreEntry * entry,
1757 const AccessLogEntryPointer &al,
1758 HttpHeader * hdr_out,
1759 const Http::StateFlags &flags)
1760 {
1761 /* building buffer for complex strings */
1762 #define BBUF_SZ (MAX_URL+32)
1763 LOCAL_ARRAY(char, bbuf, BBUF_SZ);
1764 LOCAL_ARRAY(char, ntoabuf, MAX_IPSTRLEN);
1765 const HttpHeader *hdr_in = &request->header;
1766 const HttpHeaderEntry *e = NULL;
1767 HttpHeaderPos pos = HttpHeaderInitPos;
1768 assert (hdr_out->owner == hoRequest);
1769
1770 /* use our IMS header if the cached entry has Last-Modified time */
1771 if (request->lastmod > -1)
1772 hdr_out->putTime(Http::HdrType::IF_MODIFIED_SINCE, request->lastmod);
1773
1774 // Add our own If-None-Match field if the cached entry has a strong ETag.
1775 // copyOneHeaderFromClientsideRequestToUpstreamRequest() adds client ones.
1776 if (request->etag.size() > 0) {
1777 hdr_out->addEntry(new HttpHeaderEntry(Http::HdrType::IF_NONE_MATCH, SBuf(),
1778 request->etag.termedBuf()));
1779 }
1780
1781 bool we_do_ranges = decideIfWeDoRanges (request);
1782
1783 String strConnection (hdr_in->getList(Http::HdrType::CONNECTION));
1784
1785 while ((e = hdr_in->getEntry(&pos)))
1786 copyOneHeaderFromClientsideRequestToUpstreamRequest(e, strConnection, request, hdr_out, we_do_ranges, flags);
1787
1788 /* Abstraction break: We should interpret multipart/byterange responses
1789 * into offset-length data, and this works around our inability to do so.
1790 */
1791 if (!we_do_ranges && request->multipartRangeRequest()) {
1792 /* don't cache the result */
1793 request->flags.cachable = false;
1794 /* pretend it's not a range request */
1795 request->ignoreRange("want to request the whole object");
1796 request->flags.isRanged = false;
1797 }
1798
1799 hdr_out->addVia(request->http_ver, hdr_in);
1800
1801 if (request->flags.accelerated) {
1802 /* Append Surrogate-Capabilities */
1803 String strSurrogate(hdr_in->getList(Http::HdrType::SURROGATE_CAPABILITY));
1804 #if USE_SQUID_ESI
1805 snprintf(bbuf, BBUF_SZ, "%s=\"Surrogate/1.0 ESI/1.0\"", Config.Accel.surrogate_id);
1806 #else
1807 snprintf(bbuf, BBUF_SZ, "%s=\"Surrogate/1.0\"", Config.Accel.surrogate_id);
1808 #endif
1809 strListAdd(&strSurrogate, bbuf, ',');
1810 hdr_out->putStr(Http::HdrType::SURROGATE_CAPABILITY, strSurrogate.termedBuf());
1811 }
1812
1813 /** \pre Handle X-Forwarded-For */
1814 if (strcmp(opt_forwarded_for, "delete") != 0) {
1815
1816 String strFwd = hdr_in->getList(Http::HdrType::X_FORWARDED_FOR);
1817
1818 // if we cannot double strFwd size, then it grew past 50% of the limit
1819 if (!strFwd.canGrowBy(strFwd.size())) {
1820 // There is probably a forwarding loop with Via detection disabled.
1821 // If we do nothing, String will assert on overflow soon.
1822 // TODO: Terminate all transactions with huge XFF?
1823 strFwd = "error";
1824
1825 static int warnedCount = 0;
1826 if (warnedCount++ < 100) {
1827 const SBuf url(entry ? SBuf(entry->url()) : request->effectiveRequestUri());
1828 debugs(11, DBG_IMPORTANT, "Warning: likely forwarding loop with " << url);
1829 }
1830 }
1831
1832 if (strcmp(opt_forwarded_for, "on") == 0) {
1833 /** If set to ON - append client IP or 'unknown'. */
1834 if ( request->client_addr.isNoAddr() )
1835 strListAdd(&strFwd, "unknown", ',');
1836 else
1837 strListAdd(&strFwd, request->client_addr.toStr(ntoabuf, MAX_IPSTRLEN), ',');
1838 } else if (strcmp(opt_forwarded_for, "off") == 0) {
1839 /** If set to OFF - append 'unknown'. */
1840 strListAdd(&strFwd, "unknown", ',');
1841 } else if (strcmp(opt_forwarded_for, "transparent") == 0) {
1842 /** If set to TRANSPARENT - pass through unchanged. */
1843 } else if (strcmp(opt_forwarded_for, "truncate") == 0) {
1844 /** If set to TRUNCATE - drop existing list and replace with client IP or 'unknown'. */
1845 if ( request->client_addr.isNoAddr() )
1846 strFwd = "unknown";
1847 else
1848 strFwd = request->client_addr.toStr(ntoabuf, MAX_IPSTRLEN);
1849 }
1850 if (strFwd.size() > 0)
1851 hdr_out->putStr(Http::HdrType::X_FORWARDED_FOR, strFwd.termedBuf());
1852 }
1853 /** If set to DELETE - do not copy through. */
1854
1855 /* append Host if not there already */
1856 if (!hdr_out->has(Http::HdrType::HOST)) {
1857 if (request->peer_domain) {
1858 hdr_out->putStr(Http::HdrType::HOST, request->peer_domain);
1859 } else {
1860 SBuf authority = request->url.authority();
1861 hdr_out->putStr(Http::HdrType::HOST, authority.c_str());
1862 }
1863 }
1864
1865 /* append Authorization if known in URL, not in header and going direct */
1866 if (!hdr_out->has(Http::HdrType::AUTHORIZATION)) {
1867 if (!request->flags.proxying && !request->url.userInfo().isEmpty()) {
1868 static uint8_t result[base64_encode_len(MAX_URL*2)]; // should be big enough for a single URI segment
1869 struct base64_encode_ctx ctx;
1870 base64_encode_init(&ctx);
1871 size_t blen = base64_encode_update(&ctx, result, request->url.userInfo().length(), reinterpret_cast<const uint8_t*>(request->url.userInfo().rawContent()));
1872 blen += base64_encode_final(&ctx, result+blen);
1873 result[blen] = '\0';
1874 if (blen)
1875 httpHeaderPutStrf(hdr_out, Http::HdrType::AUTHORIZATION, "Basic %.*s", (int)blen, result);
1876 }
1877 }
1878
1879 /* Fixup (Proxy-)Authorization special cases. Plain relaying dealt with above */
1880 httpFixupAuthentication(request, hdr_in, hdr_out, flags);
1881
1882 /* append Cache-Control, add max-age if not there already */
1883 {
1884 HttpHdrCc *cc = hdr_in->getCc();
1885
1886 if (!cc)
1887 cc = new HttpHdrCc();
1888
1889 #if 0 /* see bug 2330 */
1890 /* Set no-cache if determined needed but not found */
1891 if (request->flags.nocache)
1892 EBIT_SET(cc->mask, HttpHdrCcType::CC_NO_CACHE);
1893 #endif
1894
1895 /* Add max-age only without no-cache */
1896 if (!cc->hasMaxAge() && !cc->hasNoCache()) {
1897 // XXX: performance regression. c_str() reallocates
1898 SBuf tmp(request->effectiveRequestUri());
1899 cc->maxAge(getMaxAge(entry ? entry->url() : tmp.c_str()));
1900 }
1901
1902 /* Enforce sibling relations */
1903 if (flags.only_if_cached)
1904 cc->onlyIfCached(true);
1905
1906 hdr_out->putCc(cc);
1907
1908 delete cc;
1909 }
1910
1911 /* maybe append Connection: keep-alive */
1912 if (flags.keepalive) {
1913 hdr_out->putStr(Http::HdrType::CONNECTION, "keep-alive");
1914 }
1915
1916 /* append Front-End-Https */
1917 if (flags.front_end_https) {
1918 if (flags.front_end_https == 1 || request->url.getScheme() == AnyP::PROTO_HTTPS)
1919 hdr_out->putStr(Http::HdrType::FRONT_END_HTTPS, "On");
1920 }
1921
1922 if (flags.chunked_request) {
1923 // Do not just copy the original value so that if the client-side
1924 // starts decode other encodings, this code may remain valid.
1925 hdr_out->putStr(Http::HdrType::TRANSFER_ENCODING, "chunked");
1926 }
1927
1928 /* Now mangle the headers. */
1929 httpHdrMangleList(hdr_out, request, al, ROR_REQUEST);
1930
1931 strConnection.clean();
1932 }
1933
1934 /**
1935 * Decides whether a particular header may be cloned from the received Clients request
1936 * to our outgoing fetch request.
1937 */
1938 void
1939 copyOneHeaderFromClientsideRequestToUpstreamRequest(const HttpHeaderEntry *e, const String strConnection, const HttpRequest * request, HttpHeader * hdr_out, const int we_do_ranges, const Http::StateFlags &flags)
1940 {
1941 debugs(11, 5, "httpBuildRequestHeader: " << e->name << ": " << e->value );
1942
1943 switch (e->id) {
1944
1945 /** \par RFC 2616 sect 13.5.1 - Hop-by-Hop headers which Squid should not pass on. */
1946
1947 case Http::HdrType::PROXY_AUTHORIZATION:
1948 /** \par Proxy-Authorization:
1949 * Only pass on proxy authentication to peers for which
1950 * authentication forwarding is explicitly enabled
1951 */
1952 if (!flags.originpeer && flags.proxying && request->peer_login &&
1953 (strcmp(request->peer_login, "PASS") == 0 ||
1954 strcmp(request->peer_login, "PROXYPASS") == 0 ||
1955 strcmp(request->peer_login, "PASSTHRU") == 0)) {
1956 hdr_out->addEntry(e->clone());
1957 }
1958 break;
1959
1960 /** \par RFC 2616 sect 13.5.1 - Hop-by-Hop headers which Squid does not pass on. */
1961
1962 case Http::HdrType::CONNECTION: /** \par Connection: */
1963 case Http::HdrType::TE: /** \par TE: */
1964 case Http::HdrType::KEEP_ALIVE: /** \par Keep-Alive: */
1965 case Http::HdrType::PROXY_AUTHENTICATE: /** \par Proxy-Authenticate: */
1966 case Http::HdrType::TRAILER: /** \par Trailer: */
1967 case Http::HdrType::UPGRADE: /** \par Upgrade: */
1968 case Http::HdrType::TRANSFER_ENCODING: /** \par Transfer-Encoding: */
1969 break;
1970
1971 /** \par OTHER headers I haven't bothered to track down yet. */
1972
1973 case Http::HdrType::AUTHORIZATION:
1974 /** \par WWW-Authorization:
1975 * Pass on WWW authentication */
1976
1977 if (!flags.originpeer) {
1978 hdr_out->addEntry(e->clone());
1979 } else {
1980 /** \note In accelerators, only forward authentication if enabled
1981 * (see also httpFixupAuthentication for special cases)
1982 */
1983 if (request->peer_login &&
1984 (strcmp(request->peer_login, "PASS") == 0 ||
1985 strcmp(request->peer_login, "PASSTHRU") == 0 ||
1986 strcmp(request->peer_login, "PROXYPASS") == 0)) {
1987 hdr_out->addEntry(e->clone());
1988 }
1989 }
1990
1991 break;
1992
1993 case Http::HdrType::HOST:
1994 /** \par Host:
1995 * Normally Squid rewrites the Host: header.
1996 * However, there is one case when we don't: If the URL
1997 * went through our redirector and the admin configured
1998 * 'redir_rewrites_host' to be off.
1999 */
2000 if (request->peer_domain)
2001 hdr_out->putStr(Http::HdrType::HOST, request->peer_domain);
2002 else if (request->flags.redirected && !Config.onoff.redir_rewrites_host)
2003 hdr_out->addEntry(e->clone());
2004 else {
2005 SBuf authority = request->url.authority();
2006 hdr_out->putStr(Http::HdrType::HOST, authority.c_str());
2007 }
2008
2009 break;
2010
2011 case Http::HdrType::IF_MODIFIED_SINCE:
2012 /** \par If-Modified-Since:
2013 * append unless we added our own,
2014 * but only if cache_miss_revalidate is enabled, or
2015 * the request is not cacheable, or
2016 * the request contains authentication credentials.
2017 * \note at most one client's If-Modified-Since header can pass through
2018 */
2019 // XXX: need to check and cleanup the auth case so cacheable auth requests get cached.
2020 if (hdr_out->has(Http::HdrType::IF_MODIFIED_SINCE))
2021 break;
2022 else if (Config.onoff.cache_miss_revalidate || !request->flags.cachable || request->flags.auth)
2023 hdr_out->addEntry(e->clone());
2024 break;
2025
2026 case Http::HdrType::IF_NONE_MATCH:
2027 /** \par If-None-Match:
2028 * append if the wildcard '*' special case value is present, or
2029 * cache_miss_revalidate is disabled, or
2030 * the request is not cacheable in this proxy, or
2031 * the request contains authentication credentials.
2032 * \note this header lists a set of responses for the server to elide sending. Squid added values are extending that set.
2033 */
2034 // XXX: need to check and cleanup the auth case so cacheable auth requests get cached.
2035 if (hdr_out->hasListMember(Http::HdrType::IF_MATCH, "*", ',') || Config.onoff.cache_miss_revalidate || !request->flags.cachable || request->flags.auth)
2036 hdr_out->addEntry(e->clone());
2037 break;
2038
2039 case Http::HdrType::MAX_FORWARDS:
2040 /** \par Max-Forwards:
2041 * pass only on TRACE or OPTIONS requests */
2042 if (request->method == Http::METHOD_TRACE || request->method == Http::METHOD_OPTIONS) {
2043 const int64_t hops = e->getInt64();
2044
2045 if (hops > 0)
2046 hdr_out->putInt64(Http::HdrType::MAX_FORWARDS, hops - 1);
2047 }
2048
2049 break;
2050
2051 case Http::HdrType::VIA:
2052 /** \par Via:
2053 * If Via is disabled then forward any received header as-is.
2054 * Otherwise leave for explicit updated addition later. */
2055
2056 if (!Config.onoff.via)
2057 hdr_out->addEntry(e->clone());
2058
2059 break;
2060
2061 case Http::HdrType::RANGE:
2062
2063 case Http::HdrType::IF_RANGE:
2064
2065 case Http::HdrType::REQUEST_RANGE:
2066 /** \par Range:, If-Range:, Request-Range:
2067 * Only pass if we accept ranges */
2068 if (!we_do_ranges)
2069 hdr_out->addEntry(e->clone());
2070
2071 break;
2072
2073 case Http::HdrType::PROXY_CONNECTION: // SHOULD ignore. But doing so breaks things.
2074 break;
2075
2076 case Http::HdrType::CONTENT_LENGTH:
2077 // pass through unless we chunk; also, keeping this away from default
2078 // prevents request smuggling via Connection: Content-Length tricks
2079 if (!flags.chunked_request)
2080 hdr_out->addEntry(e->clone());
2081 break;
2082
2083 case Http::HdrType::X_FORWARDED_FOR:
2084
2085 case Http::HdrType::CACHE_CONTROL:
2086 /** \par X-Forwarded-For:, Cache-Control:
2087 * handled specially by Squid, so leave off for now.
2088 * append these after the loop if needed */
2089 break;
2090
2091 case Http::HdrType::FRONT_END_HTTPS:
2092 /** \par Front-End-Https:
2093 * Pass thru only if peer is configured with front-end-https */
2094 if (!flags.front_end_https)
2095 hdr_out->addEntry(e->clone());
2096
2097 break;
2098
2099 default:
2100 /** \par default.
2101 * pass on all other header fields
2102 * which are NOT listed by the special Connection: header. */
2103 if (strConnection.size()>0 && strListIsMember(&strConnection, e->name, ',')) {
2104 debugs(11, 2, "'" << e->name << "' header cropped by Connection: definition");
2105 return;
2106 }
2107
2108 hdr_out->addEntry(e->clone());
2109 }
2110 }
2111
2112 bool
2113 HttpStateData::decideIfWeDoRanges (HttpRequest * request)
2114 {
2115 bool result = true;
2116 /* decide if we want to do Ranges ourselves
2117 * and fetch the whole object now)
2118 * We want to handle Ranges ourselves iff
2119 * - we can actually parse client Range specs
2120 * - the specs are expected to be simple enough (e.g. no out-of-order ranges)
2121 * - reply will be cachable
2122 * (If the reply will be uncachable we have to throw it away after
2123 * serving this request, so it is better to forward ranges to
2124 * the server and fetch only the requested content)
2125 */
2126
2127 int64_t roffLimit = request->getRangeOffsetLimit();
2128
2129 if (NULL == request->range || !request->flags.cachable
2130 || request->range->offsetLimitExceeded(roffLimit) || request->flags.connectionAuth)
2131 result = false;
2132
2133 debugs(11, 8, "decideIfWeDoRanges: range specs: " <<
2134 request->range << ", cachable: " <<
2135 request->flags.cachable << "; we_do_ranges: " << result);
2136
2137 return result;
2138 }
2139
2140 /* build request prefix and append it to a given MemBuf;
2141 * return the length of the prefix */
2142 mb_size_t
2143 HttpStateData::buildRequestPrefix(MemBuf * mb)
2144 {
2145 const int offset = mb->size;
2146 /* Uses a local httpver variable to print the HTTP label
2147 * since the HttpRequest may have an older version label.
2148 * XXX: This could create protocol bugs as the headers sent and
2149 * flow control should all be based on the HttpRequest version
2150 * not the one we are sending. Needs checking.
2151 */
2152 const AnyP::ProtocolVersion httpver = Http::ProtocolVersion();
2153 const SBuf url(_peer && !_peer->options.originserver ? request->effectiveRequestUri() : request->url.path());
2154 mb->appendf(SQUIDSBUFPH " " SQUIDSBUFPH " %s/%d.%d\r\n",
2155 SQUIDSBUFPRINT(request->method.image()),
2156 SQUIDSBUFPRINT(url),
2157 AnyP::ProtocolType_str[httpver.protocol],
2158 httpver.major,httpver.minor);
2159 /* build and pack headers */
2160 {
2161 HttpHeader hdr(hoRequest);
2162 httpBuildRequestHeader(request.getRaw(), entry, fwd->al, &hdr, flags);
2163
2164 if (request->flags.pinned && request->flags.connectionAuth)
2165 request->flags.authSent = true;
2166 else if (hdr.has(Http::HdrType::AUTHORIZATION))
2167 request->flags.authSent = true;
2168
2169 hdr.packInto(mb);
2170 hdr.clean();
2171 }
2172 /* append header terminator */
2173 mb->append(crlf, 2);
2174 return mb->size - offset;
2175 }
2176
2177 /* This will be called when connect completes. Write request. */
2178 bool
2179 HttpStateData::sendRequest()
2180 {
2181 MemBuf mb;
2182
2183 debugs(11, 5, HERE << serverConnection << ", request " << request << ", this " << this << ".");
2184
2185 if (!Comm::IsConnOpen(serverConnection)) {
2186 debugs(11,3, HERE << "cannot send request to closing " << serverConnection);
2187 assert(closeHandler != NULL);
2188 return false;
2189 }
2190
2191 typedef CommCbMemFunT<HttpStateData, CommTimeoutCbParams> TimeoutDialer;
2192 AsyncCall::Pointer timeoutCall = JobCallback(11, 5,
2193 TimeoutDialer, this, HttpStateData::httpTimeout);
2194 commSetConnTimeout(serverConnection, Config.Timeout.lifetime, timeoutCall);
2195 flags.do_next_read = true;
2196 maybeReadVirginBody();
2197
2198 if (request->body_pipe != NULL) {
2199 if (!startRequestBodyFlow()) // register to receive body data
2200 return false;
2201 typedef CommCbMemFunT<HttpStateData, CommIoCbParams> Dialer;
2202 requestSender = JobCallback(11,5,
2203 Dialer, this, HttpStateData::sentRequestBody);
2204
2205 Must(!flags.chunked_request);
2206 // use chunked encoding if we do not know the length
2207 if (request->content_length < 0)
2208 flags.chunked_request = true;
2209 } else {
2210 assert(!requestBodySource);
2211 typedef CommCbMemFunT<HttpStateData, CommIoCbParams> Dialer;
2212 requestSender = JobCallback(11,5,
2213 Dialer, this, HttpStateData::wroteLast);
2214 }
2215
2216 flags.originpeer = (_peer != NULL && _peer->options.originserver);
2217 flags.proxying = (_peer != NULL && !flags.originpeer);
2218
2219 /*
2220 * Is keep-alive okay for all request methods?
2221 */
2222 if (request->flags.mustKeepalive)
2223 flags.keepalive = true;
2224 else if (request->flags.pinned)
2225 flags.keepalive = request->persistent();
2226 else if (!Config.onoff.server_pconns)
2227 flags.keepalive = false;
2228 else if (_peer == NULL)
2229 flags.keepalive = true;
2230 else if (_peer->stats.n_keepalives_sent < 10)
2231 flags.keepalive = true;
2232 else if ((double) _peer->stats.n_keepalives_recv /
2233 (double) _peer->stats.n_keepalives_sent > 0.50)
2234 flags.keepalive = true;
2235
2236 if (_peer) {
2237 /*The old code here was
2238 if (neighborType(_peer, request->url) == PEER_SIBLING && ...
2239 which is equivalent to:
2240 if (neighborType(_peer, URL()) == PEER_SIBLING && ...
2241 or better:
2242 if (((_peer->type == PEER_MULTICAST && p->options.mcast_siblings) ||
2243 _peer->type == PEER_SIBLINGS ) && _peer->options.allow_miss)
2244 flags.only_if_cached = 1;
2245
2246 But I suppose it was a bug
2247 */
2248 if (neighborType(_peer, request->url) == PEER_SIBLING && !_peer->options.allow_miss)
2249 flags.only_if_cached = true;
2250
2251 flags.front_end_https = _peer->front_end_https;
2252 }
2253
2254 mb.init();
2255 request->peer_host=_peer?_peer->host:NULL;
2256 buildRequestPrefix(&mb);
2257
2258 debugs(11, 2, "HTTP Server " << serverConnection);
2259 debugs(11, 2, "HTTP Server REQUEST:\n---------\n" << mb.buf << "\n----------");
2260
2261 Comm::Write(serverConnection, &mb, requestSender);
2262 return true;
2263 }
2264
2265 bool
2266 HttpStateData::getMoreRequestBody(MemBuf &buf)
2267 {
2268 // parent's implementation can handle the no-encoding case
2269 if (!flags.chunked_request)
2270 return Client::getMoreRequestBody(buf);
2271
2272 MemBuf raw;
2273
2274 Must(requestBodySource != NULL);
2275 if (!requestBodySource->getMoreData(raw))
2276 return false; // no request body bytes to chunk yet
2277
2278 // optimization: pre-allocate buffer size that should be enough
2279 const mb_size_t rawDataSize = raw.contentSize();
2280 // we may need to send: hex-chunk-size CRLF raw-data CRLF last-chunk
2281 buf.init(16 + 2 + rawDataSize + 2 + 5, raw.max_capacity);
2282
2283 buf.appendf("%x\r\n", static_cast<unsigned int>(rawDataSize));
2284 buf.append(raw.content(), rawDataSize);
2285 buf.append("\r\n", 2);
2286
2287 Must(rawDataSize > 0); // we did not accidently created last-chunk above
2288
2289 // Do not send last-chunk unless we successfully received everything
2290 if (receivedWholeRequestBody) {
2291 Must(!flags.sentLastChunk);
2292 flags.sentLastChunk = true;
2293 buf.append("0\r\n\r\n", 5);
2294 }
2295
2296 return true;
2297 }
2298
2299 void
2300 httpStart(FwdState *fwd)
2301 {
2302 debugs(11, 3, fwd->request->method << ' ' << fwd->entry->url());
2303 AsyncJob::Start(new HttpStateData(fwd));
2304 }
2305
2306 void
2307 HttpStateData::start()
2308 {
2309 if (!sendRequest()) {
2310 debugs(11, 3, "httpStart: aborted");
2311 mustStop("HttpStateData::start failed");
2312 return;
2313 }
2314
2315 ++ statCounter.server.all.requests;
2316 ++ statCounter.server.http.requests;
2317
2318 /*
2319 * We used to set the read timeout here, but not any more.
2320 * Now its set in httpSendComplete() after the full request,
2321 * including request body, has been written to the server.
2322 */
2323 }
2324
2325 /// if broken posts are enabled for the request, try to fix and return true
2326 bool
2327 HttpStateData::finishingBrokenPost()
2328 {
2329 #if USE_HTTP_VIOLATIONS
2330 if (!Config.accessList.brokenPosts) {
2331 debugs(11, 5, HERE << "No brokenPosts list");
2332 return false;
2333 }
2334
2335 ACLFilledChecklist ch(Config.accessList.brokenPosts, originalRequest().getRaw());
2336 if (ch.fastCheck() != ACCESS_ALLOWED) {
2337 debugs(11, 5, HERE << "didn't match brokenPosts");
2338 return false;
2339 }
2340
2341 if (!Comm::IsConnOpen(serverConnection)) {
2342 debugs(11, 3, HERE << "ignoring broken POST for closed " << serverConnection);
2343 assert(closeHandler != NULL);
2344 return true; // prevent caller from proceeding as if nothing happened
2345 }
2346
2347 debugs(11, 3, "finishingBrokenPost: fixing broken POST");
2348 typedef CommCbMemFunT<HttpStateData, CommIoCbParams> Dialer;
2349 requestSender = JobCallback(11,5,
2350 Dialer, this, HttpStateData::wroteLast);
2351 Comm::Write(serverConnection, "\r\n", 2, requestSender, NULL);
2352 return true;
2353 #else
2354 return false;
2355 #endif /* USE_HTTP_VIOLATIONS */
2356 }
2357
2358 /// if needed, write last-chunk to end the request body and return true
2359 bool
2360 HttpStateData::finishingChunkedRequest()
2361 {
2362 if (flags.sentLastChunk) {
2363 debugs(11, 5, HERE << "already sent last-chunk");
2364 return false;
2365 }
2366
2367 Must(receivedWholeRequestBody); // or we should not be sending last-chunk
2368 flags.sentLastChunk = true;
2369
2370 typedef CommCbMemFunT<HttpStateData, CommIoCbParams> Dialer;
2371 requestSender = JobCallback(11,5, Dialer, this, HttpStateData::wroteLast);
2372 Comm::Write(serverConnection, "0\r\n\r\n", 5, requestSender, NULL);
2373 return true;
2374 }
2375
2376 void
2377 HttpStateData::doneSendingRequestBody()
2378 {
2379 Client::doneSendingRequestBody();
2380 debugs(11,5, HERE << serverConnection);
2381
2382 // do we need to write something after the last body byte?
2383 if (flags.chunked_request && finishingChunkedRequest())
2384 return;
2385 if (!flags.chunked_request && finishingBrokenPost())
2386 return;
2387
2388 sendComplete();
2389 }
2390
2391 // more origin request body data is available
2392 void
2393 HttpStateData::handleMoreRequestBodyAvailable()
2394 {
2395 if (eof || !Comm::IsConnOpen(serverConnection)) {
2396 // XXX: we should check this condition in other callbacks then!
2397 // TODO: Check whether this can actually happen: We should unsubscribe
2398 // as a body consumer when the above condition(s) are detected.
2399 debugs(11, DBG_IMPORTANT, HERE << "Transaction aborted while reading HTTP body");
2400 return;
2401 }
2402
2403 assert(requestBodySource != NULL);
2404
2405 if (requestBodySource->buf().hasContent()) {
2406 // XXX: why does not this trigger a debug message on every request?
2407
2408 if (flags.headers_parsed && !flags.abuse_detected) {
2409 flags.abuse_detected = true;
2410 debugs(11, DBG_IMPORTANT, "http handleMoreRequestBodyAvailable: Likely proxy abuse detected '" << request->client_addr << "' -> '" << entry->url() << "'" );
2411
2412 if (virginReply()->sline.status() == Http::scInvalidHeader) {
2413 closeServer();
2414 mustStop("HttpStateData::handleMoreRequestBodyAvailable");
2415 return;
2416 }
2417 }
2418 }
2419
2420 HttpStateData::handleMoreRequestBodyAvailable();
2421 }
2422
2423 // premature end of the request body
2424 void
2425 HttpStateData::handleRequestBodyProducerAborted()
2426 {
2427 Client::handleRequestBodyProducerAborted();
2428 if (entry->isEmpty()) {
2429 debugs(11, 3, "request body aborted: " << serverConnection);
2430 // We usually get here when ICAP REQMOD aborts during body processing.
2431 // We might also get here if client-side aborts, but then our response
2432 // should not matter because either client-side will provide its own or
2433 // there will be no response at all (e.g., if the the client has left).
2434 ErrorState *err = new ErrorState(ERR_ICAP_FAILURE, Http::scInternalServerError, fwd->request);
2435 err->detailError(ERR_DETAIL_SRV_REQMOD_REQ_BODY);
2436 fwd->fail(err);
2437 }
2438
2439 abortTransaction("request body producer aborted");
2440 }
2441
2442 // called when we wrote request headers(!) or a part of the body
2443 void
2444 HttpStateData::sentRequestBody(const CommIoCbParams &io)
2445 {
2446 if (io.size > 0)
2447 statCounter.server.http.kbytes_out += io.size;
2448
2449 Client::sentRequestBody(io);
2450 }
2451
2452 void
2453 HttpStateData::abortAll(const char *reason)
2454 {
2455 debugs(11,5, HERE << "aborting transaction for " << reason <<
2456 "; " << serverConnection << ", this " << this);
2457 mustStop(reason);
2458 }
2459