]> git.ipfire.org Git - thirdparty/squid.git/blob - src/adaptation/icap/ServiceRep.cc
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / adaptation / icap / ServiceRep.cc
1 /*
2 * Copyright (C) 1996-2018 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9 /* DEBUG: section 93 ICAP (RFC 3507) Client */
10
11 #include "squid.h"
12 #include "adaptation/Answer.h"
13 #include "adaptation/icap/Config.h"
14 #include "adaptation/icap/ModXact.h"
15 #include "adaptation/icap/Options.h"
16 #include "adaptation/icap/OptXact.h"
17 #include "adaptation/icap/ServiceRep.h"
18 #include "base/TextException.h"
19 #include "comm/Connection.h"
20 #include "ConfigParser.h"
21 #include "Debug.h"
22 #include "fde.h"
23 #include "globals.h"
24 #include "HttpReply.h"
25 #include "ip/tools.h"
26 #include "SquidConfig.h"
27 #include "SquidTime.h"
28
29 #define DEFAULT_ICAP_PORT 1344
30 #define DEFAULT_ICAPS_PORT 11344
31
32 CBDATA_NAMESPACED_CLASS_INIT(Adaptation::Icap, ServiceRep);
33
34 Adaptation::Icap::ServiceRep::ServiceRep(const ServiceConfigPointer &svcCfg):
35 AsyncJob("Adaptation::Icap::ServiceRep"), Adaptation::Service(svcCfg),
36 theOptions(NULL), theOptionsFetcher(0), theLastUpdate(0),
37 theBusyConns(0),
38 theAllWaiters(0),
39 connOverloadReported(false),
40 theIdleConns(NULL),
41 isSuspended(0), notifying(false),
42 updateScheduled(false),
43 wasAnnouncedUp(true), // do not announce an "up" service at startup
44 isDetached(false)
45 {
46 setMaxConnections();
47 theIdleConns = new IdleConnList("ICAP Service", NULL);
48 }
49
50 Adaptation::Icap::ServiceRep::~ServiceRep()
51 {
52 delete theIdleConns;
53 Must(!theOptionsFetcher);
54 delete theOptions;
55 }
56
57 void
58 Adaptation::Icap::ServiceRep::finalize()
59 {
60 Adaptation::Service::finalize();
61
62 // use /etc/services or default port if needed
63 const bool have_port = cfg().port >= 0;
64 if (!have_port) {
65 struct servent *serv;
66 if (cfg().protocol.caseCmp("icaps") == 0)
67 serv = getservbyname("icaps", "tcp");
68 else
69 serv = getservbyname("icap", "tcp");
70
71 if (serv) {
72 writeableCfg().port = htons(serv->s_port);
73 } else {
74 writeableCfg().port = cfg().protocol.caseCmp("icaps") == 0 ? DEFAULT_ICAPS_PORT : DEFAULT_ICAP_PORT;
75 }
76 }
77
78 if (cfg().protocol.caseCmp("icaps") == 0)
79 writeableCfg().secure.encryptTransport = true;
80
81 if (cfg().secure.encryptTransport) {
82 debugs(3, DBG_IMPORTANT, "Initializing service " << cfg().resource << " SSL context");
83 sslContext = writeableCfg().secure.createClientContext(true);
84 }
85
86 if (!cfg().connectionEncryption.configured())
87 writeableCfg().connectionEncryption.defaultTo(cfg().secure.encryptTransport);
88
89 theSessionFailures.configure(TheConfig.oldest_service_failure > 0 ?
90 TheConfig.oldest_service_failure : -1);
91 }
92
93 void Adaptation::Icap::ServiceRep::noteFailure()
94 {
95 const int failures = theSessionFailures.count(1);
96 debugs(93,4, HERE << " failure " << failures << " out of " <<
97 TheConfig.service_failure_limit << " allowed in " <<
98 TheConfig.oldest_service_failure << "sec " << status());
99
100 if (isSuspended)
101 return;
102
103 if (TheConfig.service_failure_limit >= 0 &&
104 failures > TheConfig.service_failure_limit)
105 suspend("too many failures");
106
107 // TODO: Should bypass setting affect how much Squid tries to talk to
108 // the ICAP service that is currently unusable and is likely to remain
109 // so for some time? The current code says "no". Perhaps the answer
110 // should be configurable.
111 }
112
113 // returns a persistent or brand new connection; negative int on failures
114 Comm::ConnectionPointer
115 Adaptation::Icap::ServiceRep::getConnection(bool retriableXact, bool &reused)
116 {
117 Comm::ConnectionPointer connection;
118
119 /* 2011-06-17: rousskov:
120 * There are two things that happen at the same time in pop(). Both are important.
121 * 1) Ensure that we can use a pconn for this transaction.
122 * 2) Ensure that the number of idle pconns does not grow without bounds.
123 *
124 * Both happen in the beginning of the transaction. Both are dictated by real-world problems.
125 * retriable means you can repeat the request if you suspect the first try failed due to a pconn race.
126 * HTTP and ICAP rules prohibit the use of pconns for non-retriable requests.
127 *
128 * If there are zero idle connections, (2) is irrelevant. (2) is only relevant when there are many
129 * idle connections and we should not open more connections without closing some idle ones,
130 * or instead of just opening a new connection and leaving idle connections as is.
131 * In other words, (2) tells us to close one FD for each new one we open due to retriable.
132 */
133 if (retriableXact)
134 connection = theIdleConns->pop();
135 else
136 theIdleConns->closeN(1);
137
138 reused = Comm::IsConnOpen(connection);
139 ++theBusyConns;
140 debugs(93,3, HERE << "got connection: " << connection);
141 return connection;
142 }
143
144 // pools connection if it is reusable or closes it
145 void Adaptation::Icap::ServiceRep::putConnection(const Comm::ConnectionPointer &conn, bool isReusable, bool sendReset, const char *comment)
146 {
147 Must(Comm::IsConnOpen(conn));
148 // do not pool an idle connection if we owe connections
149 if (isReusable && excessConnections() == 0) {
150 debugs(93, 3, HERE << "pushing pconn" << comment);
151 commUnsetConnTimeout(conn);
152 theIdleConns->push(conn);
153 } else {
154 debugs(93, 3, HERE << (sendReset ? "RST" : "FIN") << "-closing " <<
155 comment);
156 // comm_close called from Connection::close will clear timeout
157 // TODO: add "bool sendReset = false" to Connection::close()?
158 if (sendReset)
159 comm_reset_close(conn);
160 else
161 conn->close();
162 }
163
164 Must(theBusyConns > 0);
165 --theBusyConns;
166 // a connection slot released. Check if there are waiters....
167 busyCheckpoint();
168 }
169
170 // a wrapper to avoid exposing theIdleConns
171 void Adaptation::Icap::ServiceRep::noteConnectionUse(const Comm::ConnectionPointer &conn)
172 {
173 Must(Comm::IsConnOpen(conn));
174 fd_table[conn->fd].noteUse(); // pconn re-use, albeit not via PconnPool API
175 }
176
177 void Adaptation::Icap::ServiceRep::noteConnectionFailed(const char *comment)
178 {
179 debugs(93, 3, HERE << "Connection failed: " << comment);
180 --theBusyConns;
181 }
182
183 void Adaptation::Icap::ServiceRep::setMaxConnections()
184 {
185 if (cfg().maxConn >= 0)
186 theMaxConnections = cfg().maxConn;
187 else if (theOptions && theOptions->max_connections >= 0)
188 theMaxConnections = theOptions->max_connections;
189 else {
190 theMaxConnections = -1;
191 return;
192 }
193
194 if (::Config.workers > 1 )
195 theMaxConnections /= ::Config.workers;
196 }
197
198 int Adaptation::Icap::ServiceRep::availableConnections() const
199 {
200 if (theMaxConnections < 0)
201 return -1;
202
203 // we are available if we can open or reuse connections
204 // in other words, if we will not create debt
205 int available = max(0, theMaxConnections - theBusyConns);
206
207 if (!available && !connOverloadReported) {
208 debugs(93, DBG_IMPORTANT, "WARNING: ICAP Max-Connections limit " <<
209 "exceeded for service " << cfg().uri << ". Open connections now: " <<
210 theBusyConns + theIdleConns->count() << ", including " <<
211 theIdleConns->count() << " idle persistent connections.");
212 connOverloadReported = true;
213 }
214
215 if (cfg().onOverload == srvForce)
216 return -1;
217
218 return available;
219 }
220
221 // The number of connections which excess the Max-Connections limit
222 int Adaptation::Icap::ServiceRep::excessConnections() const
223 {
224 if (theMaxConnections < 0)
225 return 0;
226
227 // Waiters affect the number of needed connections but a needed
228 // connection may still be excessive from Max-Connections p.o.v.
229 // so we should not account for waiting transaction needs here.
230 const int debt = theBusyConns + theIdleConns->count() - theMaxConnections;
231 if (debt > 0)
232 return debt;
233 else
234 return 0;
235 }
236
237 void Adaptation::Icap::ServiceRep::noteGoneWaiter()
238 {
239 --theAllWaiters;
240
241 // in case the notified transaction did not take the connection slot
242 busyCheckpoint();
243 }
244
245 // called when a connection slot may become available
246 void Adaptation::Icap::ServiceRep::busyCheckpoint()
247 {
248 if (theNotificationWaiters.empty()) // nobody is waiting for a slot
249 return;
250
251 int freed = 0;
252 int available = availableConnections();
253
254 if (available < 0) {
255 // It is possible to have waiters when no limit on connections exist in
256 // case of reconfigure or because new Options received.
257 // In this case, notify all waiting transactions.
258 freed = theNotificationWaiters.size();
259 } else {
260 // avoid notifying more waiters than there will be available slots
261 const int notifiedWaiters = theAllWaiters - theNotificationWaiters.size();
262 freed = available - notifiedWaiters;
263 }
264
265 debugs(93,7, HERE << "Available connections: " << available <<
266 " freed slots: " << freed <<
267 " waiting in queue: " << theNotificationWaiters.size());
268
269 while (freed > 0 && !theNotificationWaiters.empty()) {
270 Client i = theNotificationWaiters.front();
271 theNotificationWaiters.pop_front();
272 ScheduleCallHere(i.callback);
273 i.callback = NULL;
274 --freed;
275 }
276 }
277
278 void Adaptation::Icap::ServiceRep::suspend(const char *reason)
279 {
280 if (isSuspended) {
281 debugs(93,4, HERE << "keeping suspended, also for " << reason);
282 } else {
283 isSuspended = reason;
284 debugs(93, DBG_IMPORTANT, "suspending ICAP service for " << reason);
285 scheduleUpdate(squid_curtime + TheConfig.service_revival_delay);
286 announceStatusChange("suspended", true);
287 }
288 }
289
290 bool Adaptation::Icap::ServiceRep::probed() const
291 {
292 return theLastUpdate != 0;
293 }
294
295 bool Adaptation::Icap::ServiceRep::hasOptions() const
296 {
297 return theOptions && theOptions->valid() && theOptions->fresh();
298 }
299
300 bool Adaptation::Icap::ServiceRep::up() const
301 {
302 return !isSuspended && hasOptions();
303 }
304
305 bool Adaptation::Icap::ServiceRep::availableForNew() const
306 {
307 Must(up());
308 int available = availableConnections();
309 if (available < 0)
310 return true;
311 else
312 return (available - theAllWaiters > 0);
313 }
314
315 bool Adaptation::Icap::ServiceRep::availableForOld() const
316 {
317 Must(up());
318
319 int available = availableConnections();
320 return (available != 0); // it is -1 (no limit) or has available slots
321 }
322
323 bool Adaptation::Icap::ServiceRep::wantsUrl(const SBuf &urlPath) const
324 {
325 Must(hasOptions());
326 return theOptions->transferKind(urlPath) != Adaptation::Icap::Options::xferIgnore;
327 }
328
329 bool Adaptation::Icap::ServiceRep::wantsPreview(const SBuf &urlPath, size_t &wantedSize) const
330 {
331 Must(hasOptions());
332
333 if (theOptions->preview < 0)
334 return false;
335
336 if (theOptions->transferKind(urlPath) != Adaptation::Icap::Options::xferPreview)
337 return false;
338
339 wantedSize = theOptions->preview;
340
341 return true;
342 }
343
344 bool Adaptation::Icap::ServiceRep::allows204() const
345 {
346 Must(hasOptions());
347 return true; // in the future, we may have ACLs to prevent 204s
348 }
349
350 bool Adaptation::Icap::ServiceRep::allows206() const
351 {
352 Must(hasOptions());
353 if (theOptions->allow206)
354 return true; // in the future, we may have ACLs to prevent 206s
355 return false;
356 }
357
358 static
359 void ServiceRep_noteTimeToUpdate(void *data)
360 {
361 Adaptation::Icap::ServiceRep *service = static_cast<Adaptation::Icap::ServiceRep*>(data);
362 Must(service);
363 service->noteTimeToUpdate();
364 }
365
366 void Adaptation::Icap::ServiceRep::noteTimeToUpdate()
367 {
368 if (!detached())
369 updateScheduled = false;
370
371 if (detached() || theOptionsFetcher.set()) {
372 debugs(93,5, HERE << "ignores options update " << status());
373 return;
374 }
375
376 debugs(93,5, HERE << "performs a regular options update " << status());
377 startGettingOptions();
378 }
379
380 #if 0
381 static
382 void Adaptation::Icap::ServiceRep_noteTimeToNotify(void *data)
383 {
384 Adaptation::Icap::ServiceRep *service = static_cast<Adaptation::Icap::ServiceRep*>(data);
385 Must(service);
386 service->noteTimeToNotify();
387 }
388 #endif
389
390 void Adaptation::Icap::ServiceRep::noteTimeToNotify()
391 {
392 Must(!notifying);
393 notifying = true;
394 debugs(93,7, HERE << "notifies " << theClients.size() << " clients " <<
395 status());
396
397 // note: we must notify even if we are invalidated
398
399 Pointer us = NULL;
400
401 while (!theClients.empty()) {
402 Client i = theClients.back();
403 theClients.pop_back();
404 ScheduleCallHere(i.callback);
405 i.callback = 0;
406 }
407
408 notifying = false;
409 }
410
411 void Adaptation::Icap::ServiceRep::callWhenAvailable(AsyncCall::Pointer &cb, bool priority)
412 {
413 debugs(93,8, "ICAPServiceRep::callWhenAvailable");
414 Must(cb!=NULL);
415 Must(up());
416 Must(!theIdleConns->count()); // or we should not be waiting
417
418 Client i;
419 i.service = Pointer(this);
420 i.callback = cb;
421 if (priority)
422 theNotificationWaiters.push_front(i);
423 else
424 theNotificationWaiters.push_back(i);
425
426 busyCheckpoint();
427 }
428
429 void Adaptation::Icap::ServiceRep::callWhenReady(AsyncCall::Pointer &cb)
430 {
431 Must(cb!=NULL);
432
433 debugs(93,5, HERE << "Adaptation::Icap::Service is asked to call " << *cb <<
434 " when ready " << status());
435
436 Must(!broken()); // we do not wait for a broken service
437
438 Client i;
439 i.service = Pointer(this); // TODO: is this really needed?
440 i.callback = cb;
441 theClients.push_back(i);
442
443 if (theOptionsFetcher.set() || notifying)
444 return; // do nothing, we will be picked up in noteTimeToNotify()
445
446 if (needNewOptions())
447 startGettingOptions();
448 else
449 scheduleNotification();
450 }
451
452 void Adaptation::Icap::ServiceRep::scheduleNotification()
453 {
454 debugs(93,7, HERE << "will notify " << theClients.size() << " clients");
455 CallJobHere(93, 5, this, Adaptation::Icap::ServiceRep, noteTimeToNotify);
456 }
457
458 bool Adaptation::Icap::ServiceRep::needNewOptions() const
459 {
460 return !detached() && !up();
461 }
462
463 void Adaptation::Icap::ServiceRep::changeOptions(Adaptation::Icap::Options *newOptions)
464 {
465 debugs(93,8, HERE << "changes options from " << theOptions << " to " <<
466 newOptions << ' ' << status());
467
468 delete theOptions;
469 theOptions = newOptions;
470 theSessionFailures.clear();
471 isSuspended = 0;
472 theLastUpdate = squid_curtime;
473
474 checkOptions();
475 announceStatusChange("down after an options fetch failure", true);
476 }
477
478 void Adaptation::Icap::ServiceRep::checkOptions()
479 {
480 if (theOptions == NULL)
481 return;
482
483 if (!theOptions->valid()) {
484 debugs(93, DBG_IMPORTANT, "WARNING: Squid got an invalid ICAP OPTIONS response " <<
485 "from service " << cfg().uri << "; error: " << theOptions->error);
486 return;
487 }
488
489 /*
490 * Issue a warning if the ICAP server returned methods in the
491 * options response that don't match the method from squid.conf.
492 */
493
494 if (!theOptions->methods.empty()) {
495 bool method_found = false;
496 String method_list;
497 std::vector <ICAP::Method>::iterator iter = theOptions->methods.begin();
498
499 while (iter != theOptions->methods.end()) {
500
501 if (*iter == cfg().method) {
502 method_found = true;
503 break;
504 }
505
506 method_list.append(ICAP::methodStr(*iter));
507 method_list.append(" ", 1);
508 ++iter;
509 }
510
511 if (!method_found) {
512 debugs(93, DBG_IMPORTANT, "WARNING: Squid is configured to use ICAP method " <<
513 cfg().methodStr() <<
514 " for service " << cfg().uri <<
515 " but OPTIONS response declares the methods are " << method_list);
516 }
517 }
518
519 /*
520 * Check the ICAP server's date header for clock skew
521 */
522 const int skew = (int)(theOptions->timestamp() - squid_curtime);
523 if (abs(skew) > theOptions->ttl()) {
524 // TODO: If skew is negative, the option will be considered down
525 // because of stale options. We should probably change this.
526 debugs(93, DBG_IMPORTANT, "ICAP service's clock is skewed by " << skew <<
527 " seconds: " << cfg().uri);
528 }
529 }
530
531 void Adaptation::Icap::ServiceRep::announceStatusChange(const char *downPhrase, bool important) const
532 {
533 if (wasAnnouncedUp == up()) // no significant changes to announce
534 return;
535
536 const char *what = cfg().bypass ? "optional" : "essential";
537 const char *state = wasAnnouncedUp ? downPhrase : "up";
538 const int level = important ? 1 :2;
539 debugs(93,level, what << " ICAP service is " << state << ": " <<
540 cfg().uri << ' ' << status());
541
542 wasAnnouncedUp = !wasAnnouncedUp;
543 }
544
545 // we are receiving ICAP OPTIONS response headers here or NULL on failures
546 void Adaptation::Icap::ServiceRep::noteAdaptationAnswer(const Answer &answer)
547 {
548 Must(initiated(theOptionsFetcher));
549 clearAdaptation(theOptionsFetcher);
550
551 if (answer.kind == Answer::akError) {
552 debugs(93,3, HERE << "failed to fetch options " << status());
553 handleNewOptions(0);
554 return;
555 }
556
557 Must(answer.kind == Answer::akForward); // no akBlock for OPTIONS requests
558 const Http::Message *msg = answer.message.getRaw();
559 Must(msg);
560
561 debugs(93,5, HERE << "is interpreting new options " << status());
562
563 Adaptation::Icap::Options *newOptions = NULL;
564 if (const HttpReply *r = dynamic_cast<const HttpReply*>(msg)) {
565 newOptions = new Adaptation::Icap::Options;
566 newOptions->configure(r);
567 } else {
568 debugs(93, DBG_IMPORTANT, "ICAP service got wrong options message " << status());
569 }
570
571 handleNewOptions(newOptions);
572 }
573
574 // we (a) must keep trying to get OPTIONS and (b) are RefCounted so we
575 // must keep our job alive (XXX: until nobody needs us)
576 void Adaptation::Icap::ServiceRep::callException(const std::exception &e)
577 {
578 clearAdaptation(theOptionsFetcher);
579 debugs(93,2, "ICAP probably failed to fetch options (" << e.what() <<
580 ")" << status());
581 handleNewOptions(0);
582 }
583
584 void Adaptation::Icap::ServiceRep::handleNewOptions(Adaptation::Icap::Options *newOptions)
585 {
586 // new options may be NULL
587 changeOptions(newOptions);
588
589 debugs(93,3, HERE << "got new options and is now " << status());
590
591 scheduleUpdate(optionsFetchTime());
592
593 // XXX: this whole feature bases on the false assumption a service only has one IP
594 setMaxConnections();
595 const int excess = excessConnections();
596 // if we owe connections and have idle pconns, close the latter
597 if (excess && theIdleConns->count() > 0) {
598 const int n = min(excess, theIdleConns->count());
599 debugs(93,5, HERE << "closing " << n << " pconns to relief debt");
600 theIdleConns->closeN(n);
601 }
602
603 scheduleNotification();
604 }
605
606 void Adaptation::Icap::ServiceRep::startGettingOptions()
607 {
608 Must(!theOptionsFetcher);
609 debugs(93,6, HERE << "will get new options " << status());
610
611 // XXX: "this" here is "self"; works until refcounting API changes
612 theOptionsFetcher = initiateAdaptation(
613 new Adaptation::Icap::OptXactLauncher(this));
614 // TODO: timeout in case Adaptation::Icap::OptXact never calls us back?
615 // Such a timeout should probably be a generic AsyncStart feature.
616 }
617
618 void Adaptation::Icap::ServiceRep::scheduleUpdate(time_t when)
619 {
620 if (updateScheduled) {
621 debugs(93,7, HERE << "reschedules update");
622 // XXX: check whether the event is there because AR saw
623 // an unreproducible eventDelete assertion on 2007/06/18
624 if (eventFind(&ServiceRep_noteTimeToUpdate, this))
625 eventDelete(&ServiceRep_noteTimeToUpdate, this);
626 else
627 debugs(93, DBG_IMPORTANT, "XXX: ICAP service lost an update event.");
628 updateScheduled = false;
629 }
630
631 debugs(93,7, HERE << "raw OPTIONS fetch at " << when << " or in " <<
632 (when - squid_curtime) << " sec");
633 debugs(93,9, HERE << "last fetched at " << theLastUpdate << " or " <<
634 (squid_curtime - theLastUpdate) << " sec ago");
635
636 /* adjust update time to prevent too-frequent updates */
637
638 if (when < squid_curtime)
639 when = squid_curtime;
640
641 // XXX: move hard-coded constants from here to Adaptation::Icap::TheConfig
642 const int minUpdateGap = 30; // seconds
643 if (when < theLastUpdate + minUpdateGap)
644 when = theLastUpdate + minUpdateGap;
645
646 const int delay = when - squid_curtime;
647 debugs(93,5, HERE << "will fetch OPTIONS in " << delay << " sec");
648
649 eventAdd("Adaptation::Icap::ServiceRep::noteTimeToUpdate",
650 &ServiceRep_noteTimeToUpdate, this, delay, 0, true);
651 updateScheduled = true;
652 }
653
654 // returns absolute time when OPTIONS should be fetched
655 time_t
656 Adaptation::Icap::ServiceRep::optionsFetchTime() const
657 {
658 if (theOptions && theOptions->valid()) {
659 const time_t expire = theOptions->expire();
660 debugs(93,7, HERE << "options expire on " << expire << " >= " << squid_curtime);
661
662 // conservative estimate of how long the OPTIONS transaction will take
663 // XXX: move hard-coded constants from here to Adaptation::Icap::TheConfig
664 const int expectedWait = 20; // seconds
665
666 // Unknown or invalid (too small) expiration times should not happen.
667 // Adaptation::Icap::Options should use the default TTL, and ICAP servers should not
668 // send invalid TTLs, but bugs and attacks happen.
669 if (expire < expectedWait)
670 return squid_curtime;
671 else
672 return expire - expectedWait; // before the current options expire
673 }
674
675 // use revival delay as "expiration" time for a service w/o valid options
676 return squid_curtime + TheConfig.service_revival_delay;
677 }
678
679 Adaptation::Initiate *
680 Adaptation::Icap::ServiceRep::makeXactLauncher(Http::Message *virgin,
681 HttpRequest *cause, AccessLogEntry::Pointer &alp)
682 {
683 return new Adaptation::Icap::ModXactLauncher(virgin, cause, alp, this);
684 }
685
686 // returns a temporary string depicting service status, for debugging
687 const char *Adaptation::Icap::ServiceRep::status() const
688 {
689 static MemBuf buf;
690
691 buf.reset();
692 buf.append("[", 1);
693
694 if (up())
695 buf.append("up", 2);
696 else {
697 buf.append("down", 4);
698 if (isSuspended)
699 buf.append(",susp", 5);
700
701 if (!theOptions)
702 buf.append(",!opt", 5);
703 else if (!theOptions->valid())
704 buf.append(",!valid", 7);
705 else if (!theOptions->fresh())
706 buf.append(",stale", 6);
707 }
708
709 if (detached())
710 buf.append(",detached", 9);
711
712 if (theOptionsFetcher.set())
713 buf.append(",fetch", 6);
714
715 if (notifying)
716 buf.append(",notif", 6);
717
718 if (const int failures = theSessionFailures.remembered())
719 buf.appendf(",fail%d", failures);
720
721 buf.append("]", 1);
722 buf.terminate();
723
724 return buf.content();
725 }
726
727 void Adaptation::Icap::ServiceRep::detach()
728 {
729 debugs(93,3, HERE << "detaching ICAP service: " << cfg().uri <<
730 ' ' << status());
731 isDetached = true;
732 }
733
734 bool Adaptation::Icap::ServiceRep::detached() const
735 {
736 return isDetached;
737 }
738
739 Adaptation::Icap::ConnWaiterDialer::ConnWaiterDialer(const CbcPointer<Adaptation::Icap::ModXact> &xact,
740 Adaptation::Icap::ConnWaiterDialer::Parent::Method aHandler):
741 Parent(xact, aHandler)
742 {
743 theService = &xact->service();
744 theService->noteNewWaiter();
745 }
746
747 Adaptation::Icap::ConnWaiterDialer::ConnWaiterDialer(const Adaptation::Icap::ConnWaiterDialer &aConnWaiter): Parent(aConnWaiter)
748 {
749 theService = aConnWaiter.theService;
750 theService->noteNewWaiter();
751 }
752
753 Adaptation::Icap::ConnWaiterDialer::~ConnWaiterDialer()
754 {
755 theService->noteGoneWaiter();
756 }
757