]> git.ipfire.org Git - thirdparty/squid.git/blame - src/adaptation/icap/ModXact.cc
Bug 5186: noteDestinationsEnd check failed: transportWait (#985)
[thirdparty/squid.git] / src / adaptation / icap / ModXact.cc
CommitLineData
774c051c 1/*
bf95c10a 2 * Copyright (C) 1996-2022 The Squid Software Foundation and contributors
bbc27441
AJ
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.
774c051c 7 */
8
bbc27441
AJ
9/* DEBUG: section 93 ICAP (RFC 3507) Client */
10
582c2af2 11#include "squid.h"
3d93a84d 12#include "AccessLogEntry.h"
1adcebc3 13#include "adaptation/Answer.h"
3d93a84d
AJ
14#include "adaptation/History.h"
15#include "adaptation/icap/Client.h"
16#include "adaptation/icap/Config.h"
17#include "adaptation/icap/History.h"
18#include "adaptation/icap/Launcher.h"
19#include "adaptation/icap/ModXact.h"
20#include "adaptation/icap/ServiceRep.h"
21#include "adaptation/Initiator.h"
22#include "auth/UserRequest.h"
23#include "base/TextException.h"
25f98340 24#include "base64.h"
774c051c 25#include "comm.h"
d6327017 26#include "comm/Connection.h"
83b053a0
CT
27#include "error/Detail.h"
28#include "error/ExceptionErrorDetail.h"
4f1c93a7 29#include "http/ContentLengthInterpreter.h"
a5bac1d2 30#include "HttpHeaderTools.h"
774c051c 31#include "HttpReply.h"
5ceaee75 32#include "MasterXaction.h"
417da400
EB
33#include "parser/Tokenizer.h"
34#include "sbuf/Stream.h"
985c86bc 35#include "SquidTime.h"
774c051c 36
37// flow and terminology:
38// HTTP| --> receive --> encode --> write --> |network
39// end | <-- send <-- parse <-- read <-- |end
40
774c051c 41// TODO: replace gotEncapsulated() with something faster; we call it often
42
26cc52cb
AR
43CBDATA_NAMESPACED_CLASS_INIT(Adaptation::Icap, ModXact);
44CBDATA_NAMESPACED_CLASS_INIT(Adaptation::Icap, ModXactLauncher);
774c051c 45
5f8252d2 46static const size_t TheBackupLimit = BodyPipe::MaxCapacity;
774c051c 47
417da400
EB
48const SBuf Adaptation::Icap::ChunkExtensionValueParser::UseOriginalBodyName("use-original-body");
49
26cc52cb 50Adaptation::Icap::ModXact::State::State()
774c051c 51{
09bfe95f 52 memset(this, 0, sizeof(*this));
774c051c 53}
54
63df1d28 55Adaptation::Icap::ModXact::ModXact(Http::Message *virginHeader,
af0ded40 56 HttpRequest *virginCause, AccessLogEntry::Pointer &alp, Adaptation::Icap::ServiceRep::Pointer &aService):
f53969cc
SM
57 AsyncJob("Adaptation::Icap::ModXact"),
58 Adaptation::Icap::Xaction("Adaptation::Icap::ModXact", aService),
59 virginConsumed(0),
60 bodyParser(NULL),
61 canStartBypass(false), // too early
62 protectGroupBypass(true),
63 replyHttpHeaderSize(-1),
64 replyHttpBodySize(-1),
65 adaptHistoryId(-1),
69c698a3 66 trailerParser(nullptr),
f53969cc 67 alMaster(alp)
774c051c 68{
5f8252d2 69 assert(virginHeader);
774c051c 70
5f8252d2 71 virgin.setHeader(virginHeader); // sets virgin.body_pipe if needed
72 virgin.setCause(virginCause); // may be NULL
774c051c 73
5f8252d2 74 // adapted header and body are initialized when we parse them
774c051c 75
26cc52cb 76 // writing and reading ends are handled by Adaptation::Icap::Xaction
774c051c 77
78 // encoding
79 // nothing to do because we are using temporary buffers
80
3ff65596 81 // parsing; TODO: do not set until we parse, see ICAPOptXact
c7d51c86 82 icapReply = new HttpReply;
774c051c 83 icapReply->protoPrefix = "ICAP/"; // TODO: make an IcapReply class?
84
bf95c10a 85 debugs(93,7, "initialized." << status());
774c051c 86}
87
5f8252d2 88// initiator wants us to start
26cc52cb 89void Adaptation::Icap::ModXact::start()
774c051c 90{
26cc52cb 91 Adaptation::Icap::Xaction::start();
774c051c 92
3ff65596 93 // reserve an adaptation history slot (attempts are known at this time)
a22e6cd3 94 Adaptation::History::Pointer ah = virginRequest().adaptLogHistory();
3ff65596
AR
95 if (ah != NULL)
96 adaptHistoryId = ah->recordXactStart(service().cfg().key, icap_tr_start, attempts > 1);
97
774c051c 98 estimateVirginBody(); // before virgin disappears!
99
0bef8dd7 100 canStartBypass = service().cfg().bypass;
478cfe99 101
774c051c 102 // it is an ICAP violation to send request to a service w/o known OPTIONS
2dba5b8e
CT
103 // and the service may is too busy for us: honor Max-Connections and such
104 if (service().up() && service().availableForNew())
774c051c 105 startWriting();
106 else
107 waitForService();
774c051c 108}
109
26cc52cb 110void Adaptation::Icap::ModXact::waitForService()
774c051c 111{
2dba5b8e 112 const char *comment;
774c051c 113 Must(!state.serviceWaiting);
2dba5b8e
CT
114
115 if (!service().up()) {
116 AsyncCall::Pointer call = JobCallback(93,5,
117 ConnWaiterDialer, this, Adaptation::Icap::ModXact::noteServiceReady);
118
119 service().callWhenReady(call);
120 comment = "to be up";
121 } else {
122 //The service is unavailable because of max-connection or other reason
123
124 if (service().cfg().onOverload != srvWait) {
125 // The service is overloaded, but waiting to be available prohibited by
126 // user configuration (onOverload is set to "block" or "bypass")
127 if (service().cfg().onOverload == srvBlock)
128 disableBypass("not available", true);
129 else //if (service().cfg().onOverload == srvBypass)
130 canStartBypass = true;
131
132 disableRetries();
133 disableRepeats("ICAP service is not available");
134
bf95c10a 135 debugs(93, 7, "will not wait for the service to be available" <<
2dba5b8e
CT
136 status());
137
138 throw TexcHere("ICAP service is not available");
139 }
140
141 AsyncCall::Pointer call = JobCallback(93,5,
142 ConnWaiterDialer, this, Adaptation::Icap::ModXact::noteServiceAvailable);
143 service().callWhenAvailable(call, state.waitedForService);
144 comment = "to be available";
145 }
146
bf95c10a 147 debugs(93, 7, "will wait for the service " << comment << status());
c7d51c86 148 state.serviceWaiting = true; // after callWhenReady() which may throw
2dba5b8e 149 state.waitedForService = true;
774c051c 150}
151
26cc52cb 152void Adaptation::Icap::ModXact::noteServiceReady()
774c051c 153{
774c051c 154 Must(state.serviceWaiting);
155 state.serviceWaiting = false;
c99de607 156
2dba5b8e 157 if (!service().up()) {
c824c43b 158 disableRetries();
3ff65596 159 disableRepeats("ICAP service is unusable");
478cfe99 160 throw TexcHere("ICAP service is unusable");
c824c43b 161 }
2dba5b8e
CT
162
163 if (service().availableForOld())
164 startWriting();
165 else
166 waitForService();
167}
168
169void Adaptation::Icap::ModXact::noteServiceAvailable()
170{
171 Must(state.serviceWaiting);
172 state.serviceWaiting = false;
173
174 if (service().up() && service().availableForOld())
175 startWriting();
176 else
177 waitForService();
774c051c 178}
179
26cc52cb 180void Adaptation::Icap::ModXact::startWriting()
774c051c 181{
774c051c 182 state.writing = State::writingConnect;
c824c43b 183
184 decideOnPreview(); // must be decided before we decideOnRetries
185 decideOnRetries();
186
774c051c 187 openConnection();
774c051c 188}
189
2b6b1bcb 190void Adaptation::Icap::ModXact::startShoveling()
774c051c 191{
192 Must(state.writing == State::writingConnect);
193
194 startReading(); // wait for early errors from the ICAP server
195
196 MemBuf requestBuf;
197 requestBuf.init();
198
199 makeRequestHeaders(requestBuf);
bf95c10a 200 debugs(93, 9, "will write" << status() << ":\n" <<
774c051c 201 (requestBuf.terminate(), requestBuf.content()));
202
203 // write headers
204 state.writing = State::writingHeaders;
3ff65596 205 icap_tio_start = current_time;
774c051c 206 scheduleWrite(requestBuf);
207}
208
26cc52cb 209void Adaptation::Icap::ModXact::handleCommWrote(size_t sz)
774c051c 210{
bf95c10a 211 debugs(93, 5, "Wrote " << sz << " bytes");
b107a5a5 212
774c051c 213 if (state.writing == State::writingHeaders)
214 handleCommWroteHeaders();
215 else
216 handleCommWroteBody();
217}
218
26cc52cb 219void Adaptation::Icap::ModXact::handleCommWroteHeaders()
774c051c 220{
221 Must(state.writing == State::writingHeaders);
222
5f8252d2 223 // determine next step
23e05fb1
AR
224 if (preview.enabled()) {
225 if (preview.done())
226 decideWritingAfterPreview("zero-size");
227 else
228 state.writing = State::writingPreview;
229 } else if (virginBody.expected()) {
e1381638 230 state.writing = State::writingPrime;
23e05fb1 231 } else {
e1381638
AJ
232 stopWriting(true);
233 return;
234 }
5f8252d2 235
236 writeMore();
774c051c 237}
238
26cc52cb 239void Adaptation::Icap::ModXact::writeMore()
774c051c 240{
bf95c10a 241 debugs(93, 5, "checking whether to write more" << status());
5f8252d2 242
bd7f2ede 243 if (writer != NULL) // already writing something
774c051c 244 return;
245
246 switch (state.writing) {
247
248 case State::writingInit: // waiting for service OPTIONS
249 Must(state.serviceWaiting);
8b082ed9 250 return;
774c051c 251
252 case State::writingConnect: // waiting for the connection to establish
774c051c 253 case State::writingHeaders: // waiting for the headers to be written
774c051c 254 case State::writingPaused: // waiting for the ICAP server response
c99de607 255 case State::writingReallyDone: // nothing more to write
256 return;
257
258 case State::writingAlmostDone: // was waiting for the last write
259 stopWriting(false);
774c051c 260 return;
261
262 case State::writingPreview:
5f8252d2 263 writePreviewBody();
774c051c 264 return;
265
266 case State::writingPrime:
267 writePrimeBody();
268 return;
269
270 default:
26cc52cb 271 throw TexcHere("Adaptation::Icap::ModXact in bad writing state");
774c051c 272 }
273}
274
26cc52cb 275void Adaptation::Icap::ModXact::writePreviewBody()
774c051c 276{
bf95c10a 277 debugs(93, 8, "will write Preview body from " <<
9e008dda 278 virgin.body_pipe << status());
774c051c 279 Must(state.writing == State::writingPreview);
5f8252d2 280 Must(virgin.body_pipe != NULL);
774c051c 281
5f8252d2 282 const size_t sizeMax = (size_t)virgin.body_pipe->buf().contentSize();
d85c3078 283 const size_t size = min(preview.debt(), sizeMax);
774c051c 284 writeSomeBody("preview body", size);
285
286 // change state once preview is written
287
23e05fb1
AR
288 if (preview.done())
289 decideWritingAfterPreview("body");
290}
774c051c 291
23e05fb1
AR
292/// determine state.writing after we wrote the entire preview
293void Adaptation::Icap::ModXact::decideWritingAfterPreview(const char *kind)
294{
295 if (preview.ieof()) // nothing more to write
296 stopWriting(true);
e81d21e0 297 else if (state.parsing == State::psIcapHeader) // did not get a reply yet
23e05fb1
AR
298 state.writing = State::writingPaused; // wait for the ICAP server reply
299 else
300 stopWriting(true); // ICAP server reply implies no post-preview writing
301
bf95c10a 302 debugs(93, 6, "decided on writing after " << kind << " preview" <<
e81d21e0 303 status());
774c051c 304}
305
26cc52cb 306void Adaptation::Icap::ModXact::writePrimeBody()
774c051c 307{
308 Must(state.writing == State::writingPrime);
5f8252d2 309 Must(virginBodyWriting.active());
774c051c 310
5f8252d2 311 const size_t size = (size_t)virgin.body_pipe->buf().contentSize();
774c051c 312 writeSomeBody("prime virgin body", size);
313
5f8252d2 314 if (virginBodyEndReached(virginBodyWriting)) {
bf95c10a 315 debugs(93, 5, "wrote entire body");
c99de607 316 stopWriting(true);
b107a5a5 317 }
774c051c 318}
319
26cc52cb 320void Adaptation::Icap::ModXact::writeSomeBody(const char *label, size_t size)
774c051c 321{
c99de607 322 Must(!writer && state.writing < state.writingAlmostDone);
5f8252d2 323 Must(virgin.body_pipe != NULL);
bf95c10a 324 debugs(93, 8, "will write up to " << size << " bytes of " <<
774c051c 325 label);
326
327 MemBuf writeBuf; // TODO: suggest a min size based on size and lastChunk
328
329 writeBuf.init(); // note: we assume that last-chunk will fit
330
5f8252d2 331 const size_t writableSize = virginContentSize(virginBodyWriting);
d85c3078 332 const size_t chunkSize = min(writableSize, size);
774c051c 333
334 if (chunkSize) {
bf95c10a 335 debugs(93, 7, "will write " << chunkSize <<
774c051c 336 "-byte chunk of " << label);
5f8252d2 337
338 openChunk(writeBuf, chunkSize, false);
339 writeBuf.append(virginContentData(virginBodyWriting), chunkSize);
340 closeChunk(writeBuf);
341
342 virginBodyWriting.progress(chunkSize);
343 virginConsume();
774c051c 344 } else {
bf95c10a 345 debugs(93, 7, "has no writable " << label << " content");
774c051c 346 }
347
5f8252d2 348 const bool wroteEof = virginBodyEndReached(virginBodyWriting);
349 bool lastChunk = wroteEof;
350 if (state.writing == State::writingPreview) {
351 preview.wrote(chunkSize, wroteEof); // even if wrote nothing
352 lastChunk = lastChunk || preview.done();
353 }
774c051c 354
5f8252d2 355 if (lastChunk) {
bf95c10a 356 debugs(93, 8, "will write last-chunk of " << label);
774c051c 357 addLastRequestChunk(writeBuf);
358 }
359
bf95c10a 360 debugs(93, 7, "will write " << writeBuf.contentSize()
774c051c 361 << " raw bytes of " << label);
362
363 if (writeBuf.hasContent()) {
364 scheduleWrite(writeBuf); // comm will free the chunk
365 } else {
366 writeBuf.clean();
367 }
368}
369
26cc52cb 370void Adaptation::Icap::ModXact::addLastRequestChunk(MemBuf &buf)
774c051c 371{
c99de607 372 const bool ieof = state.writing == State::writingPreview && preview.ieof();
373 openChunk(buf, 0, ieof);
374 closeChunk(buf);
774c051c 375}
376
26cc52cb 377void Adaptation::Icap::ModXact::openChunk(MemBuf &buf, size_t chunkSize, bool ieof)
774c051c 378{
4391cd15 379 buf.appendf((ieof ? "%x; ieof\r\n" : "%x\r\n"), (int) chunkSize);
774c051c 380}
381
26cc52cb 382void Adaptation::Icap::ModXact::closeChunk(MemBuf &buf)
774c051c 383{
774c051c 384 buf.append(ICAP::crlf, 2); // chunk-terminating CRLF
385}
386
3ff65596
AR
387const HttpRequest &Adaptation::Icap::ModXact::virginRequest() const
388{
389 const HttpRequest *request = virgin.cause ?
e1381638 390 virgin.cause : dynamic_cast<const HttpRequest*>(virgin.header);
3ff65596
AR
391 Must(request);
392 return *request;
393}
394
5f8252d2 395// did the activity reached the end of the virgin body?
26cc52cb 396bool Adaptation::Icap::ModXact::virginBodyEndReached(const Adaptation::Icap::VirginBodyAct &act) const
5f8252d2 397{
9e008dda 398 return
5f8252d2 399 !act.active() || // did all (assuming it was originally planned)
61beade2 400 !virgin.body_pipe->expectMoreAfter(act.offset()); // will not have more
5f8252d2 401}
402
403// the size of buffered virgin body data available for the specified activity
404// if this size is zero, we may be done or may be waiting for more data
26cc52cb 405size_t Adaptation::Icap::ModXact::virginContentSize(const Adaptation::Icap::VirginBodyAct &act) const
774c051c 406{
5f8252d2 407 Must(act.active());
408 // asbolute start of unprocessed data
b0365bd9 409 const uint64_t dataStart = act.offset();
5f8252d2 410 // absolute end of buffered data
b0365bd9
FC
411 const uint64_t dataEnd = virginConsumed + virgin.body_pipe->buf().contentSize();
412 Must(virginConsumed <= dataStart && dataStart <= dataEnd);
413 return static_cast<size_t>(dataEnd - dataStart);
774c051c 414}
415
5f8252d2 416// pointer to buffered virgin body data available for the specified activity
26cc52cb 417const char *Adaptation::Icap::ModXact::virginContentData(const Adaptation::Icap::VirginBodyAct &act) const
774c051c 418{
5f8252d2 419 Must(act.active());
b0365bd9
FC
420 const uint64_t dataStart = act.offset();
421 Must(virginConsumed <= dataStart);
422 return virgin.body_pipe->buf().content() + static_cast<size_t>(dataStart-virginConsumed);
774c051c 423}
424
26cc52cb 425void Adaptation::Icap::ModXact::virginConsume()
774c051c 426{
bf95c10a 427 debugs(93, 9, "consumption guards: " << !virgin.body_pipe << isRetriable <<
a22e6cd3 428 isRepeatable << canStartBypass << protectGroupBypass);
478cfe99 429
5f8252d2 430 if (!virgin.body_pipe)
c824c43b 431 return; // nothing to consume
432
433 if (isRetriable)
434 return; // do not consume if we may have to retry later
5f8252d2 435
436 BodyPipe &bp = *virgin.body_pipe;
a22e6cd3 437 const bool wantToPostpone = isRepeatable || canStartBypass || protectGroupBypass;
478cfe99 438
439 // Why > 2? HttpState does not use the last bytes in the buffer
9e008dda 440 // because delayAwareRead() is arguably broken. See
478cfe99 441 // HttpStateData::maybeReadVirginBody for more details.
3ff65596 442 if (wantToPostpone && bp.buf().spaceSize() > 2) {
478cfe99 443 // Postponing may increase memory footprint and slow the HTTP side
9e008dda 444 // down. Not postponing may increase the number of ICAP errors
478cfe99 445 // if the ICAP service fails. We may also use "potential" space to
446 // postpone more aggressively. Should the trade-off be configurable?
bf95c10a 447 debugs(93, 8, "postponing consumption from " << bp.status());
478cfe99 448 return;
449 }
450
5f8252d2 451 const size_t have = static_cast<size_t>(bp.buf().contentSize());
47f6e231 452 const uint64_t end = virginConsumed + have;
453 uint64_t offset = end;
774c051c 454
bf95c10a 455 debugs(93, 9, "max virgin consumption offset=" << offset <<
9e008dda
AJ
456 " acts " << virginBodyWriting.active() << virginBodySending.active() <<
457 " consumed=" << virginConsumed <<
458 " from " << virgin.body_pipe->status());
478cfe99 459
5f8252d2 460 if (virginBodyWriting.active())
d85c3078 461 offset = min(virginBodyWriting.offset(), offset);
774c051c 462
5f8252d2 463 if (virginBodySending.active())
d85c3078 464 offset = min(virginBodySending.offset(), offset);
774c051c 465
466 Must(virginConsumed <= offset && offset <= end);
467
47f6e231 468 if (const size_t size = static_cast<size_t>(offset - virginConsumed)) {
bf95c10a 469 debugs(93, 8, "consuming " << size << " out of " << have <<
774c051c 470 " virgin body bytes");
5f8252d2 471 bp.consume(size);
774c051c 472 virginConsumed += size;
c824c43b 473 Must(!isRetriable); // or we should not be consuming
3ff65596 474 disableRepeats("consumed content");
a22e6cd3 475 disableBypass("consumed content", true);
774c051c 476 }
477}
478
26cc52cb 479void Adaptation::Icap::ModXact::handleCommWroteBody()
774c051c 480{
481 writeMore();
482}
483
c99de607 484// Called when we do not expect to call comm_write anymore.
485// We may have a pending write though.
486// If stopping nicely, we will just wait for that pending write, if any.
26cc52cb 487void Adaptation::Icap::ModXact::stopWriting(bool nicely)
774c051c 488{
c99de607 489 if (state.writing == State::writingReallyDone)
774c051c 490 return;
491
bd7f2ede 492 if (writer != NULL) {
c99de607 493 if (nicely) {
bf95c10a 494 debugs(93, 7, "will wait for the last write" << status());
c99de607 495 state.writing = State::writingAlmostDone; // may already be set
5f8252d2 496 checkConsuming();
c99de607 497 return;
498 }
bf95c10a 499 debugs(93, 3, "will NOT wait for the last write" << status());
774c051c 500
c99de607 501 // Comm does not have an interface to clear the writer callback nicely,
502 // but without clearing the writer we cannot recycle the connection.
503 // We prevent connection reuse and hope that we can handle a callback
5f8252d2 504 // call at any time, usually in the middle of the destruction sequence!
505 // Somebody should add comm_remove_write_handler() to comm API.
c99de607 506 reuseConnection = false;
478cfe99 507 ignoreLastWrite = true;
c99de607 508 }
509
bf95c10a 510 debugs(93, 7, "will no longer write" << status());
5f8252d2 511 if (virginBodyWriting.active()) {
512 virginBodyWriting.disable();
513 virginConsume();
514 }
478cfe99 515 state.writing = State::writingReallyDone;
516 checkConsuming();
774c051c 517}
518
26cc52cb 519void Adaptation::Icap::ModXact::stopBackup()
774c051c 520{
5f8252d2 521 if (!virginBodySending.active())
774c051c 522 return;
523
bf95c10a 524 debugs(93, 7, "will no longer backup" << status());
5f8252d2 525 virginBodySending.disable();
774c051c 526 virginConsume();
527}
528
26cc52cb 529bool Adaptation::Icap::ModXact::doneAll() const
774c051c 530{
26cc52cb 531 return Adaptation::Icap::Xaction::doneAll() && !state.serviceWaiting &&
5f8252d2 532 doneSending() &&
774c051c 533 doneReading() && state.doneWriting();
534}
535
26cc52cb 536void Adaptation::Icap::ModXact::startReading()
774c051c 537{
aed188fd 538 Must(haveConnection());
774c051c 539 Must(!reader);
5f8252d2 540 Must(!adapted.header);
541 Must(!adapted.body_pipe);
774c051c 542
543 // we use the same buffer for headers and body and then consume headers
544 readMore();
545}
546
26cc52cb 547void Adaptation::Icap::ModXact::readMore()
774c051c 548{
bd7f2ede 549 if (reader != NULL || doneReading()) {
bf95c10a 550 debugs(93,3, "returning from readMore because reader or doneReading()");
774c051c 551 return;
3b299123 552 }
774c051c 553
554 // do not fill readBuf if we have no space to store the result
5f8252d2 555 if (adapted.body_pipe != NULL &&
9e008dda 556 !adapted.body_pipe->buf().hasPotentialSpace()) {
bf95c10a 557 debugs(93,3, "not reading because ICAP reply pipe is full");
774c051c 558 return;
3b299123 559 }
774c051c 560
2b42f3fd 561 if (readBuf.length() < SQUID_TCP_SO_RCVBUF)
774c051c 562 scheduleRead();
3b299123 563 else
bf95c10a 564 debugs(93,3, "cannot read with a full buffer");
774c051c 565}
566
567// comm module read a portion of the ICAP response for us
26cc52cb 568void Adaptation::Icap::ModXact::handleCommRead(size_t)
774c051c 569{
570 Must(!state.doneParsing());
3ff65596 571 icap_tio_finish = current_time;
774c051c 572 parseMore();
573 readMore();
574}
575
26cc52cb 576void Adaptation::Icap::ModXact::echoMore()
774c051c 577{
578 Must(state.sending == State::sendingVirgin);
5f8252d2 579 Must(adapted.body_pipe != NULL);
580 Must(virginBodySending.active());
581
582 const size_t sizeMax = virginContentSize(virginBodySending);
bf95c10a 583 debugs(93,5, "will echo up to " << sizeMax << " bytes from " <<
9e008dda 584 virgin.body_pipe->status());
bf95c10a 585 debugs(93,5, "will echo up to " << sizeMax << " bytes to " <<
9e008dda 586 adapted.body_pipe->status());
5f8252d2 587
588 if (sizeMax > 0) {
589 const size_t size = adapted.body_pipe->putMoreData(virginContentData(virginBodySending), sizeMax);
bf95c10a 590 debugs(93,5, "echoed " << size << " out of " << sizeMax <<
9e008dda 591 " bytes");
5f8252d2 592 virginBodySending.progress(size);
3ff65596 593 disableRepeats("echoed content");
a22e6cd3
AR
594 disableBypass("echoed content", true);
595 virginConsume();
774c051c 596 }
597
5f8252d2 598 if (virginBodyEndReached(virginBodySending)) {
bf95c10a 599 debugs(93, 5, "echoed all" << status());
774c051c 600 stopSending(true);
601 } else {
bf95c10a 602 debugs(93, 5, "has " <<
9e008dda
AJ
603 virgin.body_pipe->buf().contentSize() << " bytes " <<
604 "and expects more to echo" << status());
5f8252d2 605 // TODO: timeout if virgin or adapted pipes are broken
774c051c 606 }
607}
608
26cc52cb 609bool Adaptation::Icap::ModXact::doneSending() const
774c051c 610{
774c051c 611 return state.sending == State::sendingDone;
612}
613
478cfe99 614// stop (or do not start) sending adapted message body
26cc52cb 615void Adaptation::Icap::ModXact::stopSending(bool nicely)
774c051c 616{
bf95c10a 617 debugs(93, 7, "Enter stop sending ");
774c051c 618 if (doneSending())
619 return;
bf95c10a 620 debugs(93, 7, "Proceed with stop sending ");
774c051c 621
622 if (state.sending != State::sendingUndecided) {
bf95c10a 623 debugs(93, 7, "will no longer send" << status());
5f8252d2 624 if (adapted.body_pipe != NULL) {
625 virginBodySending.disable();
626 // we may leave debts if we were echoing and the virgin
627 // body_pipe got exhausted before we echoed all planned bytes
628 const bool leftDebts = adapted.body_pipe->needsMoreData();
629 stopProducingFor(adapted.body_pipe, nicely && !leftDebts);
630 }
774c051c 631 } else {
bf95c10a 632 debugs(93, 7, "will not start sending" << status());
5f8252d2 633 Must(!adapted.body_pipe);
774c051c 634 }
635
636 state.sending = State::sendingDone;
5f8252d2 637 checkConsuming();
774c051c 638}
639
5f8252d2 640// should be called after certain state.writing or state.sending changes
26cc52cb 641void Adaptation::Icap::ModXact::checkConsuming()
774c051c 642{
5f8252d2 643 // quit if we already stopped or are still using the pipe
644 if (!virgin.body_pipe || !state.doneConsumingVirgin())
774c051c 645 return;
646
bf95c10a 647 debugs(93, 7, "will stop consuming" << status());
5f8252d2 648 stopConsumingFrom(virgin.body_pipe);
774c051c 649}
650
26cc52cb 651void Adaptation::Icap::ModXact::parseMore()
774c051c 652{
84ae6223
AJ
653 debugs(93, 5, "have " << readBuf.length() << " bytes to parse" << status());
654 debugs(93, 5, "\n" << readBuf);
774c051c 655
656 if (state.parsingHeaders())
657 parseHeaders();
658
659 if (state.parsing == State::psBody)
660 parseBody();
69c698a3
EB
661
662 if (state.parsing == State::psIcapTrailer)
663 parseIcapTrailer();
774c051c 664}
665
26cc52cb 666void Adaptation::Icap::ModXact::callException(const std::exception &e)
478cfe99 667{
668 if (!canStartBypass || isRetriable) {
64b66b76
CT
669 if (!isRetriable) {
670 if (const TextException *te = dynamic_cast<const TextException *>(&e))
83b053a0 671 detailError(new ExceptionErrorDetail(te->id()));
64b66b76 672 else
83b053a0 673 detailError(new ExceptionErrorDetail(Here().id()));
64b66b76 674 }
26cc52cb 675 Adaptation::Icap::Xaction::callException(e);
478cfe99 676 return;
677 }
678
679 try {
bf95c10a 680 debugs(93, 3, "bypassing " << inCall << " exception: " <<
af6a12ee 681 e.what() << ' ' << status());
478cfe99 682 bypassFailure();
64b66b76 683 } catch (const TextException &bypassTe) {
83b053a0 684 detailError(new ExceptionErrorDetail(bypassTe.id()));
64b66b76 685 Adaptation::Icap::Xaction::callException(bypassTe);
9e008dda 686 } catch (const std::exception &bypassE) {
83b053a0 687 detailError(new ExceptionErrorDetail(Here().id()));
26cc52cb 688 Adaptation::Icap::Xaction::callException(bypassE);
478cfe99 689 }
690}
691
26cc52cb 692void Adaptation::Icap::ModXact::bypassFailure()
478cfe99 693{
a22e6cd3 694 disableBypass("already started to bypass", false);
478cfe99 695
696 Must(!isRetriable); // or we should not be bypassing
3ff65596 697 // TODO: should the same be enforced for isRepeatable? Check icap_repeat??
478cfe99 698
699 prepEchoing();
700
701 startSending();
702
703 // end all activities associated with the ICAP server
704
69c698a3 705 stopParsing(false);
478cfe99 706
707 stopWriting(true); // or should we force it?
aed188fd 708 if (haveConnection()) {
478cfe99 709 reuseConnection = false; // be conservative
710 cancelRead(); // may not work; and we cannot stop connecting either
711 if (!doneWithIo())
bf95c10a 712 debugs(93, 7, "Warning: bypass failed to stop I/O" << status());
478cfe99 713 }
61cb3565
AR
714
715 service().noteFailure(); // we are bypassing, but this is still a failure
478cfe99 716}
717
a22e6cd3 718void Adaptation::Icap::ModXact::disableBypass(const char *reason, bool includingGroupBypass)
478cfe99 719{
720 if (canStartBypass) {
bf95c10a 721 debugs(93,7, "will never start bypass because " << reason);
478cfe99 722 canStartBypass = false;
723 }
a22e6cd3 724 if (protectGroupBypass && includingGroupBypass) {
bf95c10a 725 debugs(93,7, "not protecting group bypass because " << reason);
a22e6cd3
AR
726 protectGroupBypass = false;
727 }
478cfe99 728}
729
774c051c 730// note that allocation for echoing is done in handle204NoContent()
26cc52cb 731void Adaptation::Icap::ModXact::maybeAllocateHttpMsg()
774c051c 732{
5f8252d2 733 if (adapted.header) // already allocated
774c051c 734 return;
735
736 if (gotEncapsulated("res-hdr")) {
5f8252d2 737 adapted.setHeader(new HttpReply);
3ff65596 738 setOutcome(service().cfg().method == ICAP::methodReqmod ?
e1381638 739 xoSatisfied : xoModified);
774c051c 740 } else if (gotEncapsulated("req-hdr")) {
5ceaee75 741 adapted.setHeader(new HttpRequest(virginRequest().masterXaction));
3ff65596 742 setOutcome(xoModified);
774c051c 743 } else
744 throw TexcHere("Neither res-hdr nor req-hdr in maybeAllocateHttpMsg()");
745}
746
26cc52cb 747void Adaptation::Icap::ModXact::parseHeaders()
774c051c 748{
749 Must(state.parsingHeaders());
750
b107a5a5 751 if (state.parsing == State::psIcapHeader) {
bf95c10a 752 debugs(93, 5, "parse ICAP headers");
774c051c 753 parseIcapHead();
b107a5a5 754 }
774c051c 755
b107a5a5 756 if (state.parsing == State::psHttpHeader) {
bf95c10a 757 debugs(93, 5, "parse HTTP headers");
774c051c 758 parseHttpHead();
b107a5a5 759 }
774c051c 760
761 if (state.parsingHeaders()) { // need more data
762 Must(mayReadMore());
763 return;
764 }
765
478cfe99 766 startSending();
767}
768
769// called after parsing all headers or when bypassing an exception
26cc52cb 770void Adaptation::Icap::ModXact::startSending()
478cfe99 771{
3ff65596 772 disableRepeats("sent headers");
a22e6cd3 773 disableBypass("sent headers", true);
3af10ac0 774 sendAnswer(Answer::Forward(adapted.header));
774c051c 775
776 if (state.sending == State::sendingVirgin)
777 echoMore();
88df846b 778 else {
ff89bfa0 779 // If we are not using the virgin HTTP object update the
63df1d28 780 // Http::Message::sources flag.
88df846b 781 // The state.sending may set to State::sendingVirgin in the case
63df1d28 782 // of 206 responses too, where we do not want to update Http::Message::sources
ff89bfa0
SM
783 // flag. However even for 206 responses the state.sending is
784 // not set yet to sendingVirgin. This is done in later step
88df846b
CT
785 // after the parseBody method called.
786 updateSources();
787 }
774c051c 788}
789
26cc52cb 790void Adaptation::Icap::ModXact::parseIcapHead()
774c051c 791{
792 Must(state.sending == State::sendingUndecided);
793
b248c2a3 794 if (!parseHead(icapReply.getRaw()))
774c051c 795 return;
796
69c698a3
EB
797 if (expectIcapTrailers()) {
798 Must(!trailerParser);
799 trailerParser = new TrailerParser;
800 }
801
d5f18517
AJ
802 static SBuf close("close", 5);
803 if (httpHeaderHasConnDir(&icapReply->header, close)) {
bf95c10a 804 debugs(93, 5, "found connection close");
fc764d26 805 reuseConnection = false;
806 }
807
9b769c67 808 switch (icapReply->sline.status()) {
774c051c 809
9b769c67 810 case Http::scContinue:
774c051c 811 handle100Continue();
812 break;
813
9b769c67
AJ
814 case Http::scOkay:
815 case Http::scCreated: // Symantec Scan Engine 5.0 and later when modifying HTTP msg
b559db5d 816
817 if (!validate200Ok()) {
818 throw TexcHere("Invalid ICAP Response");
819 } else {
820 handle200Ok();
821 }
822
774c051c 823 break;
824
9b769c67 825 case Http::scNoContent:
774c051c 826 handle204NoContent();
827 break;
828
9b769c67 829 case Http::scPartialContent:
83c51da9
CT
830 handle206PartialContent();
831 break;
832
774c051c 833 default:
9b769c67 834 debugs(93, 5, "ICAP status " << icapReply->sline.status());
774c051c 835 handleUnknownScode();
836 break;
837 }
838
3ff65596
AR
839 const HttpRequest *request = dynamic_cast<HttpRequest*>(adapted.header);
840 if (!request)
841 request = &virginRequest();
842
843 // update the cross-transactional database if needed (all status codes!)
844 if (const char *xxName = Adaptation::Config::masterx_shared_name) {
a22e6cd3 845 Adaptation::History::Pointer ah = request->adaptHistory(true);
5038f9d8 846 if (ah != NULL) { // TODO: reorder checks to avoid creating history
3ff65596
AR
847 const String val = icapReply->header.getByName(xxName);
848 if (val.size() > 0) // XXX: HttpHeader lacks empty value detection
849 ah->updateXxRecord(xxName, val);
850 }
851 }
852
a22e6cd3
AR
853 // update the adaptation plan if needed (all status codes!)
854 if (service().cfg().routing) {
855 String services;
789217a2 856 if (icapReply->header.getList(Http::HdrType::X_NEXT_SERVICES, &services)) {
a22e6cd3
AR
857 Adaptation::History::Pointer ah = request->adaptHistory(true);
858 if (ah != NULL)
859 ah->updateNextServices(services);
860 }
789217a2 861 } // TODO: else warn (occasionally!) if we got Http::HdrType::X_NEXT_SERVICES
a22e6cd3 862
3ff65596
AR
863 // We need to store received ICAP headers for <icapLastHeader logformat option.
864 // If we already have stored headers from previous ICAP transaction related to this
865 // request, old headers will be replaced with the new one.
e1381638 866
5038f9d8
AR
867 Adaptation::History::Pointer ah = request->adaptLogHistory();
868 if (ah != NULL)
869 ah->recordMeta(&icapReply->header);
3ff65596 870
774c051c 871 // handle100Continue() manages state.writing on its own.
872 // Non-100 status means the server needs no postPreview data from us.
873 if (state.writing == State::writingPaused)
c99de607 874 stopWriting(true);
774c051c 875}
876
69c698a3
EB
877/// Parses ICAP trailers and stops parsing, if all trailer data
878/// have been received.
879void Adaptation::Icap::ModXact::parseIcapTrailer() {
b559db5d 880
69c698a3
EB
881 if (parsePart(trailerParser, "trailer")) {
882 for (const auto &e: trailerParser->trailer.entries)
883 debugs(93, 5, "ICAP trailer: " << e->name << ": " << e->value);
884 stopParsing();
b559db5d 885 }
69c698a3 886}
b559db5d 887
69c698a3
EB
888bool Adaptation::Icap::ModXact::validate200Ok()
889{
890 if (service().cfg().method == ICAP::methodRespmod)
891 return gotEncapsulated("res-hdr");
b559db5d 892
69c698a3
EB
893 return service().cfg().method == ICAP::methodReqmod &&
894 expectHttpHeader();
b559db5d 895}
896
26cc52cb 897void Adaptation::Icap::ModXact::handle100Continue()
774c051c 898{
899 Must(state.writing == State::writingPaused);
5f8252d2 900 // server must not respond before the end of preview: we may send ieof
774c051c 901 Must(preview.enabled() && preview.done() && !preview.ieof());
774c051c 902
83c51da9
CT
903 // 100 "Continue" cancels our Preview commitment,
904 // but not commitment to handle 204 or 206 outside Preview
905 if (!state.allowedPostview204 && !state.allowedPostview206)
774c051c 906 stopBackup();
907
c99de607 908 state.parsing = State::psIcapHeader; // eventually
909 icapReply->reset();
774c051c 910
911 state.writing = State::writingPrime;
912
913 writeMore();
914}
915
26cc52cb 916void Adaptation::Icap::ModXact::handle200Ok()
774c051c 917{
918 state.parsing = State::psHttpHeader;
919 state.sending = State::sendingAdapted;
920 stopBackup();
5f8252d2 921 checkConsuming();
774c051c 922}
923
26cc52cb 924void Adaptation::Icap::ModXact::handle204NoContent()
774c051c 925{
926 stopParsing();
478cfe99 927 prepEchoing();
928}
929
83c51da9
CT
930void Adaptation::Icap::ModXact::handle206PartialContent()
931{
932 if (state.writing == State::writingPaused) {
933 Must(preview.enabled());
934 Must(state.allowedPreview206);
bf95c10a 935 debugs(93, 7, "206 inside preview");
83c51da9
CT
936 } else {
937 Must(state.writing > State::writingPaused);
938 Must(state.allowedPostview206);
bf95c10a 939 debugs(93, 7, "206 outside preview");
83c51da9
CT
940 }
941 state.parsing = State::psHttpHeader;
942 state.sending = State::sendingAdapted;
943 state.readyForUob = true;
944 checkConsuming();
945}
946
478cfe99 947// Called when we receive a 204 No Content response and
948// when we are trying to bypass a service failure.
949// We actually start sending (echoig or not) in startSending.
26cc52cb 950void Adaptation::Icap::ModXact::prepEchoing()
478cfe99 951{
3ff65596 952 disableRepeats("preparing to echo content");
a22e6cd3 953 disableBypass("preparing to echo content", true);
3ff65596 954 setOutcome(xoEcho);
774c051c 955
956 // We want to clone the HTTP message, but we do not want
63df1d28 957 // to copy some non-HTTP state parts that Http::Message kids carry in them.
774c051c 958 // Thus, we cannot use a smart pointer, copy constructor, or equivalent.
959 // Instead, we simply write the HTTP message and "clone" it by parsing.
63df1d28 960 // TODO: use Http::Message::clone()!
774c051c 961
63df1d28 962 Http::Message *oldHead = virgin.header;
bf95c10a 963 debugs(93, 7, "cloning virgin message " << oldHead);
774c051c 964
965 MemBuf httpBuf;
966
967 // write the virgin message into a memory buffer
968 httpBuf.init();
969 packHead(httpBuf, oldHead);
970
c99de607 971 // allocate the adapted message and copy metainfo
5f8252d2 972 Must(!adapted.header);
c7d51c86 973 {
63df1d28 974 Http::MessagePointer newHead;
5ceaee75
CT
975 if (const HttpRequest *r = dynamic_cast<const HttpRequest*>(oldHead)) {
976 newHead = new HttpRequest(r->masterXaction);
e6f9e263
A
977 } else if (dynamic_cast<const HttpReply*>(oldHead)) {
978 newHead = new HttpReply;
979 }
d39901ed 980 Must(newHead);
774c051c 981
e6f9e263 982 newHead->inheritProperties(oldHead);
774c051c 983
b248c2a3 984 adapted.setHeader(newHead.getRaw());
c7d51c86 985 }
7514268e 986
774c051c 987 // parse the buffer back
955394ce 988 Http::StatusCode error = Http::scNone;
774c051c 989
63df1d28 990 httpBuf.terminate(); // Http::Message::parse requires nil-terminated buffer
84ae6223 991 Must(adapted.header->parse(httpBuf.content(), httpBuf.contentSize(), true, &error));
c7d51c86 992 Must(adapted.header->hdr_sz == httpBuf.contentSize()); // no leftovers
774c051c 993
994 httpBuf.clean();
995
bf95c10a 996 debugs(93, 7, "cloned virgin message " << oldHead << " to " <<
c7d51c86 997 adapted.header);
5f8252d2 998
999 // setup adapted body pipe if needed
1000 if (oldHead->body_pipe != NULL) {
bf95c10a 1001 debugs(93, 7, "will echo virgin body from " <<
9e008dda 1002 oldHead->body_pipe);
478cfe99 1003 if (!virginBodySending.active())
1004 virginBodySending.plan(); // will throw if not possible
5f8252d2 1005 state.sending = State::sendingVirgin;
1006 checkConsuming();
478cfe99 1007
5f8252d2 1008 // TODO: optimize: is it possible to just use the oldHead pipe and
1009 // remove ICAP from the loop? This echoing is probably a common case!
1010 makeAdaptedBodyPipe("echoed virgin response");
1011 if (oldHead->body_pipe->bodySizeKnown())
1012 adapted.body_pipe->setBodySize(oldHead->body_pipe->bodySize());
bf95c10a 1013 debugs(93, 7, "will echo virgin body to " <<
9e008dda 1014 adapted.body_pipe);
5f8252d2 1015 } else {
bf95c10a 1016 debugs(93, 7, "no virgin body to echo");
5f8252d2 1017 stopSending(true);
1018 }
774c051c 1019}
1020
83c51da9
CT
1021/// Called when we received use-original-body chunk extension in 206 response.
1022/// We actually start sending (echoing or not) in startSending().
1023void Adaptation::Icap::ModXact::prepPartialBodyEchoing(uint64_t pos)
1024{
1025 Must(virginBodySending.active());
1026 Must(virgin.header->body_pipe != NULL);
1027
1028 setOutcome(xoPartEcho);
1029
bf95c10a 1030 debugs(93, 7, "will echo virgin body suffix from " <<
83c51da9
CT
1031 virgin.header->body_pipe << " offset " << pos );
1032
1033 // check that use-original-body=N does not point beyond buffered data
1034 const uint64_t virginDataEnd = virginConsumed +
7ddcfbab 1035 virgin.body_pipe->buf().contentSize();
83c51da9
CT
1036 Must(pos <= virginDataEnd);
1037 virginBodySending.progress(static_cast<size_t>(pos));
1038
1039 state.sending = State::sendingVirgin;
1040 checkConsuming();
1041
1042 if (virgin.header->body_pipe->bodySizeKnown())
1043 adapted.body_pipe->expectProductionEndAfter(virgin.header->body_pipe->bodySize() - pos);
1044
bf95c10a 1045 debugs(93, 7, "will echo virgin body suffix to " <<
83c51da9
CT
1046 adapted.body_pipe);
1047
1048 // Start echoing data
1049 echoMore();
1050}
1051
26cc52cb 1052void Adaptation::Icap::ModXact::handleUnknownScode()
774c051c 1053{
69c698a3 1054 stopParsing(false);
774c051c 1055 stopBackup();
1056 // TODO: mark connection as "bad"
1057
1058 // Terminate the transaction; we do not know how to handle this response.
1059 throw TexcHere("Unsupported ICAP status code");
1060}
1061
26cc52cb 1062void Adaptation::Icap::ModXact::parseHttpHead()
774c051c 1063{
69c698a3 1064 if (expectHttpHeader()) {
bae917ac 1065 replyHttpHeaderSize = 0;
774c051c 1066 maybeAllocateHttpMsg();
1067
5f8252d2 1068 if (!parseHead(adapted.header))
c99de607 1069 return; // need more header data
5f8252d2 1070
bae917ac
CT
1071 if (adapted.header)
1072 replyHttpHeaderSize = adapted.header->hdr_sz;
1073
d67acb4e 1074 if (dynamic_cast<HttpRequest*>(adapted.header)) {
5f8252d2 1075 const HttpRequest *oldR = dynamic_cast<const HttpRequest*>(virgin.header);
1076 Must(oldR);
9e008dda
AJ
1077 // TODO: the adapted request did not really originate from the
1078 // client; give proxy admin an option to prevent copying of
5f8252d2 1079 // sensitive client information here. See the following thread:
1080 // http://www.squid-cache.org/mail-archive/squid-dev/200703/0040.html
5f8252d2 1081 }
d67acb4e 1082
9e008dda
AJ
1083 // Maybe adapted.header==NULL if HttpReply and have Http 0.9 ....
1084 if (adapted.header)
1085 adapted.header->inheritProperties(virgin.header);
774c051c 1086 }
1087
5f8252d2 1088 decideOnParsingBody();
774c051c 1089}
1090
69c698a3
EB
1091template<class Part>
1092bool Adaptation::Icap::ModXact::parsePart(Part *part, const char *description)
774c051c 1093{
69c698a3
EB
1094 Must(part);
1095 debugs(93, 5, "have " << readBuf.length() << ' ' << description << " bytes to parse; state: " << state.parsing);
955394ce 1096 Http::StatusCode error = Http::scNone;
84ae6223 1097 // XXX: performance regression. c_str() data copies
63df1d28 1098 // XXX: Http::Message::parse requires a terminated string buffer
84ae6223 1099 const char *tmpBuf = readBuf.c_str();
69c698a3
EB
1100 const bool parsed = part->parse(tmpBuf, readBuf.length(), commEof, &error);
1101 debugs(93, (!parsed && error) ? 2 : 5, description << " parsing result: " << parsed << " detail: " << error);
1102 Must(parsed || !error);
1103 if (parsed)
1104 readBuf.consume(part->hdr_sz);
1105 return parsed;
1106}
774c051c 1107
69c698a3 1108// parses both HTTP and ICAP headers
63df1d28
AJ
1109bool
1110Adaptation::Icap::ModXact::parseHead(Http::Message *head)
69c698a3
EB
1111{
1112 if (!parsePart(head, "head")) {
774c051c 1113 head->reset();
1114 return false;
1115 }
774c051c 1116 return true;
1117}
1118
69c698a3
EB
1119bool Adaptation::Icap::ModXact::expectHttpHeader() const
1120{
1121 return gotEncapsulated("res-hdr") || gotEncapsulated("req-hdr");
1122}
1123
1124bool Adaptation::Icap::ModXact::expectHttpBody() const
1125{
1126 return gotEncapsulated("res-body") || gotEncapsulated("req-body");
1127}
1128
1129bool Adaptation::Icap::ModXact::expectIcapTrailers() const
1130{
1131 String trailers;
f29d429e 1132 const bool promisesToSendTrailer = icapReply->header.getByIdIfPresent(Http::HdrType::TRAILER, &trailers);
69c698a3
EB
1133 const bool supportsTrailers = icapReply->header.hasListMember(Http::HdrType::ALLOW, "trailers", ',');
1134 // ICAP Trailer specs require us to reject transactions having either Trailer
1135 // header or Allow:trailers
1136 Must((promisesToSendTrailer == supportsTrailers) || (!promisesToSendTrailer && supportsTrailers));
1137 if (promisesToSendTrailer && !trailers.size())
1138 debugs(93, DBG_IMPORTANT, "ERROR: ICAP Trailer response header field must not be empty (salvaged)");
1139 return promisesToSendTrailer;
1140}
1141
26cc52cb 1142void Adaptation::Icap::ModXact::decideOnParsingBody()
9e008dda 1143{
69c698a3 1144 if (expectHttpBody()) {
bf95c10a 1145 debugs(93, 5, "expecting a body");
5f8252d2 1146 state.parsing = State::psBody;
bae917ac 1147 replyHttpBodySize = 0;
db1720f8 1148 bodyParser = new Http1::TeChunkedParser;
417da400 1149 bodyParser->parseExtensionValuesWith(&extensionParser);
5f8252d2 1150 makeAdaptedBodyPipe("adapted response from the ICAP server");
1151 Must(state.sending == State::sendingAdapted);
774c051c 1152 } else {
bf95c10a 1153 debugs(93, 5, "not expecting a body");
69c698a3
EB
1154 if (trailerParser)
1155 state.parsing = State::psIcapTrailer;
1156 else
1157 stopParsing();
5f8252d2 1158 stopSending(true);
774c051c 1159 }
774c051c 1160}
1161
26cc52cb 1162void Adaptation::Icap::ModXact::parseBody()
774c051c 1163{
5f8252d2 1164 Must(state.parsing == State::psBody);
1165 Must(bodyParser);
774c051c 1166
84ae6223 1167 debugs(93, 5, "have " << readBuf.length() << " body bytes to parse");
774c051c 1168
5f8252d2 1169 // the parser will throw on errors
1170 BodyPipeCheckout bpc(*adapted.body_pipe);
be29ee33
AJ
1171 bodyParser->setPayloadBuffer(&bpc.buf);
1172 const bool parsed = bodyParser->parse(readBuf);
1173 readBuf = bodyParser->remaining(); // sync buffers after parse
5f8252d2 1174 bpc.checkIn();
774c051c 1175
84ae6223 1176 debugs(93, 5, "have " << readBuf.length() << " body bytes after parsed all: " << parsed);
bae917ac 1177 replyHttpBodySize += adapted.body_pipe->buf().contentSize();
774c051c 1178
478cfe99 1179 // TODO: expose BodyPipe::putSize() to make this check simpler and clearer
3ff65596
AR
1180 // TODO: do we really need this if we disable when sending headers?
1181 if (adapted.body_pipe->buf().contentSize() > 0) { // parsed something sometime
1182 disableRepeats("sent adapted content");
a22e6cd3 1183 disableBypass("sent adapted content", true);
3ff65596 1184 }
478cfe99 1185
5f8252d2 1186 if (parsed) {
417da400
EB
1187 if (state.readyForUob && extensionParser.sawUseOriginalBody())
1188 prepPartialBodyEchoing(extensionParser.useOriginalBody());
69c698a3
EB
1189 else
1190 stopSending(true); // the parser succeeds only if all parsed data fits
1191 if (trailerParser)
1192 state.parsing = State::psIcapTrailer;
1193 else
83c51da9 1194 stopParsing();
5f8252d2 1195 return;
1196 }
774c051c 1197
bf95c10a 1198 debugs(93,3, this << " needsMoreData = " << bodyParser->needsMoreData());
3b299123 1199
1200 if (bodyParser->needsMoreData()) {
bf95c10a 1201 debugs(93,3, this);
774c051c 1202 Must(mayReadMore());
3b299123 1203 readMore();
1204 }
774c051c 1205
1206 if (bodyParser->needsMoreSpace()) {
1207 Must(!doneSending()); // can hope for more space
5f8252d2 1208 Must(adapted.body_pipe->buf().contentSize() > 0); // paranoid
1209 // TODO: there should be a timeout in case the sink is broken
1210 // or cannot consume partial content (while we need more space)
774c051c 1211 }
774c051c 1212}
1213
69c698a3 1214void Adaptation::Icap::ModXact::stopParsing(const bool checkUnparsedData)
774c051c 1215{
1216 if (state.parsing == State::psDone)
1217 return;
1218
69c698a3
EB
1219 if (checkUnparsedData)
1220 Must(readBuf.isEmpty());
1221
1222 debugs(93, 7, "will no longer parse" << status());
774c051c 1223
1224 delete bodyParser;
69c698a3 1225 bodyParser = nullptr;
774c051c 1226
69c698a3
EB
1227 delete trailerParser;
1228 trailerParser = nullptr;
774c051c 1229
1230 state.parsing = State::psDone;
1231}
1232
1233// HTTP side added virgin body data
26cc52cb 1234void Adaptation::Icap::ModXact::noteMoreBodyDataAvailable(BodyPipe::Pointer)
774c051c 1235{
774c051c 1236 writeMore();
1237
1238 if (state.sending == State::sendingVirgin)
1239 echoMore();
774c051c 1240}
1241
1242// HTTP side sent us all virgin info
26cc52cb 1243void Adaptation::Icap::ModXact::noteBodyProductionEnded(BodyPipe::Pointer)
774c051c 1244{
5f8252d2 1245 Must(virgin.body_pipe->productionEnded());
774c051c 1246
1247 // push writer and sender in case we were waiting for the last-chunk
1248 writeMore();
1249
1250 if (state.sending == State::sendingVirgin)
1251 echoMore();
774c051c 1252}
1253
9e008dda 1254// body producer aborted, but the initiator may still want to know
585ab260 1255// the answer, even though the HTTP message has been truncated
26cc52cb 1256void Adaptation::Icap::ModXact::noteBodyProducerAborted(BodyPipe::Pointer)
774c051c 1257{
585ab260 1258 Must(virgin.body_pipe->productionEnded());
1259
1260 // push writer and sender in case we were waiting for the last-chunk
1261 writeMore();
1262
1263 if (state.sending == State::sendingVirgin)
1264 echoMore();
5f8252d2 1265}
1266
9e008dda 1267// adapted body consumer wants more adapted data and
5f8252d2 1268// possibly freed some buffer space
26cc52cb 1269void Adaptation::Icap::ModXact::noteMoreBodySpaceAvailable(BodyPipe::Pointer)
774c051c 1270{
774c051c 1271 if (state.sending == State::sendingVirgin)
1272 echoMore();
3b299123 1273 else if (state.sending == State::sendingAdapted)
1274 parseMore();
774c051c 1275 else
3b299123 1276 Must(state.sending == State::sendingUndecided);
774c051c 1277}
1278
5f8252d2 1279// adapted body consumer aborted
26cc52cb 1280void Adaptation::Icap::ModXact::noteBodyConsumerAborted(BodyPipe::Pointer)
774c051c 1281{
83b053a0
CT
1282 static const auto d = MakeNamedErrorDetail("ICAP_XACT_BODY_CONSUMER_ABORT");
1283 detailError(d);
5f8252d2 1284 mustStop("adapted body consumer aborted");
774c051c 1285}
1286
c7d51c86
AR
1287Adaptation::Icap::ModXact::~ModXact()
1288{
1289 delete bodyParser;
69c698a3 1290 delete trailerParser;
c7d51c86
AR
1291}
1292
774c051c 1293// internal cleanup
26cc52cb 1294void Adaptation::Icap::ModXact::swanSong()
774c051c 1295{
bf95c10a 1296 debugs(93, 5, "swan sings" << status());
5f8252d2 1297
c99de607 1298 stopWriting(false);
c824c43b 1299 stopSending(false);
774c051c 1300
83b053a0
CT
1301 if (theInitiator.set()) { // we have not sent the answer to the initiator
1302 static const auto d = MakeNamedErrorDetail("ICAP_XACT_OTHER");
1303 detailError(d);
1304 }
64b66b76 1305
3ff65596 1306 // update adaptation history if start was called and we reserved a slot
a22e6cd3 1307 Adaptation::History::Pointer ah = virginRequest().adaptLogHistory();
3ff65596
AR
1308 if (ah != NULL && adaptHistoryId >= 0)
1309 ah->recordXactFinish(adaptHistoryId);
774c051c 1310
26cc52cb 1311 Adaptation::Icap::Xaction::swanSong();
774c051c 1312}
1313
63ed9e8e 1314void prepareLogWithRequestDetails(HttpRequest *, const AccessLogEntryPointer &);
3ff65596
AR
1315
1316void Adaptation::Icap::ModXact::finalizeLogInfo()
1317{
bd59d61c
EB
1318 HttpRequest *adapted_request_ = nullptr;
1319 HttpReply *adapted_reply_ = nullptr;
a2958f2f 1320 HttpRequest *virgin_request_ = const_cast<HttpRequest*>(&virginRequest());
3ecb654f 1321 if (!(adapted_request_ = dynamic_cast<HttpRequest*>(adapted.header))) {
bd59d61c
EB
1322 // if the request was not adapted, use virgin request to simplify
1323 // the code further below
1324 adapted_request_ = virgin_request_;
1325 adapted_reply_ = dynamic_cast<HttpReply*>(adapted.header);
3ff65596
AR
1326 }
1327
a2958f2f 1328 Adaptation::Icap::History::Pointer h = virgin_request_->icapHistory();
e1381638
AJ
1329 Must(h != NULL); // ICAPXaction::maybeLog calls only if there is a log
1330 al.icp.opcode = ICP_INVALID;
1331 al.url = h->log_uri.termedBuf();
1332 const Adaptation::Icap::ServiceRep &s = service();
1333 al.icap.reqMethod = s.cfg().method;
3ff65596 1334
bd59d61c 1335 al.cache.caddr = virgin_request_->client_addr;
3ff65596 1336
bd59d61c 1337 al.request = virgin_request_;
b248c2a3 1338 HTTPMSGLOCK(al.request);
3ecb654f
CT
1339 al.adapted_request = adapted_request_;
1340 HTTPMSGLOCK(al.adapted_request);
1341
49f57088
EB
1342 // XXX: This reply (and other ALE members!) may have been needed earlier.
1343 al.reply = adapted_reply_;
3ff65596 1344
e1381638
AJ
1345 if (h->rfc931.size())
1346 al.cache.rfc931 = h->rfc931.termedBuf();
3ff65596 1347
cb4f4424 1348#if USE_OPENSSL
e1381638
AJ
1349 if (h->ssluser.size())
1350 al.cache.ssluser = h->ssluser.termedBuf();
3ff65596 1351#endif
e1381638 1352 al.cache.code = h->logType;
bd59d61c 1353
63df1d28 1354 const Http::Message *virgin_msg = dynamic_cast<HttpReply*>(virgin.header);
bd59d61c
EB
1355 if (!virgin_msg)
1356 virgin_msg = virgin_request_;
1357 assert(virgin_msg != virgin.cause);
1358 al.http.clientRequestSz.header = virgin_msg->hdr_sz;
7171d5fb
CT
1359 if (virgin_msg->body_pipe != NULL)
1360 al.http.clientRequestSz.payloadData = virgin_msg->body_pipe->producedSize();
bae917ac
CT
1361
1362 // leave al.icap.bodyBytesRead negative if no body
1363 if (replyHttpHeaderSize >= 0 || replyHttpBodySize >= 0) {
1364 const int64_t zero = 0; // to make max() argument types the same
bd59d61c
EB
1365 const uint64_t headerSize = max(zero, replyHttpHeaderSize);
1366 const uint64_t bodySize = max(zero, replyHttpBodySize);
1367 al.icap.bodyBytesRead = headerSize + bodySize;
1368 al.http.clientReplySz.header = headerSize;
1369 al.http.clientReplySz.payloadData = bodySize;
bae917ac
CT
1370 }
1371
bd59d61c
EB
1372 if (adapted_reply_) {
1373 al.http.code = adapted_reply_->sline.status();
1374 al.http.content_type = adapted_reply_->content_type.termedBuf();
1375 if (replyHttpBodySize >= 0)
bae917ac 1376 al.cache.highOffset = replyHttpBodySize;
e1381638 1377 //don't set al.cache.objectSize because it hasn't exist yet
e1381638 1378 }
3ecb654f 1379 prepareLogWithRequestDetails(adapted_request_, alep);
e1381638 1380 Xaction::finalizeLogInfo();
3ff65596
AR
1381}
1382
26cc52cb 1383void Adaptation::Icap::ModXact::makeRequestHeaders(MemBuf &buf)
774c051c 1384{
cc192b50 1385 char ntoabuf[MAX_IPSTRLEN];
12b91c99 1386 /*
1387 * XXX These should use HttpHdr interfaces instead of Printfs
1388 */
0bef8dd7 1389 const Adaptation::ServiceConfig &s = service().cfg();
4391cd15
AJ
1390 buf.appendf("%s " SQUIDSTRINGPH " ICAP/1.0\r\n", s.methodStr(), SQUIDSTRINGPRINT(s.uri));
1391 buf.appendf("Host: " SQUIDSTRINGPH ":%d\r\n", SQUIDSTRINGPRINT(s.host), s.port);
1392 buf.appendf("Date: %s\r\n", mkrfc1123(squid_curtime));
12b91c99 1393
26cc52cb 1394 if (!TheConfig.reuse_connections)
4391cd15 1395 buf.appendf("Connection: close\r\n");
12b91c99 1396
cb72cd25
CT
1397 const HttpRequest *request = &virginRequest();
1398
2cdeea82 1399 // we must forward "Proxy-Authenticate" and "Proxy-Authorization"
1400 // as ICAP headers.
789217a2 1401 if (virgin.header->header.has(Http::HdrType::PROXY_AUTHENTICATE)) {
81ab22b6 1402 String vh=virgin.header->header.getById(Http::HdrType::PROXY_AUTHENTICATE);
4391cd15 1403 buf.appendf("Proxy-Authenticate: " SQUIDSTRINGPH "\r\n",SQUIDSTRINGPRINT(vh));
4232c626 1404 }
9e008dda 1405
789217a2 1406 if (virgin.header->header.has(Http::HdrType::PROXY_AUTHORIZATION)) {
81ab22b6 1407 String vh=virgin.header->header.getById(Http::HdrType::PROXY_AUTHORIZATION);
4391cd15 1408 buf.appendf("Proxy-Authorization: " SQUIDSTRINGPH "\r\n", SQUIDSTRINGPRINT(vh));
b38b26cb 1409 } else if (request->extacl_user.size() > 0 && request->extacl_passwd.size() > 0) {
aadbbd7d
AJ
1410 struct base64_encode_ctx ctx;
1411 base64_encode_init(&ctx);
1d11e9b3 1412 char base64buf[base64_encode_len(MAX_LOGIN_SZ)];
aadbbd7d
AJ
1413 size_t resultLen = base64_encode_update(&ctx, base64buf, request->extacl_user.size(), reinterpret_cast<const uint8_t*>(request->extacl_user.rawBuf()));
1414 resultLen += base64_encode_update(&ctx, base64buf+resultLen, 1, reinterpret_cast<const uint8_t*>(":"));
1415 resultLen += base64_encode_update(&ctx, base64buf+resultLen, request->extacl_passwd.size(), reinterpret_cast<const uint8_t*>(request->extacl_passwd.rawBuf()));
1416 resultLen += base64_encode_final(&ctx, base64buf+resultLen);
4391cd15 1417 buf.appendf("Proxy-Authorization: Basic %.*s\r\n", (int)resultLen, base64buf);
4232c626 1418 }
2cdeea82 1419
3ff65596
AR
1420 // share the cross-transactional database records if needed
1421 if (Adaptation::Config::masterx_shared_name) {
ba8a478d 1422 Adaptation::History::Pointer ah = request->adaptHistory(false);
3ff65596
AR
1423 if (ah != NULL) {
1424 String name, value;
1425 if (ah->getXxRecord(name, value)) {
4391cd15 1426 buf.appendf(SQUIDSTRINGPH ": " SQUIDSTRINGPH "\r\n", SQUIDSTRINGPRINT(name), SQUIDSTRINGPRINT(value));
3ff65596
AR
1427 }
1428 }
1429 }
e1381638 1430
4391cd15 1431 buf.append("Encapsulated: ", 14);
774c051c 1432
1433 MemBuf httpBuf;
12b91c99 1434
774c051c 1435 httpBuf.init();
1436
1437 // build HTTP request header, if any
1438 ICAP::Method m = s.method;
1439
5f8252d2 1440 // to simplify, we could assume that request is always available
c99de607 1441
c99de607 1442 if (request) {
c99de607 1443 if (ICAP::methodRespmod == m)
1444 encapsulateHead(buf, "req-hdr", httpBuf, request);
e1381638
AJ
1445 else if (ICAP::methodReqmod == m)
1446 encapsulateHead(buf, "req-hdr", httpBuf, virgin.header);
c99de607 1447 }
774c051c 1448
1449 if (ICAP::methodRespmod == m)
63df1d28 1450 if (const Http::Message *prime = virgin.header)
774c051c 1451 encapsulateHead(buf, "res-hdr", httpBuf, prime);
1452
1453 if (!virginBody.expected())
4391cd15 1454 buf.appendf("null-body=%d", (int) httpBuf.contentSize());
774c051c 1455 else if (ICAP::methodReqmod == m)
4391cd15 1456 buf.appendf("req-body=%d", (int) httpBuf.contentSize());
774c051c 1457 else
4391cd15 1458 buf.appendf("res-body=%d", (int) httpBuf.contentSize());
774c051c 1459
1460 buf.append(ICAP::crlf, 2); // terminate Encapsulated line
1461
c824c43b 1462 if (preview.enabled()) {
4391cd15 1463 buf.appendf("Preview: %d\r\n", (int)preview.ad());
83c51da9 1464 if (!virginBody.expected()) // there is no body to preview
5f8252d2 1465 finishNullOrEmptyBodyPreview(httpBuf);
774c051c 1466 }
1467
83c51da9 1468 makeAllowHeader(buf);
774c051c 1469
a9044668 1470 if (TheConfig.send_client_ip && request) {
b7ac5457 1471 Ip::Address client_addr;
57d76dd4 1472#if FOLLOW_X_FORWARDED_FOR
22fff3bf 1473 if (TheConfig.use_indirect_client) {
a9044668
A
1474 client_addr = request->indirect_client_addr;
1475 } else
57d76dd4 1476#endif
a9044668 1477 client_addr = request->client_addr;
4dd643d5 1478 if (!client_addr.isAnyAddr() && !client_addr.isNoAddr())
4391cd15 1479 buf.appendf("X-Client-IP: %s\r\n", client_addr.toStr(ntoabuf,MAX_IPSTRLEN));
57d76dd4 1480 }
a97e82a8 1481
22fff3bf 1482 if (TheConfig.send_username && request)
5f8252d2 1483 makeUsernameHeader(request, buf);
a97e82a8 1484
71be37e0 1485 // Adaptation::Config::metaHeaders
75d47340 1486 for (auto h: Adaptation::Config::metaHeaders) {
71be37e0 1487 HttpRequest *r = virgin.cause ?
71ee0835 1488 virgin.cause : dynamic_cast<HttpRequest*>(virgin.header);
71be37e0
CT
1489 Must(r);
1490
1491 HttpReply *reply = dynamic_cast<HttpReply*>(virgin.header);
1492
75d47340
CT
1493 SBuf matched;
1494 if (h->match(r, reply, alMaster, matched)) {
1495 buf.append(h->key().rawContent(), h->key().length());
1496 buf.append(": ", 2);
1497 buf.append(matched.rawContent(), matched.length());
1498 buf.append("\r\n", 2);
d7f4a0b7 1499 Adaptation::History::Pointer ah = request->adaptHistory(false);
cf9f0261
CT
1500 if (ah != NULL) {
1501 if (ah->metaHeaders == NULL)
1502 ah->metaHeaders = new NotePairs;
75d47340
CT
1503 if (!ah->metaHeaders->hasPair(h->key(), matched))
1504 ah->metaHeaders->add(h->key(), matched);
cf9f0261 1505 }
d7f4a0b7 1506 }
71be37e0
CT
1507 }
1508
bb790702 1509 // fprintf(stderr, "%s\n", buf.content());
a97e82a8 1510
774c051c 1511 buf.append(ICAP::crlf, 2); // terminate ICAP header
1512
a22e6cd3
AR
1513 // fill icapRequest for logging
1514 Must(icapRequest->parseCharBuf(buf.content(), buf.contentSize()));
1515
774c051c 1516 // start ICAP request body with encapsulated HTTP headers
1517 buf.append(httpBuf.content(), httpBuf.contentSize());
1518
1519 httpBuf.clean();
1520}
1521
83c51da9
CT
1522// decides which Allow values to write and updates the request buffer
1523void Adaptation::Icap::ModXact::makeAllowHeader(MemBuf &buf)
1524{
1525 const bool allow204in = preview.enabled(); // TODO: add shouldAllow204in()
1526 const bool allow204out = state.allowedPostview204 = shouldAllow204();
1527 const bool allow206in = state.allowedPreview206 = shouldAllow206in();
1528 const bool allow206out = state.allowedPostview206 = shouldAllow206out();
69c698a3 1529 const bool allowTrailers = true; // TODO: make configurable
83c51da9 1530
6fbd6ef2 1531 debugs(93, 9, "Allows: " << allow204in << allow204out <<
69c698a3 1532 allow206in << allow206out << allowTrailers);
83c51da9
CT
1533
1534 const bool allow204 = allow204in || allow204out;
1535 const bool allow206 = allow206in || allow206out;
1536
64df2bff
EB
1537 if ((allow204 || allow206) && virginBody.expected())
1538 virginBodySending.plan(); // if there is a virgin body, plan to send it
83c51da9
CT
1539
1540 // writing Preview:... means we will honor 204 inside preview
1541 // writing Allow/204 means we will honor 204 outside preview
1542 // writing Allow:206 means we will honor 206 inside preview
1543 // writing Allow:204,206 means we will honor 206 outside preview
69c698a3
EB
1544 if (allow204 || allow206 || allowTrailers) {
1545 buf.appendf("Allow: ");
1546 if (allow204out)
1547 buf.appendf("204, ");
1548 if (allow206)
1549 buf.appendf("206, ");
1550 if (allowTrailers)
1551 buf.appendf("trailers");
1552 buf.appendf("\r\n");
83c51da9
CT
1553 }
1554}
1555
26cc52cb 1556void Adaptation::Icap::ModXact::makeUsernameHeader(const HttpRequest *request, MemBuf &buf)
9e008dda 1557{
74f6c040 1558#if USE_AUTH
aadbbd7d
AJ
1559 struct base64_encode_ctx ctx;
1560 base64_encode_init(&ctx);
1561
1562 const char *value = NULL;
a33a428a 1563 if (request->auth_user_request != NULL) {
aadbbd7d 1564 value = request->auth_user_request->username();
b38b26cb 1565 } else if (request->extacl_user.size() > 0) {
aadbbd7d
AJ
1566 value = request->extacl_user.termedBuf();
1567 }
1568
1569 if (value) {
1570 if (TheConfig.client_username_encode) {
1d11e9b3 1571 char base64buf[base64_encode_len(MAX_LOGIN_SZ)];
aadbbd7d
AJ
1572 size_t resultLen = base64_encode_update(&ctx, base64buf, strlen(value), reinterpret_cast<const uint8_t*>(value));
1573 resultLen += base64_encode_final(&ctx, base64buf+resultLen);
4391cd15 1574 buf.appendf("%s: %.*s\r\n", TheConfig.client_username_header, (int)resultLen, base64buf);
aadbbd7d 1575 } else
4391cd15 1576 buf.appendf("%s: %s\r\n", TheConfig.client_username_header, value);
5f8252d2 1577 }
8b082ed9
FC
1578#else
1579 (void)request;
1580 (void)buf;
74f6c040 1581#endif
5f8252d2 1582}
1583
63df1d28
AJ
1584void
1585Adaptation::Icap::ModXact::encapsulateHead(MemBuf &icapBuf, const char *section, MemBuf &httpBuf, const Http::Message *head)
774c051c 1586{
1587 // update ICAP header
4391cd15 1588 icapBuf.appendf("%s=%d, ", section, (int) httpBuf.contentSize());
774c051c 1589
2cdeea82 1590 // begin cloning
63df1d28 1591 Http::MessagePointer headClone;
9e008dda 1592
2cdeea82 1593 if (const HttpRequest* old_request = dynamic_cast<const HttpRequest*>(head)) {
5ceaee75 1594 HttpRequest::Pointer new_request(new HttpRequest(old_request->masterXaction));
63df1d28 1595 // copy the request-line details
851feda6
AJ
1596 new_request->method = old_request->method;
1597 new_request->url = old_request->url;
2cdeea82 1598 new_request->http_ver = old_request->http_ver;
b248c2a3 1599 headClone = new_request.getRaw();
9e008dda 1600 } else if (const HttpReply *old_reply = dynamic_cast<const HttpReply*>(head)) {
c7d51c86 1601 HttpReply::Pointer new_reply(new HttpReply);
2cdeea82 1602 new_reply->sline = old_reply->sline;
b248c2a3 1603 headClone = new_reply.getRaw();
2cdeea82 1604 }
02dd0839 1605 Must(headClone);
d67acb4e 1606 headClone->inheritProperties(head);
9e008dda 1607
2cdeea82 1608 HttpHeaderPos pos = HttpHeaderInitPos;
02dd0839 1609 while (HttpHeaderEntry* p_head_entry = head->header.getEntry(&pos))
2cdeea82 1610 headClone->header.addEntry(p_head_entry->clone());
1611
1612 // end cloning
9e008dda 1613
2cdeea82 1614 // remove all hop-by-hop headers from the clone
789217a2 1615 headClone->header.delById(Http::HdrType::PROXY_AUTHENTICATE);
2cdeea82 1616 headClone->header.removeHopByHopEntries();
1617
1c2b4465
CT
1618 // TODO: modify HttpHeader::removeHopByHopEntries to accept a list of
1619 // excluded hop-by-hop headers
1620 if (head->header.has(Http::HdrType::UPGRADE)) {
1621 const auto upgrade = head->header.getList(Http::HdrType::UPGRADE);
1622 headClone->header.putStr(Http::HdrType::UPGRADE, upgrade.termedBuf());
1623 }
1624
2cdeea82 1625 // pack polished HTTP header
b248c2a3 1626 packHead(httpBuf, headClone.getRaw());
2cdeea82 1627
c7d51c86 1628 // headClone unlocks and, hence, deletes the message we packed
774c051c 1629}
1630
63df1d28
AJ
1631void
1632Adaptation::Icap::ModXact::packHead(MemBuf &httpBuf, const Http::Message *head)
774c051c 1633{
10201568 1634 head->packInto(&httpBuf, true);
774c051c 1635}
1636
1637// decides whether to offer a preview and calculates its size
26cc52cb 1638void Adaptation::Icap::ModXact::decideOnPreview()
774c051c 1639{
26cc52cb 1640 if (!TheConfig.preview_enable) {
bf95c10a 1641 debugs(93, 5, "preview disabled by squid.conf");
c824c43b 1642 return;
7cdbbd47 1643 }
1644
51b5dcf5 1645 const SBuf urlPath(virginRequest().url.path());
5f8252d2 1646 size_t wantedSize;
c99de607 1647 if (!service().wantsPreview(urlPath, wantedSize)) {
51b5dcf5 1648 debugs(93, 5, "should not offer preview for " << urlPath);
c824c43b 1649 return;
774c051c 1650 }
1651
c824c43b 1652 // we decided to do preview, now compute its size
1653
774c051c 1654 // cannot preview more than we can backup
d85c3078 1655 size_t ad = min(wantedSize, TheBackupLimit);
774c051c 1656
5f8252d2 1657 if (!virginBody.expected())
1658 ad = 0;
e1381638
AJ
1659 else if (virginBody.knownSize())
1660 ad = min(static_cast<uint64_t>(ad), virginBody.size()); // not more than we have
774c051c 1661
bf95c10a 1662 debugs(93, 5, "should offer " << ad << "-byte preview " <<
774c051c 1663 "(service wanted " << wantedSize << ")");
1664
1665 preview.enable(ad);
5f8252d2 1666 Must(preview.enabled());
774c051c 1667}
1668
1669// decides whether to allow 204 responses
26cc52cb 1670bool Adaptation::Icap::ModXact::shouldAllow204()
774c051c 1671{
1672 if (!service().allows204())
1673 return false;
1674
c824c43b 1675 return canBackupEverything();
1676}
1677
83c51da9
CT
1678// decides whether to allow 206 responses in some mode
1679bool Adaptation::Icap::ModXact::shouldAllow206any()
1680{
1681 return TheConfig.allow206_enable && service().allows206() &&
7ddcfbab 1682 virginBody.expected(); // no need for 206 without a body
83c51da9
CT
1683}
1684
1685// decides whether to allow 206 responses in preview mode
1686bool Adaptation::Icap::ModXact::shouldAllow206in()
1687{
1688 return shouldAllow206any() && preview.enabled();
1689}
1690
1691// decides whether to allow 206 responses outside of preview
1692bool Adaptation::Icap::ModXact::shouldAllow206out()
1693{
1694 return shouldAllow206any() && canBackupEverything();
1695}
1696
c824c43b 1697// used by shouldAllow204 and decideOnRetries
26cc52cb 1698bool Adaptation::Icap::ModXact::canBackupEverything() const
c824c43b 1699{
774c051c 1700 if (!virginBody.expected())
c824c43b 1701 return true; // no body means no problems with backup
774c051c 1702
c824c43b 1703 // if there is a body, check whether we can backup it all
774c051c 1704
1705 if (!virginBody.knownSize())
1706 return false;
1707
1708 // or should we have a different backup limit?
1709 // note that '<' allows for 0-termination of the "full" backup buffer
1710 return virginBody.size() < TheBackupLimit;
1711}
1712
c824c43b 1713// Decide whether this transaction can be retried if pconn fails
1714// Must be called after decideOnPreview and before openConnection()
26cc52cb 1715void Adaptation::Icap::ModXact::decideOnRetries()
c824c43b 1716{
1717 if (!isRetriable)
1718 return; // no, already decided
1719
1720 if (preview.enabled())
1721 return; // yes, because preview provides enough guarantees
1722
1723 if (canBackupEverything())
1724 return; // yes, because we can back everything up
1725
1726 disableRetries(); // no, because we cannot back everything up
1727}
1728
5f8252d2 1729// Normally, the body-writing code handles preview body. It can deal with
1730// bodies of unexpected size, including those that turn out to be empty.
1731// However, that code assumes that the body was expected and body control
1732// structures were initialized. This is not the case when there is no body
1733// or the body is known to be empty, because the virgin message will lack a
1734// body_pipe. So we handle preview of null-body and zero-size bodies here.
ced8def3 1735void Adaptation::Icap::ModXact::finishNullOrEmptyBodyPreview(MemBuf &)
5f8252d2 1736{
1737 Must(!virginBodyWriting.active()); // one reason we handle it here
1738 Must(!virgin.body_pipe); // another reason we handle it here
1739 Must(!preview.ad());
1740
1741 // do not add last-chunk because our Encapsulated header says null-body
bb790702 1742 // addLastRequestChunk(buf);
5f8252d2 1743 preview.wrote(0, true);
1744
1745 Must(preview.done());
1746 Must(preview.ieof());
1747}
1748
26cc52cb 1749void Adaptation::Icap::ModXact::fillPendingStatus(MemBuf &buf) const
774c051c 1750{
26cc52cb 1751 Adaptation::Icap::Xaction::fillPendingStatus(buf);
c99de607 1752
774c051c 1753 if (state.serviceWaiting)
1754 buf.append("U", 1);
1755
5f8252d2 1756 if (virgin.body_pipe != NULL)
c99de607 1757 buf.append("R", 1);
1758
aed188fd 1759 if (haveConnection() && !doneReading())
c99de607 1760 buf.append("r", 1);
1761
774c051c 1762 if (!state.doneWriting() && state.writing != State::writingInit)
4391cd15 1763 buf.appendf("w(%d)", state.writing);
774c051c 1764
1765 if (preview.enabled()) {
1766 if (!preview.done())
4391cd15 1767 buf.appendf("P(%d)", (int) preview.debt());
774c051c 1768 }
1769
5f8252d2 1770 if (virginBodySending.active())
774c051c 1771 buf.append("B", 1);
1772
1773 if (!state.doneParsing() && state.parsing != State::psIcapHeader)
4391cd15 1774 buf.appendf("p(%d)", state.parsing);
774c051c 1775
1776 if (!doneSending() && state.sending != State::sendingUndecided)
4391cd15 1777 buf.appendf("S(%d)", state.sending);
478cfe99 1778
83c51da9
CT
1779 if (state.readyForUob)
1780 buf.append("6", 1);
1781
478cfe99 1782 if (canStartBypass)
9e008dda 1783 buf.append("Y", 1);
a22e6cd3
AR
1784
1785 if (protectGroupBypass)
1786 buf.append("G", 1);
774c051c 1787}
1788
26cc52cb 1789void Adaptation::Icap::ModXact::fillDoneStatus(MemBuf &buf) const
774c051c 1790{
26cc52cb 1791 Adaptation::Icap::Xaction::fillDoneStatus(buf);
c99de607 1792
5f8252d2 1793 if (!virgin.body_pipe)
774c051c 1794 buf.append("R", 1);
1795
1796 if (state.doneWriting())
1797 buf.append("w", 1);
1798
1799 if (preview.enabled()) {
1800 if (preview.done())
4391cd15 1801 buf.appendf("P%s", preview.ieof() ? "(ieof)" : "");
774c051c 1802 }
1803
1804 if (doneReading())
1805 buf.append("r", 1);
1806
1807 if (state.doneParsing())
1808 buf.append("p", 1);
1809
1810 if (doneSending())
1811 buf.append("S", 1);
1812}
1813
26cc52cb 1814bool Adaptation::Icap::ModXact::gotEncapsulated(const char *section) const
774c051c 1815{
36c774f7
EB
1816 return !icapReply->header.getByNameListMember("Encapsulated",
1817 section, ',').isEmpty();
774c051c 1818}
1819
1820// calculate whether there is a virgin HTTP body and
1821// whether its expected size is known
5f8252d2 1822// TODO: rename because we do not just estimate
26cc52cb 1823void Adaptation::Icap::ModXact::estimateVirginBody()
774c051c 1824{
5f8252d2 1825 // note: lack of size info may disable previews and 204s
774c051c 1826
63df1d28 1827 Http::Message *msg = virgin.header;
5f8252d2 1828 Must(msg);
774c051c 1829
60745f24 1830 HttpRequestMethod method;
774c051c 1831
5f8252d2 1832 if (virgin.cause)
1833 method = virgin.cause->method;
e1381638
AJ
1834 else if (HttpRequest *req = dynamic_cast<HttpRequest*>(msg))
1835 method = req->method;
774c051c 1836 else
c2a7cefd 1837 method = Http::METHOD_NONE;
774c051c 1838
47f6e231 1839 int64_t size;
5f8252d2 1840 // expectingBody returns true for zero-sized bodies, but we will not
1841 // get a pipe for that body, so we treat the message as bodyless
c2a7cefd 1842 if (method != Http::METHOD_NONE && msg->expectingBody(method, size) && size) {
bf95c10a 1843 debugs(93, 6, "expects virgin body from " <<
9e008dda 1844 virgin.body_pipe << "; size: " << size);
5f8252d2 1845
1846 virginBody.expect(size);
1847 virginBodyWriting.plan();
1848
1849 // sign up as a body consumer
1850 Must(msg->body_pipe != NULL);
1851 Must(msg->body_pipe == virgin.body_pipe);
1852 Must(virgin.body_pipe->setConsumerIfNotLate(this));
1853
1854 // make sure TheBackupLimit is in-sync with the buffer size
9c175897 1855 Must(TheBackupLimit <= static_cast<size_t>(msg->body_pipe->buf().max_capacity));
774c051c 1856 } else {
bf95c10a 1857 debugs(93, 6, "does not expect virgin body");
5f8252d2 1858 Must(msg->body_pipe == NULL);
1859 checkConsuming();
774c051c 1860 }
1861}
1862
26cc52cb 1863void Adaptation::Icap::ModXact::makeAdaptedBodyPipe(const char *what)
9e008dda 1864{
5f8252d2 1865 Must(!adapted.body_pipe);
1866 Must(!adapted.header->body_pipe);
1867 adapted.header->body_pipe = new BodyPipe(this);
1868 adapted.body_pipe = adapted.header->body_pipe;
bf95c10a 1869 debugs(93, 7, "will supply " << what << " via " <<
9e008dda 1870 adapted.body_pipe << " pipe");
5f8252d2 1871}
1872
26cc52cb 1873// TODO: Move SizedEstimate and Preview elsewhere
774c051c 1874
26cc52cb 1875Adaptation::Icap::SizedEstimate::SizedEstimate()
f53969cc 1876 : theData(dtUnexpected)
774c051c 1877{}
1878
26cc52cb 1879void Adaptation::Icap::SizedEstimate::expect(int64_t aSize)
774c051c 1880{
47f6e231 1881 theData = (aSize >= 0) ? aSize : (int64_t)dtUnknown;
774c051c 1882}
1883
26cc52cb 1884bool Adaptation::Icap::SizedEstimate::expected() const
774c051c 1885{
1886 return theData != dtUnexpected;
1887}
1888
26cc52cb 1889bool Adaptation::Icap::SizedEstimate::knownSize() const
774c051c 1890{
1891 Must(expected());
1892 return theData != dtUnknown;
1893}
1894
26cc52cb 1895uint64_t Adaptation::Icap::SizedEstimate::size() const
774c051c 1896{
1897 Must(knownSize());
47f6e231 1898 return static_cast<uint64_t>(theData);
774c051c 1899}
1900
26cc52cb 1901Adaptation::Icap::VirginBodyAct::VirginBodyAct(): theStart(0), theState(stUndecided)
774c051c 1902{}
1903
26cc52cb 1904void Adaptation::Icap::VirginBodyAct::plan()
774c051c 1905{
478cfe99 1906 Must(!disabled());
1907 Must(!theStart); // not started
1908 theState = stActive;
774c051c 1909}
1910
26cc52cb 1911void Adaptation::Icap::VirginBodyAct::disable()
774c051c 1912{
478cfe99 1913 theState = stDisabled;
774c051c 1914}
1915
26cc52cb 1916void Adaptation::Icap::VirginBodyAct::progress(size_t size)
774c051c 1917{
1918 Must(active());
46e172d9
FC
1919#if SIZEOF_SIZE_T > 4
1920 /* always true for smaller size_t's */
d897ae49 1921 Must(static_cast<int64_t>(size) >= 0);
46e172d9 1922#endif
47f6e231 1923 theStart += static_cast<int64_t>(size);
774c051c 1924}
1925
26cc52cb 1926uint64_t Adaptation::Icap::VirginBodyAct::offset() const
774c051c 1927{
1928 Must(active());
47f6e231 1929 return static_cast<uint64_t>(theStart);
774c051c 1930}
1931
26cc52cb 1932Adaptation::Icap::Preview::Preview(): theWritten(0), theAd(0), theState(stDisabled)
774c051c 1933{}
1934
26cc52cb 1935void Adaptation::Icap::Preview::enable(size_t anAd)
774c051c 1936{
1937 // TODO: check for anAd not exceeding preview size limit
774c051c 1938 Must(!enabled());
1939 theAd = anAd;
1940 theState = stWriting;
1941}
1942
26cc52cb 1943bool Adaptation::Icap::Preview::enabled() const
774c051c 1944{
1945 return theState != stDisabled;
1946}
1947
26cc52cb 1948size_t Adaptation::Icap::Preview::ad() const
774c051c 1949{
1950 Must(enabled());
1951 return theAd;
1952}
1953
26cc52cb 1954bool Adaptation::Icap::Preview::done() const
774c051c 1955{
1956 Must(enabled());
1957 return theState >= stIeof;
1958}
1959
26cc52cb 1960bool Adaptation::Icap::Preview::ieof() const
774c051c 1961{
1962 Must(enabled());
1963 return theState == stIeof;
1964}
1965
26cc52cb 1966size_t Adaptation::Icap::Preview::debt() const
774c051c 1967{
1968 Must(enabled());
1969 return done() ? 0 : (theAd - theWritten);
1970}
1971
26cc52cb 1972void Adaptation::Icap::Preview::wrote(size_t size, bool wroteEof)
774c051c 1973{
1974 Must(enabled());
5f8252d2 1975
774c051c 1976 theWritten += size;
1977
9e008dda 1978 Must(theWritten <= theAd);
5f8252d2 1979
9e008dda
AJ
1980 if (wroteEof)
1981 theState = stIeof; // written size is irrelevant
e1381638
AJ
1982 else if (theWritten >= theAd)
1983 theState = stDone;
774c051c 1984}
1985
26cc52cb 1986bool Adaptation::Icap::ModXact::fillVirginHttpHeader(MemBuf &mb) const
3cfc19b3 1987{
5f8252d2 1988 if (virgin.header == NULL)
3cfc19b3 1989 return false;
1990
5f8252d2 1991 virgin.header->firstLineBuf(mb);
3cfc19b3 1992
1993 return true;
1994}
c824c43b 1995
83b053a0 1996void Adaptation::Icap::ModXact::detailError(const ErrorDetail::Pointer &errDetail)
64b66b76 1997{
e9fa5493
AR
1998 HttpRequest *request = dynamic_cast<HttpRequest*>(adapted.header);
1999 // if no adapted request, update virgin (and inherit its properties later)
2000 // TODO: make this and HttpRequest::detailError constant, like adaptHistory
2001 if (!request)
2002 request = const_cast<HttpRequest*>(&virginRequest());
2003
2004 if (request)
64b66b76 2005 request->detailError(ERR_ICAP_FAILURE, errDetail);
64b66b76 2006}
c824c43b 2007
129fe2a1
CT
2008void Adaptation::Icap::ModXact::clearError()
2009{
87f237a9 2010 HttpRequest *request = dynamic_cast<HttpRequest*>(adapted.header);
129fe2a1
CT
2011 // if no adapted request, update virgin (and inherit its properties later)
2012 if (!request)
2013 request = const_cast<HttpRequest*>(&virginRequest());
2014
2015 if (request)
2016 request->clearError();
2017}
2018
88df846b
CT
2019void Adaptation::Icap::ModXact::updateSources()
2020{
2021 Must(adapted.header);
63df1d28 2022 adapted.header->sources |= (service().cfg().connectionEncryption ? Http::Message::srcIcaps : Http::Message::srcIcap);
88df846b
CT
2023}
2024
26cc52cb 2025/* Adaptation::Icap::ModXactLauncher */
c824c43b 2026
63df1d28 2027Adaptation::Icap::ModXactLauncher::ModXactLauncher(Http::Message *virginHeader, HttpRequest *virginCause, AccessLogEntry::Pointer &alp, Adaptation::ServicePointer aService):
f53969cc
SM
2028 AsyncJob("Adaptation::Icap::ModXactLauncher"),
2029 Adaptation::Icap::Launcher("Adaptation::Icap::ModXactLauncher", aService),
2030 al(alp)
c824c43b 2031{
2032 virgin.setHeader(virginHeader);
2033 virgin.setCause(virginCause);
3ff65596 2034 updateHistory(true);
c824c43b 2035}
2036
26cc52cb 2037Adaptation::Icap::Xaction *Adaptation::Icap::ModXactLauncher::createXaction()
c824c43b 2038{
26cc52cb
AR
2039 Adaptation::Icap::ServiceRep::Pointer s =
2040 dynamic_cast<Adaptation::Icap::ServiceRep*>(theService.getRaw());
0bef8dd7 2041 Must(s != NULL);
af0ded40 2042 return new Adaptation::Icap::ModXact(virgin.header, virgin.cause, al, s);
c824c43b 2043}
3ff65596 2044
e1381638
AJ
2045void Adaptation::Icap::ModXactLauncher::swanSong()
2046{
bf95c10a 2047 debugs(93, 5, "swan sings");
3ff65596
AR
2048 updateHistory(false);
2049 Adaptation::Icap::Launcher::swanSong();
2050}
2051
b0365bd9 2052void Adaptation::Icap::ModXactLauncher::updateHistory(bool doStart)
e1381638
AJ
2053{
2054 HttpRequest *r = virgin.cause ?
2055 virgin.cause : dynamic_cast<HttpRequest*>(virgin.header);
2056
2057 // r should never be NULL but we play safe; TODO: add Should()
2058 if (r) {
2059 Adaptation::Icap::History::Pointer h = r->icapHistory();
2060 if (h != NULL) {
b0365bd9 2061 if (doStart)
e1381638
AJ
2062 h->start("ICAPModXactLauncher");
2063 else
2064 h->stop("ICAPModXactLauncher");
2065 }
2066 }
3ff65596 2067}
f53969cc 2068
69c698a3 2069bool Adaptation::Icap::TrailerParser::parse(const char *buf, int len, int atEnd, Http::StatusCode *error) {
4f1c93a7
EB
2070 Http::ContentLengthInterpreter clen;
2071 // RFC 7230 section 4.1.2: MUST NOT generate a trailer that contains
2072 // a field necessary for message framing (e.g., Transfer-Encoding and Content-Length)
2073 clen.applyTrailerRules();
2074 const int parsed = trailer.parse(buf, len, atEnd, hdr_sz, clen);
69c698a3
EB
2075 if (parsed < 0)
2076 *error = Http::scInvalidHeader; // TODO: should we add a new Http::scInvalidTrailer?
2077 return parsed > 0;
2078}
2079
417da400
EB
2080void
2081Adaptation::Icap::ChunkExtensionValueParser::parse(Tokenizer &tok, const SBuf &extName)
2082{
2083 if (extName == UseOriginalBodyName) {
2084 useOriginalBody_ = tok.udec64("use-original-body");
2085 assert(useOriginalBody_ >= 0);
2086 } else {
2087 Ignore(tok, extName);
2088 }
2089}
2090