From: Willy Tarreau Date: Thu, 4 Jul 2013 10:46:56 +0000 (+0200) Subject: BUG/MEDIUM: http: "option checkcache" fails with the no-cache header X-Git-Tag: v1.5-dev20~335 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=5b15f9004d13b8a7e5e665929cad97a2c0beebd3;p=thirdparty%2Fhaproxy.git BUG/MEDIUM: http: "option checkcache" fails with the no-cache header The checkcache option checks for cacheable responses with a set-cookie header. Since the response processing code was refactored in 1.3.8 (commit a15645d4), the check was broken because the no-cache value is only checked as no-cache="set-cookie", and not alone. Thanks to Hervé Commowick for reporting this stupid bug! The fix should be backported to 1.4 and 1.3. --- diff --git a/src/proto_http.c b/src/proto_http.c index 8c336e6bb6..5a1451a702 100644 --- a/src/proto_http.c +++ b/src/proto_http.c @@ -7870,6 +7870,7 @@ void check_response_for_cacheability(struct session *t, struct channel *rtr) /* OK, so we know that either p2 points to the end of string or to a comma */ if (((p2 - p1 == 7) && strncasecmp(p1, "private", 7) == 0) || + ((p2 - p1 == 8) && strncasecmp(p1, "no-cache", 8) == 0) || ((p2 - p1 == 8) && strncasecmp(p1, "no-store", 8) == 0) || ((p2 - p1 == 9) && strncasecmp(p1, "max-age=0", 9) == 0) || ((p2 - p1 == 10) && strncasecmp(p1, "s-maxage=0", 10) == 0)) {