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> |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 25 | #include <proto/http_htx.h> |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 26 | #include <proto/filters.h> |
Willy Tarreau | 61c112a | 2018-10-02 16:43:32 +0200 | [diff] [blame] | 27 | #include <proto/http_rules.h> |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 28 | #include <proto/proto_http.h> |
| 29 | #include <proto/log.h> |
| 30 | #include <proto/stream.h> |
| 31 | #include <proto/stream_interface.h> |
| 32 | #include <proto/shctx.h> |
| 33 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 34 | |
| 35 | #include <common/cfgparse.h> |
| 36 | #include <common/hash.h> |
Willy Tarreau | b96b77e | 2018-12-11 10:22:41 +0100 | [diff] [blame] | 37 | #include <common/htx.h> |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 38 | #include <common/initcall.h> |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 39 | |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 40 | #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] | 41 | * the filter keyword) */ |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 42 | |
Christopher Faulet | f4a4ef7 | 2018-12-07 17:39:53 +0100 | [diff] [blame] | 43 | const char *cache_store_flt_id = "cache store filter"; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 44 | |
Willy Tarreau | 2231b63 | 2019-03-29 18:26:52 +0100 | [diff] [blame] | 45 | extern struct applet http_cache_applet; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 46 | |
| 47 | struct flt_ops cache_ops; |
| 48 | |
| 49 | struct cache { |
Willy Tarreau | fd5efb5 | 2017-11-26 08:54:31 +0100 | [diff] [blame] | 50 | struct list list; /* cache linked list */ |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 51 | struct eb_root entries; /* head of cache entries based on keys */ |
Willy Tarreau | fd5efb5 | 2017-11-26 08:54:31 +0100 | [diff] [blame] | 52 | unsigned int maxage; /* max-age */ |
| 53 | unsigned int maxblocks; |
Frédéric Lécaille | 4eba544 | 2018-10-25 20:29:31 +0200 | [diff] [blame] | 54 | unsigned int maxobjsz; /* max-object-size (in bytes) */ |
Willy Tarreau | fd5efb5 | 2017-11-26 08:54:31 +0100 | [diff] [blame] | 55 | char id[33]; /* cache name */ |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 56 | }; |
| 57 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 58 | /* cache config for filters */ |
| 59 | struct cache_flt_conf { |
| 60 | union { |
| 61 | struct cache *cache; /* cache used by the filter */ |
| 62 | char *name; /* cache name used during conf parsing */ |
| 63 | } c; |
| 64 | unsigned int flags; /* CACHE_FLT_F_* */ |
| 65 | }; |
| 66 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 67 | /* |
| 68 | * cache ctx for filters |
| 69 | */ |
| 70 | struct cache_st { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 71 | struct shared_block *first_block; |
| 72 | }; |
| 73 | |
| 74 | struct cache_entry { |
| 75 | unsigned int latest_validation; /* latest validation date */ |
| 76 | unsigned int expire; /* expiration date */ |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 77 | unsigned int age; /* Origin server "Age" header value */ |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 78 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 79 | struct eb32_node eb; /* ebtree node used to hold the cache object */ |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 80 | char hash[20]; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 81 | unsigned char data[0]; |
| 82 | }; |
| 83 | |
| 84 | #define CACHE_BLOCKSIZE 1024 |
Willy Tarreau | 96062a1 | 2018-11-11 14:00:28 +0100 | [diff] [blame] | 85 | #define CACHE_ENTRY_MAX_AGE 2147483648U |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 86 | |
| 87 | static struct list caches = LIST_HEAD_INIT(caches); |
| 88 | static struct cache *tmp_cache_config = NULL; |
| 89 | |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 90 | DECLARE_STATIC_POOL(pool_head_cache_st, "cache_st", sizeof(struct cache_st)); |
| 91 | |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 92 | struct cache_entry *entry_exist(struct cache *cache, char *hash) |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 93 | { |
| 94 | struct eb32_node *node; |
| 95 | struct cache_entry *entry; |
| 96 | |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 97 | node = eb32_lookup(&cache->entries, (*(unsigned int *)hash)); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 98 | if (!node) |
| 99 | return NULL; |
| 100 | |
| 101 | entry = eb32_entry(node, struct cache_entry, eb); |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 102 | |
| 103 | /* if that's not the right node */ |
| 104 | if (memcmp(entry->hash, hash, sizeof(entry->hash))) |
| 105 | return NULL; |
| 106 | |
William Lallemand | 0872766 | 2017-11-21 20:01:27 +0100 | [diff] [blame] | 107 | if (entry->expire > now.tv_sec) { |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 108 | return entry; |
William Lallemand | 0872766 | 2017-11-21 20:01:27 +0100 | [diff] [blame] | 109 | } else { |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 110 | eb32_delete(node); |
William Lallemand | 0872766 | 2017-11-21 20:01:27 +0100 | [diff] [blame] | 111 | entry->eb.key = 0; |
| 112 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 113 | return NULL; |
| 114 | |
| 115 | } |
| 116 | |
| 117 | static inline struct shared_context *shctx_ptr(struct cache *cache) |
| 118 | { |
| 119 | return (struct shared_context *)((unsigned char *)cache - ((struct shared_context *)NULL)->data); |
| 120 | } |
| 121 | |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 122 | static inline struct shared_block *block_ptr(struct cache_entry *entry) |
| 123 | { |
| 124 | return (struct shared_block *)((unsigned char *)entry - ((struct shared_block *)NULL)->data); |
| 125 | } |
| 126 | |
| 127 | |
| 128 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 129 | static int |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 130 | cache_store_init(struct proxy *px, struct flt_conf *fconf) |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 131 | { |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 132 | fconf->flags |= FLT_CFG_FL_HTX; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 133 | return 0; |
| 134 | } |
| 135 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 136 | static void |
| 137 | cache_store_deinit(struct proxy *px, struct flt_conf *fconf) |
| 138 | { |
| 139 | struct cache_flt_conf *cconf = fconf->conf; |
| 140 | |
| 141 | free(cconf); |
| 142 | } |
| 143 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 144 | static int |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 145 | cache_store_check(struct proxy *px, struct flt_conf *fconf) |
| 146 | { |
| 147 | struct cache_flt_conf *cconf = fconf->conf; |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 148 | struct flt_conf *f; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 149 | struct cache *cache; |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 150 | int comp = 0; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 151 | |
| 152 | /* resolve the cache name to a ptr in the filter config */ |
| 153 | list_for_each_entry(cache, &caches, list) { |
| 154 | if (!strcmp(cache->id, cconf->c.name)) { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 155 | free(cconf->c.name); |
| 156 | cconf->c.cache = cache; |
| 157 | goto found; |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | ha_alert("config: %s '%s': unable to find the cache '%s' referenced by the filter 'cache'.\n", |
| 162 | proxy_type_str(px), px->id, (char *)cconf->c.name); |
| 163 | return 1; |
| 164 | |
| 165 | found: |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 166 | /* Here <cache> points on the cache the filter must use and <cconf> |
| 167 | * points on the cache filter configuration. */ |
| 168 | |
| 169 | /* Check all filters for proxy <px> to know if the compression is |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 170 | * enabled and if it is after the cache. When the compression is before |
| 171 | * the cache, an error is returned. Also check if the cache filter must |
| 172 | * be explicitly declaired or not. */ |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 173 | list_for_each_entry(f, &px->filter_configs, list) { |
| 174 | if (f == fconf) { |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 175 | /* The compression filter must be evaluated after the cache. */ |
| 176 | if (comp) { |
| 177 | ha_alert("config: %s '%s': unable to enable the compression filter before " |
| 178 | "the cache '%s'.\n", proxy_type_str(px), px->id, cache->id); |
| 179 | return 1; |
| 180 | } |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 181 | } |
Christopher Faulet | 8f7fe1c | 2019-07-15 15:08:25 +0200 | [diff] [blame] | 182 | else if (f->id == http_comp_flt_id) |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 183 | comp = 1; |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 184 | else if ((f->id != fconf->id) && (cconf->flags & CACHE_FLT_F_IMPLICIT_DECL)) { |
| 185 | /* Implicit declaration is only allowed with the |
| 186 | * compression. For other filters, an implicit |
| 187 | * declaration is required. */ |
| 188 | ha_alert("config: %s '%s': require an explicit filter declaration " |
| 189 | "to use the cache '%s'.\n", proxy_type_str(px), px->id, cache->id); |
| 190 | return 1; |
| 191 | } |
| 192 | |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 193 | } |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 194 | return 0; |
| 195 | } |
| 196 | |
| 197 | static int |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 198 | cache_store_chn_start_analyze(struct stream *s, struct filter *filter, struct channel *chn) |
| 199 | { |
| 200 | if (!(chn->flags & CF_ISRESP)) |
| 201 | return 1; |
| 202 | |
| 203 | if (filter->ctx == NULL) { |
| 204 | struct cache_st *st; |
| 205 | |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 206 | st = pool_alloc_dirty(pool_head_cache_st); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 207 | if (st == NULL) |
| 208 | return -1; |
| 209 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 210 | st->first_block = NULL; |
| 211 | filter->ctx = st; |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 212 | |
| 213 | /* Register post-analyzer on AN_RES_WAIT_HTTP */ |
| 214 | filter->post_analyzers |= AN_RES_WAIT_HTTP; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 215 | } |
| 216 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 217 | return 1; |
| 218 | } |
| 219 | |
| 220 | static int |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 221 | cache_store_chn_end_analyze(struct stream *s, struct filter *filter, struct channel *chn) |
| 222 | { |
| 223 | struct cache_st *st = filter->ctx; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 224 | struct cache_flt_conf *cconf = FLT_CONF(filter); |
| 225 | struct cache *cache = cconf->c.cache; |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 226 | struct shared_context *shctx = shctx_ptr(cache); |
| 227 | |
| 228 | if (!(chn->flags & CF_ISRESP)) |
| 229 | return 1; |
| 230 | |
| 231 | /* Everything should be released in the http_end filter, but we need to do it |
| 232 | * there too, in case of errors */ |
| 233 | |
| 234 | if (st && st->first_block) { |
| 235 | |
| 236 | shctx_lock(shctx); |
| 237 | shctx_row_dec_hot(shctx, st->first_block); |
| 238 | shctx_unlock(shctx); |
| 239 | |
| 240 | } |
| 241 | if (st) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 242 | pool_free(pool_head_cache_st, st); |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 243 | filter->ctx = NULL; |
| 244 | } |
| 245 | |
| 246 | return 1; |
| 247 | } |
| 248 | |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 249 | static int |
| 250 | cache_store_post_analyze(struct stream *s, struct filter *filter, struct channel *chn, |
| 251 | unsigned an_bit) |
| 252 | { |
| 253 | struct http_txn *txn = s->txn; |
| 254 | struct http_msg *msg = &txn->rsp; |
| 255 | struct cache_st *st = filter->ctx; |
| 256 | |
| 257 | if (an_bit != AN_RES_WAIT_HTTP) |
| 258 | goto end; |
| 259 | |
| 260 | /* Here we need to check if any compression filter precedes the cache |
| 261 | * filter. This is only possible when the compression is configured in |
| 262 | * the frontend while the cache filter is configured on the |
| 263 | * backend. This case cannot be detected during HAProxy startup. So in |
| 264 | * such cases, the cache is disabled. |
| 265 | */ |
| 266 | if (st && (msg->flags & HTTP_MSGF_COMPRESSING)) { |
| 267 | pool_free(pool_head_cache_st, st); |
| 268 | filter->ctx = NULL; |
| 269 | } |
| 270 | |
| 271 | end: |
| 272 | return 1; |
| 273 | } |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 274 | |
| 275 | static int |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 276 | cache_store_http_headers(struct stream *s, struct filter *filter, struct http_msg *msg) |
| 277 | { |
| 278 | struct cache_st *st = filter->ctx; |
| 279 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 280 | if (!(msg->chn->flags & CF_ISRESP) || !st) |
| 281 | return 1; |
| 282 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 283 | if (st->first_block) |
Christopher Faulet | 67658c9 | 2018-12-06 21:59:39 +0100 | [diff] [blame] | 284 | register_data_filter(s, msg->chn, filter); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 285 | return 1; |
| 286 | } |
| 287 | |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 288 | static inline void disable_cache_entry(struct cache_st *st, |
| 289 | struct filter *filter, struct shared_context *shctx) |
| 290 | { |
| 291 | struct cache_entry *object; |
| 292 | |
| 293 | object = (struct cache_entry *)st->first_block->data; |
| 294 | filter->ctx = NULL; /* disable cache */ |
| 295 | shctx_lock(shctx); |
| 296 | shctx_row_dec_hot(shctx, st->first_block); |
| 297 | object->eb.key = 0; |
| 298 | shctx_unlock(shctx); |
| 299 | pool_free(pool_head_cache_st, st); |
| 300 | } |
| 301 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 302 | static int |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 303 | cache_store_http_payload(struct stream *s, struct filter *filter, struct http_msg *msg, |
| 304 | unsigned int offset, unsigned int len) |
| 305 | { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 306 | struct cache_flt_conf *cconf = FLT_CONF(filter); |
| 307 | struct shared_context *shctx = shctx_ptr(cconf->c.cache); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 308 | struct cache_st *st = filter->ctx; |
| 309 | struct htx *htx = htxbuf(&msg->chn->buf); |
| 310 | struct htx_blk *blk; |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 311 | struct shared_block *fb; |
| 312 | unsigned int orig_len, to_forward; |
| 313 | int ret; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 314 | |
| 315 | if (!len) |
| 316 | return len; |
| 317 | |
| 318 | if (!st->first_block) { |
| 319 | unregister_data_filter(s, msg->chn, filter); |
| 320 | return len; |
| 321 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 322 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 323 | chunk_reset(&trash); |
| 324 | orig_len = len; |
| 325 | to_forward = 0; |
Christopher Faulet | ee847d4 | 2019-05-23 11:55:33 +0200 | [diff] [blame] | 326 | for (blk = htx_get_first_blk(htx); blk && len; blk = htx_get_next_blk(htx, blk)) { |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 327 | enum htx_blk_type type = htx_get_blk_type(blk); |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 328 | uint32_t info, sz = htx_get_blksz(blk); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 329 | struct ist v; |
| 330 | |
Christopher Faulet | ee847d4 | 2019-05-23 11:55:33 +0200 | [diff] [blame] | 331 | if (offset >= sz) { |
| 332 | offset -= sz; |
| 333 | continue; |
| 334 | } |
| 335 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 336 | switch (type) { |
| 337 | case HTX_BLK_UNUSED: |
| 338 | break; |
| 339 | |
| 340 | case HTX_BLK_DATA: |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 341 | v = htx_get_blk_value(htx, blk); |
| 342 | v.ptr += offset; |
| 343 | v.len -= offset; |
| 344 | if (v.len > len) |
| 345 | v.len = len; |
| 346 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 347 | info = (type << 28) + v.len; |
| 348 | chunk_memcat(&trash, (char *)&info, sizeof(info)); |
| 349 | chunk_memcat(&trash, v.ptr, v.len); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 350 | to_forward += v.len; |
| 351 | len -= v.len; |
| 352 | break; |
| 353 | |
| 354 | default: |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 355 | /* Here offset must always be 0 because only |
| 356 | * DATA blocks can be partially transferred. */ |
| 357 | if (offset) |
| 358 | goto no_cache; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 359 | if (sz > len) |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 360 | goto end; |
| 361 | |
| 362 | chunk_memcat(&trash, (char *)&blk->info, sizeof(blk->info)); |
| 363 | chunk_memcat(&trash, htx_get_blk_ptr(htx, blk), sz); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 364 | to_forward += sz; |
| 365 | len -= sz; |
| 366 | break; |
| 367 | } |
| 368 | |
| 369 | offset = 0; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 370 | } |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 371 | |
| 372 | end: |
| 373 | shctx_lock(shctx); |
| 374 | fb = shctx_row_reserve_hot(shctx, st->first_block, trash.data); |
| 375 | if (!fb) { |
| 376 | shctx_unlock(shctx); |
| 377 | goto no_cache; |
| 378 | } |
| 379 | shctx_unlock(shctx); |
| 380 | |
| 381 | ret = shctx_row_data_append(shctx, st->first_block, st->first_block->last_append, |
| 382 | (unsigned char *)b_head(&trash), b_data(&trash)); |
| 383 | if (ret < 0) |
| 384 | goto no_cache; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 385 | |
| 386 | return to_forward; |
| 387 | |
| 388 | no_cache: |
| 389 | disable_cache_entry(st, filter, shctx); |
| 390 | unregister_data_filter(s, msg->chn, filter); |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 391 | return orig_len; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 392 | } |
| 393 | |
| 394 | static int |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 395 | cache_store_http_end(struct stream *s, struct filter *filter, |
| 396 | struct http_msg *msg) |
| 397 | { |
| 398 | struct cache_st *st = filter->ctx; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 399 | struct cache_flt_conf *cconf = FLT_CONF(filter); |
| 400 | struct cache *cache = cconf->c.cache; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 401 | struct shared_context *shctx = shctx_ptr(cache); |
| 402 | struct cache_entry *object; |
| 403 | |
| 404 | if (!(msg->chn->flags & CF_ISRESP)) |
| 405 | return 1; |
| 406 | |
| 407 | if (st && st->first_block) { |
| 408 | |
| 409 | object = (struct cache_entry *)st->first_block->data; |
| 410 | |
| 411 | /* does not need to test if the insertion worked, if it |
| 412 | * doesn't, the blocks will be reused anyway */ |
| 413 | |
| 414 | shctx_lock(shctx); |
William Lallemand | 0872766 | 2017-11-21 20:01:27 +0100 | [diff] [blame] | 415 | if (eb32_insert(&cache->entries, &object->eb) != &object->eb) { |
| 416 | object->eb.key = 0; |
| 417 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 418 | /* remove from the hotlist */ |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 419 | shctx_row_dec_hot(shctx, st->first_block); |
| 420 | shctx_unlock(shctx); |
| 421 | |
| 422 | } |
| 423 | if (st) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 424 | pool_free(pool_head_cache_st, st); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 425 | filter->ctx = NULL; |
| 426 | } |
| 427 | |
| 428 | return 1; |
| 429 | } |
| 430 | |
| 431 | /* |
| 432 | * This intends to be used when checking HTTP headers for some |
| 433 | * word=value directive. Return a pointer to the first character of value, if |
| 434 | * the word was not found or if there wasn't any value assigned ot it return NULL |
| 435 | */ |
| 436 | char *directive_value(const char *sample, int slen, const char *word, int wlen) |
| 437 | { |
| 438 | int st = 0; |
| 439 | |
| 440 | if (slen < wlen) |
| 441 | return 0; |
| 442 | |
| 443 | while (wlen) { |
| 444 | char c = *sample ^ *word; |
| 445 | if (c && c != ('A' ^ 'a')) |
| 446 | return NULL; |
| 447 | sample++; |
| 448 | word++; |
| 449 | slen--; |
| 450 | wlen--; |
| 451 | } |
| 452 | |
| 453 | while (slen) { |
| 454 | if (st == 0) { |
| 455 | if (*sample != '=') |
| 456 | return NULL; |
| 457 | sample++; |
| 458 | slen--; |
| 459 | st = 1; |
| 460 | continue; |
| 461 | } else { |
| 462 | return (char *)sample; |
| 463 | } |
| 464 | } |
| 465 | |
| 466 | return NULL; |
| 467 | } |
| 468 | |
| 469 | /* |
| 470 | * Return the maxage in seconds of an HTTP response. |
| 471 | * Compute the maxage using either: |
| 472 | * - the assigned max-age of the cache |
| 473 | * - the s-maxage directive |
| 474 | * - the max-age directive |
| 475 | * - (Expires - Data) headers |
| 476 | * - the default-max-age of the cache |
| 477 | * |
| 478 | */ |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 479 | int http_calc_maxage(struct stream *s, struct cache *cache) |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 480 | { |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 481 | struct htx *htx = htxbuf(&s->res.buf); |
| 482 | struct http_hdr_ctx ctx = { .blk = NULL }; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 483 | int smaxage = -1; |
| 484 | int maxage = -1; |
| 485 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 486 | while (http_find_header(htx, ist("cache-control"), &ctx, 0)) { |
| 487 | char *value; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 488 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 489 | value = directive_value(ctx.value.ptr, ctx.value.len, "s-maxage", 8); |
| 490 | if (value) { |
| 491 | struct buffer *chk = get_trash_chunk(); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 492 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 493 | chunk_strncat(chk, value, ctx.value.len - 8 + 1); |
| 494 | chunk_strncat(chk, "", 1); |
| 495 | maxage = atoi(chk->area); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 496 | } |
| 497 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 498 | value = directive_value(ctx.value.ptr, ctx.value.len, "max-age", 7); |
| 499 | if (value) { |
| 500 | struct buffer *chk = get_trash_chunk(); |
Christopher Faulet | 5f2c49f | 2019-07-15 20:49:46 +0200 | [diff] [blame] | 501 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 502 | chunk_strncat(chk, value, ctx.value.len - 7 + 1); |
| 503 | chunk_strncat(chk, "", 1); |
| 504 | smaxage = atoi(chk->area); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 505 | } |
| 506 | } |
| 507 | |
| 508 | /* TODO: Expires - Data */ |
| 509 | |
| 510 | |
| 511 | if (smaxage > 0) |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 512 | return MIN(smaxage, cache->maxage); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 513 | |
| 514 | if (maxage > 0) |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 515 | return MIN(maxage, cache->maxage); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 516 | |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 517 | return cache->maxage; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 518 | |
| 519 | } |
| 520 | |
| 521 | |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 522 | static void cache_free_blocks(struct shared_block *first, struct shared_block *block) |
| 523 | { |
Willy Tarreau | 5bd37fa | 2018-04-04 20:17:03 +0200 | [diff] [blame] | 524 | struct cache_entry *object = (struct cache_entry *)block->data; |
| 525 | |
| 526 | if (first == block && object->eb.key) |
| 527 | eb32_delete(&object->eb); |
| 528 | object->eb.key = 0; |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 529 | } |
| 530 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 531 | /* |
| 532 | * This fonction will store the headers of the response in a buffer and then |
| 533 | * register a filter to store the data |
| 534 | */ |
| 535 | enum act_return http_action_store_cache(struct act_rule *rule, struct proxy *px, |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 536 | struct session *sess, struct stream *s, int flags) |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 537 | { |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 538 | unsigned int age; |
| 539 | long long hdr_age; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 540 | struct http_txn *txn = s->txn; |
| 541 | struct http_msg *msg = &txn->rsp; |
| 542 | struct filter *filter; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 543 | struct shared_block *first = NULL; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 544 | struct cache_flt_conf *cconf = rule->arg.act.p[0]; |
| 545 | struct shared_context *shctx = shctx_ptr(cconf->c.cache); |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 546 | struct cache_st *cache_ctx = NULL; |
| 547 | struct cache_entry *object, *old; |
Willy Tarreau | c9036c0 | 2019-01-11 19:38:25 +0100 | [diff] [blame] | 548 | unsigned int key = *(unsigned int *)txn->cache_hash; |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 549 | struct htx *htx; |
| 550 | struct http_hdr_ctx ctx; |
| 551 | int32_t pos; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 552 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 553 | /* Don't cache if the response came from a cache */ |
| 554 | if ((obj_type(s->target) == OBJ_TYPE_APPLET) && |
| 555 | s->target == &http_cache_applet.obj_type) { |
| 556 | goto out; |
| 557 | } |
| 558 | |
| 559 | /* cache only HTTP/1.1 */ |
| 560 | if (!(txn->req.flags & HTTP_MSGF_VER_11)) |
| 561 | goto out; |
| 562 | |
| 563 | /* cache only GET method */ |
| 564 | if (txn->meth != HTTP_METH_GET) |
| 565 | goto out; |
| 566 | |
Willy Tarreau | c9036c0 | 2019-01-11 19:38:25 +0100 | [diff] [blame] | 567 | /* cache key was not computed */ |
| 568 | if (!key) |
| 569 | goto out; |
| 570 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 571 | /* cache only 200 status code */ |
| 572 | if (txn->status != 200) |
| 573 | goto out; |
| 574 | |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 575 | /* Find the corresponding filter instance for the current stream */ |
| 576 | list_for_each_entry(filter, &s->strm_flt.filters, list) { |
| 577 | if (FLT_ID(filter) == cache_store_flt_id && FLT_CONF(filter) == cconf) { |
| 578 | /* No filter ctx, don't cache anything */ |
| 579 | if (!filter->ctx) |
| 580 | goto out; |
| 581 | cache_ctx = filter->ctx; |
| 582 | break; |
| 583 | } |
| 584 | } |
| 585 | |
| 586 | /* from there, cache_ctx is always defined */ |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 587 | htx = htxbuf(&s->res.buf); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 588 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 589 | /* Do not cache too big objects. */ |
| 590 | if ((msg->flags & HTTP_MSGF_CNT_LEN) && shctx->max_obj_size > 0 && |
| 591 | htx->data + htx->extra > shctx->max_obj_size) |
| 592 | goto out; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 593 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 594 | /* Does not manage Vary at the moment. We will need a secondary key later for that */ |
| 595 | ctx.blk = NULL; |
| 596 | if (http_find_header(htx, ist("Vary"), &ctx, 0)) |
| 597 | goto out; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 598 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 599 | htx_check_response_for_cacheability(s, &s->res); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 600 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 601 | if (!(txn->flags & TX_CACHEABLE) || !(txn->flags & TX_CACHE_COOK)) |
| 602 | goto out; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 603 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 604 | age = 0; |
| 605 | ctx.blk = NULL; |
| 606 | if (http_find_header(htx, ist("Age"), &ctx, 0)) { |
| 607 | if (!strl2llrc(ctx.value.ptr, ctx.value.len, &hdr_age) && hdr_age > 0) { |
| 608 | if (unlikely(hdr_age > CACHE_ENTRY_MAX_AGE)) |
| 609 | hdr_age = CACHE_ENTRY_MAX_AGE; |
| 610 | age = hdr_age; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 611 | } |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 612 | http_remove_header(htx, &ctx); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 613 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 614 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 615 | chunk_reset(&trash); |
| 616 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 617 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 618 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 619 | uint32_t sz = htx_get_blksz(blk); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 620 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 621 | chunk_memcat(&trash, (char *)&blk->info, sizeof(blk->info)); |
| 622 | chunk_memcat(&trash, htx_get_blk_ptr(htx, blk), sz); |
| 623 | if (type == HTX_BLK_EOH) |
| 624 | break; |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 625 | } |
| 626 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 627 | shctx_lock(shctx); |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 628 | first = shctx_row_reserve_hot(shctx, NULL, sizeof(struct cache_entry) + trash.data); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 629 | if (!first) { |
| 630 | shctx_unlock(shctx); |
| 631 | goto out; |
| 632 | } |
| 633 | shctx_unlock(shctx); |
| 634 | |
Willy Tarreau | 1093a45 | 2018-04-06 19:02:25 +0200 | [diff] [blame] | 635 | /* the received memory is not initialized, we need at least to mark |
| 636 | * the object as not indexed yet. |
| 637 | */ |
| 638 | object = (struct cache_entry *)first->data; |
| 639 | object->eb.node.leaf_p = NULL; |
| 640 | object->eb.key = 0; |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 641 | object->age = age; |
Willy Tarreau | 1093a45 | 2018-04-06 19:02:25 +0200 | [diff] [blame] | 642 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 643 | /* reserve space for the cache_entry structure */ |
| 644 | first->len = sizeof(struct cache_entry); |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 645 | first->last_append = NULL; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 646 | /* cache the headers in a http action because it allows to chose what |
| 647 | * to cache, for example you might want to cache a response before |
| 648 | * modifying some HTTP headers, or on the contrary after modifying |
| 649 | * those headers. |
| 650 | */ |
| 651 | |
| 652 | /* does not need to be locked because it's in the "hot" list, |
| 653 | * copy the headers */ |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 654 | if (shctx_row_data_append(shctx, first, NULL, (unsigned char *)trash.area, trash.data) < 0) |
| 655 | goto out; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 656 | |
| 657 | /* register the buffer in the filter ctx for filling it with data*/ |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 658 | if (cache_ctx) { |
| 659 | cache_ctx->first_block = first; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 660 | |
Willy Tarreau | c9036c0 | 2019-01-11 19:38:25 +0100 | [diff] [blame] | 661 | object->eb.key = key; |
| 662 | |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 663 | memcpy(object->hash, txn->cache_hash, sizeof(object->hash)); |
| 664 | /* Insert the node later on caching success */ |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 665 | |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 666 | shctx_lock(shctx); |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 667 | |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 668 | old = entry_exist(cconf->c.cache, txn->cache_hash); |
| 669 | if (old) { |
| 670 | eb32_delete(&old->eb); |
| 671 | old->eb.key = 0; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 672 | } |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 673 | shctx_unlock(shctx); |
| 674 | |
| 675 | /* store latest value and expiration time */ |
| 676 | object->latest_validation = now.tv_sec; |
| 677 | object->expire = now.tv_sec + http_calc_maxage(s, cconf->c.cache); |
| 678 | return ACT_RET_CONT; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 679 | } |
| 680 | |
| 681 | out: |
| 682 | /* if does not cache */ |
| 683 | if (first) { |
| 684 | shctx_lock(shctx); |
William Lallemand | 0872766 | 2017-11-21 20:01:27 +0100 | [diff] [blame] | 685 | first->len = 0; |
| 686 | object->eb.key = 0; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 687 | shctx_row_dec_hot(shctx, first); |
| 688 | shctx_unlock(shctx); |
| 689 | } |
| 690 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 691 | return ACT_RET_CONT; |
| 692 | } |
| 693 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 694 | #define HTX_CACHE_INIT 0 /* Initial state. */ |
| 695 | #define HTX_CACHE_HEADER 1 /* Cache entry headers forwarding */ |
| 696 | #define HTX_CACHE_DATA 2 /* Cache entry data forwarding */ |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 697 | #define HTX_CACHE_EOM 3 /* Cache entry completely forwarded. Finish the HTX message */ |
| 698 | #define HTX_CACHE_END 4 /* Cache entry treatment terminated */ |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 699 | |
William Lallemand | ecb73b1 | 2017-11-24 14:33:55 +0100 | [diff] [blame] | 700 | static void http_cache_applet_release(struct appctx *appctx) |
| 701 | { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 702 | struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0]; |
William Lallemand | ecb73b1 | 2017-11-24 14:33:55 +0100 | [diff] [blame] | 703 | struct cache_entry *cache_ptr = appctx->ctx.cache.entry; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 704 | struct cache *cache = cconf->c.cache; |
William Lallemand | ecb73b1 | 2017-11-24 14:33:55 +0100 | [diff] [blame] | 705 | struct shared_block *first = block_ptr(cache_ptr); |
| 706 | |
| 707 | shctx_lock(shctx_ptr(cache)); |
| 708 | shctx_row_dec_hot(shctx_ptr(cache), first); |
| 709 | shctx_unlock(shctx_ptr(cache)); |
| 710 | } |
| 711 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 712 | |
| 713 | static unsigned int htx_cache_dump_blk(struct appctx *appctx, struct htx *htx, enum htx_blk_type type, |
| 714 | uint32_t info, struct shared_block *shblk, unsigned int offset) |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 715 | { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 716 | struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0]; |
| 717 | struct shared_context *shctx = shctx_ptr(cconf->c.cache); |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 718 | struct htx_blk *blk; |
| 719 | unsigned int max, total; |
| 720 | uint32_t blksz; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 721 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 722 | max = htx_get_max_blksz(htx, channel_htx_recv_max(si_ic(appctx->owner), htx)); |
| 723 | if (!max) |
| 724 | return 0; |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 725 | blksz = ((type == HTX_BLK_HDR || type == HTX_BLK_TLR) |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 726 | ? (info & 0xff) + ((info >> 8) & 0xfffff) |
| 727 | : info & 0xfffffff); |
| 728 | if (blksz > max) |
| 729 | return 0; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 730 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 731 | blk = htx_add_blk(htx, type, blksz); |
| 732 | if (!blk) |
| 733 | return 0; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 734 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 735 | blk->info = info; |
| 736 | total = 4; |
| 737 | while (blksz) { |
| 738 | max = MIN(blksz, shctx->block_size - offset); |
| 739 | memcpy(htx_get_blk_ptr(htx, blk), (const char *)shblk->data + offset, max); |
| 740 | offset += max; |
| 741 | blksz -= max; |
| 742 | total += max; |
| 743 | if (blksz || offset == shctx->block_size) { |
| 744 | shblk = LIST_NEXT(&shblk->list, typeof(shblk), list); |
| 745 | offset = 0; |
| 746 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 747 | } |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 748 | appctx->ctx.cache.offset = offset; |
| 749 | appctx->ctx.cache.next = shblk; |
| 750 | appctx->ctx.cache.sent += total; |
| 751 | return total; |
| 752 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 753 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 754 | static unsigned int htx_cache_dump_data_blk(struct appctx *appctx, struct htx *htx, |
| 755 | uint32_t info, struct shared_block *shblk, unsigned int offset) |
| 756 | { |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 757 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 758 | struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0]; |
| 759 | struct shared_context *shctx = shctx_ptr(cconf->c.cache); |
| 760 | unsigned int max, total, rem_data; |
| 761 | uint32_t blksz; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 762 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 763 | max = htx_get_max_blksz(htx, channel_htx_recv_max(si_ic(appctx->owner), htx)); |
| 764 | if (!max) |
| 765 | return 0; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 766 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 767 | rem_data = 0; |
Christopher Faulet | bda8397 | 2019-06-11 09:58:09 +0200 | [diff] [blame] | 768 | if (appctx->ctx.cache.rem_data) { |
| 769 | blksz = appctx->ctx.cache.rem_data; |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 770 | total = 0; |
Christopher Faulet | bda8397 | 2019-06-11 09:58:09 +0200 | [diff] [blame] | 771 | } |
| 772 | else { |
| 773 | blksz = (info & 0xfffffff); |
| 774 | total = 4; |
| 775 | } |
| 776 | if (blksz > max) { |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 777 | rem_data = blksz - max; |
| 778 | blksz = max; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 779 | } |
| 780 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 781 | while (blksz) { |
| 782 | size_t sz; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 783 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 784 | max = MIN(blksz, shctx->block_size - offset); |
| 785 | sz = htx_add_data(htx, ist2(shblk->data + offset, max)); |
| 786 | offset += sz; |
| 787 | blksz -= sz; |
| 788 | total += sz; |
| 789 | if (sz < max) |
| 790 | break; |
| 791 | if (blksz || offset == shctx->block_size) { |
| 792 | shblk = LIST_NEXT(&shblk->list, typeof(shblk), list); |
| 793 | offset = 0; |
| 794 | } |
| 795 | } |
| 796 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 797 | appctx->ctx.cache.offset = offset; |
| 798 | appctx->ctx.cache.next = shblk; |
| 799 | appctx->ctx.cache.sent += total; |
| 800 | appctx->ctx.cache.rem_data = rem_data + blksz; |
| 801 | return total; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 802 | } |
| 803 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 804 | static size_t htx_cache_dump_msg(struct appctx *appctx, struct htx *htx, unsigned int len, |
| 805 | enum htx_blk_type mark) |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 806 | { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 807 | struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0]; |
| 808 | struct shared_context *shctx = shctx_ptr(cconf->c.cache); |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 809 | struct shared_block *shblk; |
| 810 | unsigned int offset, sz; |
| 811 | unsigned int ret, total = 0; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 812 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 813 | while (len) { |
| 814 | enum htx_blk_type type; |
| 815 | uint32_t info; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 816 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 817 | shblk = appctx->ctx.cache.next; |
| 818 | offset = appctx->ctx.cache.offset; |
| 819 | if (appctx->ctx.cache.rem_data) { |
| 820 | type = HTX_BLK_DATA; |
| 821 | info = 0; |
| 822 | goto add_data_blk; |
| 823 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 824 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 825 | /* Get info of the next HTX block. May be splitted on 2 shblk */ |
| 826 | sz = MIN(4, shctx->block_size - offset); |
| 827 | memcpy((char *)&info, (const char *)shblk->data + offset, sz); |
| 828 | offset += sz; |
| 829 | if (sz < 4) { |
| 830 | shblk = LIST_NEXT(&shblk->list, typeof(shblk), list); |
| 831 | memcpy(((char *)&info)+sz, (const char *)shblk->data, 4 - sz); |
| 832 | offset = (4 - sz); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 833 | } |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 834 | |
| 835 | /* Get payload of the next HTX block and insert it. */ |
| 836 | type = (info >> 28); |
| 837 | if (type != HTX_BLK_DATA) |
| 838 | ret = htx_cache_dump_blk(appctx, htx, type, info, shblk, offset); |
| 839 | else { |
| 840 | add_data_blk: |
| 841 | ret = htx_cache_dump_data_blk(appctx, htx, info, shblk, offset); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 842 | } |
| 843 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 844 | if (!ret) |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 845 | break; |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 846 | total += ret; |
| 847 | len -= ret; |
| 848 | |
| 849 | if (appctx->ctx.cache.rem_data || type == mark) |
| 850 | break; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 851 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 852 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 853 | return total; |
| 854 | } |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 855 | |
| 856 | static int htx_cache_add_age_hdr(struct appctx *appctx, struct htx *htx) |
| 857 | { |
| 858 | struct cache_entry *cache_ptr = appctx->ctx.cache.entry; |
| 859 | unsigned int age; |
| 860 | char *end; |
| 861 | |
| 862 | chunk_reset(&trash); |
| 863 | age = MAX(0, (int)(now.tv_sec - cache_ptr->latest_validation)) + cache_ptr->age; |
| 864 | if (unlikely(age > CACHE_ENTRY_MAX_AGE)) |
| 865 | age = CACHE_ENTRY_MAX_AGE; |
| 866 | end = ultoa_o(age, b_head(&trash), b_size(&trash)); |
| 867 | b_set_data(&trash, end - b_head(&trash)); |
| 868 | if (!http_add_header(htx, ist("Age"), ist2(b_head(&trash), b_data(&trash)))) |
| 869 | return 0; |
| 870 | return 1; |
| 871 | } |
| 872 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 873 | static void http_cache_io_handler(struct appctx *appctx) |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 874 | { |
| 875 | struct cache_entry *cache_ptr = appctx->ctx.cache.entry; |
| 876 | struct shared_block *first = block_ptr(cache_ptr); |
| 877 | struct stream_interface *si = appctx->owner; |
| 878 | struct channel *req = si_oc(si); |
| 879 | struct channel *res = si_ic(si); |
| 880 | struct htx *req_htx, *res_htx; |
| 881 | struct buffer *errmsg; |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 882 | unsigned int len; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 883 | size_t ret, total = 0; |
| 884 | |
| 885 | res_htx = htxbuf(&res->buf); |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 886 | total = res_htx->data; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 887 | |
| 888 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 889 | goto out; |
| 890 | |
| 891 | /* Check if the input buffer is avalaible. */ |
| 892 | if (!b_size(&res->buf)) { |
| 893 | si_rx_room_blk(si); |
| 894 | goto out; |
| 895 | } |
| 896 | |
Willy Tarreau | efef323 | 2018-12-16 00:37:45 +0100 | [diff] [blame] | 897 | if (res->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTW_NOW)) |
Willy Tarreau | 273e964 | 2018-12-16 00:35:15 +0100 | [diff] [blame] | 898 | appctx->st0 = HTX_CACHE_END; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 899 | |
| 900 | if (appctx->st0 == HTX_CACHE_INIT) { |
| 901 | appctx->ctx.cache.next = block_ptr(cache_ptr); |
| 902 | appctx->ctx.cache.offset = sizeof(*cache_ptr); |
| 903 | appctx->ctx.cache.sent = 0; |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 904 | appctx->ctx.cache.rem_data = 0; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 905 | appctx->st0 = HTX_CACHE_HEADER; |
| 906 | } |
| 907 | |
| 908 | if (appctx->st0 == HTX_CACHE_HEADER) { |
| 909 | /* Headers must be dump at once. Otherwise it is an error */ |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 910 | len = first->len - sizeof(*cache_ptr) - appctx->ctx.cache.sent; |
| 911 | ret = htx_cache_dump_msg(appctx, res_htx, len, HTX_BLK_EOH); |
| 912 | if (!ret || (htx_get_tail_type(res_htx) != HTX_BLK_EOH) || |
| 913 | !htx_cache_add_age_hdr(appctx, res_htx)) |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 914 | goto error; |
| 915 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 916 | /* Skip response body for HEAD requests */ |
| 917 | if (si_strm(si)->txn->meth == HTTP_METH_HEAD) |
Christopher Faulet | f0dd037 | 2019-02-25 11:08:34 +0100 | [diff] [blame] | 918 | appctx->st0 = HTX_CACHE_EOM; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 919 | else |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 920 | appctx->st0 = HTX_CACHE_DATA; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 921 | } |
| 922 | |
| 923 | if (appctx->st0 == HTX_CACHE_DATA) { |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 924 | len = first->len - sizeof(*cache_ptr) - appctx->ctx.cache.sent; |
| 925 | if (len) { |
| 926 | ret = htx_cache_dump_msg(appctx, res_htx, len, HTX_BLK_EOM); |
| 927 | if (ret < len) { |
| 928 | si_rx_room_blk(si); |
| 929 | goto out; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 930 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 931 | } |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 932 | appctx->st0 = HTX_CACHE_END; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 933 | } |
| 934 | |
| 935 | if (appctx->st0 == HTX_CACHE_EOM) { |
| 936 | if (!htx_add_endof(res_htx, HTX_BLK_EOM)) { |
| 937 | si_rx_room_blk(si); |
| 938 | goto out; |
| 939 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 940 | appctx->st0 = HTX_CACHE_END; |
| 941 | } |
| 942 | |
| 943 | end: |
Christopher Faulet | adb3631 | 2019-02-25 11:40:49 +0100 | [diff] [blame] | 944 | if (!(res->flags & CF_SHUTR) && appctx->st0 == HTX_CACHE_END) { |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 945 | res->flags |= CF_READ_NULL; |
| 946 | si_shutr(si); |
| 947 | } |
| 948 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 949 | out: |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 950 | total = res_htx->data - total; |
Christopher Faulet | 6112391 | 2019-01-02 14:10:01 +0100 | [diff] [blame] | 951 | if (total) |
| 952 | channel_add_input(res, total); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 953 | htx_to_buf(res_htx, &res->buf); |
Christopher Faulet | adb3631 | 2019-02-25 11:40:49 +0100 | [diff] [blame] | 954 | |
| 955 | /* eat the whole request */ |
| 956 | if (co_data(req)) { |
| 957 | req_htx = htx_from_buf(&req->buf); |
| 958 | co_htx_skip(req, req_htx, co_data(req)); |
| 959 | htx_to_buf(req_htx, &req->buf); |
| 960 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 961 | return; |
| 962 | |
| 963 | error: |
| 964 | /* Sent and HTTP error 500 */ |
| 965 | b_reset(&res->buf); |
| 966 | errmsg = &htx_err_chunks[HTTP_ERR_500]; |
| 967 | res->buf.data = b_data(errmsg); |
| 968 | memcpy(res->buf.area, b_head(errmsg), b_data(errmsg)); |
| 969 | res_htx = htx_from_buf(&res->buf); |
| 970 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 971 | total = 0; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 972 | appctx->st0 = HTX_CACHE_END; |
| 973 | goto end; |
| 974 | } |
| 975 | |
| 976 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 977 | 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] | 978 | { |
| 979 | struct flt_conf *fconf; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 980 | struct cache_flt_conf *cconf = NULL; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 981 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 982 | if (!*name || strcmp(name, "if") == 0 || strcmp(name, "unless") == 0) { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 983 | memprintf(err, "expects a cache name"); |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 984 | goto err; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 985 | } |
| 986 | |
| 987 | /* check if a cache filter was already registered with this cache |
| 988 | * name, if that's the case, must use it. */ |
| 989 | list_for_each_entry(fconf, &proxy->filter_configs, list) { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 990 | if (fconf->id == cache_store_flt_id) { |
| 991 | cconf = fconf->conf; |
| 992 | if (cconf && !strcmp((char *)cconf->c.name, name)) { |
| 993 | rule->arg.act.p[0] = cconf; |
| 994 | return 1; |
| 995 | } |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 996 | } |
| 997 | } |
| 998 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 999 | /* Create the filter cache config */ |
| 1000 | cconf = calloc(1, sizeof(*cconf)); |
| 1001 | if (!cconf) { |
| 1002 | memprintf(err, "out of memory\n"); |
| 1003 | goto err; |
| 1004 | } |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 1005 | cconf->flags = CACHE_FLT_F_IMPLICIT_DECL; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1006 | cconf->c.name = strdup(name); |
| 1007 | if (!cconf->c.name) { |
| 1008 | memprintf(err, "out of memory\n"); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1009 | goto err; |
| 1010 | } |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1011 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1012 | /* register a filter to fill the cache buffer */ |
| 1013 | fconf = calloc(1, sizeof(*fconf)); |
| 1014 | if (!fconf) { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1015 | memprintf(err, "out of memory\n"); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1016 | goto err; |
| 1017 | } |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1018 | fconf->id = cache_store_flt_id; |
| 1019 | fconf->conf = cconf; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1020 | fconf->ops = &cache_ops; |
| 1021 | LIST_ADDQ(&proxy->filter_configs, &fconf->list); |
| 1022 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1023 | rule->arg.act.p[0] = cconf; |
| 1024 | return 1; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1025 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1026 | err: |
| 1027 | free(cconf); |
| 1028 | return 0; |
| 1029 | } |
| 1030 | |
| 1031 | enum act_parse_ret parse_cache_store(const char **args, int *orig_arg, struct proxy *proxy, |
| 1032 | struct act_rule *rule, char **err) |
| 1033 | { |
| 1034 | rule->action = ACT_CUSTOM; |
| 1035 | rule->action_ptr = http_action_store_cache; |
| 1036 | |
| 1037 | if (!parse_cache_rule(proxy, args[*orig_arg], rule, err)) |
| 1038 | return ACT_RET_PRS_ERR; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1039 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1040 | (*orig_arg)++; |
| 1041 | return ACT_RET_PRS_OK; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1042 | } |
| 1043 | |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1044 | /* This produces a sha1 hash of the concatenation of the first |
| 1045 | * occurrence of the Host header followed by the path component if it |
| 1046 | * begins with a slash ('/'). */ |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1047 | int sha1_hosturi(struct stream *s) |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1048 | { |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1049 | struct http_txn *txn = s->txn; |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1050 | struct htx *htx = htxbuf(&s->req.buf); |
| 1051 | struct htx_sl *sl; |
| 1052 | struct http_hdr_ctx ctx; |
| 1053 | struct ist path; |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1054 | blk_SHA_CTX sha1_ctx; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1055 | struct buffer *trash; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1056 | |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1057 | trash = get_trash_chunk(); |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1058 | ctx.blk = NULL; |
| 1059 | if (!http_find_header(htx, ist("Host"), &ctx, 0)) |
| 1060 | return 0; |
| 1061 | chunk_memcat(trash, ctx.value.ptr, ctx.value.len); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1062 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1063 | sl = http_get_stline(htx); |
| 1064 | path = http_get_path(htx_sl_req_uri(sl)); |
| 1065 | if (!path.ptr) |
| 1066 | return 0; |
| 1067 | chunk_memcat(trash, path.ptr, path.len); |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1068 | |
| 1069 | /* hash everything */ |
| 1070 | blk_SHA1_Init(&sha1_ctx); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1071 | blk_SHA1_Update(&sha1_ctx, trash->area, trash->data); |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1072 | blk_SHA1_Final((unsigned char *)txn->cache_hash, &sha1_ctx); |
| 1073 | |
| 1074 | return 1; |
| 1075 | } |
| 1076 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1077 | enum act_return http_action_req_cache_use(struct act_rule *rule, struct proxy *px, |
| 1078 | struct session *sess, struct stream *s, int flags) |
| 1079 | { |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1080 | |
Christopher Faulet | b3d4bca | 2019-02-25 10:59:33 +0100 | [diff] [blame] | 1081 | struct http_txn *txn = s->txn; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1082 | struct cache_entry *res; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1083 | struct cache_flt_conf *cconf = rule->arg.act.p[0]; |
| 1084 | struct cache *cache = cconf->c.cache; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1085 | |
Christopher Faulet | b3d4bca | 2019-02-25 10:59:33 +0100 | [diff] [blame] | 1086 | /* Ignore cache for HTTP/1.0 requests and for requests other than GET |
| 1087 | * and HEAD */ |
| 1088 | if (!(txn->req.flags & HTTP_MSGF_VER_11) || |
| 1089 | (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD)) |
| 1090 | txn->flags |= TX_CACHE_IGNORE; |
| 1091 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1092 | htx_check_request_for_cacheability(s, &s->req); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1093 | |
Willy Tarreau | 504455c | 2017-12-22 17:47:35 +0100 | [diff] [blame] | 1094 | if ((s->txn->flags & (TX_CACHE_IGNORE|TX_CACHEABLE)) == TX_CACHE_IGNORE) |
| 1095 | return ACT_RET_CONT; |
| 1096 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1097 | if (!sha1_hosturi(s)) |
Willy Tarreau | 7704b1e | 2017-12-22 16:32:43 +0100 | [diff] [blame] | 1098 | return ACT_RET_CONT; |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1099 | |
Willy Tarreau | 504455c | 2017-12-22 17:47:35 +0100 | [diff] [blame] | 1100 | if (s->txn->flags & TX_CACHE_IGNORE) |
| 1101 | return ACT_RET_CONT; |
| 1102 | |
Willy Tarreau | a1214a5 | 2018-12-14 14:00:25 +0100 | [diff] [blame] | 1103 | if (px == strm_fe(s)) |
Olivier Houchard | aa090d4 | 2019-03-08 18:49:24 +0100 | [diff] [blame] | 1104 | _HA_ATOMIC_ADD(&px->fe_counters.p.http.cache_lookups, 1); |
Willy Tarreau | a1214a5 | 2018-12-14 14:00:25 +0100 | [diff] [blame] | 1105 | else |
Olivier Houchard | aa090d4 | 2019-03-08 18:49:24 +0100 | [diff] [blame] | 1106 | _HA_ATOMIC_ADD(&px->be_counters.p.http.cache_lookups, 1); |
Willy Tarreau | a1214a5 | 2018-12-14 14:00:25 +0100 | [diff] [blame] | 1107 | |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 1108 | shctx_lock(shctx_ptr(cache)); |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1109 | res = entry_exist(cache, s->txn->cache_hash); |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1110 | if (res) { |
| 1111 | struct appctx *appctx; |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 1112 | shctx_row_inc_hot(shctx_ptr(cache), block_ptr(res)); |
| 1113 | shctx_unlock(shctx_ptr(cache)); |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1114 | s->target = &http_cache_applet.obj_type; |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 1115 | if ((appctx = si_register_handler(&s->si[1], objt_applet(s->target)))) { |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1116 | appctx->st0 = HTX_CACHE_INIT; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1117 | appctx->rule = rule; |
| 1118 | appctx->ctx.cache.entry = res; |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 1119 | appctx->ctx.cache.next = NULL; |
| 1120 | appctx->ctx.cache.sent = 0; |
Willy Tarreau | a1214a5 | 2018-12-14 14:00:25 +0100 | [diff] [blame] | 1121 | |
| 1122 | if (px == strm_fe(s)) |
Olivier Houchard | aa090d4 | 2019-03-08 18:49:24 +0100 | [diff] [blame] | 1123 | _HA_ATOMIC_ADD(&px->fe_counters.p.http.cache_hits, 1); |
Willy Tarreau | a1214a5 | 2018-12-14 14:00:25 +0100 | [diff] [blame] | 1124 | else |
Olivier Houchard | aa090d4 | 2019-03-08 18:49:24 +0100 | [diff] [blame] | 1125 | _HA_ATOMIC_ADD(&px->be_counters.p.http.cache_hits, 1); |
Olivier Houchard | fccf840 | 2017-11-01 14:04:02 +0100 | [diff] [blame] | 1126 | return ACT_RET_CONT; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1127 | } else { |
William Lallemand | 55e7674 | 2017-11-21 20:01:28 +0100 | [diff] [blame] | 1128 | shctx_lock(shctx_ptr(cache)); |
| 1129 | shctx_row_dec_hot(shctx_ptr(cache), block_ptr(res)); |
| 1130 | shctx_unlock(shctx_ptr(cache)); |
Olivier Houchard | fccf840 | 2017-11-01 14:04:02 +0100 | [diff] [blame] | 1131 | return ACT_RET_YIELD; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1132 | } |
| 1133 | } |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 1134 | shctx_unlock(shctx_ptr(cache)); |
Olivier Houchard | fccf840 | 2017-11-01 14:04:02 +0100 | [diff] [blame] | 1135 | return ACT_RET_CONT; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1136 | } |
| 1137 | |
| 1138 | |
| 1139 | enum act_parse_ret parse_cache_use(const char **args, int *orig_arg, struct proxy *proxy, |
| 1140 | struct act_rule *rule, char **err) |
| 1141 | { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1142 | rule->action = ACT_CUSTOM; |
| 1143 | rule->action_ptr = http_action_req_cache_use; |
| 1144 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1145 | if (!parse_cache_rule(proxy, args[*orig_arg], rule, err)) |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1146 | return ACT_RET_PRS_ERR; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1147 | |
| 1148 | (*orig_arg)++; |
| 1149 | return ACT_RET_PRS_OK; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1150 | } |
| 1151 | |
| 1152 | int cfg_parse_cache(const char *file, int linenum, char **args, int kwm) |
| 1153 | { |
| 1154 | int err_code = 0; |
| 1155 | |
| 1156 | if (strcmp(args[0], "cache") == 0) { /* new cache section */ |
| 1157 | |
| 1158 | if (!*args[1]) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1159 | ha_alert("parsing [%s:%d] : '%s' expects an <id> argument\n", |
| 1160 | file, linenum, args[0]); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1161 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1162 | goto out; |
| 1163 | } |
| 1164 | |
| 1165 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 1166 | err_code |= ERR_ABORT; |
| 1167 | goto out; |
| 1168 | } |
| 1169 | |
| 1170 | if (tmp_cache_config == NULL) { |
| 1171 | tmp_cache_config = calloc(1, sizeof(*tmp_cache_config)); |
| 1172 | if (!tmp_cache_config) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1173 | ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1174 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1175 | goto out; |
| 1176 | } |
| 1177 | |
| 1178 | strlcpy2(tmp_cache_config->id, args[1], 33); |
| 1179 | if (strlen(args[1]) > 32) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1180 | ha_warning("parsing [%s:%d]: cache id is limited to 32 characters, truncate to '%s'.\n", |
| 1181 | file, linenum, tmp_cache_config->id); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1182 | err_code |= ERR_WARN; |
| 1183 | } |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 1184 | tmp_cache_config->maxage = 60; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1185 | tmp_cache_config->maxblocks = 0; |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 1186 | tmp_cache_config->maxobjsz = 0; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1187 | } |
| 1188 | } else if (strcmp(args[0], "total-max-size") == 0) { |
Frédéric Lécaille | b9b8b6b | 2018-10-25 20:17:45 +0200 | [diff] [blame] | 1189 | unsigned long int maxsize; |
| 1190 | char *err; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1191 | |
| 1192 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 1193 | err_code |= ERR_ABORT; |
| 1194 | goto out; |
| 1195 | } |
| 1196 | |
Frédéric Lécaille | b9b8b6b | 2018-10-25 20:17:45 +0200 | [diff] [blame] | 1197 | maxsize = strtoul(args[1], &err, 10); |
| 1198 | if (err == args[1] || *err != '\0') { |
| 1199 | ha_warning("parsing [%s:%d]: total-max-size wrong value '%s'\n", |
| 1200 | file, linenum, args[1]); |
| 1201 | err_code |= ERR_ABORT; |
| 1202 | goto out; |
| 1203 | } |
| 1204 | |
| 1205 | if (maxsize > (UINT_MAX >> 20)) { |
| 1206 | ha_warning("parsing [%s:%d]: \"total-max-size\" (%s) must not be greater than %u\n", |
| 1207 | file, linenum, args[1], UINT_MAX >> 20); |
| 1208 | err_code |= ERR_ABORT; |
| 1209 | goto out; |
| 1210 | } |
| 1211 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1212 | /* size in megabytes */ |
Frédéric Lécaille | b9b8b6b | 2018-10-25 20:17:45 +0200 | [diff] [blame] | 1213 | maxsize *= 1024 * 1024 / CACHE_BLOCKSIZE; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1214 | tmp_cache_config->maxblocks = maxsize; |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 1215 | } else if (strcmp(args[0], "max-age") == 0) { |
| 1216 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 1217 | err_code |= ERR_ABORT; |
| 1218 | goto out; |
| 1219 | } |
| 1220 | |
| 1221 | if (!*args[1]) { |
| 1222 | ha_warning("parsing [%s:%d]: '%s' expects an age parameter in seconds.\n", |
| 1223 | file, linenum, args[0]); |
| 1224 | err_code |= ERR_WARN; |
| 1225 | } |
| 1226 | |
| 1227 | tmp_cache_config->maxage = atoi(args[1]); |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 1228 | } else if (strcmp(args[0], "max-object-size") == 0) { |
Frédéric Lécaille | 4eba544 | 2018-10-25 20:29:31 +0200 | [diff] [blame] | 1229 | unsigned int maxobjsz; |
| 1230 | char *err; |
| 1231 | |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 1232 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 1233 | err_code |= ERR_ABORT; |
| 1234 | goto out; |
| 1235 | } |
| 1236 | |
| 1237 | if (!*args[1]) { |
| 1238 | ha_warning("parsing [%s:%d]: '%s' expects a maximum file size parameter in bytes.\n", |
| 1239 | file, linenum, args[0]); |
| 1240 | err_code |= ERR_WARN; |
| 1241 | } |
| 1242 | |
Frédéric Lécaille | 4eba544 | 2018-10-25 20:29:31 +0200 | [diff] [blame] | 1243 | maxobjsz = strtoul(args[1], &err, 10); |
| 1244 | if (err == args[1] || *err != '\0') { |
| 1245 | ha_warning("parsing [%s:%d]: max-object-size wrong value '%s'\n", |
| 1246 | file, linenum, args[1]); |
| 1247 | err_code |= ERR_ABORT; |
| 1248 | goto out; |
| 1249 | } |
| 1250 | tmp_cache_config->maxobjsz = maxobjsz; |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 1251 | } |
| 1252 | else if (*args[0] != 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1253 | 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] | 1254 | err_code |= ERR_ALERT | ERR_FATAL; |
| 1255 | goto out; |
| 1256 | } |
| 1257 | out: |
| 1258 | return err_code; |
| 1259 | } |
| 1260 | |
| 1261 | /* once the cache section is parsed */ |
| 1262 | |
| 1263 | int cfg_post_parse_section_cache() |
| 1264 | { |
| 1265 | struct shared_context *shctx; |
| 1266 | int err_code = 0; |
| 1267 | int ret_shctx; |
| 1268 | |
| 1269 | if (tmp_cache_config) { |
| 1270 | struct cache *cache; |
| 1271 | |
| 1272 | if (tmp_cache_config->maxblocks <= 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1273 | 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] | 1274 | err_code |= ERR_FATAL | ERR_ALERT; |
| 1275 | goto out; |
| 1276 | } |
| 1277 | |
Frédéric Lécaille | 4eba544 | 2018-10-25 20:29:31 +0200 | [diff] [blame] | 1278 | if (!tmp_cache_config->maxobjsz) { |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 1279 | /* Default max. file size is a 256th of the cache size. */ |
| 1280 | tmp_cache_config->maxobjsz = |
| 1281 | (tmp_cache_config->maxblocks * CACHE_BLOCKSIZE) >> 8; |
Frédéric Lécaille | 4eba544 | 2018-10-25 20:29:31 +0200 | [diff] [blame] | 1282 | } |
| 1283 | else if (tmp_cache_config->maxobjsz > tmp_cache_config->maxblocks * CACHE_BLOCKSIZE / 2) { |
| 1284 | ha_alert("\"max-object-size\" is limited to an half of \"total-max-size\" => %u\n", tmp_cache_config->maxblocks * CACHE_BLOCKSIZE / 2); |
| 1285 | err_code |= ERR_FATAL | ERR_ALERT; |
| 1286 | goto out; |
| 1287 | } |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 1288 | |
| 1289 | ret_shctx = shctx_init(&shctx, tmp_cache_config->maxblocks, CACHE_BLOCKSIZE, |
| 1290 | tmp_cache_config->maxobjsz, sizeof(struct cache), 1); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1291 | |
Frédéric Lécaille | bc58449 | 2018-10-25 20:18:59 +0200 | [diff] [blame] | 1292 | if (ret_shctx <= 0) { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1293 | if (ret_shctx == SHCTX_E_INIT_LOCK) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1294 | ha_alert("Unable to initialize the lock for the cache.\n"); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1295 | else |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1296 | ha_alert("Unable to allocate cache.\n"); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1297 | |
| 1298 | err_code |= ERR_FATAL | ERR_ALERT; |
| 1299 | goto out; |
| 1300 | } |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 1301 | shctx->free_block = cache_free_blocks; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1302 | memcpy(shctx->data, tmp_cache_config, sizeof(struct cache)); |
| 1303 | cache = (struct cache *)shctx->data; |
| 1304 | cache->entries = EB_ROOT_UNIQUE; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1305 | LIST_ADDQ(&caches, &cache->list); |
| 1306 | } |
| 1307 | out: |
| 1308 | free(tmp_cache_config); |
| 1309 | tmp_cache_config = NULL; |
| 1310 | return err_code; |
| 1311 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1312 | } |
| 1313 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1314 | struct flt_ops cache_ops = { |
| 1315 | .init = cache_store_init, |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1316 | .check = cache_store_check, |
| 1317 | .deinit = cache_store_deinit, |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1318 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1319 | /* Handle channels activity */ |
| 1320 | .channel_start_analyze = cache_store_chn_start_analyze, |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 1321 | .channel_end_analyze = cache_store_chn_end_analyze, |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 1322 | .channel_post_analyze = cache_store_post_analyze, |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1323 | |
| 1324 | /* Filter HTTP requests and responses */ |
| 1325 | .http_headers = cache_store_http_headers, |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1326 | .http_payload = cache_store_http_payload, |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1327 | .http_end = cache_store_http_end, |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1328 | }; |
| 1329 | |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 1330 | |
| 1331 | |
| 1332 | static int |
| 1333 | parse_cache_flt(char **args, int *cur_arg, struct proxy *px, |
| 1334 | struct flt_conf *fconf, char **err, void *private) |
| 1335 | { |
| 1336 | struct flt_conf *f, *back; |
Willy Tarreau | a73da1e | 2018-12-14 10:19:28 +0100 | [diff] [blame] | 1337 | struct cache_flt_conf *cconf = NULL; |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 1338 | char *name = NULL; |
| 1339 | int pos = *cur_arg; |
| 1340 | |
| 1341 | /* Get the cache filter name*/ |
| 1342 | if (!strcmp(args[pos], "cache")) { |
| 1343 | if (!*args[pos + 1]) { |
| 1344 | memprintf(err, "%s : expects an <id> argument", args[pos]); |
| 1345 | goto error; |
| 1346 | } |
| 1347 | name = strdup(args[pos + 1]); |
| 1348 | if (!name) { |
| 1349 | memprintf(err, "%s '%s' : out of memory", args[pos], args[pos + 1]); |
| 1350 | goto error; |
| 1351 | } |
| 1352 | pos += 2; |
| 1353 | } |
| 1354 | |
| 1355 | /* Check if an implicit filter with the same name already exists. If so, |
| 1356 | * we remove the implicit filter to use the explicit one. */ |
| 1357 | list_for_each_entry_safe(f, back, &px->filter_configs, list) { |
| 1358 | if (f->id != cache_store_flt_id) |
| 1359 | continue; |
| 1360 | |
| 1361 | cconf = f->conf; |
| 1362 | if (strcmp(name, cconf->c.name)) { |
| 1363 | cconf = NULL; |
| 1364 | continue; |
| 1365 | } |
| 1366 | |
| 1367 | if (!(cconf->flags & CACHE_FLT_F_IMPLICIT_DECL)) { |
| 1368 | cconf = NULL; |
| 1369 | memprintf(err, "%s: multiple explicit declarations of the cache filter '%s'", |
| 1370 | px->id, name); |
| 1371 | return -1; |
| 1372 | } |
| 1373 | |
| 1374 | /* Remove the implicit filter. <cconf> is kept for the explicit one */ |
| 1375 | LIST_DEL(&f->list); |
| 1376 | free(f); |
| 1377 | free(name); |
| 1378 | break; |
| 1379 | } |
| 1380 | |
| 1381 | /* No implicit cache filter found, create configuration for the explicit one */ |
| 1382 | if (!cconf) { |
| 1383 | cconf = calloc(1, sizeof(*cconf)); |
| 1384 | if (!cconf) { |
| 1385 | memprintf(err, "%s: out of memory", args[*cur_arg]); |
| 1386 | goto error; |
| 1387 | } |
| 1388 | cconf->c.name = name; |
| 1389 | } |
| 1390 | |
| 1391 | cconf->flags = 0; |
| 1392 | fconf->id = cache_store_flt_id; |
| 1393 | fconf->conf = cconf; |
| 1394 | fconf->ops = &cache_ops; |
| 1395 | |
| 1396 | *cur_arg = pos; |
| 1397 | return 0; |
| 1398 | |
| 1399 | error: |
| 1400 | free(name); |
| 1401 | free(cconf); |
| 1402 | return -1; |
| 1403 | } |
| 1404 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1405 | 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] | 1406 | { |
| 1407 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1408 | return 1; |
| 1409 | |
| 1410 | return 0; |
| 1411 | } |
| 1412 | |
| 1413 | static int cli_io_handler_show_cache(struct appctx *appctx) |
| 1414 | { |
| 1415 | struct cache* cache = appctx->ctx.cli.p0; |
| 1416 | struct stream_interface *si = appctx->owner; |
| 1417 | |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1418 | if (cache == NULL) { |
| 1419 | cache = LIST_ELEM((caches).n, typeof(struct cache *), list); |
| 1420 | } |
| 1421 | |
| 1422 | list_for_each_entry_from(cache, &caches, list) { |
| 1423 | struct eb32_node *node = NULL; |
| 1424 | unsigned int next_key; |
| 1425 | struct cache_entry *entry; |
| 1426 | |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1427 | next_key = appctx->ctx.cli.i0; |
Willy Tarreau | afe1de5 | 2018-04-04 11:56:43 +0200 | [diff] [blame] | 1428 | if (!next_key) { |
| 1429 | chunk_printf(&trash, "%p: %s (shctx:%p, available blocks:%d)\n", cache, cache->id, shctx_ptr(cache), shctx_ptr(cache)->nbav); |
| 1430 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1431 | si_rx_room_blk(si); |
Willy Tarreau | afe1de5 | 2018-04-04 11:56:43 +0200 | [diff] [blame] | 1432 | return 0; |
| 1433 | } |
| 1434 | } |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1435 | |
| 1436 | appctx->ctx.cli.p0 = cache; |
| 1437 | |
| 1438 | while (1) { |
| 1439 | |
| 1440 | shctx_lock(shctx_ptr(cache)); |
| 1441 | node = eb32_lookup_ge(&cache->entries, next_key); |
| 1442 | if (!node) { |
| 1443 | shctx_unlock(shctx_ptr(cache)); |
Willy Tarreau | afe1de5 | 2018-04-04 11:56:43 +0200 | [diff] [blame] | 1444 | appctx->ctx.cli.i0 = 0; |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1445 | break; |
| 1446 | } |
| 1447 | |
| 1448 | entry = container_of(node, struct cache_entry, eb); |
Willy Tarreau | afe1de5 | 2018-04-04 11:56:43 +0200 | [diff] [blame] | 1449 | 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] | 1450 | |
| 1451 | next_key = node->key + 1; |
| 1452 | appctx->ctx.cli.i0 = next_key; |
| 1453 | |
| 1454 | shctx_unlock(shctx_ptr(cache)); |
| 1455 | |
| 1456 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 1457 | si_rx_room_blk(si); |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1458 | return 0; |
| 1459 | } |
| 1460 | } |
| 1461 | |
| 1462 | } |
| 1463 | |
| 1464 | return 1; |
| 1465 | |
| 1466 | } |
| 1467 | |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 1468 | /* Declare the filter parser for "cache" keyword */ |
| 1469 | static struct flt_kw_list filter_kws = { "CACHE", { }, { |
| 1470 | { "cache", parse_cache_flt, NULL }, |
| 1471 | { NULL, NULL, NULL }, |
| 1472 | } |
| 1473 | }; |
| 1474 | |
| 1475 | INITCALL1(STG_REGISTER, flt_register_keywords, &filter_kws); |
| 1476 | |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1477 | static struct cli_kw_list cli_kws = {{},{ |
William Lallemand | e899af8 | 2017-11-22 16:41:26 +0100 | [diff] [blame] | 1478 | { { "show", "cache", NULL }, "show cache : show cache status", cli_parse_show_cache, cli_io_handler_show_cache, NULL, NULL }, |
| 1479 | {{},} |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1480 | }}; |
| 1481 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1482 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 1483 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1484 | static struct action_kw_list http_res_actions = { |
| 1485 | .kw = { |
| 1486 | { "cache-store", parse_cache_store }, |
| 1487 | { NULL, NULL } |
| 1488 | } |
| 1489 | }; |
| 1490 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1491 | INITCALL1(STG_REGISTER, http_res_keywords_register, &http_res_actions); |
| 1492 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1493 | static struct action_kw_list http_req_actions = { |
| 1494 | .kw = { |
| 1495 | { "cache-use", parse_cache_use }, |
| 1496 | { NULL, NULL } |
| 1497 | } |
| 1498 | }; |
| 1499 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 1500 | INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions); |
| 1501 | |
Willy Tarreau | 2231b63 | 2019-03-29 18:26:52 +0100 | [diff] [blame] | 1502 | struct applet http_cache_applet = { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1503 | .obj_type = OBJ_TYPE_APPLET, |
| 1504 | .name = "<CACHE>", /* used for logging */ |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1505 | .fct = http_cache_io_handler, |
William Lallemand | ecb73b1 | 2017-11-24 14:33:55 +0100 | [diff] [blame] | 1506 | .release = http_cache_applet_release, |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1507 | }; |
| 1508 | |
Willy Tarreau | e655251 | 2018-11-26 11:33:13 +0100 | [diff] [blame] | 1509 | /* config parsers for this section */ |
| 1510 | REGISTER_CONFIG_SECTION("cache", cfg_parse_cache, cfg_post_parse_section_cache); |