William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Cache management |
| 3 | * |
| 4 | * Copyright 2017 HAProxy Technologies |
| 5 | * William Lallemand <wlallemand@haproxy.com> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License |
| 9 | * as published by the Free Software Foundation; either version |
| 10 | * 2 of the License, or (at your option) any later version. |
| 11 | */ |
| 12 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 13 | #include <eb32tree.h> |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 14 | #include <import/sha1.h> |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 15 | |
William Lallemand | 75d9329 | 2017-11-21 20:01:24 +0100 | [diff] [blame] | 16 | #include <types/action.h> |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 17 | #include <types/cli.h> |
William Lallemand | 75d9329 | 2017-11-21 20:01:24 +0100 | [diff] [blame] | 18 | #include <types/filters.h> |
| 19 | #include <types/proxy.h> |
| 20 | #include <types/shctx.h> |
| 21 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 22 | #include <proto/channel.h> |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 23 | #include <proto/cli.h> |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 24 | #include <proto/proxy.h> |
| 25 | #include <proto/hdr_idx.h> |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 26 | #include <proto/http_htx.h> |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 27 | #include <proto/filters.h> |
Willy Tarreau | 61c112a | 2018-10-02 16:43:32 +0200 | [diff] [blame] | 28 | #include <proto/http_rules.h> |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 29 | #include <proto/proto_http.h> |
| 30 | #include <proto/log.h> |
| 31 | #include <proto/stream.h> |
| 32 | #include <proto/stream_interface.h> |
| 33 | #include <proto/shctx.h> |
| 34 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 35 | |
| 36 | #include <common/cfgparse.h> |
| 37 | #include <common/hash.h> |
Willy Tarreau | b96b77e | 2018-12-11 10:22:41 +0100 | [diff] [blame] | 38 | #include <common/htx.h> |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 39 | #include <common/initcall.h> |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 40 | |
| 41 | /* flt_cache_store */ |
Christopher Faulet | 1f672c5 | 2018-12-03 14:30:41 +0100 | [diff] [blame] | 42 | #define CACHE_F_LEGACY_HTTP 0x00000001 /* The cache is used to store raw HTTP |
| 43 | * messages (legacy implementation) */ |
| 44 | #define CACHE_F_HTX 0x00000002 /* The cache is used to store HTX messages */ |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 45 | |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 46 | #define CACHE_FLT_F_IMPLICIT_DECL 0x00000001 /* The cache filtre was implicitly declared (ie without |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 47 | * the filter keyword) */ |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 48 | |
Christopher Faulet | f4a4ef7 | 2018-12-07 17:39:53 +0100 | [diff] [blame] | 49 | const char *cache_store_flt_id = "cache store filter"; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 50 | |
| 51 | struct applet http_cache_applet; |
| 52 | |
| 53 | struct flt_ops cache_ops; |
| 54 | |
| 55 | struct cache { |
Willy Tarreau | fd5efb5 | 2017-11-26 08:54:31 +0100 | [diff] [blame] | 56 | struct list list; /* cache linked list */ |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 57 | struct eb_root entries; /* head of cache entries based on keys */ |
Willy Tarreau | fd5efb5 | 2017-11-26 08:54:31 +0100 | [diff] [blame] | 58 | unsigned int maxage; /* max-age */ |
| 59 | unsigned int maxblocks; |
Frédéric Lécaille | 4eba544 | 2018-10-25 20:29:31 +0200 | [diff] [blame] | 60 | unsigned int maxobjsz; /* max-object-size (in bytes) */ |
Willy Tarreau | fd5efb5 | 2017-11-26 08:54:31 +0100 | [diff] [blame] | 61 | char id[33]; /* cache name */ |
Christopher Faulet | 1f672c5 | 2018-12-03 14:30:41 +0100 | [diff] [blame] | 62 | unsigned int flags; /* CACHE_F_* */ |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 63 | }; |
| 64 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 65 | /* cache config for filters */ |
| 66 | struct cache_flt_conf { |
| 67 | union { |
| 68 | struct cache *cache; /* cache used by the filter */ |
| 69 | char *name; /* cache name used during conf parsing */ |
| 70 | } c; |
| 71 | unsigned int flags; /* CACHE_FLT_F_* */ |
| 72 | }; |
| 73 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 74 | /* |
| 75 | * cache ctx for filters |
| 76 | */ |
| 77 | struct cache_st { |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 78 | int hdrs_len; // field used in legacy mode only |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 79 | struct shared_block *first_block; |
| 80 | }; |
| 81 | |
| 82 | struct cache_entry { |
| 83 | unsigned int latest_validation; /* latest validation date */ |
| 84 | unsigned int expire; /* expiration date */ |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 85 | unsigned int age; /* Origin server "Age" header value */ |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 86 | unsigned int eoh; /* Origin server end of headers offset. */ // field used in legacy mode only |
| 87 | |
| 88 | unsigned int hdrs_len; // field used in HTX mode only |
| 89 | unsigned int data_len; // field used in HTX mode only |
| 90 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 91 | struct eb32_node eb; /* ebtree node used to hold the cache object */ |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 92 | char hash[20]; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 93 | unsigned char data[0]; |
| 94 | }; |
| 95 | |
| 96 | #define CACHE_BLOCKSIZE 1024 |
Willy Tarreau | 96062a1 | 2018-11-11 14:00:28 +0100 | [diff] [blame] | 97 | #define CACHE_ENTRY_MAX_AGE 2147483648U |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 98 | |
| 99 | static struct list caches = LIST_HEAD_INIT(caches); |
| 100 | static struct cache *tmp_cache_config = NULL; |
| 101 | |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 102 | DECLARE_STATIC_POOL(pool_head_cache_st, "cache_st", sizeof(struct cache_st)); |
| 103 | |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 104 | struct cache_entry *entry_exist(struct cache *cache, char *hash) |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 105 | { |
| 106 | struct eb32_node *node; |
| 107 | struct cache_entry *entry; |
| 108 | |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 109 | node = eb32_lookup(&cache->entries, (*(unsigned int *)hash)); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 110 | if (!node) |
| 111 | return NULL; |
| 112 | |
| 113 | entry = eb32_entry(node, struct cache_entry, eb); |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 114 | |
| 115 | /* if that's not the right node */ |
| 116 | if (memcmp(entry->hash, hash, sizeof(entry->hash))) |
| 117 | return NULL; |
| 118 | |
William Lallemand | 0872766 | 2017-11-21 20:01:27 +0100 | [diff] [blame] | 119 | if (entry->expire > now.tv_sec) { |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 120 | return entry; |
William Lallemand | 0872766 | 2017-11-21 20:01:27 +0100 | [diff] [blame] | 121 | } else { |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 122 | eb32_delete(node); |
William Lallemand | 0872766 | 2017-11-21 20:01:27 +0100 | [diff] [blame] | 123 | entry->eb.key = 0; |
| 124 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 125 | return NULL; |
| 126 | |
| 127 | } |
| 128 | |
| 129 | static inline struct shared_context *shctx_ptr(struct cache *cache) |
| 130 | { |
| 131 | return (struct shared_context *)((unsigned char *)cache - ((struct shared_context *)NULL)->data); |
| 132 | } |
| 133 | |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 134 | static inline struct shared_block *block_ptr(struct cache_entry *entry) |
| 135 | { |
| 136 | return (struct shared_block *)((unsigned char *)entry - ((struct shared_block *)NULL)->data); |
| 137 | } |
| 138 | |
| 139 | |
| 140 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 141 | static int |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 142 | cache_store_init(struct proxy *px, struct flt_conf *fconf) |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 143 | { |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 144 | fconf->flags |= FLT_CFG_FL_HTX; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 145 | return 0; |
| 146 | } |
| 147 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 148 | static void |
| 149 | cache_store_deinit(struct proxy *px, struct flt_conf *fconf) |
| 150 | { |
| 151 | struct cache_flt_conf *cconf = fconf->conf; |
| 152 | |
| 153 | free(cconf); |
| 154 | } |
| 155 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 156 | static int |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 157 | cache_store_check(struct proxy *px, struct flt_conf *fconf) |
| 158 | { |
| 159 | struct cache_flt_conf *cconf = fconf->conf; |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 160 | struct flt_conf *f; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 161 | struct cache *cache; |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 162 | int comp = 0; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 163 | |
| 164 | /* resolve the cache name to a ptr in the filter config */ |
| 165 | list_for_each_entry(cache, &caches, list) { |
| 166 | if (!strcmp(cache->id, cconf->c.name)) { |
| 167 | /* there can be only one filter per cache, so we free it there */ |
| 168 | cache->flags |= ((px->options2 & PR_O2_USE_HTX) |
| 169 | ? CACHE_F_HTX |
| 170 | : CACHE_F_LEGACY_HTTP); |
| 171 | |
| 172 | free(cconf->c.name); |
| 173 | cconf->c.cache = cache; |
| 174 | goto found; |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | ha_alert("config: %s '%s': unable to find the cache '%s' referenced by the filter 'cache'.\n", |
| 179 | proxy_type_str(px), px->id, (char *)cconf->c.name); |
| 180 | return 1; |
| 181 | |
| 182 | found: |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 183 | /* Here <cache> points on the cache the filter must use and <cconf> |
| 184 | * points on the cache filter configuration. */ |
| 185 | |
| 186 | /* Check all filters for proxy <px> to know if the compression is |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 187 | * enabled and if it is after the cache. When the compression is before |
| 188 | * the cache, an error is returned. Also check if the cache filter must |
| 189 | * be explicitly declaired or not. */ |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 190 | list_for_each_entry(f, &px->filter_configs, list) { |
| 191 | if (f == fconf) { |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 192 | /* The compression filter must be evaluated after the cache. */ |
| 193 | if (comp) { |
| 194 | ha_alert("config: %s '%s': unable to enable the compression filter before " |
| 195 | "the cache '%s'.\n", proxy_type_str(px), px->id, cache->id); |
| 196 | return 1; |
| 197 | } |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 198 | } |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 199 | else if (f->id == http_comp_flt_id) { |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 200 | if (!(px->options2 & PR_O2_USE_HTX)) { |
| 201 | ha_alert("config: %s '%s' : compression and cache filters cannot be " |
| 202 | "both enabled on non HTX proxy.\n", |
| 203 | proxy_type_str(px), px->id); |
| 204 | return 1; |
| 205 | } |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 206 | comp = 1; |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 207 | } |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 208 | else if ((f->id != fconf->id) && (cconf->flags & CACHE_FLT_F_IMPLICIT_DECL)) { |
| 209 | /* Implicit declaration is only allowed with the |
| 210 | * compression. For other filters, an implicit |
| 211 | * declaration is required. */ |
| 212 | ha_alert("config: %s '%s': require an explicit filter declaration " |
| 213 | "to use the cache '%s'.\n", proxy_type_str(px), px->id, cache->id); |
| 214 | return 1; |
| 215 | } |
| 216 | |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 217 | } |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 218 | return 0; |
| 219 | } |
| 220 | |
| 221 | static int |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 222 | cache_store_chn_start_analyze(struct stream *s, struct filter *filter, struct channel *chn) |
| 223 | { |
| 224 | if (!(chn->flags & CF_ISRESP)) |
| 225 | return 1; |
| 226 | |
| 227 | if (filter->ctx == NULL) { |
| 228 | struct cache_st *st; |
| 229 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 230 | st = pool_alloc_dirty(pool_head_cache_st); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 231 | if (st == NULL) |
| 232 | return -1; |
| 233 | |
| 234 | st->hdrs_len = 0; |
| 235 | st->first_block = NULL; |
| 236 | filter->ctx = st; |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 237 | |
| 238 | /* Register post-analyzer on AN_RES_WAIT_HTTP */ |
| 239 | filter->post_analyzers |= AN_RES_WAIT_HTTP; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 240 | } |
| 241 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 242 | return 1; |
| 243 | } |
| 244 | |
| 245 | static int |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 246 | cache_store_chn_end_analyze(struct stream *s, struct filter *filter, struct channel *chn) |
| 247 | { |
| 248 | struct cache_st *st = filter->ctx; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 249 | struct cache_flt_conf *cconf = FLT_CONF(filter); |
| 250 | struct cache *cache = cconf->c.cache; |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 251 | struct shared_context *shctx = shctx_ptr(cache); |
| 252 | |
| 253 | if (!(chn->flags & CF_ISRESP)) |
| 254 | return 1; |
| 255 | |
| 256 | /* Everything should be released in the http_end filter, but we need to do it |
| 257 | * there too, in case of errors */ |
| 258 | |
| 259 | if (st && st->first_block) { |
| 260 | |
| 261 | shctx_lock(shctx); |
| 262 | shctx_row_dec_hot(shctx, st->first_block); |
| 263 | shctx_unlock(shctx); |
| 264 | |
| 265 | } |
| 266 | if (st) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 267 | pool_free(pool_head_cache_st, st); |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 268 | filter->ctx = NULL; |
| 269 | } |
| 270 | |
| 271 | return 1; |
| 272 | } |
| 273 | |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 274 | static int |
| 275 | cache_store_post_analyze(struct stream *s, struct filter *filter, struct channel *chn, |
| 276 | unsigned an_bit) |
| 277 | { |
| 278 | struct http_txn *txn = s->txn; |
| 279 | struct http_msg *msg = &txn->rsp; |
| 280 | struct cache_st *st = filter->ctx; |
| 281 | |
| 282 | if (an_bit != AN_RES_WAIT_HTTP) |
| 283 | goto end; |
| 284 | |
| 285 | /* Here we need to check if any compression filter precedes the cache |
| 286 | * filter. This is only possible when the compression is configured in |
| 287 | * the frontend while the cache filter is configured on the |
| 288 | * backend. This case cannot be detected during HAProxy startup. So in |
| 289 | * such cases, the cache is disabled. |
| 290 | */ |
| 291 | if (st && (msg->flags & HTTP_MSGF_COMPRESSING)) { |
| 292 | pool_free(pool_head_cache_st, st); |
| 293 | filter->ctx = NULL; |
| 294 | } |
| 295 | |
| 296 | end: |
| 297 | return 1; |
| 298 | } |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 299 | |
| 300 | static int |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 301 | cache_store_http_headers(struct stream *s, struct filter *filter, struct http_msg *msg) |
| 302 | { |
| 303 | struct cache_st *st = filter->ctx; |
| 304 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 305 | if (!(msg->chn->flags & CF_ISRESP) || !st) |
| 306 | return 1; |
| 307 | |
Christopher Faulet | 67658c9 | 2018-12-06 21:59:39 +0100 | [diff] [blame] | 308 | if (st->first_block) { |
| 309 | register_data_filter(s, msg->chn, filter); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 310 | if (!IS_HTX_STRM(s)) |
| 311 | st->hdrs_len = msg->sov; |
Christopher Faulet | 67658c9 | 2018-12-06 21:59:39 +0100 | [diff] [blame] | 312 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 313 | return 1; |
| 314 | } |
| 315 | |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 316 | static inline void disable_cache_entry(struct cache_st *st, |
| 317 | struct filter *filter, struct shared_context *shctx) |
| 318 | { |
| 319 | struct cache_entry *object; |
| 320 | |
| 321 | object = (struct cache_entry *)st->first_block->data; |
| 322 | filter->ctx = NULL; /* disable cache */ |
| 323 | shctx_lock(shctx); |
| 324 | shctx_row_dec_hot(shctx, st->first_block); |
| 325 | object->eb.key = 0; |
| 326 | shctx_unlock(shctx); |
| 327 | pool_free(pool_head_cache_st, st); |
| 328 | } |
| 329 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 330 | static int |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 331 | cache_store_http_payload(struct stream *s, struct filter *filter, struct http_msg *msg, |
| 332 | unsigned int offset, unsigned int len) |
| 333 | { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 334 | struct cache_flt_conf *cconf = FLT_CONF(filter); |
| 335 | struct shared_context *shctx = shctx_ptr(cconf->c.cache); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 336 | struct cache_st *st = filter->ctx; |
| 337 | struct htx *htx = htxbuf(&msg->chn->buf); |
| 338 | struct htx_blk *blk; |
| 339 | struct htx_ret htx_ret; |
| 340 | struct cache_entry *object; |
| 341 | int ret, to_forward = 0; |
| 342 | |
| 343 | if (!len) |
| 344 | return len; |
| 345 | |
| 346 | if (!st->first_block) { |
| 347 | unregister_data_filter(s, msg->chn, filter); |
| 348 | return len; |
| 349 | } |
| 350 | object = (struct cache_entry *)st->first_block->data; |
| 351 | |
| 352 | htx_ret = htx_find_blk(htx, offset); |
| 353 | blk = htx_ret.blk; |
| 354 | offset = htx_ret.ret; |
| 355 | |
| 356 | while (blk && len) { |
| 357 | struct shared_block *fb; |
| 358 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 359 | uint32_t sz = htx_get_blksz(blk); |
| 360 | struct ist v; |
| 361 | |
| 362 | switch (type) { |
| 363 | case HTX_BLK_UNUSED: |
| 364 | break; |
| 365 | |
| 366 | case HTX_BLK_DATA: |
| 367 | case HTX_BLK_TLR: |
| 368 | v = htx_get_blk_value(htx, blk); |
| 369 | v.ptr += offset; |
| 370 | v.len -= offset; |
| 371 | if (v.len > len) |
| 372 | v.len = len; |
| 373 | |
| 374 | shctx_lock(shctx); |
| 375 | fb = shctx_row_reserve_hot(shctx, st->first_block, v.len); |
| 376 | if (!fb) { |
| 377 | shctx_unlock(shctx); |
| 378 | goto no_cache; |
| 379 | } |
| 380 | shctx_unlock(shctx); |
| 381 | |
| 382 | ret = shctx_row_data_append(shctx, st->first_block, st->first_block->last_append, |
| 383 | (unsigned char *)v.ptr, v.len); |
| 384 | if (ret < 0) |
| 385 | goto no_cache; |
| 386 | |
| 387 | if (type == HTX_BLK_DATA) |
| 388 | object->data_len += v.len; |
| 389 | to_forward += v.len; |
| 390 | len -= v.len; |
| 391 | break; |
| 392 | |
| 393 | default: |
| 394 | sz -= offset; |
| 395 | if (sz > len) |
| 396 | sz = len; |
| 397 | to_forward += sz; |
| 398 | len -= sz; |
| 399 | break; |
| 400 | } |
| 401 | |
| 402 | offset = 0; |
| 403 | blk = htx_get_next_blk(htx, blk); |
| 404 | } |
| 405 | |
| 406 | return to_forward; |
| 407 | |
| 408 | no_cache: |
| 409 | disable_cache_entry(st, filter, shctx); |
| 410 | unregister_data_filter(s, msg->chn, filter); |
| 411 | return len; |
| 412 | } |
| 413 | |
| 414 | static int |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 415 | cache_store_http_forward_data(struct stream *s, struct filter *filter, |
| 416 | struct http_msg *msg, unsigned int len) |
| 417 | { |
| 418 | struct cache_st *st = filter->ctx; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 419 | struct cache_flt_conf *cconf = FLT_CONF(filter); |
| 420 | struct shared_context *shctx = shctx_ptr(cconf->c.cache); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 421 | int ret; |
| 422 | |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 423 | ret = 0; |
| 424 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 425 | /* |
| 426 | * We need to skip the HTTP headers first, because we saved them in the |
| 427 | * http-response action. |
| 428 | */ |
Christopher Faulet | 67658c9 | 2018-12-06 21:59:39 +0100 | [diff] [blame] | 429 | if (!(msg->chn->flags & CF_ISRESP) || !st) { |
| 430 | /* should never happen */ |
| 431 | unregister_data_filter(s, msg->chn, filter); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 432 | return len; |
Christopher Faulet | 67658c9 | 2018-12-06 21:59:39 +0100 | [diff] [blame] | 433 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 434 | |
| 435 | if (!len) { |
Joseph Herlant | 8dae5b3 | 2018-11-15 14:07:53 -0800 | [diff] [blame] | 436 | /* Nothing to forward */ |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 437 | ret = len; |
| 438 | } |
William Lallemand | 10935bc | 2017-11-14 14:39:23 +0100 | [diff] [blame] | 439 | else if (st->hdrs_len >= len) { |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 440 | /* Forward part of headers */ |
| 441 | ret = len; |
| 442 | st->hdrs_len -= len; |
| 443 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 444 | else { |
William Lallemand | 10935bc | 2017-11-14 14:39:23 +0100 | [diff] [blame] | 445 | /* Forward data */ |
Christopher Faulet | 67658c9 | 2018-12-06 21:59:39 +0100 | [diff] [blame] | 446 | if (st->first_block) { |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 447 | int to_append, append; |
| 448 | struct shared_block *fb; |
| 449 | |
| 450 | to_append = MIN(ci_contig_data(msg->chn), len - st->hdrs_len); |
| 451 | |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 452 | shctx_lock(shctx); |
| 453 | fb = shctx_row_reserve_hot(shctx, st->first_block, to_append); |
| 454 | if (!fb) { |
Olivier Houchard | cd2867a | 2017-11-01 13:58:21 +0100 | [diff] [blame] | 455 | shctx_unlock(shctx); |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 456 | disable_cache_entry(st, filter, shctx); |
Christopher Faulet | 67658c9 | 2018-12-06 21:59:39 +0100 | [diff] [blame] | 457 | unregister_data_filter(s, msg->chn, filter); |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 458 | return len; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 459 | } |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 460 | shctx_unlock(shctx); |
| 461 | |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 462 | /* Skip remaining headers to fill the cache */ |
| 463 | c_adv(msg->chn, st->hdrs_len); |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 464 | append = shctx_row_data_append(shctx, st->first_block, st->first_block->last_append, |
| 465 | (unsigned char *)ci_head(msg->chn), to_append); |
| 466 | ret = st->hdrs_len + to_append - append; |
| 467 | /* Rewind the buffer to forward all data */ |
| 468 | c_rew(msg->chn, st->hdrs_len); |
| 469 | st->hdrs_len = 0; |
Christopher Faulet | 67658c9 | 2018-12-06 21:59:39 +0100 | [diff] [blame] | 470 | if (ret < 0) { |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 471 | disable_cache_entry(st, filter, shctx); |
Christopher Faulet | 67658c9 | 2018-12-06 21:59:39 +0100 | [diff] [blame] | 472 | unregister_data_filter(s, msg->chn, filter); |
| 473 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 474 | } |
Christopher Faulet | 67658c9 | 2018-12-06 21:59:39 +0100 | [diff] [blame] | 475 | else { |
| 476 | /* should never happen */ |
| 477 | unregister_data_filter(s, msg->chn, filter); |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 478 | ret = len; |
Christopher Faulet | 67658c9 | 2018-12-06 21:59:39 +0100 | [diff] [blame] | 479 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 480 | } |
| 481 | |
| 482 | if ((ret != len) || |
| 483 | (FLT_NXT(filter, msg->chn) != FLT_FWD(filter, msg->chn) + ret)) |
| 484 | task_wakeup(s->task, TASK_WOKEN_MSG); |
| 485 | |
| 486 | return ret; |
| 487 | } |
| 488 | |
| 489 | static int |
| 490 | cache_store_http_end(struct stream *s, struct filter *filter, |
| 491 | struct http_msg *msg) |
| 492 | { |
| 493 | struct cache_st *st = filter->ctx; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 494 | struct cache_flt_conf *cconf = FLT_CONF(filter); |
| 495 | struct cache *cache = cconf->c.cache; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 496 | struct shared_context *shctx = shctx_ptr(cache); |
| 497 | struct cache_entry *object; |
| 498 | |
| 499 | if (!(msg->chn->flags & CF_ISRESP)) |
| 500 | return 1; |
| 501 | |
| 502 | if (st && st->first_block) { |
| 503 | |
| 504 | object = (struct cache_entry *)st->first_block->data; |
| 505 | |
| 506 | /* does not need to test if the insertion worked, if it |
| 507 | * doesn't, the blocks will be reused anyway */ |
| 508 | |
| 509 | shctx_lock(shctx); |
William Lallemand | 0872766 | 2017-11-21 20:01:27 +0100 | [diff] [blame] | 510 | if (eb32_insert(&cache->entries, &object->eb) != &object->eb) { |
| 511 | object->eb.key = 0; |
| 512 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 513 | /* remove from the hotlist */ |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 514 | shctx_row_dec_hot(shctx, st->first_block); |
| 515 | shctx_unlock(shctx); |
| 516 | |
| 517 | } |
| 518 | if (st) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 519 | pool_free(pool_head_cache_st, st); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 520 | filter->ctx = NULL; |
| 521 | } |
| 522 | |
| 523 | return 1; |
| 524 | } |
| 525 | |
| 526 | /* |
| 527 | * This intends to be used when checking HTTP headers for some |
| 528 | * word=value directive. Return a pointer to the first character of value, if |
| 529 | * the word was not found or if there wasn't any value assigned ot it return NULL |
| 530 | */ |
| 531 | char *directive_value(const char *sample, int slen, const char *word, int wlen) |
| 532 | { |
| 533 | int st = 0; |
| 534 | |
| 535 | if (slen < wlen) |
| 536 | return 0; |
| 537 | |
| 538 | while (wlen) { |
| 539 | char c = *sample ^ *word; |
| 540 | if (c && c != ('A' ^ 'a')) |
| 541 | return NULL; |
| 542 | sample++; |
| 543 | word++; |
| 544 | slen--; |
| 545 | wlen--; |
| 546 | } |
| 547 | |
| 548 | while (slen) { |
| 549 | if (st == 0) { |
| 550 | if (*sample != '=') |
| 551 | return NULL; |
| 552 | sample++; |
| 553 | slen--; |
| 554 | st = 1; |
| 555 | continue; |
| 556 | } else { |
| 557 | return (char *)sample; |
| 558 | } |
| 559 | } |
| 560 | |
| 561 | return NULL; |
| 562 | } |
| 563 | |
| 564 | /* |
| 565 | * Return the maxage in seconds of an HTTP response. |
| 566 | * Compute the maxage using either: |
| 567 | * - the assigned max-age of the cache |
| 568 | * - the s-maxage directive |
| 569 | * - the max-age directive |
| 570 | * - (Expires - Data) headers |
| 571 | * - the default-max-age of the cache |
| 572 | * |
| 573 | */ |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 574 | int http_calc_maxage(struct stream *s, struct cache *cache) |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 575 | { |
| 576 | struct http_txn *txn = s->txn; |
| 577 | struct hdr_ctx ctx; |
| 578 | |
| 579 | int smaxage = -1; |
| 580 | int maxage = -1; |
| 581 | |
| 582 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 583 | ctx.idx = 0; |
| 584 | |
| 585 | /* loop on the Cache-Control values */ |
Willy Tarreau | 178b987 | 2018-06-19 07:13:36 +0200 | [diff] [blame] | 586 | while (http_find_header2("Cache-Control", 13, ci_head(&s->res), &txn->hdr_idx, &ctx)) { |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 587 | char *directive = ctx.line + ctx.val; |
| 588 | char *value; |
| 589 | |
| 590 | value = directive_value(directive, ctx.vlen, "s-maxage", 8); |
| 591 | if (value) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 592 | struct buffer *chk = get_trash_chunk(); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 593 | |
| 594 | chunk_strncat(chk, value, ctx.vlen - 8 + 1); |
| 595 | chunk_strncat(chk, "", 1); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 596 | maxage = atoi(chk->area); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 597 | } |
| 598 | |
| 599 | value = directive_value(ctx.line + ctx.val, ctx.vlen, "max-age", 7); |
| 600 | if (value) { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 601 | struct buffer *chk = get_trash_chunk(); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 602 | |
| 603 | chunk_strncat(chk, value, ctx.vlen - 7 + 1); |
| 604 | chunk_strncat(chk, "", 1); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 605 | smaxage = atoi(chk->area); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 606 | } |
| 607 | } |
| 608 | |
| 609 | /* TODO: Expires - Data */ |
| 610 | |
| 611 | |
| 612 | if (smaxage > 0) |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 613 | return MIN(smaxage, cache->maxage); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 614 | |
| 615 | if (maxage > 0) |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 616 | return MIN(maxage, cache->maxage); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 617 | |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 618 | return cache->maxage; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 619 | |
| 620 | } |
| 621 | |
| 622 | |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 623 | static void cache_free_blocks(struct shared_block *first, struct shared_block *block) |
| 624 | { |
Willy Tarreau | 5bd37fa | 2018-04-04 20:17:03 +0200 | [diff] [blame] | 625 | struct cache_entry *object = (struct cache_entry *)block->data; |
| 626 | |
| 627 | if (first == block && object->eb.key) |
| 628 | eb32_delete(&object->eb); |
| 629 | object->eb.key = 0; |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 630 | } |
| 631 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 632 | /* |
| 633 | * This fonction will store the headers of the response in a buffer and then |
| 634 | * register a filter to store the data |
| 635 | */ |
| 636 | enum act_return http_action_store_cache(struct act_rule *rule, struct proxy *px, |
| 637 | struct session *sess, struct stream *s, int flags) |
| 638 | { |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 639 | unsigned int age; |
| 640 | long long hdr_age; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 641 | struct http_txn *txn = s->txn; |
| 642 | struct http_msg *msg = &txn->rsp; |
| 643 | struct filter *filter; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 644 | struct shared_block *first = NULL; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 645 | struct cache_flt_conf *cconf = rule->arg.act.p[0]; |
| 646 | struct shared_context *shctx = shctx_ptr(cconf->c.cache); |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 647 | struct cache_st *cache_ctx = NULL; |
| 648 | struct cache_entry *object, *old; |
Willy Tarreau | c9036c0 | 2019-01-11 19:38:25 +0100 | [diff] [blame] | 649 | unsigned int key = *(unsigned int *)txn->cache_hash; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 650 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 651 | /* Don't cache if the response came from a cache */ |
| 652 | if ((obj_type(s->target) == OBJ_TYPE_APPLET) && |
| 653 | s->target == &http_cache_applet.obj_type) { |
| 654 | goto out; |
| 655 | } |
| 656 | |
| 657 | /* cache only HTTP/1.1 */ |
| 658 | if (!(txn->req.flags & HTTP_MSGF_VER_11)) |
| 659 | goto out; |
| 660 | |
| 661 | /* cache only GET method */ |
| 662 | if (txn->meth != HTTP_METH_GET) |
| 663 | goto out; |
| 664 | |
Willy Tarreau | c9036c0 | 2019-01-11 19:38:25 +0100 | [diff] [blame] | 665 | /* cache key was not computed */ |
| 666 | if (!key) |
| 667 | goto out; |
| 668 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 669 | /* cache only 200 status code */ |
| 670 | if (txn->status != 200) |
| 671 | goto out; |
| 672 | |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 673 | /* Find the corresponding filter instance for the current stream */ |
| 674 | list_for_each_entry(filter, &s->strm_flt.filters, list) { |
| 675 | if (FLT_ID(filter) == cache_store_flt_id && FLT_CONF(filter) == cconf) { |
| 676 | /* No filter ctx, don't cache anything */ |
| 677 | if (!filter->ctx) |
| 678 | goto out; |
| 679 | cache_ctx = filter->ctx; |
| 680 | break; |
| 681 | } |
| 682 | } |
| 683 | |
| 684 | /* from there, cache_ctx is always defined */ |
| 685 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 686 | if (IS_HTX_STRM(s)) { |
| 687 | struct htx *htx = htxbuf(&s->res.buf); |
| 688 | struct http_hdr_ctx ctx; |
| 689 | int32_t pos; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 690 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 691 | /* Do not cache too big objects. */ |
| 692 | if ((msg->flags & HTTP_MSGF_CNT_LEN) && shctx->max_obj_size > 0 && |
| 693 | htx->data + htx->extra > shctx->max_obj_size) |
| 694 | goto out; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 695 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 696 | /* Does not manage Vary at the moment. We will need a secondary key later for that */ |
| 697 | ctx.blk = NULL; |
| 698 | if (http_find_header(htx, ist("Vary"), &ctx, 0)) |
| 699 | goto out; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 700 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 701 | htx_check_response_for_cacheability(s, &s->res); |
| 702 | |
| 703 | if (!(txn->flags & TX_CACHEABLE) || !(txn->flags & TX_CACHE_COOK)) |
| 704 | goto out; |
| 705 | |
| 706 | age = 0; |
| 707 | ctx.blk = NULL; |
| 708 | if (http_find_header(htx, ist("Age"), &ctx, 0)) { |
| 709 | if (!strl2llrc(ctx.value.ptr, ctx.value.len, &hdr_age) && hdr_age > 0) { |
| 710 | if (unlikely(hdr_age > CACHE_ENTRY_MAX_AGE)) |
| 711 | hdr_age = CACHE_ENTRY_MAX_AGE; |
| 712 | age = hdr_age; |
| 713 | } |
| 714 | http_remove_header(htx, &ctx); |
| 715 | } |
| 716 | |
| 717 | chunk_reset(&trash); |
| 718 | for (pos = htx_get_head(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 719 | struct htx_blk *blk = htx_get_blk(htx, pos); |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 720 | enum htx_blk_type type = htx_get_blk_type(blk); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 721 | uint32_t sz = htx_get_blksz(blk); |
| 722 | |
| 723 | chunk_memcat(&trash, (char *)&blk->info, sizeof(blk->info)); |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 724 | if (type == HTX_BLK_EOH) |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 725 | break; |
| 726 | chunk_memcat(&trash, htx_get_blk_ptr(htx, blk), sz); |
| 727 | } |
| 728 | } |
| 729 | else { |
| 730 | struct hdr_ctx ctx; |
| 731 | |
| 732 | /* Do not cache too big objects. */ |
| 733 | if ((msg->flags & HTTP_MSGF_CNT_LEN) && shctx->max_obj_size > 0 && |
| 734 | msg->sov + msg->body_len > shctx->max_obj_size) |
| 735 | goto out; |
| 736 | |
| 737 | /* Does not manage Vary at the moment. We will need a secondary key later for that */ |
| 738 | ctx.idx = 0; |
| 739 | if (http_find_header2("Vary", 4, ci_head(txn->rsp.chn), &txn->hdr_idx, &ctx)) |
| 740 | goto out; |
| 741 | |
| 742 | check_response_for_cacheability(s, &s->res); |
| 743 | |
| 744 | if (!(txn->flags & TX_CACHEABLE) || !(txn->flags & TX_CACHE_COOK)) |
| 745 | goto out; |
| 746 | |
| 747 | age = 0; |
| 748 | ctx.idx = 0; |
| 749 | if (http_find_header2("Age", 3, ci_head(txn->rsp.chn), &txn->hdr_idx, &ctx)) { |
| 750 | if (!strl2llrc(ctx.line + ctx.val, ctx.vlen, &hdr_age) && hdr_age > 0) { |
| 751 | if (unlikely(hdr_age > CACHE_ENTRY_MAX_AGE)) |
| 752 | hdr_age = CACHE_ENTRY_MAX_AGE; |
| 753 | age = hdr_age; |
| 754 | } |
| 755 | http_remove_header2(msg, &txn->hdr_idx, &ctx); |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 756 | } |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 757 | } |
| 758 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 759 | shctx_lock(shctx); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 760 | if (IS_HTX_STRM(s)) |
| 761 | first = shctx_row_reserve_hot(shctx, NULL, sizeof(struct cache_entry) + trash.data); |
| 762 | else |
| 763 | first = shctx_row_reserve_hot(shctx, NULL, sizeof(struct cache_entry) + msg->sov); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 764 | if (!first) { |
| 765 | shctx_unlock(shctx); |
| 766 | goto out; |
| 767 | } |
| 768 | shctx_unlock(shctx); |
| 769 | |
Willy Tarreau | 1093a45 | 2018-04-06 19:02:25 +0200 | [diff] [blame] | 770 | /* the received memory is not initialized, we need at least to mark |
| 771 | * the object as not indexed yet. |
| 772 | */ |
| 773 | object = (struct cache_entry *)first->data; |
| 774 | object->eb.node.leaf_p = NULL; |
| 775 | object->eb.key = 0; |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 776 | object->age = age; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 777 | if (IS_HTX_STRM(s)) { |
| 778 | object->hdrs_len = trash.data; |
| 779 | object->data_len = 0; |
| 780 | } |
| 781 | else |
| 782 | object->eoh = msg->eoh; |
Willy Tarreau | 1093a45 | 2018-04-06 19:02:25 +0200 | [diff] [blame] | 783 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 784 | /* reserve space for the cache_entry structure */ |
| 785 | first->len = sizeof(struct cache_entry); |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 786 | first->last_append = NULL; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 787 | /* cache the headers in a http action because it allows to chose what |
| 788 | * to cache, for example you might want to cache a response before |
| 789 | * modifying some HTTP headers, or on the contrary after modifying |
| 790 | * those headers. |
| 791 | */ |
| 792 | |
| 793 | /* does not need to be locked because it's in the "hot" list, |
| 794 | * copy the headers */ |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 795 | if (IS_HTX_STRM(s)) { |
| 796 | if (shctx_row_data_append(shctx, first, NULL, (unsigned char *)trash.area, trash.data) < 0) |
| 797 | goto out; |
| 798 | } |
| 799 | else { |
| 800 | if (shctx_row_data_append(shctx, first, NULL, (unsigned char *)ci_head(&s->res), msg->sov) < 0) |
| 801 | goto out; |
| 802 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 803 | |
| 804 | /* register the buffer in the filter ctx for filling it with data*/ |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 805 | if (cache_ctx) { |
| 806 | cache_ctx->first_block = first; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 807 | |
Willy Tarreau | c9036c0 | 2019-01-11 19:38:25 +0100 | [diff] [blame] | 808 | object->eb.key = key; |
| 809 | |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 810 | memcpy(object->hash, txn->cache_hash, sizeof(object->hash)); |
| 811 | /* Insert the node later on caching success */ |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 812 | |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 813 | shctx_lock(shctx); |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 814 | |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 815 | old = entry_exist(cconf->c.cache, txn->cache_hash); |
| 816 | if (old) { |
| 817 | eb32_delete(&old->eb); |
| 818 | old->eb.key = 0; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 819 | } |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 820 | shctx_unlock(shctx); |
| 821 | |
| 822 | /* store latest value and expiration time */ |
| 823 | object->latest_validation = now.tv_sec; |
| 824 | object->expire = now.tv_sec + http_calc_maxage(s, cconf->c.cache); |
| 825 | return ACT_RET_CONT; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 826 | } |
| 827 | |
| 828 | out: |
| 829 | /* if does not cache */ |
| 830 | if (first) { |
| 831 | shctx_lock(shctx); |
William Lallemand | 0872766 | 2017-11-21 20:01:27 +0100 | [diff] [blame] | 832 | first->len = 0; |
| 833 | object->eb.key = 0; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 834 | shctx_row_dec_hot(shctx, first); |
| 835 | shctx_unlock(shctx); |
| 836 | } |
| 837 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 838 | return ACT_RET_CONT; |
| 839 | } |
| 840 | |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 841 | #define HTTP_CACHE_INIT 0 /* Initial state. */ |
| 842 | #define HTTP_CACHE_HEADER 1 /* Cache entry headers forwarded. */ |
| 843 | #define HTTP_CACHE_FWD 2 /* Cache entry completely forwarded. */ |
| 844 | #define HTTP_CACHE_END 3 /* Cache entry treatment terminated. */ |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 845 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 846 | #define HTX_CACHE_INIT 0 /* Initial state. */ |
| 847 | #define HTX_CACHE_HEADER 1 /* Cache entry headers forwarding */ |
| 848 | #define HTX_CACHE_DATA 2 /* Cache entry data forwarding */ |
| 849 | #define HTX_CACHE_EOD 3 /* Cache entry data forwarded. DATA->TLR transition */ |
| 850 | #define HTX_CACHE_TLR 4 /* Cache entry trailers forwarding */ |
| 851 | #define HTX_CACHE_EOM 5 /* Cache entry completely forwarded. Finish the HTX message */ |
| 852 | #define HTX_CACHE_END 6 /* Cache entry treatment terminated */ |
| 853 | |
William Lallemand | ecb73b1 | 2017-11-24 14:33:55 +0100 | [diff] [blame] | 854 | static void http_cache_applet_release(struct appctx *appctx) |
| 855 | { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 856 | struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0]; |
William Lallemand | ecb73b1 | 2017-11-24 14:33:55 +0100 | [diff] [blame] | 857 | struct cache_entry *cache_ptr = appctx->ctx.cache.entry; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 858 | struct cache *cache = cconf->c.cache; |
William Lallemand | ecb73b1 | 2017-11-24 14:33:55 +0100 | [diff] [blame] | 859 | struct shared_block *first = block_ptr(cache_ptr); |
| 860 | |
| 861 | shctx_lock(shctx_ptr(cache)); |
| 862 | shctx_row_dec_hot(shctx_ptr(cache), first); |
| 863 | shctx_unlock(shctx_ptr(cache)); |
| 864 | } |
| 865 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 866 | static size_t htx_cache_dump_headers(struct appctx *appctx, struct htx *htx) |
| 867 | { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 868 | struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0]; |
| 869 | struct shared_context *shctx = shctx_ptr(cconf->c.cache); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 870 | struct cache_entry *cache_ptr = appctx->ctx.cache.entry; |
| 871 | struct shared_block *shblk = appctx->ctx.cache.next; |
| 872 | struct buffer *tmp = get_trash_chunk(); |
| 873 | char *end; |
| 874 | unsigned int offset, len, age; |
| 875 | |
| 876 | offset = appctx->ctx.cache.offset; |
| 877 | len = cache_ptr->hdrs_len; |
| 878 | |
| 879 | /* 1. Retrieve all headers from the cache */ |
| 880 | list_for_each_entry_from(shblk, &shctx->hot, list) { |
| 881 | int sz; |
| 882 | |
| 883 | sz = MIN(len, shctx->block_size - offset); |
| 884 | if (!chunk_memcat(tmp, (const char *)shblk->data + offset, sz)) |
| 885 | return 0; |
| 886 | |
| 887 | offset += sz; |
| 888 | len -= sz; |
| 889 | if (!len) |
| 890 | break; |
| 891 | offset = 0; |
| 892 | } |
| 893 | appctx->ctx.cache.offset = offset; |
| 894 | appctx->ctx.cache.next = shblk; |
| 895 | appctx->ctx.cache.sent += b_data(tmp); |
| 896 | |
| 897 | /* 2. push these headers in the HTX message */ |
| 898 | offset = 0; |
| 899 | while (offset < b_data(tmp)) { |
| 900 | struct htx_blk *blk; |
| 901 | enum htx_blk_type type; |
| 902 | uint32_t info, sz; |
| 903 | |
| 904 | /* Read the header's info */ |
| 905 | memcpy((char *)&info, b_peek(tmp, offset), 4); |
| 906 | type = (info >> 28); |
| 907 | sz = ((type == HTX_BLK_HDR) |
| 908 | ? (info & 0xff) + ((info >> 8) & 0xfffff) |
| 909 | : info & 0xfffffff); |
| 910 | |
| 911 | /* Create the block with the right type and the right size */ |
| 912 | blk = htx_add_blk(htx, type, sz); |
| 913 | if (!blk) |
| 914 | return 0; |
| 915 | |
Christopher Faulet | a0df957 | 2019-02-25 11:15:08 +0100 | [diff] [blame] | 916 | /* Set the start-line offset */ |
| 917 | if (type == HTX_BLK_RES_SL) |
| 918 | htx->sl_off = blk->addr; |
| 919 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 920 | /* Copy info and data */ |
| 921 | blk->info = info; |
| 922 | memcpy(htx_get_blk_ptr(htx, blk), b_peek(tmp, offset+4), sz); |
| 923 | |
| 924 | /* next header */ |
| 925 | offset += 4 + sz; |
| 926 | } |
| 927 | |
| 928 | /* 3. Append "age" header */ |
| 929 | chunk_reset(tmp); |
| 930 | age = MAX(0, (int)(now.tv_sec - cache_ptr->latest_validation)) + cache_ptr->age; |
| 931 | if (unlikely(age > CACHE_ENTRY_MAX_AGE)) |
| 932 | age = CACHE_ENTRY_MAX_AGE; |
| 933 | end = ultoa_o(age, b_head(tmp), b_size(tmp)); |
| 934 | b_set_data(tmp, end - b_head(tmp)); |
| 935 | |
| 936 | if (!http_add_header(htx, ist("Age"), ist2(b_head(tmp), b_data(tmp)))) |
| 937 | return 0; |
| 938 | |
| 939 | return htx->data; |
| 940 | } |
| 941 | |
| 942 | static size_t htx_cache_dump_data(struct appctx *appctx, struct htx *htx, |
| 943 | enum htx_blk_type type, unsigned int len) |
| 944 | { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 945 | struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0]; |
| 946 | struct shared_context *shctx = shctx_ptr(cconf->c.cache); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 947 | struct shared_block *shblk = appctx->ctx.cache.next; |
Christopher Faulet | cc15662 | 2019-01-07 14:07:29 +0100 | [diff] [blame] | 948 | uint32_t max = channel_htx_recv_max(si_ic(appctx->owner), htx); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 949 | unsigned int offset; |
| 950 | size_t total = 0; |
| 951 | |
| 952 | offset = appctx->ctx.cache.offset; |
| 953 | if (len > max) |
| 954 | len = max; |
| 955 | if (!len) |
| 956 | goto end; |
| 957 | |
| 958 | list_for_each_entry_from(shblk, &shctx->hot, list) { |
| 959 | struct ist data; |
| 960 | int sz; |
| 961 | |
| 962 | sz = MIN(len, shctx->block_size - offset); |
| 963 | data = ist2((const char *)shblk->data + offset, sz); |
| 964 | if (type == HTX_BLK_DATA) { |
| 965 | if (!htx_add_data(htx, data)) |
| 966 | break; |
| 967 | } |
| 968 | else { /* HTX_BLK_TLR */ |
| 969 | if (!htx_add_trailer(htx, data)) |
| 970 | break; |
| 971 | } |
| 972 | |
| 973 | offset += sz; |
| 974 | len -= sz; |
| 975 | total += sz; |
| 976 | if (!len) |
| 977 | break; |
| 978 | offset = 0; |
| 979 | } |
| 980 | appctx->ctx.cache.offset = offset; |
| 981 | appctx->ctx.cache.next = shblk; |
| 982 | appctx->ctx.cache.sent += total; |
| 983 | |
| 984 | end: |
| 985 | return total; |
| 986 | } |
| 987 | static void htx_cache_io_handler(struct appctx *appctx) |
| 988 | { |
| 989 | struct cache_entry *cache_ptr = appctx->ctx.cache.entry; |
| 990 | struct shared_block *first = block_ptr(cache_ptr); |
| 991 | struct stream_interface *si = appctx->owner; |
| 992 | struct channel *req = si_oc(si); |
| 993 | struct channel *res = si_ic(si); |
| 994 | struct htx *req_htx, *res_htx; |
| 995 | struct buffer *errmsg; |
| 996 | size_t ret, total = 0; |
| 997 | |
| 998 | res_htx = htxbuf(&res->buf); |
| 999 | |
| 1000 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 1001 | goto out; |
| 1002 | |
| 1003 | /* Check if the input buffer is avalaible. */ |
| 1004 | if (!b_size(&res->buf)) { |
| 1005 | si_rx_room_blk(si); |
| 1006 | goto out; |
| 1007 | } |
| 1008 | |
Willy Tarreau | efef323 | 2018-12-16 00:37:45 +0100 | [diff] [blame] | 1009 | if (res->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTW_NOW)) |
Willy Tarreau | 273e964 | 2018-12-16 00:35:15 +0100 | [diff] [blame] | 1010 | appctx->st0 = HTX_CACHE_END; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1011 | |
| 1012 | if (appctx->st0 == HTX_CACHE_INIT) { |
| 1013 | appctx->ctx.cache.next = block_ptr(cache_ptr); |
| 1014 | appctx->ctx.cache.offset = sizeof(*cache_ptr); |
| 1015 | appctx->ctx.cache.sent = 0; |
| 1016 | appctx->st0 = HTX_CACHE_HEADER; |
| 1017 | } |
| 1018 | |
| 1019 | if (appctx->st0 == HTX_CACHE_HEADER) { |
| 1020 | /* Headers must be dump at once. Otherwise it is an error */ |
| 1021 | ret = htx_cache_dump_headers(appctx, res_htx); |
| 1022 | if (!ret) |
| 1023 | goto error; |
| 1024 | |
| 1025 | total += ret; |
Christopher Faulet | f0dd037 | 2019-02-25 11:08:34 +0100 | [diff] [blame] | 1026 | if (si_strm(si)->txn->meth == HTTP_METH_HEAD) { |
| 1027 | /* Skip response body for HEAD requests */ |
| 1028 | appctx->st0 = HTX_CACHE_EOM; |
| 1029 | } |
| 1030 | else if (cache_ptr->data_len) |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1031 | appctx->st0 = HTX_CACHE_DATA; |
| 1032 | else if (first->len > sizeof(*cache_ptr) + appctx->ctx.cache.sent) { |
| 1033 | /* Headers have benn sent (hrds_len) and there is no data |
| 1034 | * (data_len == 0). So, all the remaining is the |
| 1035 | * trailers */ |
| 1036 | appctx->st0 = HTX_CACHE_EOD; |
| 1037 | } |
| 1038 | else |
| 1039 | appctx->st0 = HTX_CACHE_EOM; |
| 1040 | } |
| 1041 | |
| 1042 | if (appctx->st0 == HTX_CACHE_DATA) { |
| 1043 | unsigned int len = cache_ptr->hdrs_len + cache_ptr->data_len - appctx->ctx.cache.sent; |
| 1044 | |
| 1045 | ret = htx_cache_dump_data(appctx, res_htx, HTX_BLK_DATA, len); |
Christopher Faulet | 6112391 | 2019-01-02 14:10:01 +0100 | [diff] [blame] | 1046 | total += ret; |
| 1047 | res_htx->extra = (len - ret); |
| 1048 | if (ret < len) { |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1049 | si_rx_room_blk(si); |
| 1050 | goto out; |
| 1051 | } |
| 1052 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1053 | if (cache_ptr->hdrs_len + cache_ptr->data_len == appctx->ctx.cache.sent) { |
| 1054 | if (first->len > sizeof(*cache_ptr) + appctx->ctx.cache.sent) { |
| 1055 | /* Headers and all data have been sent |
| 1056 | * (hrds_len + data_len == sent). So, all the remaining |
| 1057 | * is the trailers */ |
| 1058 | appctx->st0 = HTX_CACHE_EOD; |
| 1059 | } |
| 1060 | else |
| 1061 | appctx->st0 = HTX_CACHE_EOM; |
| 1062 | } |
| 1063 | } |
| 1064 | |
| 1065 | if (appctx->st0 == HTX_CACHE_EOD) { |
| 1066 | if (!htx_add_endof(res_htx, HTX_BLK_EOD)) { |
| 1067 | si_rx_room_blk(si); |
| 1068 | goto out; |
| 1069 | } |
| 1070 | |
| 1071 | total++; |
| 1072 | appctx->st0 = HTX_CACHE_TLR; |
| 1073 | } |
| 1074 | |
| 1075 | if (appctx->st0 == HTX_CACHE_TLR) { |
| 1076 | unsigned int len = first->len - sizeof(*cache_ptr) - appctx->ctx.cache.sent; |
| 1077 | |
| 1078 | ret = htx_cache_dump_data(appctx, res_htx, HTX_BLK_TLR, len); |
Christopher Faulet | 74b41ba | 2019-01-04 16:15:34 +0100 | [diff] [blame] | 1079 | total += ret; |
Christopher Faulet | 6112391 | 2019-01-02 14:10:01 +0100 | [diff] [blame] | 1080 | if (ret < len) { |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1081 | si_rx_room_blk(si); |
| 1082 | goto out; |
| 1083 | } |
| 1084 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1085 | if (first->len == sizeof(*cache_ptr) + appctx->ctx.cache.sent) |
| 1086 | appctx->st0 = HTX_CACHE_EOM; |
| 1087 | } |
| 1088 | |
| 1089 | if (appctx->st0 == HTX_CACHE_EOM) { |
| 1090 | if (!htx_add_endof(res_htx, HTX_BLK_EOM)) { |
| 1091 | si_rx_room_blk(si); |
| 1092 | goto out; |
| 1093 | } |
| 1094 | |
| 1095 | total++; |
| 1096 | appctx->st0 = HTX_CACHE_END; |
| 1097 | } |
| 1098 | |
| 1099 | end: |
| 1100 | if (appctx->st0 == HTX_CACHE_END) { |
| 1101 | /* eat the whole request */ |
| 1102 | req_htx = htxbuf(&req->buf); |
| 1103 | htx_reset(req_htx); |
| 1104 | htx_to_buf(req_htx, &req->buf); |
| 1105 | co_set_data(req, 0); |
| 1106 | res->flags |= CF_READ_NULL; |
| 1107 | si_shutr(si); |
| 1108 | } |
| 1109 | |
| 1110 | if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST)) |
| 1111 | si_shutw(si); |
| 1112 | |
| 1113 | if (appctx->st0 == HTX_CACHE_END) { |
| 1114 | if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST)) { |
| 1115 | si_shutr(si); |
| 1116 | res->flags |= CF_READ_NULL; |
| 1117 | } |
| 1118 | } |
| 1119 | out: |
Christopher Faulet | 6112391 | 2019-01-02 14:10:01 +0100 | [diff] [blame] | 1120 | if (total) |
| 1121 | channel_add_input(res, total); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1122 | |
| 1123 | /* we have left the request in the buffer for the case where we |
| 1124 | * process a POST, and this automatically re-enables activity on |
| 1125 | * read. It's better to indicate that we want to stop reading when |
| 1126 | * we're sending, so that we know there's at most one direction |
| 1127 | * deciding to wake the applet up. It saves it from looping when |
| 1128 | * emitting large blocks into small TCP windows. |
| 1129 | */ |
| 1130 | htx_to_buf(res_htx, &res->buf); |
| 1131 | if (!channel_is_empty(res)) |
| 1132 | si_stop_get(si); |
| 1133 | return; |
| 1134 | |
| 1135 | error: |
| 1136 | /* Sent and HTTP error 500 */ |
| 1137 | b_reset(&res->buf); |
| 1138 | errmsg = &htx_err_chunks[HTTP_ERR_500]; |
| 1139 | res->buf.data = b_data(errmsg); |
| 1140 | memcpy(res->buf.area, b_head(errmsg), b_data(errmsg)); |
| 1141 | res_htx = htx_from_buf(&res->buf); |
| 1142 | |
| 1143 | total = res_htx->data; |
| 1144 | appctx->st0 = HTX_CACHE_END; |
| 1145 | goto end; |
| 1146 | } |
| 1147 | |
| 1148 | |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 1149 | /* |
| 1150 | * Append an "Age" header into <chn> channel for this <ce> cache entry. |
Joseph Herlant | 8dae5b3 | 2018-11-15 14:07:53 -0800 | [diff] [blame] | 1151 | * This is the responsibility of the caller to insure there is enough |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 1152 | * data in the channel. |
| 1153 | * |
| 1154 | * Returns the number of bytes inserted if succeeded, 0 if failed. |
| 1155 | */ |
| 1156 | static int cache_channel_append_age_header(struct cache_entry *ce, struct channel *chn) |
| 1157 | { |
| 1158 | unsigned int age; |
| 1159 | |
| 1160 | age = MAX(0, (int)(now.tv_sec - ce->latest_validation)) + ce->age; |
| 1161 | if (unlikely(age > CACHE_ENTRY_MAX_AGE)) |
| 1162 | age = CACHE_ENTRY_MAX_AGE; |
| 1163 | |
| 1164 | chunk_reset(&trash); |
| 1165 | chunk_printf(&trash, "Age: %u", age); |
| 1166 | |
| 1167 | return ci_insert_line2(chn, ce->eoh, trash.area, trash.data); |
| 1168 | } |
| 1169 | |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 1170 | static int cache_channel_row_data_get(struct appctx *appctx, int len) |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1171 | { |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 1172 | int ret, total; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1173 | struct stream_interface *si = appctx->owner; |
| 1174 | struct channel *res = si_ic(si); |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1175 | struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0]; |
| 1176 | struct cache *cache = cconf->c.cache; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1177 | struct shared_context *shctx = shctx_ptr(cache); |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 1178 | struct cache_entry *cache_ptr = appctx->ctx.cache.entry; |
| 1179 | struct shared_block *blk, *next = appctx->ctx.cache.next; |
| 1180 | int offset; |
| 1181 | |
| 1182 | total = 0; |
| 1183 | offset = 0; |
| 1184 | |
| 1185 | if (!next) { |
| 1186 | offset = sizeof(struct cache_entry); |
| 1187 | next = block_ptr(cache_ptr); |
| 1188 | } |
| 1189 | |
| 1190 | blk = next; |
| 1191 | list_for_each_entry_from(blk, &shctx->hot, list) { |
| 1192 | int sz; |
| 1193 | |
| 1194 | if (len <= 0) |
| 1195 | break; |
| 1196 | |
| 1197 | sz = MIN(len, shctx->block_size - offset); |
| 1198 | |
| 1199 | ret = ci_putblk(res, (const char *)blk->data + offset, sz); |
| 1200 | if (unlikely(offset)) |
| 1201 | offset = 0; |
| 1202 | if (ret <= 0) { |
| 1203 | if (ret == -3 || ret == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1204 | si_rx_room_blk(si); |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 1205 | break; |
| 1206 | } |
| 1207 | return -1; |
| 1208 | } |
| 1209 | |
| 1210 | total += sz; |
| 1211 | len -= sz; |
| 1212 | } |
| 1213 | appctx->ctx.cache.next = blk; |
| 1214 | |
| 1215 | return total; |
| 1216 | } |
| 1217 | |
| 1218 | static void http_cache_io_handler(struct appctx *appctx) |
| 1219 | { |
| 1220 | struct stream_interface *si = appctx->owner; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1221 | struct stream *s = si_strm(si); |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 1222 | struct channel *res = si_ic(si); |
| 1223 | struct cache_entry *cache_ptr = appctx->ctx.cache.entry; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1224 | struct shared_block *first = block_ptr(cache_ptr); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1225 | unsigned int *sent = &appctx->ctx.cache.sent; |
| 1226 | |
| 1227 | if (IS_HTX_STRM(s)) |
| 1228 | return htx_cache_io_handler(appctx); |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1229 | |
| 1230 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 1231 | goto out; |
| 1232 | |
Joseph Herlant | 8dae5b3 | 2018-11-15 14:07:53 -0800 | [diff] [blame] | 1233 | /* Check if the input buffer is available. */ |
Willy Tarreau | c9fa048 | 2018-07-10 17:43:27 +0200 | [diff] [blame] | 1234 | if (res->buf.size == 0) { |
Willy Tarreau | 4b962a4 | 2018-11-15 11:03:21 +0100 | [diff] [blame] | 1235 | /* buf.size==0 means we failed to get a buffer and were |
| 1236 | * already subscribed to a wait list to get a buffer. |
| 1237 | */ |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1238 | goto out; |
| 1239 | } |
| 1240 | |
Willy Tarreau | efef323 | 2018-12-16 00:37:45 +0100 | [diff] [blame] | 1241 | if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR)) |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1242 | appctx->st0 = HTTP_CACHE_END; |
| 1243 | |
| 1244 | /* buffer are aligned there, should be fine */ |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 1245 | if (appctx->st0 == HTTP_CACHE_HEADER || appctx->st0 == HTTP_CACHE_INIT) { |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 1246 | int len = first->len - *sent - sizeof(struct cache_entry); |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 1247 | if (len > 0) { |
| 1248 | int ret; |
| 1249 | |
| 1250 | ret = cache_channel_row_data_get(appctx, len); |
| 1251 | if (ret == -1) |
| 1252 | appctx->st0 = HTTP_CACHE_END; |
| 1253 | else |
| 1254 | *sent += ret; |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 1255 | if (appctx->st0 == HTTP_CACHE_INIT && *sent > cache_ptr->eoh && |
| 1256 | cache_channel_append_age_header(cache_ptr, res)) |
| 1257 | appctx->st0 = HTTP_CACHE_HEADER; |
Christopher Faulet | 6112391 | 2019-01-02 14:10:01 +0100 | [diff] [blame] | 1258 | else if (ret == len) { |
| 1259 | *sent = 0; |
| 1260 | appctx->st0 = HTTP_CACHE_FWD; |
| 1261 | } |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 1262 | } |
| 1263 | else { |
| 1264 | *sent = 0; |
| 1265 | appctx->st0 = HTTP_CACHE_FWD; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1266 | } |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1267 | } |
| 1268 | |
| 1269 | if (appctx->st0 == HTTP_CACHE_FWD) { |
| 1270 | /* eat the whole request */ |
Willy Tarreau | 178b987 | 2018-06-19 07:13:36 +0200 | [diff] [blame] | 1271 | co_skip(si_oc(si), co_data(si_oc(si))); // NOTE: when disabled does not repport the correct status code |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1272 | res->flags |= CF_READ_NULL; |
| 1273 | si_shutr(si); |
| 1274 | } |
| 1275 | |
| 1276 | if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST)) |
| 1277 | si_shutw(si); |
| 1278 | out: |
| 1279 | ; |
| 1280 | } |
| 1281 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1282 | static int parse_cache_rule(struct proxy *proxy, const char *name, struct act_rule *rule, char **err) |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1283 | { |
| 1284 | struct flt_conf *fconf; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1285 | struct cache_flt_conf *cconf = NULL; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1286 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1287 | if (!*name || strcmp(name, "if") == 0 || strcmp(name, "unless") == 0) { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1288 | memprintf(err, "expects a cache name"); |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1289 | goto err; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1290 | } |
| 1291 | |
| 1292 | /* check if a cache filter was already registered with this cache |
| 1293 | * name, if that's the case, must use it. */ |
| 1294 | list_for_each_entry(fconf, &proxy->filter_configs, list) { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1295 | if (fconf->id == cache_store_flt_id) { |
| 1296 | cconf = fconf->conf; |
| 1297 | if (cconf && !strcmp((char *)cconf->c.name, name)) { |
| 1298 | rule->arg.act.p[0] = cconf; |
| 1299 | return 1; |
| 1300 | } |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1301 | } |
| 1302 | } |
| 1303 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1304 | /* Create the filter cache config */ |
| 1305 | cconf = calloc(1, sizeof(*cconf)); |
| 1306 | if (!cconf) { |
| 1307 | memprintf(err, "out of memory\n"); |
| 1308 | goto err; |
| 1309 | } |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 1310 | cconf->flags = CACHE_FLT_F_IMPLICIT_DECL; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1311 | cconf->c.name = strdup(name); |
| 1312 | if (!cconf->c.name) { |
| 1313 | memprintf(err, "out of memory\n"); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1314 | goto err; |
| 1315 | } |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1316 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1317 | /* register a filter to fill the cache buffer */ |
| 1318 | fconf = calloc(1, sizeof(*fconf)); |
| 1319 | if (!fconf) { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1320 | memprintf(err, "out of memory\n"); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1321 | goto err; |
| 1322 | } |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1323 | fconf->id = cache_store_flt_id; |
| 1324 | fconf->conf = cconf; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1325 | fconf->ops = &cache_ops; |
| 1326 | LIST_ADDQ(&proxy->filter_configs, &fconf->list); |
| 1327 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1328 | rule->arg.act.p[0] = cconf; |
| 1329 | return 1; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1330 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1331 | err: |
| 1332 | free(cconf); |
| 1333 | return 0; |
| 1334 | } |
| 1335 | |
| 1336 | enum act_parse_ret parse_cache_store(const char **args, int *orig_arg, struct proxy *proxy, |
| 1337 | struct act_rule *rule, char **err) |
| 1338 | { |
| 1339 | rule->action = ACT_CUSTOM; |
| 1340 | rule->action_ptr = http_action_store_cache; |
| 1341 | |
| 1342 | if (!parse_cache_rule(proxy, args[*orig_arg], rule, err)) |
| 1343 | return ACT_RET_PRS_ERR; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1344 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1345 | (*orig_arg)++; |
| 1346 | return ACT_RET_PRS_OK; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1347 | } |
| 1348 | |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1349 | /* This produces a sha1 hash of the concatenation of the first |
| 1350 | * occurrence of the Host header followed by the path component if it |
| 1351 | * begins with a slash ('/'). */ |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1352 | int sha1_hosturi(struct stream *s) |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1353 | { |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1354 | struct http_txn *txn = s->txn; |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1355 | blk_SHA_CTX sha1_ctx; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1356 | struct buffer *trash; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1357 | |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1358 | trash = get_trash_chunk(); |
| 1359 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1360 | if (IS_HTX_STRM(s)) { |
| 1361 | struct htx *htx = htxbuf(&s->req.buf); |
| 1362 | struct htx_sl *sl; |
| 1363 | struct http_hdr_ctx ctx; |
| 1364 | struct ist path; |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1365 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1366 | ctx.blk = NULL; |
| 1367 | if (!http_find_header(htx, ist("Host"), &ctx, 0)) |
| 1368 | return 0; |
| 1369 | chunk_memcat(trash, ctx.value.ptr, ctx.value.len); |
| 1370 | |
| 1371 | sl = http_find_stline(htx); |
| 1372 | path = http_get_path(htx_sl_req_uri(sl)); |
| 1373 | if (!path.ptr) |
| 1374 | return 0; |
| 1375 | chunk_memcat(trash, path.ptr, path.len); |
| 1376 | } |
| 1377 | else { |
| 1378 | struct hdr_ctx ctx; |
| 1379 | char *path; |
| 1380 | char *end; |
| 1381 | |
| 1382 | /* retrive the host */ |
| 1383 | ctx.idx = 0; |
| 1384 | if (!http_find_header2("Host", 4, ci_head(txn->req.chn), &txn->hdr_idx, &ctx)) |
| 1385 | return 0; |
| 1386 | chunk_strncat(trash, ctx.line + ctx.val, ctx.vlen); |
| 1387 | |
| 1388 | /* now retrieve the path */ |
| 1389 | end = ci_head(txn->req.chn) + txn->req.sl.rq.u + txn->req.sl.rq.u_l; |
| 1390 | path = http_txn_get_path(txn); |
| 1391 | if (!path) |
| 1392 | return 0; |
| 1393 | chunk_strncat(trash, path, end - path); |
| 1394 | } |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1395 | |
| 1396 | /* hash everything */ |
| 1397 | blk_SHA1_Init(&sha1_ctx); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1398 | blk_SHA1_Update(&sha1_ctx, trash->area, trash->data); |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1399 | blk_SHA1_Final((unsigned char *)txn->cache_hash, &sha1_ctx); |
| 1400 | |
| 1401 | return 1; |
| 1402 | } |
| 1403 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1404 | enum act_return http_action_req_cache_use(struct act_rule *rule, struct proxy *px, |
| 1405 | struct session *sess, struct stream *s, int flags) |
| 1406 | { |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1407 | |
Christopher Faulet | b3d4bca | 2019-02-25 10:59:33 +0100 | [diff] [blame] | 1408 | struct http_txn *txn = s->txn; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1409 | struct cache_entry *res; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1410 | struct cache_flt_conf *cconf = rule->arg.act.p[0]; |
| 1411 | struct cache *cache = cconf->c.cache; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1412 | |
Christopher Faulet | b3d4bca | 2019-02-25 10:59:33 +0100 | [diff] [blame] | 1413 | /* Ignore cache for HTTP/1.0 requests and for requests other than GET |
| 1414 | * and HEAD */ |
| 1415 | if (!(txn->req.flags & HTTP_MSGF_VER_11) || |
| 1416 | (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD)) |
| 1417 | txn->flags |= TX_CACHE_IGNORE; |
| 1418 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1419 | if (IS_HTX_STRM(s)) |
| 1420 | htx_check_request_for_cacheability(s, &s->req); |
| 1421 | else |
| 1422 | check_request_for_cacheability(s, &s->req); |
| 1423 | |
Willy Tarreau | 504455c | 2017-12-22 17:47:35 +0100 | [diff] [blame] | 1424 | if ((s->txn->flags & (TX_CACHE_IGNORE|TX_CACHEABLE)) == TX_CACHE_IGNORE) |
| 1425 | return ACT_RET_CONT; |
| 1426 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1427 | if (!sha1_hosturi(s)) |
Willy Tarreau | 7704b1e | 2017-12-22 16:32:43 +0100 | [diff] [blame] | 1428 | return ACT_RET_CONT; |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1429 | |
Willy Tarreau | 504455c | 2017-12-22 17:47:35 +0100 | [diff] [blame] | 1430 | if (s->txn->flags & TX_CACHE_IGNORE) |
| 1431 | return ACT_RET_CONT; |
| 1432 | |
Willy Tarreau | a1214a5 | 2018-12-14 14:00:25 +0100 | [diff] [blame] | 1433 | if (px == strm_fe(s)) |
| 1434 | HA_ATOMIC_ADD(&px->fe_counters.p.http.cache_lookups, 1); |
| 1435 | else |
| 1436 | HA_ATOMIC_ADD(&px->be_counters.p.http.cache_lookups, 1); |
| 1437 | |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 1438 | shctx_lock(shctx_ptr(cache)); |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1439 | res = entry_exist(cache, s->txn->cache_hash); |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1440 | if (res) { |
| 1441 | struct appctx *appctx; |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 1442 | shctx_row_inc_hot(shctx_ptr(cache), block_ptr(res)); |
| 1443 | shctx_unlock(shctx_ptr(cache)); |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1444 | s->target = &http_cache_applet.obj_type; |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 1445 | if ((appctx = si_register_handler(&s->si[1], objt_applet(s->target)))) { |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1446 | appctx->st0 = HTTP_CACHE_INIT; |
| 1447 | appctx->rule = rule; |
| 1448 | appctx->ctx.cache.entry = res; |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 1449 | appctx->ctx.cache.next = NULL; |
| 1450 | appctx->ctx.cache.sent = 0; |
Willy Tarreau | a1214a5 | 2018-12-14 14:00:25 +0100 | [diff] [blame] | 1451 | |
| 1452 | if (px == strm_fe(s)) |
| 1453 | HA_ATOMIC_ADD(&px->fe_counters.p.http.cache_hits, 1); |
| 1454 | else |
| 1455 | HA_ATOMIC_ADD(&px->be_counters.p.http.cache_hits, 1); |
Olivier Houchard | fccf840 | 2017-11-01 14:04:02 +0100 | [diff] [blame] | 1456 | return ACT_RET_CONT; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1457 | } else { |
William Lallemand | 55e7674 | 2017-11-21 20:01:28 +0100 | [diff] [blame] | 1458 | shctx_lock(shctx_ptr(cache)); |
| 1459 | shctx_row_dec_hot(shctx_ptr(cache), block_ptr(res)); |
| 1460 | shctx_unlock(shctx_ptr(cache)); |
Olivier Houchard | fccf840 | 2017-11-01 14:04:02 +0100 | [diff] [blame] | 1461 | return ACT_RET_YIELD; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1462 | } |
| 1463 | } |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 1464 | shctx_unlock(shctx_ptr(cache)); |
Olivier Houchard | fccf840 | 2017-11-01 14:04:02 +0100 | [diff] [blame] | 1465 | return ACT_RET_CONT; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1466 | } |
| 1467 | |
| 1468 | |
| 1469 | enum act_parse_ret parse_cache_use(const char **args, int *orig_arg, struct proxy *proxy, |
| 1470 | struct act_rule *rule, char **err) |
| 1471 | { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1472 | rule->action = ACT_CUSTOM; |
| 1473 | rule->action_ptr = http_action_req_cache_use; |
| 1474 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1475 | if (!parse_cache_rule(proxy, args[*orig_arg], rule, err)) |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1476 | return ACT_RET_PRS_ERR; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1477 | |
| 1478 | (*orig_arg)++; |
| 1479 | return ACT_RET_PRS_OK; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1480 | } |
| 1481 | |
| 1482 | int cfg_parse_cache(const char *file, int linenum, char **args, int kwm) |
| 1483 | { |
| 1484 | int err_code = 0; |
| 1485 | |
| 1486 | if (strcmp(args[0], "cache") == 0) { /* new cache section */ |
| 1487 | |
| 1488 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1489 | ha_alert("parsing [%s:%d] : '%s' expects an <id> argument\n", |
| 1490 | file, linenum, args[0]); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1491 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1492 | goto out; |
| 1493 | } |
| 1494 | |
| 1495 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 1496 | err_code |= ERR_ABORT; |
| 1497 | goto out; |
| 1498 | } |
| 1499 | |
| 1500 | if (tmp_cache_config == NULL) { |
| 1501 | tmp_cache_config = calloc(1, sizeof(*tmp_cache_config)); |
| 1502 | if (!tmp_cache_config) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1503 | ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1504 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1505 | goto out; |
| 1506 | } |
| 1507 | |
| 1508 | strlcpy2(tmp_cache_config->id, args[1], 33); |
| 1509 | if (strlen(args[1]) > 32) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1510 | ha_warning("parsing [%s:%d]: cache id is limited to 32 characters, truncate to '%s'.\n", |
| 1511 | file, linenum, tmp_cache_config->id); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1512 | err_code |= ERR_WARN; |
| 1513 | } |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 1514 | tmp_cache_config->maxage = 60; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1515 | tmp_cache_config->maxblocks = 0; |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 1516 | tmp_cache_config->maxobjsz = 0; |
Christopher Faulet | 1f672c5 | 2018-12-03 14:30:41 +0100 | [diff] [blame] | 1517 | tmp_cache_config->flags = 0; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1518 | } |
| 1519 | } else if (strcmp(args[0], "total-max-size") == 0) { |
Frédéric Lécaille | b9b8b6b | 2018-10-25 20:17:45 +0200 | [diff] [blame] | 1520 | unsigned long int maxsize; |
| 1521 | char *err; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1522 | |
| 1523 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 1524 | err_code |= ERR_ABORT; |
| 1525 | goto out; |
| 1526 | } |
| 1527 | |
Frédéric Lécaille | b9b8b6b | 2018-10-25 20:17:45 +0200 | [diff] [blame] | 1528 | maxsize = strtoul(args[1], &err, 10); |
| 1529 | if (err == args[1] || *err != '\0') { |
| 1530 | ha_warning("parsing [%s:%d]: total-max-size wrong value '%s'\n", |
| 1531 | file, linenum, args[1]); |
| 1532 | err_code |= ERR_ABORT; |
| 1533 | goto out; |
| 1534 | } |
| 1535 | |
| 1536 | if (maxsize > (UINT_MAX >> 20)) { |
| 1537 | ha_warning("parsing [%s:%d]: \"total-max-size\" (%s) must not be greater than %u\n", |
| 1538 | file, linenum, args[1], UINT_MAX >> 20); |
| 1539 | err_code |= ERR_ABORT; |
| 1540 | goto out; |
| 1541 | } |
| 1542 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1543 | /* size in megabytes */ |
Frédéric Lécaille | b9b8b6b | 2018-10-25 20:17:45 +0200 | [diff] [blame] | 1544 | maxsize *= 1024 * 1024 / CACHE_BLOCKSIZE; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1545 | tmp_cache_config->maxblocks = maxsize; |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 1546 | } else if (strcmp(args[0], "max-age") == 0) { |
| 1547 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 1548 | err_code |= ERR_ABORT; |
| 1549 | goto out; |
| 1550 | } |
| 1551 | |
| 1552 | if (!*args[1]) { |
| 1553 | ha_warning("parsing [%s:%d]: '%s' expects an age parameter in seconds.\n", |
| 1554 | file, linenum, args[0]); |
| 1555 | err_code |= ERR_WARN; |
| 1556 | } |
| 1557 | |
| 1558 | tmp_cache_config->maxage = atoi(args[1]); |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 1559 | } else if (strcmp(args[0], "max-object-size") == 0) { |
Frédéric Lécaille | 4eba544 | 2018-10-25 20:29:31 +0200 | [diff] [blame] | 1560 | unsigned int maxobjsz; |
| 1561 | char *err; |
| 1562 | |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 1563 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 1564 | err_code |= ERR_ABORT; |
| 1565 | goto out; |
| 1566 | } |
| 1567 | |
| 1568 | if (!*args[1]) { |
| 1569 | ha_warning("parsing [%s:%d]: '%s' expects a maximum file size parameter in bytes.\n", |
| 1570 | file, linenum, args[0]); |
| 1571 | err_code |= ERR_WARN; |
| 1572 | } |
| 1573 | |
Frédéric Lécaille | 4eba544 | 2018-10-25 20:29:31 +0200 | [diff] [blame] | 1574 | maxobjsz = strtoul(args[1], &err, 10); |
| 1575 | if (err == args[1] || *err != '\0') { |
| 1576 | ha_warning("parsing [%s:%d]: max-object-size wrong value '%s'\n", |
| 1577 | file, linenum, args[1]); |
| 1578 | err_code |= ERR_ABORT; |
| 1579 | goto out; |
| 1580 | } |
| 1581 | tmp_cache_config->maxobjsz = maxobjsz; |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 1582 | } |
| 1583 | else if (*args[0] != 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1584 | ha_alert("parsing [%s:%d] : unknown keyword '%s' in 'cache' section\n", file, linenum, args[0]); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1585 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1586 | goto out; |
| 1587 | } |
| 1588 | out: |
| 1589 | return err_code; |
| 1590 | } |
| 1591 | |
| 1592 | /* once the cache section is parsed */ |
| 1593 | |
| 1594 | int cfg_post_parse_section_cache() |
| 1595 | { |
| 1596 | struct shared_context *shctx; |
| 1597 | int err_code = 0; |
| 1598 | int ret_shctx; |
| 1599 | |
| 1600 | if (tmp_cache_config) { |
| 1601 | struct cache *cache; |
| 1602 | |
| 1603 | if (tmp_cache_config->maxblocks <= 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1604 | ha_alert("Size not specified for cache '%s'\n", tmp_cache_config->id); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1605 | err_code |= ERR_FATAL | ERR_ALERT; |
| 1606 | goto out; |
| 1607 | } |
| 1608 | |
Frédéric Lécaille | 4eba544 | 2018-10-25 20:29:31 +0200 | [diff] [blame] | 1609 | if (!tmp_cache_config->maxobjsz) { |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 1610 | /* Default max. file size is a 256th of the cache size. */ |
| 1611 | tmp_cache_config->maxobjsz = |
| 1612 | (tmp_cache_config->maxblocks * CACHE_BLOCKSIZE) >> 8; |
Frédéric Lécaille | 4eba544 | 2018-10-25 20:29:31 +0200 | [diff] [blame] | 1613 | } |
| 1614 | else if (tmp_cache_config->maxobjsz > tmp_cache_config->maxblocks * CACHE_BLOCKSIZE / 2) { |
| 1615 | ha_alert("\"max-object-size\" is limited to an half of \"total-max-size\" => %u\n", tmp_cache_config->maxblocks * CACHE_BLOCKSIZE / 2); |
| 1616 | err_code |= ERR_FATAL | ERR_ALERT; |
| 1617 | goto out; |
| 1618 | } |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 1619 | |
| 1620 | ret_shctx = shctx_init(&shctx, tmp_cache_config->maxblocks, CACHE_BLOCKSIZE, |
| 1621 | tmp_cache_config->maxobjsz, sizeof(struct cache), 1); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1622 | |
Frédéric Lécaille | bc58449 | 2018-10-25 20:18:59 +0200 | [diff] [blame] | 1623 | if (ret_shctx <= 0) { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1624 | if (ret_shctx == SHCTX_E_INIT_LOCK) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1625 | ha_alert("Unable to initialize the lock for the cache.\n"); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1626 | else |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1627 | ha_alert("Unable to allocate cache.\n"); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1628 | |
| 1629 | err_code |= ERR_FATAL | ERR_ALERT; |
| 1630 | goto out; |
| 1631 | } |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 1632 | shctx->free_block = cache_free_blocks; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1633 | memcpy(shctx->data, tmp_cache_config, sizeof(struct cache)); |
| 1634 | cache = (struct cache *)shctx->data; |
| 1635 | cache->entries = EB_ROOT_UNIQUE; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1636 | LIST_ADDQ(&caches, &cache->list); |
| 1637 | } |
| 1638 | out: |
| 1639 | free(tmp_cache_config); |
| 1640 | tmp_cache_config = NULL; |
| 1641 | return err_code; |
| 1642 | |
| 1643 | } |
| 1644 | |
| 1645 | /* |
| 1646 | * Resolve the cache name to a pointer once the file is completely read. |
| 1647 | */ |
| 1648 | int cfg_cache_postparser() |
| 1649 | { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1650 | struct cache *cache; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1651 | int err = 0; |
Christopher Faulet | 1f672c5 | 2018-12-03 14:30:41 +0100 | [diff] [blame] | 1652 | |
| 1653 | /* Check if the cache is used by HTX and legacy HTTP proxies in same |
| 1654 | * time |
| 1655 | */ |
| 1656 | list_for_each_entry(cache, &caches, list) { |
| 1657 | if ((cache->flags & (CACHE_F_HTX|CACHE_F_LEGACY_HTTP)) == (CACHE_F_HTX|CACHE_F_LEGACY_HTTP)) { |
| 1658 | ha_alert("Cache '%s': cannot be used by HTX and legacy HTTP proxies in same time.\n", |
| 1659 | cache->id); |
| 1660 | err++; |
| 1661 | } |
| 1662 | } |
| 1663 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1664 | return err; |
| 1665 | } |
| 1666 | |
| 1667 | |
| 1668 | struct flt_ops cache_ops = { |
| 1669 | .init = cache_store_init, |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1670 | .check = cache_store_check, |
| 1671 | .deinit = cache_store_deinit, |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1672 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1673 | /* Handle channels activity */ |
| 1674 | .channel_start_analyze = cache_store_chn_start_analyze, |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 1675 | .channel_end_analyze = cache_store_chn_end_analyze, |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 1676 | .channel_post_analyze = cache_store_post_analyze, |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1677 | |
| 1678 | /* Filter HTTP requests and responses */ |
| 1679 | .http_headers = cache_store_http_headers, |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1680 | .http_payload = cache_store_http_payload, |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1681 | .http_end = cache_store_http_end, |
| 1682 | |
| 1683 | .http_forward_data = cache_store_http_forward_data, |
| 1684 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1685 | }; |
| 1686 | |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 1687 | |
| 1688 | |
| 1689 | static int |
| 1690 | parse_cache_flt(char **args, int *cur_arg, struct proxy *px, |
| 1691 | struct flt_conf *fconf, char **err, void *private) |
| 1692 | { |
| 1693 | struct flt_conf *f, *back; |
Willy Tarreau | a73da1e | 2018-12-14 10:19:28 +0100 | [diff] [blame] | 1694 | struct cache_flt_conf *cconf = NULL; |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 1695 | char *name = NULL; |
| 1696 | int pos = *cur_arg; |
| 1697 | |
| 1698 | /* Get the cache filter name*/ |
| 1699 | if (!strcmp(args[pos], "cache")) { |
| 1700 | if (!*args[pos + 1]) { |
| 1701 | memprintf(err, "%s : expects an <id> argument", args[pos]); |
| 1702 | goto error; |
| 1703 | } |
| 1704 | name = strdup(args[pos + 1]); |
| 1705 | if (!name) { |
| 1706 | memprintf(err, "%s '%s' : out of memory", args[pos], args[pos + 1]); |
| 1707 | goto error; |
| 1708 | } |
| 1709 | pos += 2; |
| 1710 | } |
| 1711 | |
| 1712 | /* Check if an implicit filter with the same name already exists. If so, |
| 1713 | * we remove the implicit filter to use the explicit one. */ |
| 1714 | list_for_each_entry_safe(f, back, &px->filter_configs, list) { |
| 1715 | if (f->id != cache_store_flt_id) |
| 1716 | continue; |
| 1717 | |
| 1718 | cconf = f->conf; |
| 1719 | if (strcmp(name, cconf->c.name)) { |
| 1720 | cconf = NULL; |
| 1721 | continue; |
| 1722 | } |
| 1723 | |
| 1724 | if (!(cconf->flags & CACHE_FLT_F_IMPLICIT_DECL)) { |
| 1725 | cconf = NULL; |
| 1726 | memprintf(err, "%s: multiple explicit declarations of the cache filter '%s'", |
| 1727 | px->id, name); |
| 1728 | return -1; |
| 1729 | } |
| 1730 | |
| 1731 | /* Remove the implicit filter. <cconf> is kept for the explicit one */ |
| 1732 | LIST_DEL(&f->list); |
| 1733 | free(f); |
| 1734 | free(name); |
| 1735 | break; |
| 1736 | } |
| 1737 | |
| 1738 | /* No implicit cache filter found, create configuration for the explicit one */ |
| 1739 | if (!cconf) { |
| 1740 | cconf = calloc(1, sizeof(*cconf)); |
| 1741 | if (!cconf) { |
| 1742 | memprintf(err, "%s: out of memory", args[*cur_arg]); |
| 1743 | goto error; |
| 1744 | } |
| 1745 | cconf->c.name = name; |
| 1746 | } |
| 1747 | |
| 1748 | cconf->flags = 0; |
| 1749 | fconf->id = cache_store_flt_id; |
| 1750 | fconf->conf = cconf; |
| 1751 | fconf->ops = &cache_ops; |
| 1752 | |
| 1753 | *cur_arg = pos; |
| 1754 | return 0; |
| 1755 | |
| 1756 | error: |
| 1757 | free(name); |
| 1758 | free(cconf); |
| 1759 | return -1; |
| 1760 | } |
| 1761 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1762 | static int cli_parse_show_cache(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1763 | { |
| 1764 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1765 | return 1; |
| 1766 | |
| 1767 | return 0; |
| 1768 | } |
| 1769 | |
| 1770 | static int cli_io_handler_show_cache(struct appctx *appctx) |
| 1771 | { |
| 1772 | struct cache* cache = appctx->ctx.cli.p0; |
| 1773 | struct stream_interface *si = appctx->owner; |
| 1774 | |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1775 | if (cache == NULL) { |
| 1776 | cache = LIST_ELEM((caches).n, typeof(struct cache *), list); |
| 1777 | } |
| 1778 | |
| 1779 | list_for_each_entry_from(cache, &caches, list) { |
| 1780 | struct eb32_node *node = NULL; |
| 1781 | unsigned int next_key; |
| 1782 | struct cache_entry *entry; |
| 1783 | |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1784 | next_key = appctx->ctx.cli.i0; |
Willy Tarreau | afe1de5 | 2018-04-04 11:56:43 +0200 | [diff] [blame] | 1785 | if (!next_key) { |
| 1786 | chunk_printf(&trash, "%p: %s (shctx:%p, available blocks:%d)\n", cache, cache->id, shctx_ptr(cache), shctx_ptr(cache)->nbav); |
| 1787 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1788 | si_rx_room_blk(si); |
Willy Tarreau | afe1de5 | 2018-04-04 11:56:43 +0200 | [diff] [blame] | 1789 | return 0; |
| 1790 | } |
| 1791 | } |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1792 | |
| 1793 | appctx->ctx.cli.p0 = cache; |
| 1794 | |
| 1795 | while (1) { |
| 1796 | |
| 1797 | shctx_lock(shctx_ptr(cache)); |
| 1798 | node = eb32_lookup_ge(&cache->entries, next_key); |
| 1799 | if (!node) { |
| 1800 | shctx_unlock(shctx_ptr(cache)); |
Willy Tarreau | afe1de5 | 2018-04-04 11:56:43 +0200 | [diff] [blame] | 1801 | appctx->ctx.cli.i0 = 0; |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1802 | break; |
| 1803 | } |
| 1804 | |
| 1805 | entry = container_of(node, struct cache_entry, eb); |
Willy Tarreau | afe1de5 | 2018-04-04 11:56:43 +0200 | [diff] [blame] | 1806 | chunk_printf(&trash, "%p hash:%u size:%u (%u blocks), refcount:%u, expire:%d\n", entry, (*(unsigned int *)entry->hash), block_ptr(entry)->len, block_ptr(entry)->block_count, block_ptr(entry)->refcount, entry->expire - (int)now.tv_sec); |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1807 | |
| 1808 | next_key = node->key + 1; |
| 1809 | appctx->ctx.cli.i0 = next_key; |
| 1810 | |
| 1811 | shctx_unlock(shctx_ptr(cache)); |
| 1812 | |
| 1813 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1814 | si_rx_room_blk(si); |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1815 | return 0; |
| 1816 | } |
| 1817 | } |
| 1818 | |
| 1819 | } |
| 1820 | |
| 1821 | return 1; |
| 1822 | |
| 1823 | } |
| 1824 | |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 1825 | /* Declare the filter parser for "cache" keyword */ |
| 1826 | static struct flt_kw_list filter_kws = { "CACHE", { }, { |
| 1827 | { "cache", parse_cache_flt, NULL }, |
| 1828 | { NULL, NULL, NULL }, |
| 1829 | } |
| 1830 | }; |
| 1831 | |
| 1832 | INITCALL1(STG_REGISTER, flt_register_keywords, &filter_kws); |
| 1833 | |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1834 | static struct cli_kw_list cli_kws = {{},{ |
William Lallemand | e899af8 | 2017-11-22 16:41:26 +0100 | [diff] [blame] | 1835 | { { "show", "cache", NULL }, "show cache : show cache status", cli_parse_show_cache, cli_io_handler_show_cache, NULL, NULL }, |
| 1836 | {{},} |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1837 | }}; |
| 1838 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1839 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1840 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1841 | static struct action_kw_list http_res_actions = { |
| 1842 | .kw = { |
| 1843 | { "cache-store", parse_cache_store }, |
| 1844 | { NULL, NULL } |
| 1845 | } |
| 1846 | }; |
| 1847 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1848 | INITCALL1(STG_REGISTER, http_res_keywords_register, &http_res_actions); |
| 1849 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1850 | static struct action_kw_list http_req_actions = { |
| 1851 | .kw = { |
| 1852 | { "cache-use", parse_cache_use }, |
| 1853 | { NULL, NULL } |
| 1854 | } |
| 1855 | }; |
| 1856 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1857 | INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions); |
| 1858 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1859 | struct applet http_cache_applet = { |
| 1860 | .obj_type = OBJ_TYPE_APPLET, |
| 1861 | .name = "<CACHE>", /* used for logging */ |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1862 | .fct = http_cache_io_handler, |
William Lallemand | ecb73b1 | 2017-11-24 14:33:55 +0100 | [diff] [blame] | 1863 | .release = http_cache_applet_release, |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1864 | }; |
| 1865 | |
Willy Tarreau | e655251 | 2018-11-26 11:33:13 +0100 | [diff] [blame] | 1866 | /* config parsers for this section */ |
| 1867 | REGISTER_CONFIG_SECTION("cache", cfg_parse_cache, cfg_post_parse_section_cache); |
| 1868 | REGISTER_CONFIG_POSTPARSER("cache", cfg_cache_postparser); |