]> git.ipfire.org Git - thirdparty/squid.git/blame - src/HttpReply.cc
Removed httpHdrCcParseCreate as a first-class method, it only had one in-class caller.
[thirdparty/squid.git] / src / HttpReply.cc
CommitLineData
2ac76861 1
cb69b4c7 2/*
262a0e14 3 * $Id$
cb69b4c7 4 *
123abbe1 5 * DEBUG: section 58 HTTP Reply (Response)
cb69b4c7 6 * AUTHOR: Alex Rousskov
7 *
2b6662ba 8 * SQUID Web Proxy Cache http://www.squid-cache.org/
e25c139f 9 * ----------------------------------------------------------
cb69b4c7 10 *
2b6662ba 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.
cb69b4c7 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.
26ac0430 24 *
cb69b4c7 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.
26ac0430 29 *
cb69b4c7 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
cbdec147 32 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
e25c139f 33 *
cb69b4c7 34 */
35
cb69b4c7 36#include "squid.h"
985c86bc 37#include "SquidTime.h"
528b2c61 38#include "Store.h"
8596962e 39#include "HttpReply.h"
528b2c61 40#include "HttpHdrContRange.h"
25b6a907 41#include "HttpHdrSc.h"
c0941a6a 42#include "acl/FilledChecklist.h"
0667cbfb 43#include "HttpRequest.h"
0eb49b6d 44#include "MemBuf.h"
cb69b4c7 45
46/* local constants */
47
1d7ab0f4 48/* If we receive a 304 from the origin during a cache revalidation, we must
49 * update the headers of the existing entry. Specifically, we need to update all
50 * end-to-end headers and not any hop-by-hop headers (rfc2616 13.5.3).
51 *
52 * This is not the whole story though: since it is possible for a faulty/malicious
53 * origin server to set headers it should not in a 304, we must explicitly ignore
54 * these too. Specifically all entity-headers except those permitted in a 304
55 * (rfc2616 10.3.5) must be ignored.
26ac0430 56 *
1d7ab0f4 57 * The list of headers we don't update is made up of:
58 * all hop-by-hop headers
59 * all entity-headers except Expires and Content-Location
60 */
2246b732 61static HttpHeaderMask Denied304HeadersMask;
26ac0430
AJ
62static http_hdr_type Denied304HeadersArr[] = {
63 // hop-by-hop headers
64 HDR_CONNECTION, HDR_KEEP_ALIVE, HDR_PROXY_AUTHENTICATE, HDR_PROXY_AUTHORIZATION,
a1651bad 65 HDR_TE, HDR_TRAILER, HDR_TRANSFER_ENCODING, HDR_UPGRADE,
26ac0430
AJ
66 // entity headers
67 HDR_ALLOW, HDR_CONTENT_ENCODING, HDR_CONTENT_LANGUAGE, HDR_CONTENT_LENGTH,
68 HDR_CONTENT_MD5, HDR_CONTENT_RANGE, HDR_CONTENT_TYPE, HDR_LAST_MODIFIED
69};
2246b732 70
2246b732 71/* module initialization */
72void
9bc73deb 73httpReplyInitModule(void)
2246b732 74{
8596962e 75 assert(HTTP_STATUS_NONE == 0); // HttpReply::parse() interface assumes that
97474590 76 httpHeaderMaskInit(&Denied304HeadersMask, 0);
8abf232c 77 httpHeaderCalcMask(&Denied304HeadersMask, Denied304HeadersArr, countof(Denied304HeadersArr));
2246b732 78}
79
26ac0430
AJ
80HttpReply::HttpReply() : HttpMsg(hoReply), date (0), last_modified (0),
81 expires (0), surrogate_control (NULL), content_range (NULL), keep_alive (0),
82 protoPrefix("HTTP/"), bodySizeMax(-2)
cb69b4c7 83{
06a5ae20 84 init();
cb69b4c7 85}
86
06a5ae20 87HttpReply::~HttpReply()
cb69b4c7 88{
06a5ae20 89 if (do_clean)
90 clean();
cb69b4c7 91}
92
93void
06a5ae20 94HttpReply::init()
cb69b4c7 95{
06a5ae20 96 httpBodyInit(&body);
97 hdrCacheInit();
98 httpStatusLineInit(&sline);
c99de607 99 pstate = psReadyToParseStartLine;
06a5ae20 100 do_clean = true;
cb69b4c7 101}
102
06a5ae20 103void HttpReply::reset()
cb69b4c7 104{
06a5ae20 105
8596962e 106 // reset should not reset the protocol; could have made protoPrefix a
107 // virtual function instead, but it is not clear whether virtual methods
108 // are allowed with MEMPROXY_CLASS() and whether some cbdata void*
109 // conversions are not going to kill virtual tables
30abd221 110 const String pfx = protoPrefix;
06a5ae20 111 clean();
112 init();
113 protoPrefix = pfx;
114}
115
116void
117HttpReply::clean()
118{
26ac0430 119 // we used to assert that the pipe is NULL, but now the message only
5f8252d2 120 // points to a pipe that is owned and initiated by another object.
121 body_pipe = NULL;
122
06a5ae20 123 httpBodyClean(&body);
124 hdrCacheClean();
519e0948 125 header.clean();
06a5ae20 126 httpStatusLineClean(&sline);
0667cbfb 127 bodySizeMax = -2; // hack: make calculatedBodySizeMax() false
cb69b4c7 128}
129
cb69b4c7 130void
06a5ae20 131HttpReply::packHeadersInto(Packer * p) const
cb69b4c7 132{
06a5ae20 133 httpStatusLinePackInto(&sline, p);
a9925b40 134 header.packInto(p);
cb69b4c7 135 packerAppend(p, "\r\n", 2);
528b2c61 136}
137
138void
06a5ae20 139HttpReply::packInto(Packer * p)
528b2c61 140{
06a5ae20 141 packHeadersInto(p);
142 httpBodyPackInto(&body, p);
cb69b4c7 143}
144
06a5ae20 145/* create memBuf, create mem-based packer, pack, destroy packer, return MemBuf */
032785bf 146MemBuf *
06a5ae20 147HttpReply::pack()
cb69b4c7 148{
032785bf 149 MemBuf *mb = new MemBuf;
cb69b4c7 150 Packer p;
cb69b4c7 151
2fe7eff9 152 mb->init();
032785bf 153 packerToMemInit(&p, mb);
06a5ae20 154 packInto(&p);
cb69b4c7 155 packerClean(&p);
156 return mb;
157}
158
11992b6f 159#if DEAD_CODE
032785bf 160MemBuf *
11992b6f 161httpPackedReply(http_status status, const char *ctype, int64_t clen, time_t lmt, time_t expires)
cb69b4c7 162{
06a5ae20 163 HttpReply *rep = new HttpReply;
11992b6f 164 rep->setHeaders(status, ctype, NULL, clen, lmt, expires);
06a5ae20 165 MemBuf *mb = rep->pack();
166 delete rep;
cb69b4c7 167 return mb;
168}
11992b6f 169#endif
cb69b4c7 170
528b2c61 171HttpReply *
11992b6f 172HttpReply::make304() const
cb69b4c7 173{
62e76326 174 static const http_hdr_type ImsEntries[] = {HDR_DATE, HDR_CONTENT_TYPE, HDR_EXPIRES, HDR_LAST_MODIFIED, /* eof */ HDR_OTHER};
175
06a5ae20 176 HttpReply *rv = new HttpReply;
728da2ee 177 int t;
de336bbe 178 HttpHeaderEntry *e;
cb69b4c7 179
528b2c61 180 /* rv->content_length; */
06a5ae20 181 rv->date = date;
182 rv->last_modified = last_modified;
183 rv->expires = expires;
184 rv->content_type = content_type;
528b2c61 185 /* rv->cache_control */
186 /* rv->content_range */
187 /* rv->keep_alive */
871c031f 188 HttpVersion ver(1,1);
62fb4c4f 189 httpStatusLineSet(&rv->sline, ver, HTTP_NOT_MODIFIED, NULL);
62e76326 190
de336bbe 191 for (t = 0; ImsEntries[t] != HDR_OTHER; ++t)
a9925b40 192 if ((e = header.findEntry(ImsEntries[t])))
eede25e7 193 rv->header.addEntry(e->clone());
62e76326 194
528b2c61 195 /* rv->body */
196 return rv;
197}
198
032785bf 199MemBuf *
06a5ae20 200HttpReply::packed304Reply()
528b2c61 201{
202 /* Not as efficient as skipping the header duplication,
203 * but easier to maintain
204 */
871c031f 205 HttpReply *temp = make304();
06a5ae20 206 MemBuf *rv = temp->pack();
207 delete temp;
528b2c61 208 return rv;
cb69b4c7 209}
210
211void
11992b6f 212HttpReply::setHeaders(http_status status, const char *reason,
350e2aec 213 const char *ctype, int64_t clen, time_t lmt, time_t expiresTime)
cb69b4c7 214{
215 HttpHeader *hdr;
871c031f 216 HttpVersion ver(1,1);
06a5ae20 217 httpStatusLineSet(&sline, ver, status, reason);
218 hdr = &header;
a9925b40 219 hdr->putStr(HDR_SERVER, visible_appname_string);
220 hdr->putStr(HDR_MIME_VERSION, "1.0");
221 hdr->putTime(HDR_DATE, squid_curtime);
62e76326 222
d8b249ef 223 if (ctype) {
a9925b40 224 hdr->putStr(HDR_CONTENT_TYPE, ctype);
06a5ae20 225 content_type = ctype;
d8b249ef 226 } else
30abd221 227 content_type = String();
62e76326 228
de336bbe 229 if (clen >= 0)
47f6e231 230 hdr->putInt64(HDR_CONTENT_LENGTH, clen);
62e76326 231
350e2aec
FC
232 if (expiresTime >= 0)
233 hdr->putTime(HDR_EXPIRES, expiresTime);
62e76326 234
2ac76861 235 if (lmt > 0) /* this used to be lmt != 0 @?@ */
a9925b40 236 hdr->putTime(HDR_LAST_MODIFIED, lmt);
62e76326 237
06a5ae20 238 date = squid_curtime;
62e76326 239
06a5ae20 240 content_length = clen;
62e76326 241
350e2aec 242 expires = expiresTime;
62e76326 243
06a5ae20 244 last_modified = lmt;
cb69b4c7 245}
246
6d38ef86 247void
06a5ae20 248HttpReply::redirect(http_status status, const char *loc)
6d38ef86 249{
250 HttpHeader *hdr;
871c031f 251 HttpVersion ver(1,1);
06a5ae20 252 httpStatusLineSet(&sline, ver, status, httpStatusString(status));
253 hdr = &header;
7dbca7a4 254 hdr->putStr(HDR_SERVER, APP_FULLNAME);
a9925b40 255 hdr->putTime(HDR_DATE, squid_curtime);
47f6e231 256 hdr->putInt64(HDR_CONTENT_LENGTH, 0);
a9925b40 257 hdr->putStr(HDR_LOCATION, loc);
06a5ae20 258 date = squid_curtime;
259 content_length = 0;
6d38ef86 260}
261
528b2c61 262/* compare the validators of two replies.
263 * 1 = they match
264 * 0 = they do not match
265 */
266int
06a5ae20 267HttpReply::validatorsMatch(HttpReply const * otherRep) const
62e76326 268{
30abd221 269 String one,two;
06a5ae20 270 assert (otherRep);
528b2c61 271 /* Numbers first - easiest to check */
272 /* Content-Length */
273 /* TODO: remove -1 bypass */
62e76326 274
06a5ae20 275 if (content_length != otherRep->content_length
276 && content_length > -1 &&
62e76326 277 otherRep->content_length > -1)
278 return 0;
279
528b2c61 280 /* ETag */
a9925b40 281 one = header.getStrOrList(HDR_ETAG);
62e76326 282
a9925b40 283 two = otherRep->header.getStrOrList(HDR_ETAG);
62e76326 284
9d7a89a5 285 if (one.undefined() || two.undefined() || one.caseCmp(two)!=0 ) {
30abd221 286 one.clean();
287 two.clean();
62e76326 288 return 0;
528b2c61 289 }
62e76326 290
06a5ae20 291 if (last_modified != otherRep->last_modified)
62e76326 292 return 0;
293
528b2c61 294 /* MD5 */
a9925b40 295 one = header.getStrOrList(HDR_CONTENT_MD5);
62e76326 296
a9925b40 297 two = otherRep->header.getStrOrList(HDR_CONTENT_MD5);
62e76326 298
9d7a89a5 299 if (one.undefined() || two.undefined() || one.caseCmp(two) != 0 ) {
30abd221 300 one.clean();
301 two.clean();
62e76326 302 return 0;
528b2c61 303 }
62e76326 304
528b2c61 305 return 1;
306}
307
cb69b4c7 308void
06a5ae20 309HttpReply::updateOnNotModified(HttpReply const * freshRep)
cb69b4c7 310{
07947ad8 311 assert(freshRep);
1d7ab0f4 312
d8b249ef 313 /* clean cache */
06a5ae20 314 hdrCacheClean();
d8b249ef 315 /* update raw headers */
a9925b40 316 header.update(&freshRep->header,
317 (const HttpHeaderMask *) &Denied304HeadersMask);
1d7ab0f4 318
394499bd 319 header.compact();
d8b249ef 320 /* init cache */
07947ad8 321 hdrCacheInit();
cb69b4c7 322}
323
d8b249ef 324/* internal routines */
cb69b4c7 325
06a5ae20 326time_t
327HttpReply::hdrExpirationTime()
d20b1cd0 328{
329 /* The s-maxage and max-age directive takes priority over Expires */
62e76326 330
06a5ae20 331 if (cache_control) {
332 if (date >= 0) {
333 if (cache_control->s_maxage >= 0)
334 return date + cache_control->s_maxage;
62e76326 335
06a5ae20 336 if (cache_control->max_age >= 0)
337 return date + cache_control->max_age;
62e76326 338 } else {
339 /*
340 * Conservatively handle the case when we have a max-age
341 * header, but no Date for reference?
342 */
343
06a5ae20 344 if (cache_control->s_maxage >= 0)
62e76326 345 return squid_curtime;
346
06a5ae20 347 if (cache_control->max_age >= 0)
62e76326 348 return squid_curtime;
349 }
d20b1cd0 350 }
62e76326 351
f66a9ef4 352 if (Config.onoff.vary_ignore_expire &&
a9925b40 353 header.has(HDR_VARY)) {
354 const time_t d = header.getTime(HDR_DATE);
355 const time_t e = header.getTime(HDR_EXPIRES);
62e76326 356
357 if (d == e)
358 return -1;
f66a9ef4 359 }
62e76326 360
a9925b40 361 if (header.has(HDR_EXPIRES)) {
362 const time_t e = header.getTime(HDR_EXPIRES);
62e76326 363 /*
364 * HTTP/1.0 says that robust implementations should consider
365 * bad or malformed Expires header as equivalent to "expires
366 * immediately."
367 */
368 return e < 0 ? squid_curtime : e;
d20b1cd0 369 }
62e76326 370
d20b1cd0 371 return -1;
372}
373
d8b249ef 374/* sync this routine when you update HttpReply struct */
8596962e 375void
07947ad8 376HttpReply::hdrCacheInit()
cb69b4c7 377{
07947ad8 378 HttpMsg::hdrCacheInit();
379
4a1acc56 380 http_ver = sline.version;
47f6e231 381 content_length = header.getInt64(HDR_CONTENT_LENGTH);
a9925b40 382 date = header.getTime(HDR_DATE);
383 last_modified = header.getTime(HDR_LAST_MODIFIED);
384 surrogate_control = header.getSc();
385 content_range = header.getContRange();
4a1acc56 386 keep_alive = persistent() ? 1 : 0;
a9925b40 387 const char *str = header.getStr(HDR_CONTENT_TYPE);
62e76326 388
d8b249ef 389 if (str)
07947ad8 390 content_type.limitInit(str, strcspn(str, ";\t "));
d8b249ef 391 else
30abd221 392 content_type = String();
62e76326 393
d20b1cd0 394 /* be sure to set expires after date and cache-control */
06a5ae20 395 expires = hdrExpirationTime();
cb69b4c7 396}
397
d8b249ef 398/* sync this routine when you update HttpReply struct */
06a5ae20 399void
400HttpReply::hdrCacheClean()
2ac76861 401{
30abd221 402 content_type.clean();
62e76326 403
06a5ae20 404 if (cache_control) {
405 httpHdrCcDestroy(cache_control);
406 cache_control = NULL;
07947ad8 407 }
62e76326 408
06a5ae20 409 if (surrogate_control) {
410 httpHdrScDestroy(surrogate_control);
411 surrogate_control = NULL;
07947ad8 412 }
43ae1d95 413
06a5ae20 414 if (content_range) {
415 httpHdrContRangeDestroy(content_range);
416 content_range = NULL;
07947ad8 417 }
63259c34 418}
cb69b4c7 419
35282fbf 420/*
421 * Returns the body size of a HTTP response
422 */
47f6e231 423int64_t
60745f24 424HttpReply::bodySize(const HttpRequestMethod& method) const
35282fbf 425{
06a5ae20 426 if (sline.version.major < 1)
1bda350e 427 return -1;
914b89a2 428 else if (method.id() == METHOD_HEAD)
62e76326 429 return 0;
06a5ae20 430 else if (sline.status == HTTP_OK)
62e76326 431 (void) 0; /* common case, continue */
06a5ae20 432 else if (sline.status == HTTP_NO_CONTENT)
62e76326 433 return 0;
06a5ae20 434 else if (sline.status == HTTP_NOT_MODIFIED)
62e76326 435 return 0;
06a5ae20 436 else if (sline.status < HTTP_OK)
62e76326 437 return 0;
438
06a5ae20 439 return content_length;
35282fbf 440}
8596962e 441
96ee497f
AJ
442/**
443 * Checks the first line of an HTTP Reply is valid.
444 * currently only checks "HTTP/" exists.
445 *
446 * NP: not all error cases are detected yet. Some are left for detection later in parse.
447 */
448bool
449HttpReply::sanityCheckStartLine(MemBuf *buf, const size_t hdr_len, http_status *error)
8596962e 450{
96ee497f
AJ
451 // hack warning: using psize instead of size here due to type mismatches with MemBuf.
452
453 // content is long enough to possibly hold a reply
454 // 4 being magic size of a 3-digit number plus space delimiter
455 if ( buf->contentSize() < (protoPrefix.psize() + 4) ) {
0246f6b8
AJ
456 if (hdr_len > 0) {
457 debugs(58, 3, HERE << "Too small reply header (" << hdr_len << " bytes)");
96ee497f 458 *error = HTTP_INVALID_HEADER;
0246f6b8 459 }
96ee497f
AJ
460 return false;
461 }
462
e77d7ef0 463 int pos;
96ee497f 464 // catch missing or mismatched protocol identifier
e77d7ef0
AJ
465 // allow special-case for ICY protocol (non-HTTP identifier) in response to faked HTTP request.
466 if (strncmp(buf->content(), "ICY", 3) == 0) {
467 protoPrefix = "ICY";
468 pos = protoPrefix.psize();
dd20bfd3 469 } else {
8596962e 470
e77d7ef0
AJ
471 if (protoPrefix.cmp(buf->content(), protoPrefix.size()) != 0) {
472 debugs(58, 3, "HttpReply::sanityCheckStartLine: missing protocol prefix (" << protoPrefix << ") in '" << buf->content() << "'");
473 *error = HTTP_INVALID_HEADER;
474 return false;
475 }
96ee497f 476
e77d7ef0
AJ
477 // catch missing or negative status value (negative '-' is not a digit)
478 pos = protoPrefix.psize();
dd20bfd3 479
e77d7ef0
AJ
480 // skip arbitrary number of digits and a dot in the verion portion
481 while ( pos <= buf->contentSize() && (*(buf->content()+pos) == '.' || xisdigit(*(buf->content()+pos)) ) ) ++pos;
96ee497f 482
e77d7ef0
AJ
483 // catch missing version info
484 if (pos == protoPrefix.psize()) {
485 debugs(58, 3, "HttpReply::sanityCheckStartLine: missing protocol version numbers (ie. " << protoPrefix << "/1.0) in '" << buf->content() << "'");
486 *error = HTTP_INVALID_HEADER;
487 return false;
488 }
96ee497f
AJ
489 }
490
491 // skip arbitrary number of spaces...
492 while (pos <= buf->contentSize() && (char)*(buf->content()+pos) == ' ') ++pos;
493
6934ca51 494 if (pos < buf->contentSize() && !xisdigit(*(buf->content()+pos))) {
96ee497f
AJ
495 debugs(58, 3, "HttpReply::sanityCheckStartLine: missing or invalid status number in '" << buf->content() << "'");
496 *error = HTTP_INVALID_HEADER;
497 return false;
498 }
499
8596962e 500 return true;
501}
502
503void HttpReply::packFirstLineInto(Packer *p, bool unused) const
504{
505 httpStatusLinePackInto(&sline, p);
506}
429f7150 507
508bool HttpReply::parseFirstLine(const char *blk_start, const char *blk_end)
509{
510 return httpStatusLineParse(&sline, protoPrefix, blk_start, blk_end);
511}
5c09dcb8 512
fb525683 513/* handy: resets and returns -1 */
514int
515HttpReply::httpMsgParseError()
516{
517 int result(HttpMsg::httpMsgParseError());
518 /* indicate an error in the status line */
519 sline.status = HTTP_INVALID_HEADER;
520 return result;
521}
522
5c09dcb8 523/*
524 * Indicate whether or not we would usually expect an entity-body
525 * along with this response
526 */
527bool
60745f24 528HttpReply::expectingBody(const HttpRequestMethod& req_method, int64_t& theSize) const
5c09dcb8 529{
530 bool expectBody = true;
531
532 if (req_method == METHOD_HEAD)
533 expectBody = false;
534 else if (sline.status == HTTP_NO_CONTENT)
535 expectBody = false;
536 else if (sline.status == HTTP_NOT_MODIFIED)
537 expectBody = false;
538 else if (sline.status < HTTP_OK)
539 expectBody = false;
540 else
541 expectBody = true;
542
543 if (expectBody) {
c3d0ba0c 544 if (header.chunked())
5c09dcb8 545 theSize = -1;
546 else if (content_length >= 0)
547 theSize = content_length;
548 else
549 theSize = -1;
550 }
551
552 return expectBody;
553}
0667cbfb 554
555bool
556HttpReply::receivedBodyTooLarge(HttpRequest& request, int64_t receivedSize)
557{
558 calcMaxBodySize(request);
559 debugs(58, 3, HERE << receivedSize << " >? " << bodySizeMax);
560 return bodySizeMax >= 0 && receivedSize > bodySizeMax;
561}
562
563bool
564HttpReply::expectedBodyTooLarge(HttpRequest& request)
565{
566 calcMaxBodySize(request);
567 debugs(58, 7, HERE << "bodySizeMax=" << bodySizeMax);
568
569 if (bodySizeMax < 0) // no body size limit
570 return false;
571
572 int64_t expectedSize = -1;
573 if (!expectingBody(request.method, expectedSize))
574 return false;
26ac0430 575
0667cbfb 576 debugs(58, 6, HERE << expectedSize << " >? " << bodySizeMax);
577
578 if (expectedSize < 0) // expecting body of an unknown length
579 return false;
580
581 return expectedSize > bodySizeMax;
582}
583
584void
585HttpReply::calcMaxBodySize(HttpRequest& request)
586{
587 // hack: -2 is used as "we have not calculated max body size yet" state
588 if (bodySizeMax != -2) // already tried
589 return;
590 bodySizeMax = -1;
591
4194f58d
AJ
592 // short-circuit ACL testing if there are none configured
593 if (!Config.ReplyBodySize)
594 return;
595
c0941a6a 596 ACLFilledChecklist ch(NULL, &request, NULL);
3a46fd5e
AJ
597#if FOLLOW_X_FORWARDED_FOR
598 if (Config.onoff.acl_uses_indirect_client)
599 ch.src_addr = request.indirect_client_addr;
600 else
601#endif
602 ch.src_addr = request.client_addr;
0667cbfb 603 ch.my_addr = request.my_addr;
604 ch.reply = HTTPMSGLOCK(this); // XXX: this lock makes method non-const
0667cbfb 605 for (acl_size_t *l = Config.ReplyBodySize; l; l = l -> next) {
b50e327b 606 /* if there is no ACL list or if the ACLs listed match use this size value */
2efeb0b7 607 if (!l->aclList || ch.fastCheck(l->aclList) == ACCESS_ALLOWED) {
0667cbfb 608 debugs(58, 4, HERE << "bodySizeMax=" << bodySizeMax);
609 bodySizeMax = l->size; // may be -1
610 break;
611 }
612 }
613}
da33c835 614
fa0e6114 615// XXX: check that this is sufficient for eCAP cloning
da33c835
HN
616HttpReply *
617HttpReply::clone() const
618{
619 HttpReply *rep = new HttpReply();
66363092 620 rep->sline = sline; // used in hdrCacheInit() call below
da33c835
HN
621 rep->header.append(&header);
622 rep->hdrCacheInit();
623 rep->hdr_sz = hdr_sz;
f230832f
HN
624 rep->http_ver = http_ver;
625 rep->pstate = pstate;
fa0e6114
AR
626 rep->body_pipe = body_pipe;
627
f230832f 628 rep->protocol = protocol;
66363092 629 // keep_alive is handled in hdrCacheInit()
da33c835
HN
630 return rep;
631}
d67acb4e
AJ
632
633
634bool HttpReply::inheritProperties(const HttpMsg *aMsg)
635{
636 const HttpReply *aRep = dynamic_cast<const HttpReply*>(aMsg);
26ac0430
AJ
637 if (!aRep)
638 return false;
d67acb4e
AJ
639 keep_alive = aRep->keep_alive;
640 return true;
641}
c679653d
AR
642
643void HttpReply::removeStaleWarnings()
644{
645 String warning;
646 if (header.getList(HDR_WARNING, &warning)) {
647 const String newWarning = removeStaleWarningValues(warning);
648 if (warning.size() && warning.size() == newWarning.size())
649 return; // some warnings are there and none changed
650 header.delById(HDR_WARNING);
651 if (newWarning.size()) { // some warnings left
652 HttpHeaderEntry *const e =
653 new HttpHeaderEntry(HDR_WARNING, NULL, newWarning.termedBuf());
654 header.addEntry(e);
655 }
656 }
657}
658
659/**
660 * Remove warning-values with warn-date different from Date value from
661 * a single header entry. Returns a string with all valid warning-values.
662 */
663String HttpReply::removeStaleWarningValues(const String &value)
664{
665 String newValue;
666 const char *item = 0;
667 int len = 0;
668 const char *pos = 0;
669 while (strListGetItem(&value, ',', &item, &len, &pos)) {
670 bool keep = true;
671 // Does warning-value have warn-date (which contains quoted date)?
672 // We scan backwards, looking for two quoted strings.
673 // warning-value = warn-code SP warn-agent SP warn-text [SP warn-date]
674 const char *p = item + len - 1;
675
676 while (p >= item && xisspace(*p)) --p; // skip whitespace
677
678 // warning-value MUST end with quote
679 if (p >= item && *p == '"') {
680 const char *const warnDateEnd = p;
681 --p;
682 while (p >= item && *p != '"') --p; // find the next quote
683
684 const char *warnDateBeg = p + 1;
685 --p;
686 while (p >= item && xisspace(*p)) --p; // skip whitespace
687
688 if (p >= item && *p == '"' && warnDateBeg - p > 2) {
689 // found warn-text
690 String warnDate;
691 warnDate.append(warnDateBeg, warnDateEnd - warnDateBeg);
692 const time_t time = parse_rfc1123(warnDate.termedBuf());
693 keep = (time > 0 && time == date); // keep valid and matching date
694 }
695 }
696
697 if (keep) {
698 if (newValue.size())
699 newValue.append(", ");
700 newValue.append(item, len);
701 }
702 }
703
704 return newValue;
705}