]> git.ipfire.org Git - thirdparty/squid.git/blame - src/refresh.cc
avoided temporary in HttpHdrCc name-to-id lookup
[thirdparty/squid.git] / src / refresh.cc
CommitLineData
e4e6a8db 1
2/*
262a0e14 3 * $Id$
e4e6a8db 4 *
5 * DEBUG: section 22 Refresh Calculation
6 * AUTHOR: Harvest Derived
7 *
2b6662ba 8 * SQUID Web Proxy Cache http://www.squid-cache.org/
e25c139f 9 * ----------------------------------------------------------
e4e6a8db 10 *
2b6662ba 11 * Squid is the result of efforts by numerous individuals from
12 * the Internet community; see the CONTRIBUTORS file for full
13 * details. Many organizations have provided support for Squid's
14 * development; see the SPONSORS file for full details. Squid is
15 * Copyrighted (C) 2001 by the Regents of the University of
16 * California; see the COPYRIGHT file for full details. Squid
17 * incorporates software developed and/or copyrighted by other
18 * sources; see the CREDITS file for full details.
e4e6a8db 19 *
20 * This program is free software; you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License as published by
22 * the Free Software Foundation; either version 2 of the License, or
23 * (at your option) any later version.
26ac0430 24 *
e4e6a8db 25 * This program is distributed in the hope that it will be useful,
26 * but WITHOUT ANY WARRANTY; without even the implied warranty of
27 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28 * GNU General Public License for more details.
26ac0430 29 *
e4e6a8db 30 * You should have received a copy of the GNU General Public License
31 * along with this program; if not, write to the Free Software
cbdec147 32 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
e25c139f 33 *
e4e6a8db 34 */
35
36#ifndef USE_POSIX_REGEX
37#define USE_POSIX_REGEX /* put before includes; always use POSIX */
38#endif
39
40#include "squid.h"
7ebe76de 41#include "HttpHdrCc.h"
8822ebee 42#include "mgr/Registration.h"
e6ccf245 43#include "Store.h"
528b2c61 44#include "MemObject.h"
a2ac85d9 45#include "HttpRequest.h"
924f73bc 46#include "HttpReply.h"
985c86bc 47#include "SquidTime.h"
e4e6a8db 48
7d47d8e6 49typedef enum {
65fa5c61 50 rcHTTP,
51 rcICP,
52#if USE_HTCP
53 rcHTCP,
54#endif
55#if USE_CACHE_DIGESTS
56 rcCDigest,
57#endif
58 rcStore,
59 rcCount
7d47d8e6 60} refreshCountsEnum;
829a9357 61
26ac0430 62typedef struct {
1f848b2c 63 bool expires;
64 bool min;
65 bool lmfactor;
66 bool max;
2fadd50d 67} stale_flags;
65fa5c61 68
69/*
70 * This enumerated list assigns specific values, ala HTTP/FTP status
71 * codes. All Fresh codes are in the range 100-199 and all stale
72 * codes are 200-299. We might want to use these codes in logging,
73 * so best to keep them consistent over time.
74 */
75enum {
76 FRESH_REQUEST_MAX_STALE_ALL = 100,
77 FRESH_REQUEST_MAX_STALE_VALUE,
78 FRESH_EXPIRES,
79 FRESH_LMFACTOR_RULE,
80 FRESH_MIN_RULE,
81 FRESH_OVERRIDE_EXPIRES,
82 FRESH_OVERRIDE_LASTMOD,
83 STALE_MUST_REVALIDATE = 200,
84 STALE_RELOAD_INTO_IMS,
85 STALE_FORCED_RELOAD,
86 STALE_EXCEEDS_REQUEST_MAX_AGE_VALUE,
87 STALE_EXPIRES,
88 STALE_MAX_RULE,
89 STALE_LMFACTOR_RULE,
570d3f75 90 STALE_MAX_STALE,
65fa5c61 91 STALE_DEFAULT = 299
92};
93
26ac0430 94static struct RefreshCounts {
829a9357 95 const char *proto;
1c3e77cd 96 int total;
65fa5c61 97 int status[STALE_DEFAULT + 1];
62e76326 98}
99
100refreshCounts[rcCount];
1c3e77cd 101
e4e6a8db 102/*
103 * Defaults:
104 * MIN NONE
105 * PCT 20%
106 * MAX 3 days
107 */
48f44632 108#define REFRESH_DEFAULT_MIN (time_t)0
c3f6d204 109#define REFRESH_DEFAULT_PCT 0.20
48f44632 110#define REFRESH_DEFAULT_MAX (time_t)259200
e4e6a8db 111
2b5133db 112static const refresh_t *refreshUncompiledPattern(const char *);
1c3e77cd 113static OBJH refreshStats;
efd62b86 114static int refreshStaleness(const StoreEntry * entry, time_t check_time, const time_t age, const refresh_t * R, stale_flags * sf);
65fa5c61 115
116static refresh_t DefaultRefresh;
2b5133db 117
38f9c547 118const refresh_t *
6018f0de 119refreshLimits(const char *url)
120{
121 const refresh_t *R;
62e76326 122
6018f0de 123 for (R = Config.Refresh; R; R = R->next) {
62e76326 124 if (!regexec(&(R->compiled_pattern), url, 0, 0, 0))
125 return R;
6018f0de 126 }
62e76326 127
6018f0de 128 return NULL;
129}
130
2b5133db 131static const refresh_t *
132refreshUncompiledPattern(const char *pat)
133{
134 const refresh_t *R;
62e76326 135
2b5133db 136 for (R = Config.Refresh; R; R = R->next) {
62e76326 137 if (0 == strcmp(R->pattern, pat))
138 return R;
2b5133db 139 }
62e76326 140
2b5133db 141 return NULL;
142}
143
b2f01ec3 144/**
65fa5c61 145 * Calculate how stale the response is (or will be at the check_time).
146 * Staleness calculation is based on the following: (1) response
147 * expiration time, (2) age greater than configured maximum, (3)
148 * last-modified factor, and (4) age less than configured minimum.
149 *
b2f01ec3
AJ
150 * \retval -1 If the response is fresh.
151 * \retval >0 Otherwise return it's staleness.
152 * \retval 0 NOTE return value of 0 means the response is stale.
65fa5c61 153 *
154 * The 'stale_flags' structure is used to tell the calling function
155 * _why_ this response is fresh or stale. Its used, for example,
156 * when the admin wants to override expiration and last-modified
157 * times.
158 */
159static int
efd62b86 160refreshStaleness(const StoreEntry * entry, time_t check_time, const time_t age, const refresh_t * R, stale_flags * sf)
65fa5c61 161{
b2f01ec3
AJ
162 /** \par
163 * Check for an explicit expiration time (Expires: header).
65fa5c61 164 */
165 if (entry->expires > -1) {
1f848b2c 166 sf->expires = true;
62e76326 167
168 if (entry->expires > check_time) {
4a7a3d56 169 debugs(22, 3, "FRESH: expires " << entry->expires <<
170 " >= check_time " << check_time << " ");
bf8fe701 171
62e76326 172 return -1;
173 } else {
4a7a3d56 174 debugs(22, 3, "STALE: expires " << entry->expires <<
175 " < check_time " << check_time << " ");
bf8fe701 176
62e76326 177 return (check_time - entry->expires);
178 }
65fa5c61 179 }
62e76326 180
b2f01ec3 181 /** \par
65fa5c61 182 * Use local heuristics to determine staleness. Start with the
183 * max age from the refresh_pattern rule.
184 */
185 if (age > R->max) {
4a7a3d56 186 debugs(22, 3, "STALE: age " << age << " > max " << R->max << " ");
1f848b2c 187 sf->max = true;
62e76326 188 return (age - R->max);
65fa5c61 189 }
62e76326 190
b2f01ec3
AJ
191 /** \par
192 * Try the last-modified factor algorithm: refresh_pattern n% percentage of Last-Modified: age.
65fa5c61 193 */
194 if (entry->lastmod > -1 && entry->timestamp > entry->lastmod) {
62e76326 195 /*
196 * stale_age is the Age of the response when it became/becomes
197 * stale according to the last-modified factor algorithm.
198 */
199 time_t stale_age = static_cast<time_t>((entry->timestamp - entry->lastmod) * R->pct);
1f848b2c 200 sf->lmfactor = true;
62e76326 201
202 if (age >= stale_age) {
4a7a3d56 203 debugs(22, 3, "STALE: age " << age << " > stale_age " << stale_age);
62e76326 204 return (age - stale_age);
205 } else {
4a7a3d56 206 debugs(22, 3, "FRESH: age " << age << " <= stale_age " << stale_age);
62e76326 207 return -1;
208 }
65fa5c61 209 }
62e76326 210
b2f01ec3
AJ
211 /** \par
212 * Finally, if all else fails; staleness is determined by the refresh_pattern
65fa5c61 213 * configured minimum age.
214 */
9e4b5932 215 if (age < R->min) {
216 debugs(22, 3, "FRESH: age " << age << " < min " << R->min);
1f848b2c 217 sf->min = true;
62e76326 218 return -1;
65fa5c61 219 }
62e76326 220
9e4b5932 221 debugs(22, 3, "STALE: age " << age << " >= min " << R->min);
65fa5c61 222 return (age - R->min);
223}
224
b2f01ec3
AJ
225/**
226 * \retval 1 if the entry must be revalidated within delta seconds
227 * \retval 0 otherwise
829a9357 228 *
229 * note: request maybe null (e.g. for cache digests build)
e4e6a8db 230 */
829a9357 231static int
190154cf 232refreshCheck(const StoreEntry * entry, HttpRequest * request, time_t delta)
e4e6a8db 233{
6018f0de 234 const refresh_t *R;
829a9357 235 const char *uri = NULL;
65fa5c61 236 time_t age = 0;
a207429f 237 time_t check_time = squid_curtime + delta;
65fa5c61 238 int staleness;
239 stale_flags sf;
62e76326 240
9b5d1d21 241 if (entry->mem_obj)
62e76326 242 uri = entry->mem_obj->url;
7d47d8e6 243 else if (request)
62e76326 244 uri = urlCanonical(request);
7d47d8e6 245
bf8fe701 246 debugs(22, 3, "refreshCheck: '" << (uri ? uri : "<none>") << "'");
65fa5c61 247
248 if (check_time > entry->timestamp)
62e76326 249 age = check_time - entry->timestamp;
250
efd62b86 251 // FIXME: what to do when age < 0 or counter overflow?
b2f01ec3 252 assert(age >= 0);
efd62b86 253
65fa5c61 254 R = uri ? refreshLimits(uri) : refreshUncompiledPattern(".");
62e76326 255
65fa5c61 256 if (NULL == R)
62e76326 257 R = &DefaultRefresh;
258
bf8fe701 259 debugs(22, 3, "refreshCheck: Matched '" << R->pattern << " " <<
260 (int) R->min << " " << (int) (100.0 * R->pct) << "%% " <<
261 (int) R->max << "'");
65fa5c61 262
64f8c2cb 263 debugs(22, 3, "\tage:\t" << age);
62e76326 264
bf8fe701 265 debugs(22, 3, "\tcheck_time:\t" << mkrfc1123(check_time));
62e76326 266
bf8fe701 267 debugs(22, 3, "\tentry->timestamp:\t" << mkrfc1123(entry->timestamp));
65fa5c61 268
64f8c2cb
AR
269 if (request && !request->flags.ignore_cc) {
270 const HttpHdrCc *const cc = request->cache_control;
cf7c2e94 271 if (cc && cc->getMinFresh()!=HttpHdrCc::MIN_FRESH_UNKNOWN) {
c57b8f05 272 const int32_t minFresh=cc->getMinFresh();
64f8c2cb 273 debugs(22, 3, "\tage + min-fresh:\t" << age << " + " <<
422acb7f 274 minFresh << " = " << age + minFresh);
64f8c2cb 275 debugs(22, 3, "\tcheck_time + min-fresh:\t" << check_time << " + "
422acb7f
FC
276 << minFresh << " = " <<
277 mkrfc1123(check_time + minFresh));
278 age += minFresh;
279 check_time += minFresh;
64f8c2cb
AR
280 }
281 }
282
283 memset(&sf, '\0', sizeof(sf));
284
285 staleness = refreshStaleness(entry, check_time, age, R, &sf);
286
287 debugs(22, 3, "Staleness = " << staleness);
288
65fd3895
AJ
289 // stale-if-error requires any failure be passed thru when its period is over.
290 if (request && entry->mem_obj && entry->mem_obj->getReply() && entry->mem_obj->getReply()->cache_control &&
cf7c2e94 291 entry->mem_obj->getReply()->cache_control->getStaleIfError() != HttpHdrCc::STALE_IF_ERROR_UNKNOWN &&
79731a5f 292 entry->mem_obj->getReply()->cache_control->getStaleIfError() < staleness) {
65fd3895
AJ
293
294 debugs(22, 3, "refreshCheck: stale-if-error period expired.");
295 request->flags.fail_on_validation_err = 1;
296 }
297
4ca08219 298 if (EBIT_TEST(entry->flags, ENTRY_REVALIDATE) && staleness > -1
626096be 299#if USE_HTTP_VIOLATIONS
04f7fd38 300 && !R->flags.ignore_must_revalidate
4ca08219 301#endif
04f7fd38 302 ) {
bf8fe701 303 debugs(22, 3, "refreshCheck: YES: Must revalidate stale response");
5b1d04af
AJ
304 if (request)
305 request->flags.fail_on_validation_err = 1;
62e76326 306 return STALE_MUST_REVALIDATE;
65fa5c61 307 }
62e76326 308
829a9357 309 /* request-specific checks */
432bc83c 310 if (request && !request->flags.ignore_cc) {
62e76326 311 HttpHdrCc *cc = request->cache_control;
4c3ef9b2 312
313 if (request->flags.ims && (R->flags.refresh_ims || Config.onoff.refresh_all_ims)) {
314 /* The clients no-cache header is changed into a IMS query */
bf8fe701 315 debugs(22, 3, "refreshCheck: YES: refresh-ims");
4c3ef9b2 316 return STALE_FORCED_RELOAD;
317 }
318
626096be 319#if USE_HTTP_VIOLATIONS
62e76326 320
321 if (!request->flags.nocache_hack) {
322 (void) 0;
323 } else if (R->flags.ignore_reload) {
324 /* The clients no-cache header is ignored */
bf8fe701 325 debugs(22, 3, "refreshCheck: MAYBE: ignore-reload");
62e76326 326 } else if (R->flags.reload_into_ims || Config.onoff.reload_into_ims) {
327 /* The clients no-cache header is changed into a IMS query */
bf8fe701 328 debugs(22, 3, "refreshCheck: YES: reload-into-ims");
62e76326 329 return STALE_RELOAD_INTO_IMS;
330 } else {
331 /* The clients no-cache header is not overridden on this request */
bf8fe701 332 debugs(22, 3, "refreshCheck: YES: client reload");
62e76326 333 request->flags.nocache = 1;
334 return STALE_FORCED_RELOAD;
335 }
336
9f60cfdf 337#endif
62e76326 338 if (NULL != cc) {
cf7c2e94 339 if (cc->isSet(CC_MAX_AGE)) {
626096be 340#if USE_HTTP_VIOLATIONS
cf7c2e94 341 if (R->flags.ignore_reload && cc->maxAge() == 0) {
7792a5ae
AR
342 debugs(22, 3, "refreshCheck: MAYBE: client-max-age = 0 and ignore-reload");
343 } else
528b2c61 344#endif
62e76326 345 {
cf7c2e94 346 if (cc->maxAge() == 0) {
bf8fe701 347 debugs(22, 3, "refreshCheck: YES: client-max-age = 0");
62e76326 348 return STALE_EXCEEDS_REQUEST_MAX_AGE_VALUE;
349 }
350
cf7c2e94 351 if (age > cc->maxAge()) {
bf8fe701 352 debugs(22, 3, "refreshCheck: YES: age > client-max-age");
62e76326 353 return STALE_EXCEEDS_REQUEST_MAX_AGE_VALUE;
354 }
355 }
356 }
357
b14a084a
FC
358 if (cc->getMaxStale()>=0 && staleness > -1) {
359 if (cc->getMaxStale()==HttpHdrCc::MAX_STALE_ALWAYS) {
62e76326 360 /* max-stale directive without a value */
bf8fe701 361 debugs(22, 3, "refreshCheck: NO: max-stale wildcard");
62e76326 362 return FRESH_REQUEST_MAX_STALE_ALL;
b14a084a 363 } else if (staleness < cc->getMaxStale()) {
bf8fe701 364 debugs(22, 3, "refreshCheck: NO: staleness < max-stale");
62e76326 365 return FRESH_REQUEST_MAX_STALE_VALUE;
366 }
367 }
368 }
48f44632 369 }
62e76326 370
65fa5c61 371 if (-1 == staleness) {
bf8fe701 372 debugs(22, 3, "refreshCheck: object isn't stale..");
ed1de692 373 if (sf.expires) {
bf8fe701 374 debugs(22, 3, "refreshCheck: returning FRESH_EXPIRES");
62e76326 375 return FRESH_EXPIRES;
26ac0430 376 }
62e76326 377
378 assert(!sf.max);
379
ed1de692 380 if (sf.lmfactor) {
bf8fe701 381 debugs(22, 3, "refreshCheck: returning FRESH_LMFACTOR_RULE");
62e76326 382 return FRESH_LMFACTOR_RULE;
26ac0430 383 }
62e76326 384
385 assert(sf.min);
386
bf8fe701 387 debugs(22, 3, "refreshCheck: returning FRESH_MIN_RULE");
62e76326 388 return FRESH_MIN_RULE;
1dfa1d81 389 }
62e76326 390
65fa5c61 391 /*
392 * At this point the response is stale, unless one of
542c4d60 393 * the override options kicks in.
570d3f75 394 * NOTE: max-stale config blocks the overrides.
65fa5c61 395 */
570d3f75 396 int max_stale = (R->max_stale >= 0 ? R->max_stale : Config.maxStale);
60c3d5b7 397 if ( max_stale >= 0 && staleness > max_stale) {
570d3f75
AJ
398 debugs(22, 3, "refreshCheck: YES: max-stale limit");
399 if (request)
400 request->flags.fail_on_validation_err = 1;
401 return STALE_MAX_STALE;
402 }
403
65fa5c61 404 if (sf.expires) {
626096be 405#if USE_HTTP_VIOLATIONS
62e76326 406
407 if (R->flags.override_expire && age < R->min) {
bf8fe701 408 debugs(22, 3, "refreshCheck: NO: age < min && override-expire");
62e76326 409 return FRESH_OVERRIDE_EXPIRES;
410 }
411
65fa5c61 412#endif
62e76326 413 return STALE_EXPIRES;
e4e6a8db 414 }
62e76326 415
65fa5c61 416 if (sf.max)
62e76326 417 return STALE_MAX_RULE;
418
65fa5c61 419 if (sf.lmfactor) {
626096be 420#if USE_HTTP_VIOLATIONS
62e76326 421
422 if (R->flags.override_lastmod && age < R->min) {
bf8fe701 423 debugs(22, 3, "refreshCheck: NO: age < min && override-lastmod");
62e76326 424 return FRESH_OVERRIDE_LASTMOD;
425 }
426
65fa5c61 427#endif
62e76326 428 return STALE_LMFACTOR_RULE;
e4e6a8db 429 }
62e76326 430
bf8fe701 431 debugs(22, 3, "refreshCheck: returning STALE_DEFAULT");
65fa5c61 432 return STALE_DEFAULT;
e4e6a8db 433}
48f44632 434
cfa9f1cb 435int
436refreshIsCachable(const StoreEntry * entry)
437{
438 /*
439 * Don't look at the request to avoid no-cache and other nuisances.
440 * the object should have a mem_obj so the URL will be found there.
26ac0430
AJ
441 * minimum_expiry_time seconds delta (defaults to 60 seconds), to
442 * avoid objects which expire almost immediately, and which can't
6a2f3fcf 443 * be refreshed.
cfa9f1cb 444 */
6a2f3fcf 445 int reason = refreshCheck(entry, NULL, Config.minimum_expiry_time);
65fa5c61 446 refreshCounts[rcStore].total++;
447 refreshCounts[rcStore].status[reason]++;
62e76326 448
451c8350 449 if (reason < STALE_MUST_REVALIDATE)
62e76326 450 /* Does not need refresh. This is certainly cachable */
451 return 1;
452
cfa9f1cb 453 if (entry->lastmod < 0)
62e76326 454 /* Last modified is needed to do a refresh */
455 return 0;
456
cfa9f1cb 457 if (entry->mem_obj == NULL)
62e76326 458 /* no mem_obj? */
459 return 1;
460
528b2c61 461 if (entry->getReply() == NULL)
62e76326 462 /* no reply? */
463 return 1;
464
528b2c61 465 if (entry->getReply()->content_length == 0)
62e76326 466 /* No use refreshing (caching?) 0 byte objects */
467 return 0;
468
cfa9f1cb 469 /* This seems to be refreshable. Cache it */
470 return 1;
471}
472
bcfba8bd
AR
473/// whether reply is stale if it is a hit
474static bool
475refreshIsStaleIfHit(const int reason)
476{
477 switch (reason) {
478 case FRESH_MIN_RULE:
479 case FRESH_LMFACTOR_RULE:
480 case FRESH_EXPIRES:
481 return false;
482 default:
483 return true;
484 }
485}
486
829a9357 487/* refreshCheck... functions below are protocol-specific wrappers around
488 * refreshCheck() function above */
489
490int
190154cf 491refreshCheckHTTP(const StoreEntry * entry, HttpRequest * request)
7d47d8e6 492{
65fa5c61 493 int reason = refreshCheck(entry, request, 0);
494 refreshCounts[rcHTTP].total++;
495 refreshCounts[rcHTTP].status[reason]++;
bcfba8bd
AR
496 request->flags.stale_if_hit = refreshIsStaleIfHit(reason);
497 return (Config.onoff.offline || reason < 200) ? 0 : 1;
829a9357 498}
499
500int
190154cf 501refreshCheckICP(const StoreEntry * entry, HttpRequest * request)
7d47d8e6 502{
65fa5c61 503 int reason = refreshCheck(entry, request, 30);
504 refreshCounts[rcICP].total++;
505 refreshCounts[rcICP].status[reason]++;
506 return (reason < 200) ? 0 : 1;
829a9357 507}
508
65fa5c61 509#if USE_HTCP
32b3cf93 510int
190154cf 511refreshCheckHTCP(const StoreEntry * entry, HttpRequest * request)
32b3cf93 512{
65fa5c61 513 int reason = refreshCheck(entry, request, 10);
514 refreshCounts[rcHTCP].total++;
515 refreshCounts[rcHTCP].status[reason]++;
516 return (reason < 200) ? 0 : 1;
32b3cf93 517}
62e76326 518
65fa5c61 519#endif
32b3cf93 520
65fa5c61 521#if USE_CACHE_DIGESTS
829a9357 522int
7d47d8e6 523refreshCheckDigest(const StoreEntry * entry, time_t delta)
524{
65fa5c61 525 int reason = refreshCheck(entry,
62e76326 526 entry->mem_obj ? entry->mem_obj->request : NULL,
527 delta);
65fa5c61 528 refreshCounts[rcCDigest].total++;
529 refreshCounts[rcCDigest].status[reason]++;
530 return (reason < 200) ? 0 : 1;
6018f0de 531}
62e76326 532
65fa5c61 533#endif
6018f0de 534
48f44632 535time_t
536getMaxAge(const char *url)
537{
6018f0de 538 const refresh_t *R;
bf8fe701 539 debugs(22, 3, "getMaxAge: '" << url << "'");
62e76326 540
6018f0de 541 if ((R = refreshLimits(url)))
62e76326 542 return R->max;
6018f0de 543 else
62e76326 544 return REFRESH_DEFAULT_MAX;
48f44632 545}
1c3e77cd 546
829a9357 547static void
62e76326 548
829a9357 549refreshCountsStats(StoreEntry * sentry, struct RefreshCounts *rc)
550{
cc7cfa8e 551 int sum = 0;
552 int tot = rc->total;
553
829a9357 554 storeAppendPrintf(sentry, "\n\n%s histogram:\n", rc->proto);
65fa5c61 555 storeAppendPrintf(sentry, "Count\t%%Total\tCategory\n");
829a9357 556
65fa5c61 557#define refreshCountsStatsEntry(code,desc) { \
558 storeAppendPrintf(sentry, "%6d\t%6.2f\t%s\n", \
559 rc->status[code], xpercent(rc->status[code], tot), desc); \
560 sum += rc->status[code]; \
cc7cfa8e 561}
65fa5c61 562
563 refreshCountsStatsEntry(FRESH_REQUEST_MAX_STALE_ALL,
62e76326 564 "Fresh: request max-stale wildcard");
65fa5c61 565 refreshCountsStatsEntry(FRESH_REQUEST_MAX_STALE_VALUE,
62e76326 566 "Fresh: request max-stale value");
65fa5c61 567 refreshCountsStatsEntry(FRESH_EXPIRES,
62e76326 568 "Fresh: expires time not reached");
65fa5c61 569 refreshCountsStatsEntry(FRESH_LMFACTOR_RULE,
62e76326 570 "Fresh: refresh_pattern last-mod factor percentage");
65fa5c61 571 refreshCountsStatsEntry(FRESH_MIN_RULE,
62e76326 572 "Fresh: refresh_pattern min value");
65fa5c61 573 refreshCountsStatsEntry(FRESH_OVERRIDE_EXPIRES,
62e76326 574 "Fresh: refresh_pattern override expires");
65fa5c61 575 refreshCountsStatsEntry(FRESH_OVERRIDE_LASTMOD,
62e76326 576 "Fresh: refresh_pattern override lastmod");
65fa5c61 577 refreshCountsStatsEntry(STALE_MUST_REVALIDATE,
62e76326 578 "Stale: response has must-revalidate");
65fa5c61 579 refreshCountsStatsEntry(STALE_RELOAD_INTO_IMS,
62e76326 580 "Stale: changed reload into IMS");
65fa5c61 581 refreshCountsStatsEntry(STALE_FORCED_RELOAD,
62e76326 582 "Stale: request has no-cache directive");
65fa5c61 583 refreshCountsStatsEntry(STALE_EXCEEDS_REQUEST_MAX_AGE_VALUE,
62e76326 584 "Stale: age exceeds request max-age value");
65fa5c61 585 refreshCountsStatsEntry(STALE_EXPIRES,
62e76326 586 "Stale: expires time reached");
65fa5c61 587 refreshCountsStatsEntry(STALE_MAX_RULE,
62e76326 588 "Stale: refresh_pattern max age rule");
65fa5c61 589 refreshCountsStatsEntry(STALE_LMFACTOR_RULE,
62e76326 590 "Stale: refresh_pattern last-mod factor percentage");
65fa5c61 591 refreshCountsStatsEntry(STALE_DEFAULT,
62e76326 592 "Stale: by default");
65fa5c61 593
7d47d8e6 594 tot = sum; /* paranoid: "total" line shows 100% if we forgot nothing */
65fa5c61 595 storeAppendPrintf(sentry, "%6d\t%6.2f\tTOTAL\n",
62e76326 596 rc->total, xpercent(rc->total, tot));
65fa5c61 597 \
62e76326 598 storeAppendPrintf(sentry, "\n");
829a9357 599}
600
1c3e77cd 601static void
602refreshStats(StoreEntry * sentry)
603{
829a9357 604 int i;
605 int total = 0;
606
607 /* get total usage count */
62e76326 608
829a9357 609 for (i = 0; i < rcCount; ++i)
62e76326 610 total += refreshCounts[i].total;
829a9357 611
612 /* protocol usage histogram */
613 storeAppendPrintf(sentry, "\nRefreshCheck calls per protocol\n\n");
62e76326 614
829a9357 615 storeAppendPrintf(sentry, "Protocol\t#Calls\t%%Calls\n");
62e76326 616
829a9357 617 for (i = 0; i < rcCount; ++i)
62e76326 618 storeAppendPrintf(sentry, "%10s\t%6d\t%6.2f\n",
619 refreshCounts[i].proto,
620 refreshCounts[i].total,
621 xpercent(refreshCounts[i].total, total));
829a9357 622
623 /* per protocol histograms */
624 storeAppendPrintf(sentry, "\n\nRefreshCheck histograms for various protocols\n");
62e76326 625
829a9357 626 for (i = 0; i < rcCount; ++i)
62e76326 627 refreshCountsStats(sentry, &refreshCounts[i]);
1c3e77cd 628}
629
5f5e883f
FC
630static void
631refreshRegisterWithCacheManager(void)
632{
8822ebee 633 Mgr::RegisterAction("refresh", "Refresh Algorithm Statistics", refreshStats, 0, 1);
5f5e883f
FC
634}
635
1c3e77cd 636void
9bc73deb 637refreshInit(void)
1c3e77cd 638{
829a9357 639 memset(refreshCounts, 0, sizeof(refreshCounts));
640 refreshCounts[rcHTTP].proto = "HTTP";
641 refreshCounts[rcICP].proto = "ICP";
65fa5c61 642#if USE_HTCP
62e76326 643
32b3cf93 644 refreshCounts[rcHTCP].proto = "HTCP";
65fa5c61 645#endif
62e76326 646
cfa9f1cb 647 refreshCounts[rcStore].proto = "On Store";
65fa5c61 648#if USE_CACHE_DIGESTS
62e76326 649
829a9357 650 refreshCounts[rcCDigest].proto = "Cache Digests";
65fa5c61 651#endif
62e76326 652
65fa5c61 653 memset(&DefaultRefresh, '\0', sizeof(DefaultRefresh));
654 DefaultRefresh.pattern = "<none>";
655 DefaultRefresh.min = REFRESH_DEFAULT_MIN;
656 DefaultRefresh.pct = REFRESH_DEFAULT_PCT;
657 DefaultRefresh.max = REFRESH_DEFAULT_MAX;
d120ed12
FC
658
659 refreshRegisterWithCacheManager();
1c3e77cd 660}