]> git.ipfire.org Git - thirdparty/squid.git/blob - src/http.cc
Merge from trunk
[thirdparty/squid.git] / src / http.cc
1
2 /*
3 * $Id$
4 *
5 * DEBUG: section 11 Hypertext Transfer Protocol (HTTP)
6 * AUTHOR: Harvest Derived
7 *
8 * SQUID Web Proxy Cache http://www.squid-cache.org/
9 * ----------------------------------------------------------
10 *
11 * Squid is the result of efforts by numerous individuals from
12 * the Internet community; see the CONTRIBUTORS file for full
13 * details. Many organizations have provided support for Squid's
14 * development; see the SPONSORS file for full details. Squid is
15 * Copyrighted (C) 2001 by the Regents of the University of
16 * California; see the COPYRIGHT file for full details. Squid
17 * incorporates software developed and/or copyrighted by other
18 * sources; see the CREDITS file for full details.
19 *
20 * This program is free software; you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License as published by
22 * the Free Software Foundation; either version 2 of the License, or
23 * (at your option) any later version.
24 *
25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
29 *
30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, write to the Free Software
32 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
33 *
34 */
35
36 /*
37 * Anonymizing patch by lutz@as-node.jena.thur.de
38 * have a look into http-anon.c to get more informations.
39 */
40
41 #include "squid.h"
42 #include "errorpage.h"
43 #include "MemBuf.h"
44 #include "http.h"
45 #include "auth/UserRequest.h"
46 #include "Store.h"
47 #include "HttpReply.h"
48 #include "HttpRequest.h"
49 #include "MemObject.h"
50 #include "HttpHdrContRange.h"
51 #include "HttpHdrSc.h"
52 #include "HttpHdrScTarget.h"
53 #include "acl/FilledChecklist.h"
54 #include "fde.h"
55 #if DELAY_POOLS
56 #include "DelayPools.h"
57 #endif
58 #include "SquidTime.h"
59 #include "TextException.h"
60
61 #define SQUID_ENTER_THROWING_CODE() try {
62 #define SQUID_EXIT_THROWING_CODE(status) \
63 status = true; \
64 } \
65 catch (const std::exception &e) { \
66 debugs (11, 1, "Exception error:" << e.what()); \
67 status = false; \
68 }
69
70 CBDATA_CLASS_INIT(HttpStateData);
71
72 static const char *const crlf = "\r\n";
73
74 static void httpMaybeRemovePublic(StoreEntry *, http_status);
75 static void copyOneHeaderFromClientsideRequestToUpstreamRequest(const HttpHeaderEntry *e, const String strConnection, HttpRequest * request, const HttpRequest * orig_request,
76 HttpHeader * hdr_out, const int we_do_ranges, const http_state_flags);
77
78 HttpStateData::HttpStateData(FwdState *theFwdState) : AsyncJob("HttpStateData"), ServerStateData(theFwdState),
79 lastChunk(0), header_bytes_read(0), reply_bytes_read(0),
80 body_bytes_truncated(0), httpChunkDecoder(NULL)
81 {
82 debugs(11,5,HERE << "HttpStateData " << this << " created");
83 ignoreCacheControl = false;
84 surrogateNoStore = false;
85 fd = fwd->server_fd;
86 readBuf = new MemBuf;
87 readBuf->init();
88 orig_request = HTTPMSGLOCK(fwd->request);
89
90 // reset peer response time stats for %<pt
91 orig_request->hier.peer_http_request_sent.tv_sec = 0;
92 orig_request->hier.peer_http_request_sent.tv_usec = 0;
93
94 if (fwd->servers)
95 _peer = fwd->servers->_peer; /* might be NULL */
96
97 if (_peer) {
98 const char *url;
99
100 if (_peer->options.originserver)
101 url = orig_request->urlpath.termedBuf();
102 else
103 url = entry->url();
104
105 HttpRequest * proxy_req = new HttpRequest(orig_request->method,
106 orig_request->protocol, url);
107
108 proxy_req->SetHost(_peer->host);
109
110 proxy_req->port = _peer->http_port;
111
112 proxy_req->flags = orig_request->flags;
113
114 proxy_req->lastmod = orig_request->lastmod;
115
116 proxy_req->flags.proxying = 1;
117
118 HTTPMSGUNLOCK(request);
119
120 request = HTTPMSGLOCK(proxy_req);
121
122 /*
123 * This NEIGHBOR_PROXY_ONLY check probably shouldn't be here.
124 * We might end up getting the object from somewhere else if,
125 * for example, the request to this neighbor fails.
126 */
127 if (_peer->options.proxy_only)
128 entry->releaseRequest();
129
130 #if DELAY_POOLS
131
132 entry->setNoDelay(_peer->options.no_delay);
133
134 #endif
135 }
136
137 /*
138 * register the handler to free HTTP state data when the FD closes
139 */
140 typedef CommCbMemFunT<HttpStateData, CommCloseCbParams> Dialer;
141 closeHandler = asyncCall(9, 5, "httpStateData::httpStateConnClosed",
142 Dialer(this,&HttpStateData::httpStateConnClosed));
143 comm_add_close_handler(fd, closeHandler);
144 }
145
146 HttpStateData::~HttpStateData()
147 {
148 /*
149 * don't forget that ~ServerStateData() gets called automatically
150 */
151
152 if (!readBuf->isNull())
153 readBuf->clean();
154
155 delete readBuf;
156
157 if (httpChunkDecoder)
158 delete httpChunkDecoder;
159
160 HTTPMSGUNLOCK(orig_request);
161
162 debugs(11,5, HERE << "HttpStateData " << this << " destroyed; FD " << fd);
163 }
164
165 int
166 HttpStateData::dataDescriptor() const
167 {
168 return fd;
169 }
170 /*
171 static void
172 httpStateFree(int fd, void *data)
173 {
174 HttpStateData *httpState = static_cast<HttpStateData *>(data);
175 debugs(11, 5, "httpStateFree: FD " << fd << ", httpState=" << data);
176 delete httpState;
177 }*/
178
179 void
180 HttpStateData::httpStateConnClosed(const CommCloseCbParams &params)
181 {
182 debugs(11, 5, "httpStateFree: FD " << params.fd << ", httpState=" << params.data);
183 deleteThis("HttpStateData::httpStateConnClosed");
184 }
185
186 int
187 httpCachable(const HttpRequestMethod& method)
188 {
189 /* GET and HEAD are cachable. Others are not. */
190
191 // TODO: replase to HttpRequestMethod::isCachable() ?
192 if (method != METHOD_GET && method != METHOD_HEAD)
193 return 0;
194
195 /* else cachable */
196 return 1;
197 }
198
199 void
200 HttpStateData::httpTimeout(const CommTimeoutCbParams &params)
201 {
202 debugs(11, 4, "httpTimeout: FD " << fd << ": '" << entry->url() << "'" );
203
204 if (entry->store_status == STORE_PENDING) {
205 fwd->fail(errorCon(ERR_READ_TIMEOUT, HTTP_GATEWAY_TIMEOUT, fwd->request));
206 }
207
208 comm_close(fd);
209 }
210
211 static void
212 httpMaybeRemovePublic(StoreEntry * e, http_status status)
213 {
214 int remove = 0;
215 int forbidden = 0;
216 StoreEntry *pe;
217
218 if (!EBIT_TEST(e->flags, KEY_PRIVATE))
219 return;
220
221 switch (status) {
222
223 case HTTP_OK:
224
225 case HTTP_NON_AUTHORITATIVE_INFORMATION:
226
227 case HTTP_MULTIPLE_CHOICES:
228
229 case HTTP_MOVED_PERMANENTLY:
230
231 case HTTP_MOVED_TEMPORARILY:
232
233 case HTTP_GONE:
234
235 case HTTP_NOT_FOUND:
236 remove = 1;
237
238 break;
239
240 case HTTP_FORBIDDEN:
241
242 case HTTP_METHOD_NOT_ALLOWED:
243 forbidden = 1;
244
245 break;
246
247 #if WORK_IN_PROGRESS
248
249 case HTTP_UNAUTHORIZED:
250 forbidden = 1;
251
252 break;
253
254 #endif
255
256 default:
257 #if QUESTIONABLE
258 /*
259 * Any 2xx response should eject previously cached entities...
260 */
261
262 if (status >= 200 && status < 300)
263 remove = 1;
264
265 #endif
266
267 break;
268 }
269
270 if (!remove && !forbidden)
271 return;
272
273 assert(e->mem_obj);
274
275 if (e->mem_obj->request)
276 pe = storeGetPublicByRequest(e->mem_obj->request);
277 else
278 pe = storeGetPublic(e->mem_obj->url, e->mem_obj->method);
279
280 if (pe != NULL) {
281 assert(e != pe);
282 #if USE_HTCP
283 neighborsHtcpClear(e, NULL, e->mem_obj->request, e->mem_obj->method, HTCP_CLR_INVALIDATION);
284 #endif
285 pe->release();
286 }
287
288 /** \par
289 * Also remove any cached HEAD response in case the object has
290 * changed.
291 */
292 if (e->mem_obj->request)
293 pe = storeGetPublicByRequestMethod(e->mem_obj->request, METHOD_HEAD);
294 else
295 pe = storeGetPublic(e->mem_obj->url, METHOD_HEAD);
296
297 if (pe != NULL) {
298 assert(e != pe);
299 #if USE_HTCP
300 neighborsHtcpClear(e, NULL, e->mem_obj->request, HttpRequestMethod(METHOD_HEAD), HTCP_CLR_INVALIDATION);
301 #endif
302 pe->release();
303 }
304 }
305
306 void
307 HttpStateData::processSurrogateControl(HttpReply *reply)
308 {
309 #if USE_SQUID_ESI
310
311 if (request->flags.accelerated && reply->surrogate_control) {
312 HttpHdrScTarget *sctusable =
313 httpHdrScGetMergedTarget(reply->surrogate_control,
314 Config.Accel.surrogate_id);
315
316 if (sctusable) {
317 if (EBIT_TEST(sctusable->mask, SC_NO_STORE) ||
318 (Config.onoff.surrogate_is_remote
319 && EBIT_TEST(sctusable->mask, SC_NO_STORE_REMOTE))) {
320 surrogateNoStore = true;
321 entry->makePrivate();
322 }
323
324 /* The HttpHeader logic cannot tell if the header it's parsing is a reply to an
325 * accelerated request or not...
326 * Still, this is an abtraction breach. - RC
327 */
328 if (sctusable->max_age != -1) {
329 if (sctusable->max_age < sctusable->max_stale)
330 reply->expires = reply->date + sctusable->max_age;
331 else
332 reply->expires = reply->date + sctusable->max_stale;
333
334 /* And update the timestamps */
335 entry->timestampsSet();
336 }
337
338 /* We ignore cache-control directives as per the Surrogate specification */
339 ignoreCacheControl = true;
340
341 httpHdrScTargetDestroy(sctusable);
342 }
343 }
344
345 #endif
346 }
347
348 int
349 HttpStateData::cacheableReply()
350 {
351 HttpReply const *rep = finalReply();
352 HttpHeader const *hdr = &rep->header;
353 const int cc_mask = (rep->cache_control) ? rep->cache_control->mask : 0;
354 const char *v;
355 #if HTTP_VIOLATIONS
356
357 const refresh_t *R = NULL;
358
359 /* This strange looking define first looks up the refresh pattern
360 * and then checks if the specified flag is set. The main purpose
361 * of this is to simplify the refresh pattern lookup and HTTP_VIOLATIONS
362 * condition
363 */
364 #define REFRESH_OVERRIDE(flag) \
365 ((R = (R ? R : refreshLimits(entry->mem_obj->url))) , \
366 (R && R->flags.flag))
367 #else
368 #define REFRESH_OVERRIDE(flag) 0
369 #endif
370
371 if (surrogateNoStore)
372 return 0;
373
374 if (!ignoreCacheControl) {
375 if (EBIT_TEST(cc_mask, CC_PRIVATE)) {
376 if (!REFRESH_OVERRIDE(ignore_private))
377 return 0;
378 }
379
380 if (EBIT_TEST(cc_mask, CC_NO_CACHE)) {
381 if (!REFRESH_OVERRIDE(ignore_no_cache))
382 return 0;
383 }
384
385 if (EBIT_TEST(cc_mask, CC_NO_STORE)) {
386 if (!REFRESH_OVERRIDE(ignore_no_store))
387 return 0;
388 }
389 }
390
391 if (request->flags.auth || request->flags.auth_sent) {
392 /*
393 * Responses to requests with authorization may be cached
394 * only if a Cache-Control: public reply header is present.
395 * RFC 2068, sec 14.9.4
396 */
397
398 if (!EBIT_TEST(cc_mask, CC_PUBLIC)) {
399 if (!REFRESH_OVERRIDE(ignore_auth))
400 return 0;
401 }
402 }
403
404 /* Pragma: no-cache in _replies_ is not documented in HTTP,
405 * but servers like "Active Imaging Webcast/2.0" sure do use it */
406 if (hdr->has(HDR_PRAGMA)) {
407 String s = hdr->getList(HDR_PRAGMA);
408 const int no_cache = strListIsMember(&s, "no-cache", ',');
409 s.clean();
410
411 if (no_cache) {
412 if (!REFRESH_OVERRIDE(ignore_no_cache))
413 return 0;
414 }
415 }
416
417 /*
418 * The "multipart/x-mixed-replace" content type is used for
419 * continuous push replies. These are generally dynamic and
420 * probably should not be cachable
421 */
422 if ((v = hdr->getStr(HDR_CONTENT_TYPE)))
423 if (!strncasecmp(v, "multipart/x-mixed-replace", 25))
424 return 0;
425
426 switch (rep->sline.status) {
427 /* Responses that are cacheable */
428
429 case HTTP_OK:
430
431 case HTTP_NON_AUTHORITATIVE_INFORMATION:
432
433 case HTTP_MULTIPLE_CHOICES:
434
435 case HTTP_MOVED_PERMANENTLY:
436
437 case HTTP_GONE:
438 /*
439 * Don't cache objects that need to be refreshed on next request,
440 * unless we know how to refresh it.
441 */
442
443 if (!refreshIsCachable(entry)) {
444 debugs(22, 3, "refreshIsCachable() returned non-cacheable..");
445 return 0;
446 }
447
448 /* don't cache objects from peers w/o LMT, Date, or Expires */
449 /* check that is it enough to check headers @?@ */
450 if (rep->date > -1)
451 return 1;
452 else if (rep->last_modified > -1)
453 return 1;
454 else if (!_peer)
455 return 1;
456
457 /* @?@ (here and 302): invalid expires header compiles to squid_curtime */
458 else if (rep->expires > -1)
459 return 1;
460 else
461 return 0;
462
463 /* NOTREACHED */
464 break;
465
466 /* Responses that only are cacheable if the server says so */
467
468 case HTTP_MOVED_TEMPORARILY:
469 case HTTP_TEMPORARY_REDIRECT:
470 if (rep->expires > rep->date && rep->date > 0)
471 return 1;
472 else
473 return 0;
474
475 /* NOTREACHED */
476 break;
477
478 /* Errors can be negatively cached */
479
480 case HTTP_NO_CONTENT:
481
482 case HTTP_USE_PROXY:
483
484 case HTTP_BAD_REQUEST:
485
486 case HTTP_FORBIDDEN:
487
488 case HTTP_NOT_FOUND:
489
490 case HTTP_METHOD_NOT_ALLOWED:
491
492 case HTTP_REQUEST_URI_TOO_LARGE:
493
494 case HTTP_INTERNAL_SERVER_ERROR:
495
496 case HTTP_NOT_IMPLEMENTED:
497
498 case HTTP_BAD_GATEWAY:
499
500 case HTTP_SERVICE_UNAVAILABLE:
501
502 case HTTP_GATEWAY_TIMEOUT:
503 return -1;
504
505 /* NOTREACHED */
506 break;
507
508 /* Some responses can never be cached */
509
510 case HTTP_PARTIAL_CONTENT: /* Not yet supported */
511
512 case HTTP_SEE_OTHER:
513
514 case HTTP_NOT_MODIFIED:
515
516 case HTTP_UNAUTHORIZED:
517
518 case HTTP_PROXY_AUTHENTICATION_REQUIRED:
519
520 case HTTP_INVALID_HEADER: /* Squid header parsing error */
521
522 case HTTP_HEADER_TOO_LARGE:
523
524 case HTTP_PAYMENT_REQUIRED:
525 case HTTP_NOT_ACCEPTABLE:
526 case HTTP_REQUEST_TIMEOUT:
527 case HTTP_CONFLICT:
528 case HTTP_LENGTH_REQUIRED:
529 case HTTP_PRECONDITION_FAILED:
530 case HTTP_REQUEST_ENTITY_TOO_LARGE:
531 case HTTP_UNSUPPORTED_MEDIA_TYPE:
532 case HTTP_UNPROCESSABLE_ENTITY:
533 case HTTP_LOCKED:
534 case HTTP_FAILED_DEPENDENCY:
535 case HTTP_INSUFFICIENT_STORAGE:
536 case HTTP_REQUESTED_RANGE_NOT_SATISFIABLE:
537 case HTTP_EXPECTATION_FAILED:
538
539 return 0;
540
541 default: /* Unknown status code */
542 debugs (11, 0, HERE << "HttpStateData::cacheableReply: unexpected http status code " << rep->sline.status);
543
544 return 0;
545
546 /* NOTREACHED */
547 break;
548 }
549
550 /* NOTREACHED */
551 }
552
553 /*
554 * For Vary, store the relevant request headers as
555 * virtual headers in the reply
556 * Returns false if the variance cannot be stored
557 */
558 const char *
559 httpMakeVaryMark(HttpRequest * request, HttpReply const * reply)
560 {
561 String vary, hdr;
562 const char *pos = NULL;
563 const char *item;
564 const char *value;
565 int ilen;
566 static String vstr;
567
568 vstr.clean();
569 vary = reply->header.getList(HDR_VARY);
570
571 while (strListGetItem(&vary, ',', &item, &ilen, &pos)) {
572 char *name = (char *)xmalloc(ilen + 1);
573 xstrncpy(name, item, ilen + 1);
574 Tolower(name);
575
576 if (strcmp(name, "*") == 0) {
577 /* Can not handle "Vary: *" withtout ETag support */
578 safe_free(name);
579 vstr.clean();
580 break;
581 }
582
583 strListAdd(&vstr, name, ',');
584 hdr = request->header.getByName(name);
585 safe_free(name);
586 value = hdr.termedBuf();
587
588 if (value) {
589 value = rfc1738_escape_part(value);
590 vstr.append("=\"", 2);
591 vstr.append(value);
592 vstr.append("\"", 1);
593 }
594
595 hdr.clean();
596 }
597
598 vary.clean();
599 #if X_ACCELERATOR_VARY
600
601 pos = NULL;
602 vary = reply->header.getList(HDR_X_ACCELERATOR_VARY);
603
604 while (strListGetItem(&vary, ',', &item, &ilen, &pos)) {
605 char *name = (char *)xmalloc(ilen + 1);
606 xstrncpy(name, item, ilen + 1);
607 Tolower(name);
608 strListAdd(&vstr, name, ',');
609 hdr = request->header.getByName(name);
610 safe_free(name);
611 value = hdr.termedBuf();
612
613 if (value) {
614 value = rfc1738_escape_part(value);
615 vstr.append("=\"", 2);
616 vstr.append(value);
617 vstr.append("\"", 1);
618 }
619
620 hdr.clean();
621 }
622
623 vary.clean();
624 #endif
625
626 debugs(11, 3, "httpMakeVaryMark: " << vstr);
627 return vstr.termedBuf();
628 }
629
630 void
631 HttpStateData::keepaliveAccounting(HttpReply *reply)
632 {
633 if (flags.keepalive)
634 if (_peer)
635 _peer->stats.n_keepalives_sent++;
636
637 if (reply->keep_alive) {
638 if (_peer)
639 _peer->stats.n_keepalives_recv++;
640
641 if (Config.onoff.detect_broken_server_pconns
642 && reply->bodySize(request->method) == -1 && !flags.chunked) {
643 debugs(11, 1, "keepaliveAccounting: Impossible keep-alive header from '" << entry->url() << "'" );
644 // debugs(11, 2, "GOT HTTP REPLY HDR:\n---------\n" << readBuf->content() << "\n----------" );
645 flags.keepalive_broken = 1;
646 }
647 }
648 }
649
650 void
651 HttpStateData::checkDateSkew(HttpReply *reply)
652 {
653 if (reply->date > -1 && !_peer) {
654 int skew = abs((int)(reply->date - squid_curtime));
655
656 if (skew > 86400)
657 debugs(11, 3, "" << request->GetHost() << "'s clock is skewed by " << skew << " seconds!");
658 }
659 }
660
661 /**
662 * This creates the error page itself.. its likely
663 * that the forward ported reply header max size patch
664 * generates non http conformant error pages - in which
665 * case the errors where should be 'BAD_GATEWAY' etc
666 */
667 void
668 HttpStateData::processReplyHeader()
669 {
670 /** Creates a blank header. If this routine is made incremental, this will not do */
671 Ctx ctx = ctx_enter(entry->mem_obj->url);
672 debugs(11, 3, "processReplyHeader: key '" << entry->getMD5Text() << "'");
673
674 assert(!flags.headers_parsed);
675
676 http_status error = HTTP_STATUS_NONE;
677
678 HttpReply *newrep = new HttpReply;
679 const bool parsed = newrep->parse(readBuf, eof, &error);
680
681 if (!parsed && readBuf->contentSize() > 5 && strncmp(readBuf->content(), "HTTP/", 5) != 0) {
682 MemBuf *mb;
683 HttpReply *tmprep = new HttpReply;
684 tmprep->sline.version = HttpVersion(1, 0);
685 tmprep->sline.status = HTTP_OK;
686 tmprep->header.putTime(HDR_DATE, squid_curtime);
687 tmprep->header.putExt("X-Transformed-From", "HTTP/0.9");
688 mb = tmprep->pack();
689 newrep->parse(mb, eof, &error);
690 delete tmprep;
691 } else {
692 if (!parsed && error > 0) { // unrecoverable parsing error
693 debugs(11, 3, "processReplyHeader: Non-HTTP-compliant header: '" << readBuf->content() << "'");
694 flags.headers_parsed = 1;
695 newrep->sline.version = HttpVersion(1, 0);
696 newrep->sline.status = error;
697 HttpReply *vrep = setVirginReply(newrep);
698 entry->replaceHttpReply(vrep);
699 ctx_exit(ctx);
700 return;
701 }
702
703 if (!parsed) { // need more data
704 assert(!error);
705 assert(!eof);
706 delete newrep;
707 ctx_exit(ctx);
708 return;
709 }
710
711 debugs(11, 9, "GOT HTTP REPLY HDR:\n---------\n" << readBuf->content() << "\n----------");
712
713 header_bytes_read = headersEnd(readBuf->content(), readBuf->contentSize());
714 readBuf->consume(header_bytes_read);
715 }
716
717 flags.chunked = 0;
718 if (newrep->header.hasListMember(HDR_TRANSFER_ENCODING, "chunked", ',')) {
719 flags.chunked = 1;
720 httpChunkDecoder = new ChunkedCodingParser;
721 }
722
723 if (!peerSupportsConnectionPinning())
724 orig_request->flags.connection_auth_disabled = 1;
725
726 HttpReply *vrep = setVirginReply(newrep);
727 flags.headers_parsed = 1;
728
729 keepaliveAccounting(vrep);
730
731 checkDateSkew(vrep);
732
733 processSurrogateControl (vrep);
734
735 /** \todo IF the reply is a 1.0 reply, AND it has a Connection: Header
736 * Parse the header and remove all referenced headers
737 */
738
739 orig_request->hier.peer_reply_status = newrep->sline.status;
740
741 ctx_exit(ctx);
742
743 }
744
745 /**
746 * returns true if the peer can support connection pinning
747 */
748 bool HttpStateData::peerSupportsConnectionPinning() const
749 {
750 const HttpReply *rep = entry->mem_obj->getReply();
751 const HttpHeader *hdr = &rep->header;
752 bool rc;
753 String header;
754
755 if (!_peer)
756 return true;
757
758 /*If this peer does not support connection pinning (authenticated
759 connections) return false
760 */
761 if (!_peer->connection_auth)
762 return false;
763
764 /*The peer supports connection pinning and the http reply status
765 is not unauthorized, so the related connection can be pinned
766 */
767 if (rep->sline.status != HTTP_UNAUTHORIZED)
768 return true;
769
770 /*The server respond with HTTP_UNAUTHORIZED and the peer configured
771 with "connection-auth=on" we know that the peer supports pinned
772 connections
773 */
774 if (_peer->connection_auth == 1)
775 return true;
776
777 /*At this point peer has configured with "connection-auth=auto"
778 parameter so we need some extra checks to decide if we are going
779 to allow pinned connections or not
780 */
781
782 /*if the peer configured with originserver just allow connection
783 pinning (squid 2.6 behaviour)
784 */
785 if (_peer->options.originserver)
786 return true;
787
788 /*if the connections it is already pinned it is OK*/
789 if (request->flags.pinned)
790 return true;
791
792 /*Allow pinned connections only if the Proxy-support header exists in
793 reply and has in its list the "Session-Based-Authentication"
794 which means that the peer supports connection pinning.
795 */
796 if (!hdr->has(HDR_PROXY_SUPPORT))
797 return false;
798
799 header = hdr->getStrOrList(HDR_PROXY_SUPPORT);
800 /* XXX This ought to be done in a case-insensitive manner */
801 rc = (strstr(header.termedBuf(), "Session-Based-Authentication") != NULL);
802
803 return rc;
804 }
805
806 // Called when we parsed (and possibly adapted) the headers but
807 // had not starting storing (a.k.a., sending) the body yet.
808 void
809 HttpStateData::haveParsedReplyHeaders()
810 {
811 ServerStateData::haveParsedReplyHeaders();
812
813 Ctx ctx = ctx_enter(entry->mem_obj->url);
814 HttpReply *rep = finalReply();
815
816 if (rep->sline.status == HTTP_PARTIAL_CONTENT &&
817 rep->content_range)
818 currentOffset = rep->content_range->spec.offset;
819
820 entry->timestampsSet();
821
822 /* Check if object is cacheable or not based on reply code */
823 debugs(11, 3, "haveParsedReplyHeaders: HTTP CODE: " << rep->sline.status);
824
825 if (neighbors_do_private_keys)
826 httpMaybeRemovePublic(entry, rep->sline.status);
827
828 if (rep->header.has(HDR_VARY)
829 #if X_ACCELERATOR_VARY
830 || rep->header.has(HDR_X_ACCELERATOR_VARY)
831 #endif
832 ) {
833 const char *vary = httpMakeVaryMark(orig_request, rep);
834
835 if (!vary) {
836 entry->makePrivate();
837 goto no_cache;
838
839 }
840
841 entry->mem_obj->vary_headers = xstrdup(vary);
842 }
843
844 #if WIP_FWD_LOG
845 fwdStatus(fwd, s);
846
847 #endif
848 /*
849 * If its not a reply that we will re-forward, then
850 * allow the client to get it.
851 */
852 if (!fwd->reforwardableStatus(rep->sline.status))
853 EBIT_CLR(entry->flags, ENTRY_FWD_HDR_WAIT);
854
855 switch (cacheableReply()) {
856
857 case 1:
858 entry->makePublic();
859 break;
860
861 case 0:
862 entry->makePrivate();
863 break;
864
865 case -1:
866
867 #if HTTP_VIOLATIONS
868 if (Config.negativeTtl > 0)
869 entry->cacheNegatively();
870 else
871 #endif
872 entry->makePrivate();
873
874 break;
875
876 default:
877 assert(0);
878
879 break;
880 }
881
882 no_cache:
883
884 if (!ignoreCacheControl && rep->cache_control) {
885 if (EBIT_TEST(rep->cache_control->mask, CC_PROXY_REVALIDATE))
886 EBIT_SET(entry->flags, ENTRY_REVALIDATE);
887 else if (EBIT_TEST(rep->cache_control->mask, CC_MUST_REVALIDATE))
888 EBIT_SET(entry->flags, ENTRY_REVALIDATE);
889 }
890
891 #if HEADERS_LOG
892 headersLog(1, 0, request->method, rep);
893
894 #endif
895
896 ctx_exit(ctx);
897 }
898
899 HttpStateData::ConnectionStatus
900 HttpStateData::statusIfComplete() const
901 {
902 const HttpReply *rep = virginReply();
903 /** \par
904 * If the reply wants to close the connection, it takes precedence */
905
906 if (httpHeaderHasConnDir(&rep->header, "close"))
907 return COMPLETE_NONPERSISTENT_MSG;
908
909 /** \par
910 * If we didn't send a keep-alive request header, then this
911 * can not be a persistent connection.
912 */
913 if (!flags.keepalive)
914 return COMPLETE_NONPERSISTENT_MSG;
915
916 /** \par
917 * If we haven't sent the whole request then this can not be a persistent
918 * connection.
919 */
920 if (!flags.request_sent) {
921 debugs(11, 1, "statusIfComplete: Request not yet fully sent \"" << RequestMethodStr(orig_request->method) << " " << entry->url() << "\"" );
922 return COMPLETE_NONPERSISTENT_MSG;
923 }
924
925 /** \par
926 * What does the reply have to say about keep-alive?
927 */
928 /**
929 \bug XXX BUG?
930 * If the origin server (HTTP/1.0) does not send a keep-alive
931 * header, but keeps the connection open anyway, what happens?
932 * We'll return here and http.c waits for an EOF before changing
933 * store_status to STORE_OK. Combine this with ENTRY_FWD_HDR_WAIT
934 * and an error status code, and we might have to wait until
935 * the server times out the socket.
936 */
937 if (!rep->keep_alive)
938 return COMPLETE_NONPERSISTENT_MSG;
939
940 return COMPLETE_PERSISTENT_MSG;
941 }
942
943 HttpStateData::ConnectionStatus
944 HttpStateData::persistentConnStatus() const
945 {
946 debugs(11, 3, "persistentConnStatus: FD " << fd << " eof=" << eof);
947 const HttpReply *vrep = virginReply();
948 debugs(11, 5, "persistentConnStatus: content_length=" << vrep->content_length);
949
950 /* If we haven't seen the end of reply headers, we are not done */
951 debugs(11, 5, "persistentConnStatus: flags.headers_parsed=" << flags.headers_parsed);
952
953 if (!flags.headers_parsed)
954 return INCOMPLETE_MSG;
955
956 if (eof) // already reached EOF
957 return COMPLETE_NONPERSISTENT_MSG;
958
959 /** \par
960 * In chunked response we do not know the content length but we are absolutely
961 * sure about the end of response, so we are calling the statusIfComplete to
962 * decide if we can be persistant
963 */
964 if (lastChunk && flags.chunked)
965 return statusIfComplete();
966
967 const int64_t clen = vrep->bodySize(request->method);
968
969 debugs(11, 5, "persistentConnStatus: clen=" << clen);
970
971 /* If the body size is unknown we must wait for EOF */
972 if (clen < 0)
973 return INCOMPLETE_MSG;
974
975 /** \par
976 * If the body size is known, we must wait until we've gotten all of it. */
977 if (clen > 0) {
978 // old technique:
979 // if (entry->mem_obj->endOffset() < vrep->content_length + vrep->hdr_sz)
980 const int64_t body_bytes_read = reply_bytes_read - header_bytes_read;
981 debugs(11,5, "persistentConnStatus: body_bytes_read=" <<
982 body_bytes_read << " content_length=" << vrep->content_length);
983
984 if (body_bytes_read < vrep->content_length)
985 return INCOMPLETE_MSG;
986
987 if (body_bytes_truncated > 0) // already read more than needed
988 return COMPLETE_NONPERSISTENT_MSG; // disable pconns
989 }
990
991 /** \par
992 * If there is no message body or we got it all, we can be persistent */
993 return statusIfComplete();
994 }
995
996 /*
997 * This is the callback after some data has been read from the network
998 */
999 /*
1000 void
1001 HttpStateData::ReadReplyWrapper(int fd, char *buf, size_t len, comm_err_t flag, int xerrno, void *data)
1002 {
1003 HttpStateData *httpState = static_cast<HttpStateData *>(data);
1004 assert (fd == httpState->fd);
1005 // assert(buf == readBuf->content());
1006 PROF_start(HttpStateData_readReply);
1007 httpState->readReply(len, flag, xerrno);
1008 PROF_stop(HttpStateData_readReply);
1009 }
1010 */
1011
1012 /* XXX this function is too long! */
1013 void
1014 HttpStateData::readReply(const CommIoCbParams &io)
1015 {
1016 int bin;
1017 int clen;
1018 int len = io.size;
1019
1020 assert(fd == io.fd);
1021
1022 flags.do_next_read = 0;
1023
1024 debugs(11, 5, "httpReadReply: FD " << fd << ": len " << len << ".");
1025
1026 // Bail out early on COMM_ERR_CLOSING - close handlers will tidy up for us
1027 if (io.flag == COMM_ERR_CLOSING) {
1028 debugs(11, 3, "http socket closing");
1029 return;
1030 }
1031
1032 if (EBIT_TEST(entry->flags, ENTRY_ABORTED)) {
1033 maybeReadVirginBody();
1034 return;
1035 }
1036
1037 // handle I/O errors
1038 if (io.flag != COMM_OK || len < 0) {
1039 debugs(11, 2, "httpReadReply: FD " << fd << ": read failure: " << xstrerror() << ".");
1040
1041 if (ignoreErrno(io.xerrno)) {
1042 flags.do_next_read = 1;
1043 } else {
1044 ErrorState *err;
1045 err = errorCon(ERR_READ_ERROR, HTTP_BAD_GATEWAY, fwd->request);
1046 err->xerrno = io.xerrno;
1047 fwd->fail(err);
1048 flags.do_next_read = 0;
1049 comm_close(fd);
1050 }
1051
1052 return;
1053 }
1054
1055 // update I/O stats
1056 if (len > 0) {
1057 readBuf->appended(len);
1058 reply_bytes_read += len;
1059 #if DELAY_POOLS
1060
1061 DelayId delayId = entry->mem_obj->mostBytesAllowed();
1062 delayId.bytesIn(len);
1063 #endif
1064
1065 kb_incr(&statCounter.server.all.kbytes_in, len);
1066 kb_incr(&statCounter.server.http.kbytes_in, len);
1067 IOStats.Http.reads++;
1068
1069 for (clen = len - 1, bin = 0; clen; bin++)
1070 clen >>= 1;
1071
1072 IOStats.Http.read_hist[bin]++;
1073
1074 // update peer response time stats (%<pt)
1075 const timeval &sent = orig_request->hier.peer_http_request_sent;
1076 orig_request->hier.peer_response_time =
1077 sent.tv_sec ? tvSubMsec(sent, current_time) : -1;
1078 }
1079
1080 /** \par
1081 * Here the RFC says we should ignore whitespace between replies, but we can't as
1082 * doing so breaks HTTP/0.9 replies beginning with witespace, and in addition
1083 * the response splitting countermeasures is extremely likely to trigger on this,
1084 * not allowing connection reuse in the first place.
1085 */
1086 #if DONT_DO_THIS
1087 if (!flags.headers_parsed && len > 0 && fd_table[fd].uses > 1) {
1088 /* Skip whitespace between replies */
1089
1090 while (len > 0 && xisspace(*buf))
1091 xmemmove(buf, buf + 1, len--);
1092
1093 if (len == 0) {
1094 /* Continue to read... */
1095 /* Timeout NOT increased. This whitespace was from previous reply */
1096 flags.do_next_read = 1;
1097 maybeReadVirginBody();
1098 return;
1099 }
1100 }
1101
1102 #endif
1103
1104 if (len == 0) { // reached EOF?
1105 eof = 1;
1106 flags.do_next_read = 0;
1107 }
1108
1109 if (!flags.headers_parsed) { // have not parsed headers yet?
1110 PROF_start(HttpStateData_processReplyHeader);
1111 processReplyHeader();
1112 PROF_stop(HttpStateData_processReplyHeader);
1113
1114 if (!continueAfterParsingHeader()) // parsing error or need more data
1115 return; // TODO: send errors to ICAP
1116
1117 adaptOrFinalizeReply();
1118 }
1119
1120 // kick more reads if needed and/or process the response body, if any
1121 PROF_start(HttpStateData_processReplyBody);
1122 processReplyBody(); // may call serverComplete()
1123 PROF_stop(HttpStateData_processReplyBody);
1124 }
1125
1126 /**
1127 \retval true if we can continue with processing the body or doing ICAP.
1128 */
1129 bool
1130 HttpStateData::continueAfterParsingHeader()
1131 {
1132 if (!flags.headers_parsed && !eof) {
1133 debugs(11, 9, HERE << "needs more at " << readBuf->contentSize());
1134 flags.do_next_read = 1;
1135 /** \retval false If we have not finished parsing the headers and may get more data.
1136 * Schedules more reads to retrieve the missing data.
1137 */
1138 maybeReadVirginBody(); // schedules all kinds of reads; TODO: rename
1139 return false;
1140 }
1141
1142 /** If we are done with parsing, check for errors */
1143
1144 err_type error = ERR_NONE;
1145
1146 if (flags.headers_parsed) { // parsed headers, possibly with errors
1147 // check for header parsing errors
1148 if (HttpReply *vrep = virginReply()) {
1149 const http_status s = vrep->sline.status;
1150 const HttpVersion &v = vrep->sline.version;
1151 if (s == HTTP_INVALID_HEADER && v != HttpVersion(0,9)) {
1152 error = ERR_INVALID_RESP;
1153 } else
1154 if (s == HTTP_HEADER_TOO_LARGE) {
1155 fwd->dontRetry(true);
1156 error = ERR_TOO_BIG;
1157 } else {
1158 return true; // done parsing, got reply, and no error
1159 }
1160 } else {
1161 // parsed headers but got no reply
1162 error = ERR_INVALID_RESP;
1163 }
1164 } else {
1165 assert(eof);
1166 error = readBuf->hasContent() ?
1167 ERR_INVALID_RESP : ERR_ZERO_SIZE_OBJECT;
1168 }
1169
1170 assert(error != ERR_NONE);
1171 entry->reset();
1172 fwd->fail(errorCon(error, HTTP_BAD_GATEWAY, fwd->request));
1173 flags.do_next_read = 0;
1174 comm_close(fd);
1175 return false; // quit on error
1176 }
1177
1178 /** truncate what we read if we read too much so that writeReplyBody()
1179 writes no more than what we should have read */
1180 void
1181 HttpStateData::truncateVirginBody()
1182 {
1183 assert(flags.headers_parsed);
1184
1185 HttpReply *vrep = virginReply();
1186 int64_t clen = -1;
1187 if (!vrep->expectingBody(request->method, clen) || clen < 0)
1188 return; // no body or a body of unknown size, including chunked
1189
1190 const int64_t body_bytes_read = reply_bytes_read - header_bytes_read;
1191 if (body_bytes_read - body_bytes_truncated <= clen)
1192 return; // we did not read too much or already took care of the extras
1193
1194 if (const int64_t extras = body_bytes_read - body_bytes_truncated - clen) {
1195 // server sent more that the advertised content length
1196 debugs(11,5, HERE << "body_bytes_read=" << body_bytes_read <<
1197 " clen=" << clen << '/' << vrep->content_length <<
1198 " body_bytes_truncated=" << body_bytes_truncated << '+' << extras);
1199
1200 readBuf->truncate(extras);
1201 body_bytes_truncated += extras;
1202 }
1203 }
1204
1205 /**
1206 * Call this when there is data from the origin server
1207 * which should be sent to either StoreEntry, or to ICAP...
1208 */
1209 void
1210 HttpStateData::writeReplyBody()
1211 {
1212 truncateVirginBody(); // if needed
1213 const char *data = readBuf->content();
1214 int len = readBuf->contentSize();
1215 addVirginReplyBody(data, len);
1216 readBuf->consume(len);
1217 }
1218
1219 bool
1220 HttpStateData::decodeAndWriteReplyBody()
1221 {
1222 const char *data = NULL;
1223 int len;
1224 bool status = false;
1225 assert(flags.chunked);
1226 assert(httpChunkDecoder);
1227 SQUID_ENTER_THROWING_CODE();
1228 MemBuf decodedData;
1229 decodedData.init();
1230 const bool done = httpChunkDecoder->parse(readBuf,&decodedData);
1231 len = decodedData.contentSize();
1232 data=decodedData.content();
1233 addVirginReplyBody(data, len);
1234 if (done) {
1235 lastChunk = 1;
1236 flags.do_next_read = 0;
1237 }
1238 SQUID_EXIT_THROWING_CODE(status);
1239 return status;
1240 }
1241
1242 /**
1243 * processReplyBody has two purposes:
1244 * 1 - take the reply body data, if any, and put it into either
1245 * the StoreEntry, or give it over to ICAP.
1246 * 2 - see if we made it to the end of the response (persistent
1247 * connections and such)
1248 */
1249 void
1250 HttpStateData::processReplyBody()
1251 {
1252 AsyncCall::Pointer call;
1253 IpAddress client_addr;
1254 bool ispinned = false;
1255
1256 if (!flags.headers_parsed) {
1257 flags.do_next_read = 1;
1258 maybeReadVirginBody();
1259 return;
1260 }
1261
1262 #if USE_ADAPTATION
1263 debugs(11,5, HERE << "adaptationAccessCheckPending=" << adaptationAccessCheckPending);
1264 if (adaptationAccessCheckPending)
1265 return;
1266
1267 #endif
1268
1269 /*
1270 * At this point the reply headers have been parsed and consumed.
1271 * That means header content has been removed from readBuf and
1272 * it contains only body data.
1273 */
1274 if (flags.chunked) {
1275 if (!decodeAndWriteReplyBody()) {
1276 flags.do_next_read = 0;
1277 serverComplete();
1278 return;
1279 }
1280 } else
1281 writeReplyBody();
1282
1283 if (EBIT_TEST(entry->flags, ENTRY_ABORTED)) {
1284 /*
1285 * The above writeReplyBody() call could ABORT this entry,
1286 * in that case, the server FD should already be closed.
1287 * there's nothing for us to do.
1288 */
1289 (void) 0;
1290 } else
1291 switch (persistentConnStatus()) {
1292 case INCOMPLETE_MSG:
1293 debugs(11, 5, "processReplyBody: INCOMPLETE_MSG");
1294 /* Wait for more data or EOF condition */
1295 if (flags.keepalive_broken) {
1296 call = NULL;
1297 commSetTimeout(fd, 10, call);
1298 } else {
1299 call = NULL;
1300 commSetTimeout(fd, Config.Timeout.read, call);
1301 }
1302
1303 flags.do_next_read = 1;
1304 break;
1305
1306 case COMPLETE_PERSISTENT_MSG:
1307 debugs(11, 5, "processReplyBody: COMPLETE_PERSISTENT_MSG");
1308 /* yes we have to clear all these! */
1309 call = NULL;
1310 commSetTimeout(fd, -1, call);
1311 flags.do_next_read = 0;
1312
1313 comm_remove_close_handler(fd, closeHandler);
1314 closeHandler = NULL;
1315 fwd->unregister(fd);
1316
1317 if (orig_request->flags.spoof_client_ip)
1318 client_addr = orig_request->client_addr;
1319
1320
1321 if (request->flags.pinned) {
1322 ispinned = true;
1323 } else if (request->flags.connection_auth && request->flags.auth_sent) {
1324 ispinned = true;
1325 }
1326
1327 if (orig_request->pinnedConnection() && ispinned) {
1328 orig_request->pinnedConnection()->pinConnection(fd, orig_request, _peer,
1329 (request->flags.connection_auth != 0));
1330 } else {
1331 fwd->pconnPush(fd, _peer, request, orig_request->GetHost(), client_addr);
1332 }
1333
1334 fd = -1;
1335
1336 serverComplete();
1337 return;
1338
1339 case COMPLETE_NONPERSISTENT_MSG:
1340 debugs(11, 5, "processReplyBody: COMPLETE_NONPERSISTENT_MSG");
1341 serverComplete();
1342 return;
1343 }
1344
1345 maybeReadVirginBody();
1346 }
1347
1348 void
1349 HttpStateData::maybeReadVirginBody()
1350 {
1351 int read_sz = replyBodySpace(readBuf->spaceSize());
1352
1353 debugs(11,9, HERE << (flags.do_next_read ? "may" : "wont") <<
1354 " read up to " << read_sz << " bytes from FD " << fd);
1355
1356 /*
1357 * why <2? Because delayAwareRead() won't actually read if
1358 * you ask it to read 1 byte. The delayed read request
1359 * just gets re-queued until the client side drains, then
1360 * the I/O thread hangs. Better to not register any read
1361 * handler until we get a notification from someone that
1362 * its okay to read again.
1363 */
1364 if (read_sz < 2) {
1365 if (flags.headers_parsed)
1366 return;
1367 else
1368 read_sz = 1024;
1369 }
1370
1371 if (flags.do_next_read) {
1372 flags.do_next_read = 0;
1373 typedef CommCbMemFunT<HttpStateData, CommIoCbParams> Dialer;
1374 entry->delayAwareRead(fd, readBuf->space(read_sz), read_sz,
1375 asyncCall(11, 5, "HttpStateData::readReply",
1376 Dialer(this, &HttpStateData::readReply)));
1377 }
1378 }
1379
1380 /*
1381 * This will be called when request write is complete.
1382 */
1383 void
1384 HttpStateData::sendComplete(const CommIoCbParams &io)
1385 {
1386 debugs(11, 5, "httpSendComplete: FD " << fd << ": size " << io.size << ": errflag " << io.flag << ".");
1387 #if URL_CHECKSUM_DEBUG
1388
1389 entry->mem_obj->checkUrlChecksum();
1390 #endif
1391
1392 if (io.size > 0) {
1393 fd_bytes(fd, io.size, FD_WRITE);
1394 kb_incr(&statCounter.server.all.kbytes_out, io.size);
1395 kb_incr(&statCounter.server.http.kbytes_out, io.size);
1396 }
1397
1398 if (io.flag == COMM_ERR_CLOSING)
1399 return;
1400
1401 if (io.flag) {
1402 ErrorState *err;
1403 err = errorCon(ERR_WRITE_ERROR, HTTP_BAD_GATEWAY, fwd->request);
1404 err->xerrno = io.xerrno;
1405 fwd->fail(err);
1406 comm_close(fd);
1407 return;
1408 }
1409
1410 /*
1411 * Set the read timeout here because it hasn't been set yet.
1412 * We only set the read timeout after the request has been
1413 * fully written to the server-side. If we start the timeout
1414 * after connection establishment, then we are likely to hit
1415 * the timeout for POST/PUT requests that have very large
1416 * request bodies.
1417 */
1418 typedef CommCbMemFunT<HttpStateData, CommTimeoutCbParams> TimeoutDialer;
1419 AsyncCall::Pointer timeoutCall = asyncCall(11, 5, "HttpStateData::httpTimeout",
1420 TimeoutDialer(this,&HttpStateData::httpTimeout));
1421
1422 commSetTimeout(fd, Config.Timeout.read, timeoutCall);
1423
1424 flags.request_sent = 1;
1425
1426 orig_request->hier.peer_http_request_sent = current_time;
1427 }
1428
1429 // Close the HTTP server connection. Used by serverComplete().
1430 void
1431 HttpStateData::closeServer()
1432 {
1433 debugs(11,5, HERE << "closing HTTP server FD " << fd << " this " << this);
1434
1435 if (fd >= 0) {
1436 fwd->unregister(fd);
1437 comm_remove_close_handler(fd, closeHandler);
1438 closeHandler = NULL;
1439 comm_close(fd);
1440 fd = -1;
1441 }
1442 }
1443
1444 bool
1445 HttpStateData::doneWithServer() const
1446 {
1447 return fd < 0;
1448 }
1449
1450 /*
1451 * build request headers and append them to a given MemBuf
1452 * used by buildRequestPrefix()
1453 * note: initialised the HttpHeader, the caller is responsible for Clean()-ing
1454 */
1455 void
1456 HttpStateData::httpBuildRequestHeader(HttpRequest * request,
1457 HttpRequest * orig_request,
1458 StoreEntry * entry,
1459 HttpHeader * hdr_out,
1460 http_state_flags flags)
1461 {
1462 /* building buffer for complex strings */
1463 #define BBUF_SZ (MAX_URL+32)
1464 LOCAL_ARRAY(char, bbuf, BBUF_SZ);
1465 LOCAL_ARRAY(char, ntoabuf, MAX_IPSTRLEN);
1466 const HttpHeader *hdr_in = &orig_request->header;
1467 const HttpHeaderEntry *e = NULL;
1468 HttpHeaderPos pos = HttpHeaderInitPos;
1469 assert (hdr_out->owner == hoRequest);
1470
1471 /* append our IMS header */
1472 if (request->lastmod > -1)
1473 hdr_out->putTime(HDR_IF_MODIFIED_SINCE, request->lastmod);
1474
1475 bool we_do_ranges = decideIfWeDoRanges (orig_request);
1476
1477 String strConnection (hdr_in->getList(HDR_CONNECTION));
1478
1479 while ((e = hdr_in->getEntry(&pos)))
1480 copyOneHeaderFromClientsideRequestToUpstreamRequest(e, strConnection, request, orig_request, hdr_out, we_do_ranges, flags);
1481
1482 /* Abstraction break: We should interpret multipart/byterange responses
1483 * into offset-length data, and this works around our inability to do so.
1484 */
1485 if (!we_do_ranges && orig_request->multipartRangeRequest()) {
1486 /* don't cache the result */
1487 orig_request->flags.cachable = 0;
1488 /* pretend it's not a range request */
1489 delete orig_request->range;
1490 orig_request->range = NULL;
1491 orig_request->flags.range = 0;
1492 }
1493
1494 /* append Via */
1495 if (Config.onoff.via) {
1496 String strVia;
1497 strVia = hdr_in->getList(HDR_VIA);
1498 snprintf(bbuf, BBUF_SZ, "%d.%d %s",
1499 orig_request->http_ver.major,
1500 orig_request->http_ver.minor, ThisCache);
1501 strListAdd(&strVia, bbuf, ',');
1502 hdr_out->putStr(HDR_VIA, strVia.termedBuf());
1503 strVia.clean();
1504 }
1505
1506 #if USE_SQUID_ESI
1507 {
1508 /* Append Surrogate-Capabilities */
1509 String strSurrogate (hdr_in->getList(HDR_SURROGATE_CAPABILITY));
1510 snprintf(bbuf, BBUF_SZ, "%s=\"Surrogate/1.0 ESI/1.0\"",
1511 Config.Accel.surrogate_id);
1512 strListAdd(&strSurrogate, bbuf, ',');
1513 hdr_out->putStr(HDR_SURROGATE_CAPABILITY, strSurrogate.termedBuf());
1514 }
1515 #endif
1516
1517 /** \pre Handle X-Forwarded-For */
1518 if (strcmp(opt_forwarded_for, "delete") != 0) {
1519
1520 String strFwd = hdr_in->getList(HDR_X_FORWARDED_FOR);
1521
1522 if (strFwd.size() > 65536/2) {
1523 // There is probably a forwarding loop with Via detection disabled.
1524 // If we do nothing, String will assert on overflow soon.
1525 // TODO: Terminate all transactions with huge XFF?
1526 strFwd = "error";
1527
1528 static int warnedCount = 0;
1529 if (warnedCount++ < 100) {
1530 const char *url = entry ? entry->url() : urlCanonical(orig_request);
1531 debugs(11, 1, "Warning: likely forwarding loop with " << url);
1532 }
1533 }
1534
1535 if (strcmp(opt_forwarded_for, "on") == 0) {
1536 /** If set to ON - append client IP or 'unknown'. */
1537 if ( orig_request->client_addr.IsNoAddr() )
1538 strListAdd(&strFwd, "unknown", ',');
1539 else
1540 strListAdd(&strFwd, orig_request->client_addr.NtoA(ntoabuf, MAX_IPSTRLEN), ',');
1541 } else if (strcmp(opt_forwarded_for, "off") == 0) {
1542 /** If set to OFF - append 'unknown'. */
1543 strListAdd(&strFwd, "unknown", ',');
1544 } else if (strcmp(opt_forwarded_for, "transparent") == 0) {
1545 /** If set to TRANSPARENT - pass through unchanged. */
1546 } else if (strcmp(opt_forwarded_for, "truncate") == 0) {
1547 /** If set to TRUNCATE - drop existing list and replace with client IP or 'unknown'. */
1548 if ( orig_request->client_addr.IsNoAddr() )
1549 strFwd = "unknown";
1550 else
1551 strFwd = orig_request->client_addr.NtoA(ntoabuf, MAX_IPSTRLEN);
1552 }
1553 if (strFwd.size() > 0)
1554 hdr_out->putStr(HDR_X_FORWARDED_FOR, strFwd.termedBuf());
1555 }
1556 /** If set to DELETE - do not copy through. */
1557
1558 /* append Host if not there already */
1559 if (!hdr_out->has(HDR_HOST)) {
1560 if (orig_request->peer_domain) {
1561 hdr_out->putStr(HDR_HOST, orig_request->peer_domain);
1562 } else if (orig_request->port == urlDefaultPort(orig_request->protocol)) {
1563 /* use port# only if not default */
1564 hdr_out->putStr(HDR_HOST, orig_request->GetHost());
1565 } else {
1566 httpHeaderPutStrf(hdr_out, HDR_HOST, "%s:%d",
1567 orig_request->GetHost(),
1568 (int) orig_request->port);
1569 }
1570 }
1571
1572 /* append Authorization if known in URL, not in header and going direct */
1573 if (!hdr_out->has(HDR_AUTHORIZATION)) {
1574 if (!request->flags.proxying && *request->login) {
1575 httpHeaderPutStrf(hdr_out, HDR_AUTHORIZATION, "Basic %s",
1576 base64_encode(request->login));
1577 }
1578 }
1579
1580 /* append Proxy-Authorization if configured for peer, and proxying */
1581 if (request->flags.proxying && orig_request->peer_login &&
1582 !hdr_out->has(HDR_PROXY_AUTHORIZATION)) {
1583 if (*orig_request->peer_login == '*') {
1584 /* Special mode, to pass the username to the upstream cache */
1585 char loginbuf[256];
1586 const char *username = "-";
1587
1588 if (orig_request->extacl_user.size())
1589 username = orig_request->extacl_user.termedBuf();
1590 else if (orig_request->auth_user_request)
1591 username = orig_request->auth_user_request->username();
1592
1593 snprintf(loginbuf, sizeof(loginbuf), "%s%s", username, orig_request->peer_login + 1);
1594
1595 httpHeaderPutStrf(hdr_out, HDR_PROXY_AUTHORIZATION, "Basic %s",
1596 base64_encode(loginbuf));
1597 } else if (strcmp(orig_request->peer_login, "PASS") == 0) {
1598 if (orig_request->extacl_user.size() && orig_request->extacl_passwd.size()) {
1599 char loginbuf[256];
1600 snprintf(loginbuf, sizeof(loginbuf), SQUIDSTRINGPH ":" SQUIDSTRINGPH,
1601 SQUIDSTRINGPRINT(orig_request->extacl_user),
1602 SQUIDSTRINGPRINT(orig_request->extacl_passwd));
1603 httpHeaderPutStrf(hdr_out, HDR_PROXY_AUTHORIZATION, "Basic %s",
1604 base64_encode(loginbuf));
1605 }
1606 } else if (strcmp(orig_request->peer_login, "PROXYPASS") == 0) {
1607 /* Nothing to do */
1608 } else {
1609 httpHeaderPutStrf(hdr_out, HDR_PROXY_AUTHORIZATION, "Basic %s",
1610 base64_encode(orig_request->peer_login));
1611 }
1612 }
1613
1614 /* append WWW-Authorization if configured for peer */
1615 if (flags.originpeer && orig_request->peer_login &&
1616 !hdr_out->has(HDR_AUTHORIZATION)) {
1617 if (strcmp(orig_request->peer_login, "PASS") == 0) {
1618 /* No credentials to forward.. (should have been done above if available) */
1619 } else if (strcmp(orig_request->peer_login, "PROXYPASS") == 0) {
1620 /* Special mode, convert proxy authentication to WWW authentication
1621 * (also applies to authentication provided by external acl)
1622 */
1623 const char *auth = hdr_in->getStr(HDR_PROXY_AUTHORIZATION);
1624
1625 if (auth && strncasecmp(auth, "basic ", 6) == 0) {
1626 hdr_out->putStr(HDR_AUTHORIZATION, auth);
1627 } else if (orig_request->extacl_user.size() && orig_request->extacl_passwd.size()) {
1628 char loginbuf[256];
1629 snprintf(loginbuf, sizeof(loginbuf), SQUIDSTRINGPH ":" SQUIDSTRINGPH,
1630 SQUIDSTRINGPRINT(orig_request->extacl_user),
1631 SQUIDSTRINGPRINT(orig_request->extacl_passwd));
1632 httpHeaderPutStrf(hdr_out, HDR_AUTHORIZATION, "Basic %s",
1633 base64_encode(loginbuf));
1634 }
1635 } else if (*orig_request->peer_login == '*') {
1636 /* Special mode, to pass the username to the upstream cache */
1637 char loginbuf[256];
1638 const char *username = "-";
1639
1640 if (orig_request->auth_user_request)
1641 username = orig_request->auth_user_request->username();
1642 else if (orig_request->extacl_user.size())
1643 username = orig_request->extacl_user.termedBuf();
1644
1645 snprintf(loginbuf, sizeof(loginbuf), "%s%s", username, orig_request->peer_login + 1);
1646
1647 httpHeaderPutStrf(hdr_out, HDR_AUTHORIZATION, "Basic %s",
1648 base64_encode(loginbuf));
1649 } else {
1650 /* Fixed login string */
1651 httpHeaderPutStrf(hdr_out, HDR_AUTHORIZATION, "Basic %s",
1652 base64_encode(orig_request->peer_login));
1653 }
1654 }
1655
1656 /* append Cache-Control, add max-age if not there already */ {
1657 HttpHdrCc *cc = hdr_in->getCc();
1658
1659 if (!cc)
1660 cc = httpHdrCcCreate();
1661
1662 #if 0 /* see bug 2330 */
1663 /* Set no-cache if determined needed but not found */
1664 if (orig_request->flags.nocache)
1665 EBIT_SET(cc->mask, CC_NO_CACHE);
1666 #endif
1667
1668 /* Add max-age only without no-cache */
1669 if (!EBIT_TEST(cc->mask, CC_MAX_AGE) && !EBIT_TEST(cc->mask, CC_NO_CACHE)) {
1670 const char *url =
1671 entry ? entry->url() : urlCanonical(orig_request);
1672 httpHdrCcSetMaxAge(cc, getMaxAge(url));
1673
1674 if (request->urlpath.size())
1675 assert(strstr(url, request->urlpath.termedBuf()));
1676 }
1677
1678 /* Enforce sibling relations */
1679 if (flags.only_if_cached)
1680 EBIT_SET(cc->mask, CC_ONLY_IF_CACHED);
1681
1682 hdr_out->putCc(cc);
1683
1684 httpHdrCcDestroy(cc);
1685 }
1686
1687 /* maybe append Connection: keep-alive */
1688 if (flags.keepalive) {
1689 if (flags.proxying) {
1690 hdr_out->putStr(HDR_PROXY_CONNECTION, "keep-alive");
1691 } else {
1692 hdr_out->putStr(HDR_CONNECTION, "keep-alive");
1693 }
1694 }
1695
1696 /* append Front-End-Https */
1697 if (flags.front_end_https) {
1698 if (flags.front_end_https == 1 || request->protocol == PROTO_HTTPS)
1699 hdr_out->putStr(HDR_FRONT_END_HTTPS, "On");
1700 }
1701
1702 /* Now mangle the headers. */
1703 if (Config2.onoff.mangle_request_headers)
1704 httpHdrMangleList(hdr_out, request, ROR_REQUEST);
1705
1706 strConnection.clean();
1707 }
1708
1709 /**
1710 * Decides whether a particular header may be cloned from the received Clients request
1711 * to our outgoing fetch request.
1712 */
1713 void
1714 copyOneHeaderFromClientsideRequestToUpstreamRequest(const HttpHeaderEntry *e, const String strConnection, HttpRequest * request, const HttpRequest * orig_request, HttpHeader * hdr_out, const int we_do_ranges, const http_state_flags flags)
1715 {
1716 debugs(11, 5, "httpBuildRequestHeader: " << e->name << ": " << e->value );
1717
1718 switch (e->id) {
1719
1720 /** \par RFC 2616 sect 13.5.1 - Hop-by-Hop headers which Squid should not pass on. */
1721
1722 case HDR_PROXY_AUTHORIZATION:
1723 /** \par Proxy-Authorization:
1724 * Only pass on proxy authentication to peers for which
1725 * authentication forwarding is explicitly enabled
1726 */
1727
1728 if (flags.proxying && orig_request->peer_login &&
1729 (strcmp(orig_request->peer_login, "PASS") == 0 ||
1730 strcmp(orig_request->peer_login, "PROXYPASS") == 0)) {
1731 hdr_out->addEntry(e->clone());
1732 }
1733
1734 break;
1735
1736 /** \par RFC 2616 sect 13.5.1 - Hop-by-Hop headers which Squid does not pass on. */
1737
1738 case HDR_CONNECTION: /** \par Connection: */
1739 case HDR_TE: /** \par TE: */
1740 case HDR_KEEP_ALIVE: /** \par Keep-Alive: */
1741 case HDR_PROXY_AUTHENTICATE: /** \par Proxy-Authenticate: */
1742 case HDR_TRAILERS: /** \par Trailers: */
1743 case HDR_UPGRADE: /** \par Upgrade: */
1744 case HDR_TRANSFER_ENCODING: /** \par Transfer-Encoding: */
1745 break;
1746
1747
1748 /** \par OTHER headers I haven't bothered to track down yet. */
1749
1750 case HDR_AUTHORIZATION:
1751 /** \par WWW-Authorization:
1752 * Pass on WWW authentication */
1753
1754 if (!flags.originpeer) {
1755 hdr_out->addEntry(e->clone());
1756 } else {
1757 /** \note In accelerators, only forward authentication if enabled
1758 * by login=PASS or login=PROXYPASS
1759 * (see also below for proxy->server authentication)
1760 */
1761 if (orig_request->peer_login &&
1762 (strcmp(orig_request->peer_login, "PASS") == 0 ||
1763 strcmp(orig_request->peer_login, "PROXYPASS") == 0)) {
1764 hdr_out->addEntry(e->clone());
1765 }
1766 }
1767
1768 break;
1769
1770 case HDR_HOST:
1771 /** \par Host:
1772 * Normally Squid rewrites the Host: header.
1773 * However, there is one case when we don't: If the URL
1774 * went through our redirector and the admin configured
1775 * 'redir_rewrites_host' to be off.
1776 */
1777 if (orig_request->peer_domain)
1778 hdr_out->putStr(HDR_HOST, orig_request->peer_domain);
1779 else if (request->flags.redirected && !Config.onoff.redir_rewrites_host)
1780 hdr_out->addEntry(e->clone());
1781 else {
1782 /* use port# only if not default */
1783
1784 if (orig_request->port == urlDefaultPort(orig_request->protocol)) {
1785 hdr_out->putStr(HDR_HOST, orig_request->GetHost());
1786 } else {
1787 httpHeaderPutStrf(hdr_out, HDR_HOST, "%s:%d",
1788 orig_request->GetHost(),
1789 (int) orig_request->port);
1790 }
1791 }
1792
1793 break;
1794
1795 case HDR_IF_MODIFIED_SINCE:
1796 /** \par If-Modified-Since:
1797 * append unless we added our own;
1798 * \note at most one client's ims header can pass through */
1799
1800 if (!hdr_out->has(HDR_IF_MODIFIED_SINCE))
1801 hdr_out->addEntry(e->clone());
1802
1803 break;
1804
1805 case HDR_MAX_FORWARDS:
1806 /** \par Max-Forwards:
1807 * pass only on TRACE or OPTIONS requests */
1808 if (orig_request->method == METHOD_TRACE || orig_request->method == METHOD_OPTIONS) {
1809 const int64_t hops = e->getInt64();
1810
1811 if (hops > 0)
1812 hdr_out->putInt64(HDR_MAX_FORWARDS, hops - 1);
1813 }
1814
1815 break;
1816
1817 case HDR_VIA:
1818 /** \par Via:
1819 * If Via is disabled then forward any received header as-is.
1820 * Otherwise leave for explicit updated addition later. */
1821
1822 if (!Config.onoff.via)
1823 hdr_out->addEntry(e->clone());
1824
1825 break;
1826
1827 case HDR_RANGE:
1828
1829 case HDR_IF_RANGE:
1830
1831 case HDR_REQUEST_RANGE:
1832 /** \par Range:, If-Range:, Request-Range:
1833 * Only pass if we accept ranges */
1834 if (!we_do_ranges)
1835 hdr_out->addEntry(e->clone());
1836
1837 break;
1838
1839 case HDR_PROXY_CONNECTION:
1840
1841 case HDR_X_FORWARDED_FOR:
1842
1843 case HDR_CACHE_CONTROL:
1844 /** \par Proxy-Connaction:, X-Forwarded-For:, Cache-Control:
1845 * handled specially by Squid, so leave off for now.
1846 * append these after the loop if needed */
1847 break;
1848
1849 case HDR_FRONT_END_HTTPS:
1850 /** \par Front-End-Https:
1851 * Pass thru only if peer is configured with front-end-https */
1852 if (!flags.front_end_https)
1853 hdr_out->addEntry(e->clone());
1854
1855 break;
1856
1857 default:
1858 /** \par default.
1859 * pass on all other header fields
1860 * which are NOT listed by the special Connection: header. */
1861
1862 if (strConnection.size()>0 && strListIsMember(&strConnection, e->name.termedBuf(), ',')) {
1863 debugs(11, 2, "'" << e->name << "' header cropped by Connection: definition");
1864 return;
1865 }
1866
1867 hdr_out->addEntry(e->clone());
1868 }
1869 }
1870
1871 bool
1872 HttpStateData::decideIfWeDoRanges (HttpRequest * orig_request)
1873 {
1874 bool result = true;
1875 /* decide if we want to do Ranges ourselves
1876 * and fetch the whole object now)
1877 * We want to handle Ranges ourselves iff
1878 * - we can actually parse client Range specs
1879 * - the specs are expected to be simple enough (e.g. no out-of-order ranges)
1880 * - reply will be cachable
1881 * (If the reply will be uncachable we have to throw it away after
1882 * serving this request, so it is better to forward ranges to
1883 * the server and fetch only the requested content)
1884 */
1885
1886 if (NULL == orig_request->range || !orig_request->flags.cachable
1887 || orig_request->range->offsetLimitExceeded() || orig_request->flags.connection_auth)
1888 result = false;
1889
1890 debugs(11, 8, "decideIfWeDoRanges: range specs: " <<
1891 orig_request->range << ", cachable: " <<
1892 orig_request->flags.cachable << "; we_do_ranges: " << result);
1893
1894 return result;
1895 }
1896
1897 /* build request prefix and append it to a given MemBuf;
1898 * return the length of the prefix */
1899 mb_size_t
1900 HttpStateData::buildRequestPrefix(HttpRequest * request,
1901 HttpRequest * orig_request,
1902 StoreEntry * entry,
1903 MemBuf * mb,
1904 http_state_flags flags)
1905 {
1906 const int offset = mb->size;
1907 HttpVersion httpver(1, 0);
1908 mb->Printf("%s %s HTTP/%d.%d\r\n",
1909 RequestMethodStr(request->method),
1910 request->urlpath.size() ? request->urlpath.termedBuf() : "/",
1911 httpver.major,httpver.minor);
1912 /* build and pack headers */
1913 {
1914 HttpHeader hdr(hoRequest);
1915 Packer p;
1916 httpBuildRequestHeader(request, orig_request, entry, &hdr, flags);
1917
1918 if (request->flags.pinned && request->flags.connection_auth)
1919 request->flags.auth_sent = 1;
1920 else if (hdr.has(HDR_AUTHORIZATION))
1921 request->flags.auth_sent = 1;
1922
1923 packerToMemInit(&p, mb);
1924 hdr.packInto(&p);
1925 hdr.clean();
1926 packerClean(&p);
1927 }
1928 /* append header terminator */
1929 mb->append(crlf, 2);
1930 return mb->size - offset;
1931 }
1932
1933 /* This will be called when connect completes. Write request. */
1934 bool
1935 HttpStateData::sendRequest()
1936 {
1937 MemBuf mb;
1938
1939 debugs(11, 5, "httpSendRequest: FD " << fd << ", request " << request << ", this " << this << ".");
1940 typedef CommCbMemFunT<HttpStateData, CommTimeoutCbParams> TimeoutDialer;
1941 AsyncCall::Pointer timeoutCall = asyncCall(11, 5, "HttpStateData::httpTimeout",
1942 TimeoutDialer(this,&HttpStateData::httpTimeout));
1943 commSetTimeout(fd, Config.Timeout.lifetime, timeoutCall);
1944 flags.do_next_read = 1;
1945 maybeReadVirginBody();
1946
1947 if (orig_request->body_pipe != NULL) {
1948 if (!startRequestBodyFlow()) // register to receive body data
1949 return false;
1950 typedef CommCbMemFunT<HttpStateData, CommIoCbParams> Dialer;
1951 Dialer dialer(this, &HttpStateData::sentRequestBody);
1952 requestSender = asyncCall(11,5, "HttpStateData::sentRequestBody", dialer);
1953 } else {
1954 assert(!requestBodySource);
1955 typedef CommCbMemFunT<HttpStateData, CommIoCbParams> Dialer;
1956 Dialer dialer(this, &HttpStateData::sendComplete);
1957 requestSender = asyncCall(11,5, "HttpStateData::SendComplete", dialer);
1958 }
1959
1960 if (_peer != NULL) {
1961 if (_peer->options.originserver) {
1962 flags.proxying = 0;
1963 flags.originpeer = 1;
1964 } else {
1965 flags.proxying = 1;
1966 flags.originpeer = 0;
1967 }
1968 } else {
1969 flags.proxying = 0;
1970 flags.originpeer = 0;
1971 }
1972
1973 /*
1974 * Is keep-alive okay for all request methods?
1975 */
1976 if (orig_request->flags.must_keepalive)
1977 flags.keepalive = 1;
1978 else if (!Config.onoff.server_pconns)
1979 flags.keepalive = 0;
1980 else if (_peer == NULL)
1981 flags.keepalive = 1;
1982 else if (_peer->stats.n_keepalives_sent < 10)
1983 flags.keepalive = 1;
1984 else if ((double) _peer->stats.n_keepalives_recv /
1985 (double) _peer->stats.n_keepalives_sent > 0.50)
1986 flags.keepalive = 1;
1987
1988 if (_peer) {
1989 if (neighborType(_peer, request) == PEER_SIBLING &&
1990 !_peer->options.allow_miss)
1991 flags.only_if_cached = 1;
1992
1993 flags.front_end_https = _peer->front_end_https;
1994 }
1995
1996 mb.init();
1997 buildRequestPrefix(request, orig_request, entry, &mb, flags);
1998 debugs(11, 6, "httpSendRequest: FD " << fd << ":\n" << mb.buf);
1999 comm_write_mbuf(fd, &mb, requestSender);
2000
2001 return true;
2002 }
2003
2004 void
2005 httpStart(FwdState *fwd)
2006 {
2007 debugs(11, 3, "httpStart: \"" << RequestMethodStr(fwd->request->method) << " " << fwd->entry->url() << "\"" );
2008 HttpStateData *httpState = new HttpStateData(fwd);
2009
2010 if (!httpState->sendRequest()) {
2011 debugs(11, 3, "httpStart: aborted");
2012 delete httpState;
2013 return;
2014 }
2015
2016 statCounter.server.all.requests++;
2017 statCounter.server.http.requests++;
2018
2019 /*
2020 * We used to set the read timeout here, but not any more.
2021 * Now its set in httpSendComplete() after the full request,
2022 * including request body, has been written to the server.
2023 */
2024 }
2025
2026 void
2027 HttpStateData::doneSendingRequestBody()
2028 {
2029 debugs(11,5, HERE << "doneSendingRequestBody: FD " << fd);
2030
2031 #if HTTP_VIOLATIONS
2032 if (Config.accessList.brokenPosts) {
2033 ACLFilledChecklist ch(Config.accessList.brokenPosts, request, NULL);
2034 if (!ch.fastCheck()) {
2035 debugs(11, 5, "doneSendingRequestBody: didn't match brokenPosts");
2036 CommIoCbParams io(NULL);
2037 io.fd=fd;
2038 io.flag=COMM_OK;
2039 sendComplete(io);
2040 } else {
2041 debugs(11, 2, "doneSendingRequestBody: matched brokenPosts");
2042 typedef CommCbMemFunT<HttpStateData, CommIoCbParams> Dialer;
2043 Dialer dialer(this, &HttpStateData::sendComplete);
2044 AsyncCall::Pointer call= asyncCall(11,5, "HttpStateData::SendComplete", dialer);
2045 comm_write(fd, "\r\n", 2, call);
2046 }
2047 return;
2048 }
2049 debugs(11, 5, "doneSendingRequestBody: No brokenPosts list");
2050 #endif /* HTTP_VIOLATIONS */
2051
2052 CommIoCbParams io(NULL);
2053 io.fd=fd;
2054 io.flag=COMM_OK;
2055 sendComplete(io);
2056 }
2057
2058 // more origin request body data is available
2059 void
2060 HttpStateData::handleMoreRequestBodyAvailable()
2061 {
2062 if (eof || fd < 0) {
2063 // XXX: we should check this condition in other callbacks then!
2064 // TODO: Check whether this can actually happen: We should unsubscribe
2065 // as a body consumer when the above condition(s) are detected.
2066 debugs(11, 1, HERE << "Transaction aborted while reading HTTP body");
2067 return;
2068 }
2069
2070 assert(requestBodySource != NULL);
2071
2072 if (requestBodySource->buf().hasContent()) {
2073 // XXX: why does not this trigger a debug message on every request?
2074
2075 if (flags.headers_parsed && !flags.abuse_detected) {
2076 flags.abuse_detected = 1;
2077 debugs(11, 1, "http handleMoreRequestBodyAvailable: Likely proxy abuse detected '" << orig_request->client_addr << "' -> '" << entry->url() << "'" );
2078
2079 if (virginReply()->sline.status == HTTP_INVALID_HEADER) {
2080 comm_close(fd);
2081 return;
2082 }
2083 }
2084 }
2085
2086 HttpStateData::handleMoreRequestBodyAvailable();
2087 }
2088
2089 // premature end of the request body
2090 void
2091 HttpStateData::handleRequestBodyProducerAborted()
2092 {
2093 ServerStateData::handleRequestBodyProducerAborted();
2094 // XXX: SendComplete(COMM_ERR_CLOSING) does little. Is it enough?
2095 CommIoCbParams io(NULL);
2096 io.fd=fd;
2097 io.flag=COMM_ERR_CLOSING;
2098 sendComplete(io);
2099 }
2100
2101 // called when we wrote request headers(!) or a part of the body
2102 void
2103 HttpStateData::sentRequestBody(const CommIoCbParams &io)
2104 {
2105 if (io.size > 0)
2106 kb_incr(&statCounter.server.http.kbytes_out, io.size);
2107
2108 ServerStateData::sentRequestBody(io);
2109 }
2110
2111 // Quickly abort the transaction
2112 // TODO: destruction should be sufficient as the destructor should cleanup,
2113 // including canceling close handlers
2114 void
2115 HttpStateData::abortTransaction(const char *reason)
2116 {
2117 debugs(11,5, HERE << "aborting transaction for " << reason <<
2118 "; FD " << fd << ", this " << this);
2119
2120 if (fd >= 0) {
2121 comm_close(fd);
2122 return;
2123 }
2124
2125 fwd->handleUnregisteredServerEnd();
2126 deleteThis("HttpStateData::abortTransaction");
2127 }
2128
2129 #if DEAD_CODE
2130 void
2131 httpBuildVersion(HttpVersion * version, unsigned int major, unsigned int minor)
2132 {
2133 version->major = major;
2134 version->minor = minor;
2135 }
2136 #endif
2137
2138 HttpRequest *
2139 HttpStateData::originalRequest()
2140 {
2141 return orig_request;
2142 }