Welcome! Log In Create A New Profile

Advanced

[PATCH] Upstream: prioritise Cache-Control over Expires

Vadim Fedorenko via nginx-devel
April 14, 2022 07:04PM
# HG changeset patch
# User Vadim Fedorenko <vadim.fedorenko@cdnnow.ru>
# Date 1649889268 -10800
# Thu Apr 14 01:34:28 2022 +0300
# Node ID ed7a2c031475bcb252952a467c184c94652b926a
# Parent a736a7a613ea6e182ff86fbadcb98bb0f8891c0b
Upstream: prioritise Cache-Control over Expires.

RFC7234 explicitly says that cache recipient MUST ignore Expires
header if response includes Cache-Control header with max-age or
s-maxage directives. Previously Cache-Control was ignored if it
was after Expires in reply headers.

At the same time this patch makes more stable behaviour of using
latest value of header Cache-Control even if previous value was 0.
Ticket #964 for more information.
---
src/http/ngx_http_upstream.c | 25 +++++++++++++++++++++++++
src/http/ngx_http_upstream.h | 15 +++++++++++++++
2 files changed, 40 insertions(+)

diff -r a736a7a613ea -r ed7a2c031475 src/http/ngx_http_upstream.c
--- a/src/http/ngx_http_upstream.c Tue Feb 08 17:35:27 2022 +0300
+++ b/src/http/ngx_http_upstream.c Thu Apr 14 01:34:28 2022 +0300
@@ -868,6 +868,7 @@
}

u->cacheable = 1;
+ u->cacheable_reason |= NGX_HTTP_CACHEABLE_DEFAULT;

c = r->cache;

@@ -970,6 +971,7 @@
case NGX_HTTP_CACHE_SCARCE:

u->cacheable = 0;
+ u->cacheable_reason |= NGX_HTTP_CACHEABLE_SCARCE;

break;

@@ -992,6 +994,7 @@

if (ngx_http_upstream_cache_check_range(r, u) == NGX_DECLINED) {
u->cacheable = 0;
+ u->cacheable_reason |= NGX_HTTP_CACHEABLE_RANGE;
}

r->cached = 0;
@@ -3105,6 +3108,7 @@

case NGX_DECLINED:
u->cacheable = 0;
+ u->cacheable_reason |= NGX_HTTP_CACHEABLE_NO_CACHE;
break;

default: /* NGX_OK */
@@ -3165,6 +3169,7 @@

} else {
u->cacheable = 0;
+ u->cacheable_reason |= NGX_HTTP_CACHEABLE_INVALID;
}
}

@@ -4690,6 +4695,7 @@
#if (NGX_HTTP_CACHE)
if (!(u->conf->ignore_headers & NGX_HTTP_UPSTREAM_IGN_SET_COOKIE)) {
u->cacheable = 0;
+ u->cacheable_reason |= NGX_HTTP_CACHEABLE_COOKIE;
}
#endif

@@ -4747,6 +4753,7 @@
|| ngx_strlcasestrn(start, last, (u_char *) "private", 7 - 1) != NULL)
{
u->cacheable = 0;
+ u->cacheable_reason |= NGX_HTTP_CACHEABLE_NO_CACHE;
return NGX_OK;
}

@@ -4772,15 +4779,21 @@
}

u->cacheable = 0;
+ u->cacheable_reason |= NGX_HTTP_CACHEABLE_CACHECTRL0;
return NGX_OK;
}

if (n == 0) {
u->cacheable = 0;
+ u->cacheable_reason |= NGX_HTTP_CACHEABLE_CACHECTRL0;
return NGX_OK;
}

r->cache->valid_sec = ngx_time() + n;
+ u->cacheable_reason &= ~(NGX_HTTP_CACHEABLE_CACHECTRL0|NGX_HTTP_CACHEABLE_EXPIRES);
+ if (u->cacheable_reason == NGX_HTTP_CACHEABLE_DEFAULT) {
+ u->cacheable = 1;
+ }
}

p = ngx_strlcasestrn(start, last, (u_char *) "stale-while-revalidate=",
@@ -4800,9 +4813,13 @@
}

u->cacheable = 0;
+ u->cacheable_reason |= NGX_HTTP_CACHEABLE_CACHECTRL1;
return NGX_OK;
}

+ if (u->cacheable_reason == NGX_HTTP_CACHEABLE_DEFAULT) {
+ u->cacheable = 1;
+ }
r->cache->updating_sec = n;
r->cache->error_sec = n;
}
@@ -4823,10 +4840,15 @@
}

u->cacheable = 0;
+ u->cacheable_reason |= NGX_HTTP_CACHEABLE_CACHECTRL2;
return NGX_OK;
}

r->cache->error_sec = n;
+ u->cacheable_reason &= ~NGX_HTTP_CACHEABLE_EXPIRES;
+ if (u->cacheable_reason == NGX_HTTP_CACHEABLE_DEFAULT) {
+ u->cacheable = 1;
+ }
}
}
#endif
@@ -4864,6 +4886,7 @@

if (expires == NGX_ERROR || expires < ngx_time()) {
u->cacheable = 0;
+ u->cacheable_reason |= NGX_HTTP_CACHEABLE_EXPIRES;
return NGX_OK;
}

@@ -4907,6 +4930,7 @@
switch (n) {
case 0:
u->cacheable = 0;
+ u->cacheable_reason |= NGX_HTTP_CACHEABLE_XACCEL;
/* fall through */

case NGX_ERROR:
@@ -5067,6 +5091,7 @@
|| (h->value.len == 1 && h->value.data[0] == '*'))
{
u->cacheable = 0;
+ u->cacheable_reason |= NGX_HTTP_CACHEABLE_VARY;
}

r->cache->vary = h->value;
diff -r a736a7a613ea -r ed7a2c031475 src/http/ngx_http_upstream.h
--- a/src/http/ngx_http_upstream.h Tue Feb 08 17:35:27 2022 +0300
+++ b/src/http/ngx_http_upstream.h Thu Apr 14 01:34:28 2022 +0300
@@ -320,6 +320,20 @@
ngx_http_upstream_t *u);


+#define NGX_HTTP_CACHEABLE_DEFAULT 0x80000000
+#define NGX_HTTP_CACHEABLE_SCARCE 0x00000001
+#define NGX_HTTP_CACHEABLE_RANGE 0x00000002
+#define NGX_HTTP_CACHEABLE_INVALID 0x00000004
+#define NGX_HTTP_CACHEABLE_NO_CACHE 0x00000010
+#define NGX_HTTP_CACHEABLE_EXPIRES 0x00000020
+#define NGX_HTTP_CACHEABLE_COOKIE 0x00000040
+#define NGX_HTTP_CACHEABLE_CACHECTRL0 0x00000100
+#define NGX_HTTP_CACHEABLE_CACHECTRL1 0x00000200
+#define NGX_HTTP_CACHEABLE_CACHECTRL2 0x00000400
+#define NGX_HTTP_CACHEABLE_XACCEL 0x00001000
+#define NGX_HTTP_CACHEABLE_VARY 0x00002000
+
+
struct ngx_http_upstream_s {
ngx_http_upstream_handler_pt read_event_handler;
ngx_http_upstream_handler_pt write_event_handler;
@@ -384,6 +398,7 @@

ngx_http_cleanup_pt *cleanup;

+ ngx_uint_t cacheable_reason;
unsigned store:1;
unsigned cacheable:1;
unsigned accel:1;
_______________________________________________
nginx-devel mailing list -- nginx-devel@nginx.org
To unsubscribe send an email to nginx-devel-leave@nginx.org
Subject Author Views Posted

[PATCH] Upstream: prioritise Cache-Control over Expires

Vadim Fedorenko via nginx-devel 1064 April 14, 2022 07:04PM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Maxim Dounin 139 April 16, 2022 09:56PM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Vadim Fedorenko via nginx-devel 159 April 17, 2022 03:52PM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

yugo-horie 204 April 17, 2022 09:16PM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Vadim Fedorenko via nginx-devel 187 April 18, 2022 06:22AM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

yugo-horie 175 April 18, 2022 07:04PM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Maxim Dounin 252 April 19, 2022 11:02AM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Maxim Dounin 116 April 22, 2022 02:24PM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Vadim Fedorenko via nginx-devel 221 April 22, 2022 03:08PM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Maxim Dounin 138 April 24, 2022 12:56AM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Maxim Dounin 126 April 24, 2022 11:44AM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

yugo-horie 167 April 25, 2022 08:28AM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Vadim Fedorenko via nginx-devel 162 April 25, 2022 05:04PM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Vadim Fedorenko via nginx-devel 142 April 25, 2022 05:08PM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Sergey Kandaurov 120 June 06, 2022 09:44AM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Sergey Kandaurov 98 June 06, 2022 10:42AM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Maxim Dounin 115 June 06, 2022 05:10PM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Sergey Kandaurov 141 June 07, 2022 12:02PM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Maxim Dounin 156 June 07, 2022 09:00PM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Sergey Kandaurov 133 June 10, 2022 07:40AM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Maxim Dounin 111 June 11, 2022 06:54PM

Re: [PATCH] Upstream: prioritise Cache-Control over Expires

Sergey Kandaurov 140 June 13, 2022 07:42AM



Sorry, you do not have permission to post/reply in this forum.

Online Users

Guests: 295
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready