blob: e390b2168200336d3a0bf9b93a9258c12b8694c9 [file] [log] [blame]
William Lallemand41db4602017-10-30 11:15:51 +01001/*
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 Lallemand41db4602017-10-30 11:15:51 +010013#include <eb32tree.h>
William Lallemandf528fff2017-11-23 19:43:17 +010014#include <import/sha1.h>
William Lallemand41db4602017-10-30 11:15:51 +010015
William Lallemand75d93292017-11-21 20:01:24 +010016#include <types/action.h>
William Lallemand1f49a362017-11-21 20:01:26 +010017#include <types/cli.h>
William Lallemand75d93292017-11-21 20:01:24 +010018#include <types/filters.h>
19#include <types/proxy.h>
20#include <types/shctx.h>
21
William Lallemand41db4602017-10-30 11:15:51 +010022#include <proto/channel.h>
William Lallemand1f49a362017-11-21 20:01:26 +010023#include <proto/cli.h>
William Lallemand41db4602017-10-30 11:15:51 +010024#include <proto/proxy.h>
25#include <proto/hdr_idx.h>
Christopher Faulet54a8d5a2018-12-07 12:21:11 +010026#include <proto/http_htx.h>
William Lallemand41db4602017-10-30 11:15:51 +010027#include <proto/filters.h>
Willy Tarreau61c112a2018-10-02 16:43:32 +020028#include <proto/http_rules.h>
William Lallemand41db4602017-10-30 11:15:51 +010029#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 Lallemand41db4602017-10-30 11:15:51 +010035
36#include <common/cfgparse.h>
37#include <common/hash.h>
Willy Tarreaub96b77e2018-12-11 10:22:41 +010038#include <common/htx.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010039#include <common/initcall.h>
William Lallemand41db4602017-10-30 11:15:51 +010040
41/* flt_cache_store */
Christopher Faulet1f672c52018-12-03 14:30:41 +010042#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 Lallemand41db4602017-10-30 11:15:51 +010045
Christopher Faulet27d93c32018-12-15 22:32:02 +010046#define CACHE_FLT_F_IMPLICIT_DECL 0x00000001 /* The cache filtre was implicitly declared (ie without
Christopher Faulet99a17a22018-12-11 09:18:27 +010047 * the filter keyword) */
Christopher Fauletafd819c2018-12-11 08:57:45 +010048
Christopher Fauletf4a4ef72018-12-07 17:39:53 +010049const char *cache_store_flt_id = "cache store filter";
William Lallemand41db4602017-10-30 11:15:51 +010050
Willy Tarreau2231b632019-03-29 18:26:52 +010051extern struct applet http_cache_applet;
William Lallemand41db4602017-10-30 11:15:51 +010052
53struct flt_ops cache_ops;
54
55struct cache {
Willy Tarreaufd5efb52017-11-26 08:54:31 +010056 struct list list; /* cache linked list */
William Lallemand41db4602017-10-30 11:15:51 +010057 struct eb_root entries; /* head of cache entries based on keys */
Willy Tarreaufd5efb52017-11-26 08:54:31 +010058 unsigned int maxage; /* max-age */
59 unsigned int maxblocks;
Frédéric Lécaille4eba5442018-10-25 20:29:31 +020060 unsigned int maxobjsz; /* max-object-size (in bytes) */
Willy Tarreaufd5efb52017-11-26 08:54:31 +010061 char id[33]; /* cache name */
Christopher Faulet1f672c52018-12-03 14:30:41 +010062 unsigned int flags; /* CACHE_F_* */
William Lallemand41db4602017-10-30 11:15:51 +010063};
64
Christopher Faulet95220e22018-12-07 17:34:39 +010065/* cache config for filters */
66struct 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 Lallemand41db4602017-10-30 11:15:51 +010074/*
75 * cache ctx for filters
76 */
77struct cache_st {
Christopher Faulet54a8d5a2018-12-07 12:21:11 +010078 int hdrs_len; // field used in legacy mode only
William Lallemand41db4602017-10-30 11:15:51 +010079 struct shared_block *first_block;
80};
81
82struct cache_entry {
83 unsigned int latest_validation; /* latest validation date */
84 unsigned int expire; /* expiration date */
Frédéric Lécaillee7a770c2018-10-26 14:29:22 +020085 unsigned int age; /* Origin server "Age" header value */
Christopher Faulet54a8d5a2018-12-07 12:21:11 +010086 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 Lallemand41db4602017-10-30 11:15:51 +010091 struct eb32_node eb; /* ebtree node used to hold the cache object */
William Lallemandf528fff2017-11-23 19:43:17 +010092 char hash[20];
William Lallemand41db4602017-10-30 11:15:51 +010093 unsigned char data[0];
94};
95
96#define CACHE_BLOCKSIZE 1024
Willy Tarreau96062a12018-11-11 14:00:28 +010097#define CACHE_ENTRY_MAX_AGE 2147483648U
William Lallemand41db4602017-10-30 11:15:51 +010098
99static struct list caches = LIST_HEAD_INIT(caches);
100static struct cache *tmp_cache_config = NULL;
101
Willy Tarreau8ceae722018-11-26 11:58:30 +0100102DECLARE_STATIC_POOL(pool_head_cache_st, "cache_st", sizeof(struct cache_st));
103
William Lallemandf528fff2017-11-23 19:43:17 +0100104struct cache_entry *entry_exist(struct cache *cache, char *hash)
William Lallemand4da3f8a2017-10-31 14:33:34 +0100105{
106 struct eb32_node *node;
107 struct cache_entry *entry;
108
William Lallemandf528fff2017-11-23 19:43:17 +0100109 node = eb32_lookup(&cache->entries, (*(unsigned int *)hash));
William Lallemand4da3f8a2017-10-31 14:33:34 +0100110 if (!node)
111 return NULL;
112
113 entry = eb32_entry(node, struct cache_entry, eb);
William Lallemandf528fff2017-11-23 19:43:17 +0100114
115 /* if that's not the right node */
116 if (memcmp(entry->hash, hash, sizeof(entry->hash)))
117 return NULL;
118
William Lallemand08727662017-11-21 20:01:27 +0100119 if (entry->expire > now.tv_sec) {
William Lallemand4da3f8a2017-10-31 14:33:34 +0100120 return entry;
William Lallemand08727662017-11-21 20:01:27 +0100121 } else {
William Lallemand4da3f8a2017-10-31 14:33:34 +0100122 eb32_delete(node);
William Lallemand08727662017-11-21 20:01:27 +0100123 entry->eb.key = 0;
124 }
William Lallemand4da3f8a2017-10-31 14:33:34 +0100125 return NULL;
126
127}
128
129static 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 Lallemand77c11972017-10-31 20:43:01 +0100134static 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 Lallemand41db4602017-10-30 11:15:51 +0100141static int
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100142cache_store_init(struct proxy *px, struct flt_conf *fconf)
William Lallemand41db4602017-10-30 11:15:51 +0100143{
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100144 fconf->flags |= FLT_CFG_FL_HTX;
William Lallemand41db4602017-10-30 11:15:51 +0100145 return 0;
146}
147
Christopher Faulet95220e22018-12-07 17:34:39 +0100148static void
149cache_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 Lallemand4da3f8a2017-10-31 14:33:34 +0100156static int
Christopher Faulet95220e22018-12-07 17:34:39 +0100157cache_store_check(struct proxy *px, struct flt_conf *fconf)
158{
159 struct cache_flt_conf *cconf = fconf->conf;
Christopher Fauletafd819c2018-12-11 08:57:45 +0100160 struct flt_conf *f;
Christopher Faulet95220e22018-12-07 17:34:39 +0100161 struct cache *cache;
Christopher Faulet27d93c32018-12-15 22:32:02 +0100162 int comp = 0;
Christopher Faulet95220e22018-12-07 17:34:39 +0100163
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 Fauletafd819c2018-12-11 08:57:45 +0100183 /* 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 Faulet27d93c32018-12-15 22:32:02 +0100187 * 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 Fauletafd819c2018-12-11 08:57:45 +0100190 list_for_each_entry(f, &px->filter_configs, list) {
191 if (f == fconf) {
Christopher Faulet27d93c32018-12-15 22:32:02 +0100192 /* 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 Faulet99a17a22018-12-11 09:18:27 +0100198 }
Christopher Faulet27d93c32018-12-15 22:32:02 +0100199 else if (f->id == http_comp_flt_id) {
Christopher Fauletafd819c2018-12-11 08:57:45 +0100200 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 Faulet27d93c32018-12-15 22:32:02 +0100206 comp = 1;
Christopher Fauletafd819c2018-12-11 08:57:45 +0100207 }
Christopher Faulet27d93c32018-12-15 22:32:02 +0100208 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 Fauletafd819c2018-12-11 08:57:45 +0100217 }
Christopher Faulet95220e22018-12-07 17:34:39 +0100218 return 0;
219}
220
221static int
William Lallemand4da3f8a2017-10-31 14:33:34 +0100222cache_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 Tarreaubafbe012017-11-24 17:34:44 +0100230 st = pool_alloc_dirty(pool_head_cache_st);
William Lallemand4da3f8a2017-10-31 14:33:34 +0100231 if (st == NULL)
232 return -1;
233
234 st->hdrs_len = 0;
235 st->first_block = NULL;
236 filter->ctx = st;
Christopher Faulet839791a2019-01-07 16:12:07 +0100237
238 /* Register post-analyzer on AN_RES_WAIT_HTTP */
239 filter->post_analyzers |= AN_RES_WAIT_HTTP;
William Lallemand4da3f8a2017-10-31 14:33:34 +0100240 }
241
William Lallemand4da3f8a2017-10-31 14:33:34 +0100242 return 1;
243}
244
245static int
William Lallemand49dc0482017-11-24 14:33:54 +0100246cache_store_chn_end_analyze(struct stream *s, struct filter *filter, struct channel *chn)
247{
248 struct cache_st *st = filter->ctx;
Christopher Faulet95220e22018-12-07 17:34:39 +0100249 struct cache_flt_conf *cconf = FLT_CONF(filter);
250 struct cache *cache = cconf->c.cache;
William Lallemand49dc0482017-11-24 14:33:54 +0100251 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 Tarreaubafbe012017-11-24 17:34:44 +0100267 pool_free(pool_head_cache_st, st);
William Lallemand49dc0482017-11-24 14:33:54 +0100268 filter->ctx = NULL;
269 }
270
271 return 1;
272}
273
Christopher Faulet839791a2019-01-07 16:12:07 +0100274static int
275cache_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 Lallemand49dc0482017-11-24 14:33:54 +0100299
300static int
William Lallemand4da3f8a2017-10-31 14:33:34 +0100301cache_store_http_headers(struct stream *s, struct filter *filter, struct http_msg *msg)
302{
303 struct cache_st *st = filter->ctx;
304
William Lallemand4da3f8a2017-10-31 14:33:34 +0100305 if (!(msg->chn->flags & CF_ISRESP) || !st)
306 return 1;
307
Christopher Faulet67658c92018-12-06 21:59:39 +0100308 if (st->first_block) {
309 register_data_filter(s, msg->chn, filter);
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100310 if (!IS_HTX_STRM(s))
311 st->hdrs_len = msg->sov;
Christopher Faulet67658c92018-12-06 21:59:39 +0100312 }
William Lallemand4da3f8a2017-10-31 14:33:34 +0100313 return 1;
314}
315
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +0200316static 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 Lallemand4da3f8a2017-10-31 14:33:34 +0100330static int
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100331cache_store_http_payload(struct stream *s, struct filter *filter, struct http_msg *msg,
332 unsigned int offset, unsigned int len)
333{
Christopher Faulet95220e22018-12-07 17:34:39 +0100334 struct cache_flt_conf *cconf = FLT_CONF(filter);
335 struct shared_context *shctx = shctx_ptr(cconf->c.cache);
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100336 struct cache_st *st = filter->ctx;
337 struct htx *htx = htxbuf(&msg->chn->buf);
338 struct htx_blk *blk;
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100339 struct cache_entry *object;
340 int ret, to_forward = 0;
341
342 if (!len)
343 return len;
344
345 if (!st->first_block) {
346 unregister_data_filter(s, msg->chn, filter);
347 return len;
348 }
349 object = (struct cache_entry *)st->first_block->data;
350
Christopher Fauletee847d42019-05-23 11:55:33 +0200351 for (blk = htx_get_first_blk(htx); blk && len; blk = htx_get_next_blk(htx, blk)) {
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100352 struct shared_block *fb;
353 enum htx_blk_type type = htx_get_blk_type(blk);
354 uint32_t sz = htx_get_blksz(blk);
355 struct ist v;
356
Christopher Fauletee847d42019-05-23 11:55:33 +0200357 if (offset >= sz) {
358 offset -= sz;
359 continue;
360 }
361
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100362 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;
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100403 }
404
405 return to_forward;
406
407 no_cache:
408 disable_cache_entry(st, filter, shctx);
409 unregister_data_filter(s, msg->chn, filter);
410 return len;
411}
412
413static int
William Lallemand4da3f8a2017-10-31 14:33:34 +0100414cache_store_http_forward_data(struct stream *s, struct filter *filter,
415 struct http_msg *msg, unsigned int len)
416{
417 struct cache_st *st = filter->ctx;
Christopher Faulet95220e22018-12-07 17:34:39 +0100418 struct cache_flt_conf *cconf = FLT_CONF(filter);
419 struct shared_context *shctx = shctx_ptr(cconf->c.cache);
William Lallemand4da3f8a2017-10-31 14:33:34 +0100420 int ret;
421
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +0200422 ret = 0;
423
William Lallemand4da3f8a2017-10-31 14:33:34 +0100424 /*
425 * We need to skip the HTTP headers first, because we saved them in the
426 * http-response action.
427 */
Christopher Faulet67658c92018-12-06 21:59:39 +0100428 if (!(msg->chn->flags & CF_ISRESP) || !st) {
429 /* should never happen */
430 unregister_data_filter(s, msg->chn, filter);
William Lallemand4da3f8a2017-10-31 14:33:34 +0100431 return len;
Christopher Faulet67658c92018-12-06 21:59:39 +0100432 }
William Lallemand4da3f8a2017-10-31 14:33:34 +0100433
434 if (!len) {
Joseph Herlant8dae5b32018-11-15 14:07:53 -0800435 /* Nothing to forward */
William Lallemand4da3f8a2017-10-31 14:33:34 +0100436 ret = len;
437 }
William Lallemand10935bc2017-11-14 14:39:23 +0100438 else if (st->hdrs_len >= len) {
William Lallemand4da3f8a2017-10-31 14:33:34 +0100439 /* Forward part of headers */
440 ret = len;
441 st->hdrs_len -= len;
442 }
William Lallemand4da3f8a2017-10-31 14:33:34 +0100443 else {
William Lallemand10935bc2017-11-14 14:39:23 +0100444 /* Forward data */
Christopher Faulet67658c92018-12-06 21:59:39 +0100445 if (st->first_block) {
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +0200446 int to_append, append;
447 struct shared_block *fb;
448
449 to_append = MIN(ci_contig_data(msg->chn), len - st->hdrs_len);
450
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +0200451 shctx_lock(shctx);
452 fb = shctx_row_reserve_hot(shctx, st->first_block, to_append);
453 if (!fb) {
Olivier Houchardcd2867a2017-11-01 13:58:21 +0100454 shctx_unlock(shctx);
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +0200455 disable_cache_entry(st, filter, shctx);
Christopher Faulet67658c92018-12-06 21:59:39 +0100456 unregister_data_filter(s, msg->chn, filter);
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +0200457 return len;
William Lallemand4da3f8a2017-10-31 14:33:34 +0100458 }
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +0200459 shctx_unlock(shctx);
460
Frédéric Lécaillea2219f52018-10-22 16:59:13 +0200461 /* Skip remaining headers to fill the cache */
462 c_adv(msg->chn, st->hdrs_len);
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +0200463 append = shctx_row_data_append(shctx, st->first_block, st->first_block->last_append,
464 (unsigned char *)ci_head(msg->chn), to_append);
465 ret = st->hdrs_len + to_append - append;
466 /* Rewind the buffer to forward all data */
467 c_rew(msg->chn, st->hdrs_len);
468 st->hdrs_len = 0;
Christopher Faulet67658c92018-12-06 21:59:39 +0100469 if (ret < 0) {
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +0200470 disable_cache_entry(st, filter, shctx);
Christopher Faulet67658c92018-12-06 21:59:39 +0100471 unregister_data_filter(s, msg->chn, filter);
472 }
William Lallemand4da3f8a2017-10-31 14:33:34 +0100473 }
Christopher Faulet67658c92018-12-06 21:59:39 +0100474 else {
475 /* should never happen */
476 unregister_data_filter(s, msg->chn, filter);
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +0200477 ret = len;
Christopher Faulet67658c92018-12-06 21:59:39 +0100478 }
William Lallemand4da3f8a2017-10-31 14:33:34 +0100479 }
480
481 if ((ret != len) ||
482 (FLT_NXT(filter, msg->chn) != FLT_FWD(filter, msg->chn) + ret))
483 task_wakeup(s->task, TASK_WOKEN_MSG);
484
485 return ret;
486}
487
488static int
489cache_store_http_end(struct stream *s, struct filter *filter,
490 struct http_msg *msg)
491{
492 struct cache_st *st = filter->ctx;
Christopher Faulet95220e22018-12-07 17:34:39 +0100493 struct cache_flt_conf *cconf = FLT_CONF(filter);
494 struct cache *cache = cconf->c.cache;
William Lallemand4da3f8a2017-10-31 14:33:34 +0100495 struct shared_context *shctx = shctx_ptr(cache);
496 struct cache_entry *object;
497
498 if (!(msg->chn->flags & CF_ISRESP))
499 return 1;
500
501 if (st && st->first_block) {
502
503 object = (struct cache_entry *)st->first_block->data;
504
505 /* does not need to test if the insertion worked, if it
506 * doesn't, the blocks will be reused anyway */
507
508 shctx_lock(shctx);
William Lallemand08727662017-11-21 20:01:27 +0100509 if (eb32_insert(&cache->entries, &object->eb) != &object->eb) {
510 object->eb.key = 0;
511 }
William Lallemand4da3f8a2017-10-31 14:33:34 +0100512 /* remove from the hotlist */
William Lallemand4da3f8a2017-10-31 14:33:34 +0100513 shctx_row_dec_hot(shctx, st->first_block);
514 shctx_unlock(shctx);
515
516 }
517 if (st) {
Willy Tarreaubafbe012017-11-24 17:34:44 +0100518 pool_free(pool_head_cache_st, st);
William Lallemand4da3f8a2017-10-31 14:33:34 +0100519 filter->ctx = NULL;
520 }
521
522 return 1;
523}
524
525 /*
526 * This intends to be used when checking HTTP headers for some
527 * word=value directive. Return a pointer to the first character of value, if
528 * the word was not found or if there wasn't any value assigned ot it return NULL
529 */
530char *directive_value(const char *sample, int slen, const char *word, int wlen)
531{
532 int st = 0;
533
534 if (slen < wlen)
535 return 0;
536
537 while (wlen) {
538 char c = *sample ^ *word;
539 if (c && c != ('A' ^ 'a'))
540 return NULL;
541 sample++;
542 word++;
543 slen--;
544 wlen--;
545 }
546
547 while (slen) {
548 if (st == 0) {
549 if (*sample != '=')
550 return NULL;
551 sample++;
552 slen--;
553 st = 1;
554 continue;
555 } else {
556 return (char *)sample;
557 }
558 }
559
560 return NULL;
561}
562
563/*
564 * Return the maxage in seconds of an HTTP response.
565 * Compute the maxage using either:
566 * - the assigned max-age of the cache
567 * - the s-maxage directive
568 * - the max-age directive
569 * - (Expires - Data) headers
570 * - the default-max-age of the cache
571 *
572 */
William Lallemand49b44532017-11-24 18:53:43 +0100573int http_calc_maxage(struct stream *s, struct cache *cache)
William Lallemand4da3f8a2017-10-31 14:33:34 +0100574{
575 struct http_txn *txn = s->txn;
576 struct hdr_ctx ctx;
577
578 int smaxage = -1;
579 int maxage = -1;
580
581
William Lallemand4da3f8a2017-10-31 14:33:34 +0100582 ctx.idx = 0;
583
584 /* loop on the Cache-Control values */
Willy Tarreau178b9872018-06-19 07:13:36 +0200585 while (http_find_header2("Cache-Control", 13, ci_head(&s->res), &txn->hdr_idx, &ctx)) {
William Lallemand4da3f8a2017-10-31 14:33:34 +0100586 char *directive = ctx.line + ctx.val;
587 char *value;
588
589 value = directive_value(directive, ctx.vlen, "s-maxage", 8);
590 if (value) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200591 struct buffer *chk = get_trash_chunk();
William Lallemand4da3f8a2017-10-31 14:33:34 +0100592
593 chunk_strncat(chk, value, ctx.vlen - 8 + 1);
594 chunk_strncat(chk, "", 1);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200595 maxage = atoi(chk->area);
William Lallemand4da3f8a2017-10-31 14:33:34 +0100596 }
597
598 value = directive_value(ctx.line + ctx.val, ctx.vlen, "max-age", 7);
599 if (value) {
Willy Tarreau83061a82018-07-13 11:56:34 +0200600 struct buffer *chk = get_trash_chunk();
William Lallemand4da3f8a2017-10-31 14:33:34 +0100601
602 chunk_strncat(chk, value, ctx.vlen - 7 + 1);
603 chunk_strncat(chk, "", 1);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200604 smaxage = atoi(chk->area);
William Lallemand4da3f8a2017-10-31 14:33:34 +0100605 }
606 }
607
608 /* TODO: Expires - Data */
609
610
611 if (smaxage > 0)
William Lallemand49b44532017-11-24 18:53:43 +0100612 return MIN(smaxage, cache->maxage);
William Lallemand4da3f8a2017-10-31 14:33:34 +0100613
614 if (maxage > 0)
William Lallemand49b44532017-11-24 18:53:43 +0100615 return MIN(maxage, cache->maxage);
William Lallemand4da3f8a2017-10-31 14:33:34 +0100616
William Lallemand49b44532017-11-24 18:53:43 +0100617 return cache->maxage;
William Lallemand4da3f8a2017-10-31 14:33:34 +0100618
619}
620
621
William Lallemanda400a3a2017-11-20 19:13:12 +0100622static void cache_free_blocks(struct shared_block *first, struct shared_block *block)
623{
Willy Tarreau5bd37fa2018-04-04 20:17:03 +0200624 struct cache_entry *object = (struct cache_entry *)block->data;
625
626 if (first == block && object->eb.key)
627 eb32_delete(&object->eb);
628 object->eb.key = 0;
William Lallemanda400a3a2017-11-20 19:13:12 +0100629}
630
William Lallemand41db4602017-10-30 11:15:51 +0100631/*
632 * This fonction will store the headers of the response in a buffer and then
633 * register a filter to store the data
634 */
635enum act_return http_action_store_cache(struct act_rule *rule, struct proxy *px,
636 struct session *sess, struct stream *s, int flags)
637{
Frédéric Lécaillee7a770c2018-10-26 14:29:22 +0200638 unsigned int age;
639 long long hdr_age;
William Lallemand4da3f8a2017-10-31 14:33:34 +0100640 struct http_txn *txn = s->txn;
641 struct http_msg *msg = &txn->rsp;
642 struct filter *filter;
William Lallemand4da3f8a2017-10-31 14:33:34 +0100643 struct shared_block *first = NULL;
Christopher Faulet95220e22018-12-07 17:34:39 +0100644 struct cache_flt_conf *cconf = rule->arg.act.p[0];
645 struct shared_context *shctx = shctx_ptr(cconf->c.cache);
Christopher Faulet839791a2019-01-07 16:12:07 +0100646 struct cache_st *cache_ctx = NULL;
647 struct cache_entry *object, *old;
Willy Tarreauc9036c02019-01-11 19:38:25 +0100648 unsigned int key = *(unsigned int *)txn->cache_hash;
William Lallemand4da3f8a2017-10-31 14:33:34 +0100649
William Lallemand4da3f8a2017-10-31 14:33:34 +0100650 /* Don't cache if the response came from a cache */
651 if ((obj_type(s->target) == OBJ_TYPE_APPLET) &&
652 s->target == &http_cache_applet.obj_type) {
653 goto out;
654 }
655
656 /* cache only HTTP/1.1 */
657 if (!(txn->req.flags & HTTP_MSGF_VER_11))
658 goto out;
659
660 /* cache only GET method */
661 if (txn->meth != HTTP_METH_GET)
662 goto out;
663
Willy Tarreauc9036c02019-01-11 19:38:25 +0100664 /* cache key was not computed */
665 if (!key)
666 goto out;
667
William Lallemand4da3f8a2017-10-31 14:33:34 +0100668 /* cache only 200 status code */
669 if (txn->status != 200)
670 goto out;
671
Christopher Faulet839791a2019-01-07 16:12:07 +0100672 /* Find the corresponding filter instance for the current stream */
673 list_for_each_entry(filter, &s->strm_flt.filters, list) {
674 if (FLT_ID(filter) == cache_store_flt_id && FLT_CONF(filter) == cconf) {
675 /* No filter ctx, don't cache anything */
676 if (!filter->ctx)
677 goto out;
678 cache_ctx = filter->ctx;
679 break;
680 }
681 }
682
683 /* from there, cache_ctx is always defined */
684
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100685 if (IS_HTX_STRM(s)) {
686 struct htx *htx = htxbuf(&s->res.buf);
687 struct http_hdr_ctx ctx;
688 int32_t pos;
William Lallemand4da3f8a2017-10-31 14:33:34 +0100689
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100690 /* Do not cache too big objects. */
691 if ((msg->flags & HTTP_MSGF_CNT_LEN) && shctx->max_obj_size > 0 &&
692 htx->data + htx->extra > shctx->max_obj_size)
693 goto out;
William Lallemand4da3f8a2017-10-31 14:33:34 +0100694
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100695 /* Does not manage Vary at the moment. We will need a secondary key later for that */
696 ctx.blk = NULL;
697 if (http_find_header(htx, ist("Vary"), &ctx, 0))
698 goto out;
William Lallemand4da3f8a2017-10-31 14:33:34 +0100699
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100700 htx_check_response_for_cacheability(s, &s->res);
701
702 if (!(txn->flags & TX_CACHEABLE) || !(txn->flags & TX_CACHE_COOK))
703 goto out;
704
705 age = 0;
706 ctx.blk = NULL;
707 if (http_find_header(htx, ist("Age"), &ctx, 0)) {
708 if (!strl2llrc(ctx.value.ptr, ctx.value.len, &hdr_age) && hdr_age > 0) {
709 if (unlikely(hdr_age > CACHE_ENTRY_MAX_AGE))
710 hdr_age = CACHE_ENTRY_MAX_AGE;
711 age = hdr_age;
712 }
713 http_remove_header(htx, &ctx);
714 }
715
716 chunk_reset(&trash);
Christopher Fauleta3f15502019-05-13 15:27:23 +0200717 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100718 struct htx_blk *blk = htx_get_blk(htx, pos);
Christopher Fauletafd819c2018-12-11 08:57:45 +0100719 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100720 uint32_t sz = htx_get_blksz(blk);
721
722 chunk_memcat(&trash, (char *)&blk->info, sizeof(blk->info));
Christopher Fauletafd819c2018-12-11 08:57:45 +0100723 if (type == HTX_BLK_EOH)
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100724 break;
725 chunk_memcat(&trash, htx_get_blk_ptr(htx, blk), sz);
726 }
727 }
728 else {
729 struct hdr_ctx ctx;
730
731 /* Do not cache too big objects. */
732 if ((msg->flags & HTTP_MSGF_CNT_LEN) && shctx->max_obj_size > 0 &&
733 msg->sov + msg->body_len > shctx->max_obj_size)
734 goto out;
735
736 /* Does not manage Vary at the moment. We will need a secondary key later for that */
737 ctx.idx = 0;
738 if (http_find_header2("Vary", 4, ci_head(txn->rsp.chn), &txn->hdr_idx, &ctx))
739 goto out;
740
741 check_response_for_cacheability(s, &s->res);
742
743 if (!(txn->flags & TX_CACHEABLE) || !(txn->flags & TX_CACHE_COOK))
744 goto out;
745
746 age = 0;
747 ctx.idx = 0;
748 if (http_find_header2("Age", 3, ci_head(txn->rsp.chn), &txn->hdr_idx, &ctx)) {
749 if (!strl2llrc(ctx.line + ctx.val, ctx.vlen, &hdr_age) && hdr_age > 0) {
750 if (unlikely(hdr_age > CACHE_ENTRY_MAX_AGE))
751 hdr_age = CACHE_ENTRY_MAX_AGE;
752 age = hdr_age;
753 }
754 http_remove_header2(msg, &txn->hdr_idx, &ctx);
Frédéric Lécaillee7a770c2018-10-26 14:29:22 +0200755 }
Frédéric Lécaillee7a770c2018-10-26 14:29:22 +0200756 }
757
William Lallemand4da3f8a2017-10-31 14:33:34 +0100758 shctx_lock(shctx);
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100759 if (IS_HTX_STRM(s))
760 first = shctx_row_reserve_hot(shctx, NULL, sizeof(struct cache_entry) + trash.data);
761 else
762 first = shctx_row_reserve_hot(shctx, NULL, sizeof(struct cache_entry) + msg->sov);
William Lallemand4da3f8a2017-10-31 14:33:34 +0100763 if (!first) {
764 shctx_unlock(shctx);
765 goto out;
766 }
767 shctx_unlock(shctx);
768
Willy Tarreau1093a452018-04-06 19:02:25 +0200769 /* the received memory is not initialized, we need at least to mark
770 * the object as not indexed yet.
771 */
772 object = (struct cache_entry *)first->data;
773 object->eb.node.leaf_p = NULL;
774 object->eb.key = 0;
Frédéric Lécaillee7a770c2018-10-26 14:29:22 +0200775 object->age = age;
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100776 if (IS_HTX_STRM(s)) {
777 object->hdrs_len = trash.data;
778 object->data_len = 0;
779 }
780 else
781 object->eoh = msg->eoh;
Willy Tarreau1093a452018-04-06 19:02:25 +0200782
William Lallemand4da3f8a2017-10-31 14:33:34 +0100783 /* reserve space for the cache_entry structure */
784 first->len = sizeof(struct cache_entry);
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +0200785 first->last_append = NULL;
William Lallemand4da3f8a2017-10-31 14:33:34 +0100786 /* cache the headers in a http action because it allows to chose what
787 * to cache, for example you might want to cache a response before
788 * modifying some HTTP headers, or on the contrary after modifying
789 * those headers.
790 */
791
792 /* does not need to be locked because it's in the "hot" list,
793 * copy the headers */
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100794 if (IS_HTX_STRM(s)) {
795 if (shctx_row_data_append(shctx, first, NULL, (unsigned char *)trash.area, trash.data) < 0)
796 goto out;
797 }
798 else {
799 if (shctx_row_data_append(shctx, first, NULL, (unsigned char *)ci_head(&s->res), msg->sov) < 0)
800 goto out;
801 }
William Lallemand4da3f8a2017-10-31 14:33:34 +0100802
803 /* register the buffer in the filter ctx for filling it with data*/
Christopher Faulet839791a2019-01-07 16:12:07 +0100804 if (cache_ctx) {
805 cache_ctx->first_block = first;
William Lallemand4da3f8a2017-10-31 14:33:34 +0100806
Willy Tarreauc9036c02019-01-11 19:38:25 +0100807 object->eb.key = key;
808
Christopher Faulet839791a2019-01-07 16:12:07 +0100809 memcpy(object->hash, txn->cache_hash, sizeof(object->hash));
810 /* Insert the node later on caching success */
William Lallemand4da3f8a2017-10-31 14:33:34 +0100811
Christopher Faulet839791a2019-01-07 16:12:07 +0100812 shctx_lock(shctx);
Christopher Faulet95220e22018-12-07 17:34:39 +0100813
Christopher Faulet839791a2019-01-07 16:12:07 +0100814 old = entry_exist(cconf->c.cache, txn->cache_hash);
815 if (old) {
816 eb32_delete(&old->eb);
817 old->eb.key = 0;
William Lallemand4da3f8a2017-10-31 14:33:34 +0100818 }
Christopher Faulet839791a2019-01-07 16:12:07 +0100819 shctx_unlock(shctx);
820
821 /* store latest value and expiration time */
822 object->latest_validation = now.tv_sec;
823 object->expire = now.tv_sec + http_calc_maxage(s, cconf->c.cache);
824 return ACT_RET_CONT;
William Lallemand4da3f8a2017-10-31 14:33:34 +0100825 }
826
827out:
828 /* if does not cache */
829 if (first) {
830 shctx_lock(shctx);
William Lallemand08727662017-11-21 20:01:27 +0100831 first->len = 0;
832 object->eb.key = 0;
William Lallemand4da3f8a2017-10-31 14:33:34 +0100833 shctx_row_dec_hot(shctx, first);
834 shctx_unlock(shctx);
835 }
836
William Lallemand41db4602017-10-30 11:15:51 +0100837 return ACT_RET_CONT;
838}
839
Frédéric Lécaillee7a770c2018-10-26 14:29:22 +0200840#define HTTP_CACHE_INIT 0 /* Initial state. */
841#define HTTP_CACHE_HEADER 1 /* Cache entry headers forwarded. */
842#define HTTP_CACHE_FWD 2 /* Cache entry completely forwarded. */
843#define HTTP_CACHE_END 3 /* Cache entry treatment terminated. */
William Lallemand77c11972017-10-31 20:43:01 +0100844
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100845#define HTX_CACHE_INIT 0 /* Initial state. */
846#define HTX_CACHE_HEADER 1 /* Cache entry headers forwarding */
847#define HTX_CACHE_DATA 2 /* Cache entry data forwarding */
848#define HTX_CACHE_EOD 3 /* Cache entry data forwarded. DATA->TLR transition */
849#define HTX_CACHE_TLR 4 /* Cache entry trailers forwarding */
850#define HTX_CACHE_EOM 5 /* Cache entry completely forwarded. Finish the HTX message */
851#define HTX_CACHE_END 6 /* Cache entry treatment terminated */
852
William Lallemandecb73b12017-11-24 14:33:55 +0100853static void http_cache_applet_release(struct appctx *appctx)
854{
Christopher Faulet95220e22018-12-07 17:34:39 +0100855 struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0];
William Lallemandecb73b12017-11-24 14:33:55 +0100856 struct cache_entry *cache_ptr = appctx->ctx.cache.entry;
Christopher Faulet95220e22018-12-07 17:34:39 +0100857 struct cache *cache = cconf->c.cache;
William Lallemandecb73b12017-11-24 14:33:55 +0100858 struct shared_block *first = block_ptr(cache_ptr);
859
860 shctx_lock(shctx_ptr(cache));
861 shctx_row_dec_hot(shctx_ptr(cache), first);
862 shctx_unlock(shctx_ptr(cache));
863}
864
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100865static size_t htx_cache_dump_headers(struct appctx *appctx, struct htx *htx)
866{
Christopher Faulet95220e22018-12-07 17:34:39 +0100867 struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0];
868 struct shared_context *shctx = shctx_ptr(cconf->c.cache);
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100869 struct cache_entry *cache_ptr = appctx->ctx.cache.entry;
870 struct shared_block *shblk = appctx->ctx.cache.next;
871 struct buffer *tmp = get_trash_chunk();
872 char *end;
873 unsigned int offset, len, age;
874
875 offset = appctx->ctx.cache.offset;
876 len = cache_ptr->hdrs_len;
877
878 /* 1. Retrieve all headers from the cache */
879 list_for_each_entry_from(shblk, &shctx->hot, list) {
880 int sz;
881
882 sz = MIN(len, shctx->block_size - offset);
883 if (!chunk_memcat(tmp, (const char *)shblk->data + offset, sz))
884 return 0;
885
886 offset += sz;
887 len -= sz;
888 if (!len)
889 break;
890 offset = 0;
891 }
892 appctx->ctx.cache.offset = offset;
893 appctx->ctx.cache.next = shblk;
894 appctx->ctx.cache.sent += b_data(tmp);
895
896 /* 2. push these headers in the HTX message */
897 offset = 0;
898 while (offset < b_data(tmp)) {
899 struct htx_blk *blk;
900 enum htx_blk_type type;
901 uint32_t info, sz;
902
903 /* Read the header's info */
904 memcpy((char *)&info, b_peek(tmp, offset), 4);
905 type = (info >> 28);
906 sz = ((type == HTX_BLK_HDR)
907 ? (info & 0xff) + ((info >> 8) & 0xfffff)
908 : info & 0xfffffff);
909
910 /* Create the block with the right type and the right size */
911 blk = htx_add_blk(htx, type, sz);
912 if (!blk)
913 return 0;
914
915 /* Copy info and data */
916 blk->info = info;
917 memcpy(htx_get_blk_ptr(htx, blk), b_peek(tmp, offset+4), sz);
918
919 /* next header */
920 offset += 4 + sz;
921 }
922
923 /* 3. Append "age" header */
924 chunk_reset(tmp);
925 age = MAX(0, (int)(now.tv_sec - cache_ptr->latest_validation)) + cache_ptr->age;
926 if (unlikely(age > CACHE_ENTRY_MAX_AGE))
927 age = CACHE_ENTRY_MAX_AGE;
928 end = ultoa_o(age, b_head(tmp), b_size(tmp));
929 b_set_data(tmp, end - b_head(tmp));
930
931 if (!http_add_header(htx, ist("Age"), ist2(b_head(tmp), b_data(tmp))))
932 return 0;
933
934 return htx->data;
935}
936
937static size_t htx_cache_dump_data(struct appctx *appctx, struct htx *htx,
938 enum htx_blk_type type, unsigned int len)
939{
Christopher Faulet95220e22018-12-07 17:34:39 +0100940 struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0];
941 struct shared_context *shctx = shctx_ptr(cconf->c.cache);
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100942 struct shared_block *shblk = appctx->ctx.cache.next;
Christopher Fauletcc156622019-01-07 14:07:29 +0100943 uint32_t max = channel_htx_recv_max(si_ic(appctx->owner), htx);
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100944 unsigned int offset;
945 size_t total = 0;
946
947 offset = appctx->ctx.cache.offset;
948 if (len > max)
949 len = max;
950 if (!len)
951 goto end;
952
953 list_for_each_entry_from(shblk, &shctx->hot, list) {
954 struct ist data;
955 int sz;
956
957 sz = MIN(len, shctx->block_size - offset);
958 data = ist2((const char *)shblk->data + offset, sz);
959 if (type == HTX_BLK_DATA) {
Willy Tarreau0a7ef022019-05-28 10:30:11 +0200960 sz = htx_add_data(htx, data);
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100961 }
962 else { /* HTX_BLK_TLR */
963 if (!htx_add_trailer(htx, data))
964 break;
965 }
966
967 offset += sz;
968 len -= sz;
969 total += sz;
Willy Tarreau0a7ef022019-05-28 10:30:11 +0200970 if (!len || sz < data.len)
Christopher Faulet54a8d5a2018-12-07 12:21:11 +0100971 break;
972 offset = 0;
973 }
974 appctx->ctx.cache.offset = offset;
975 appctx->ctx.cache.next = shblk;
976 appctx->ctx.cache.sent += total;
977
978 end:
979 return total;
980}
981static void htx_cache_io_handler(struct appctx *appctx)
982{
983 struct cache_entry *cache_ptr = appctx->ctx.cache.entry;
984 struct shared_block *first = block_ptr(cache_ptr);
985 struct stream_interface *si = appctx->owner;
986 struct channel *req = si_oc(si);
987 struct channel *res = si_ic(si);
988 struct htx *req_htx, *res_htx;
989 struct buffer *errmsg;
990 size_t ret, total = 0;
991
992 res_htx = htxbuf(&res->buf);
993
994 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
995 goto out;
996
997 /* Check if the input buffer is avalaible. */
998 if (!b_size(&res->buf)) {
999 si_rx_room_blk(si);
1000 goto out;
1001 }
1002
Willy Tarreauefef3232018-12-16 00:37:45 +01001003 if (res->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTW_NOW))
Willy Tarreau273e9642018-12-16 00:35:15 +01001004 appctx->st0 = HTX_CACHE_END;
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001005
1006 if (appctx->st0 == HTX_CACHE_INIT) {
1007 appctx->ctx.cache.next = block_ptr(cache_ptr);
1008 appctx->ctx.cache.offset = sizeof(*cache_ptr);
1009 appctx->ctx.cache.sent = 0;
1010 appctx->st0 = HTX_CACHE_HEADER;
1011 }
1012
1013 if (appctx->st0 == HTX_CACHE_HEADER) {
1014 /* Headers must be dump at once. Otherwise it is an error */
1015 ret = htx_cache_dump_headers(appctx, res_htx);
1016 if (!ret)
1017 goto error;
1018
1019 total += ret;
Christopher Fauletf0dd0372019-02-25 11:08:34 +01001020 if (si_strm(si)->txn->meth == HTTP_METH_HEAD) {
1021 /* Skip response body for HEAD requests */
1022 appctx->st0 = HTX_CACHE_EOM;
1023 }
1024 else if (cache_ptr->data_len)
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001025 appctx->st0 = HTX_CACHE_DATA;
1026 else if (first->len > sizeof(*cache_ptr) + appctx->ctx.cache.sent) {
1027 /* Headers have benn sent (hrds_len) and there is no data
1028 * (data_len == 0). So, all the remaining is the
1029 * trailers */
1030 appctx->st0 = HTX_CACHE_EOD;
1031 }
1032 else
1033 appctx->st0 = HTX_CACHE_EOM;
1034 }
1035
1036 if (appctx->st0 == HTX_CACHE_DATA) {
1037 unsigned int len = cache_ptr->hdrs_len + cache_ptr->data_len - appctx->ctx.cache.sent;
1038
1039 ret = htx_cache_dump_data(appctx, res_htx, HTX_BLK_DATA, len);
Christopher Faulet61123912019-01-02 14:10:01 +01001040 total += ret;
1041 res_htx->extra = (len - ret);
1042 if (ret < len) {
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001043 si_rx_room_blk(si);
1044 goto out;
1045 }
1046
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001047 if (cache_ptr->hdrs_len + cache_ptr->data_len == appctx->ctx.cache.sent) {
1048 if (first->len > sizeof(*cache_ptr) + appctx->ctx.cache.sent) {
1049 /* Headers and all data have been sent
1050 * (hrds_len + data_len == sent). So, all the remaining
1051 * is the trailers */
1052 appctx->st0 = HTX_CACHE_EOD;
1053 }
1054 else
1055 appctx->st0 = HTX_CACHE_EOM;
1056 }
1057 }
1058
1059 if (appctx->st0 == HTX_CACHE_EOD) {
1060 if (!htx_add_endof(res_htx, HTX_BLK_EOD)) {
1061 si_rx_room_blk(si);
1062 goto out;
1063 }
1064
1065 total++;
1066 appctx->st0 = HTX_CACHE_TLR;
1067 }
1068
1069 if (appctx->st0 == HTX_CACHE_TLR) {
1070 unsigned int len = first->len - sizeof(*cache_ptr) - appctx->ctx.cache.sent;
1071
1072 ret = htx_cache_dump_data(appctx, res_htx, HTX_BLK_TLR, len);
Christopher Faulet74b41ba2019-01-04 16:15:34 +01001073 total += ret;
Christopher Faulet61123912019-01-02 14:10:01 +01001074 if (ret < len) {
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001075 si_rx_room_blk(si);
1076 goto out;
1077 }
1078
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001079 if (first->len == sizeof(*cache_ptr) + appctx->ctx.cache.sent)
1080 appctx->st0 = HTX_CACHE_EOM;
1081 }
1082
1083 if (appctx->st0 == HTX_CACHE_EOM) {
1084 if (!htx_add_endof(res_htx, HTX_BLK_EOM)) {
1085 si_rx_room_blk(si);
1086 goto out;
1087 }
1088
1089 total++;
1090 appctx->st0 = HTX_CACHE_END;
1091 }
1092
1093 end:
Christopher Fauletadb36312019-02-25 11:40:49 +01001094 if (!(res->flags & CF_SHUTR) && appctx->st0 == HTX_CACHE_END) {
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001095 res->flags |= CF_READ_NULL;
1096 si_shutr(si);
1097 }
1098
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001099 out:
Christopher Faulet61123912019-01-02 14:10:01 +01001100 if (total)
1101 channel_add_input(res, total);
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001102 htx_to_buf(res_htx, &res->buf);
Christopher Fauletadb36312019-02-25 11:40:49 +01001103
1104 /* eat the whole request */
1105 if (co_data(req)) {
1106 req_htx = htx_from_buf(&req->buf);
1107 co_htx_skip(req, req_htx, co_data(req));
1108 htx_to_buf(req_htx, &req->buf);
1109 }
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001110 return;
1111
1112 error:
1113 /* Sent and HTTP error 500 */
1114 b_reset(&res->buf);
1115 errmsg = &htx_err_chunks[HTTP_ERR_500];
1116 res->buf.data = b_data(errmsg);
1117 memcpy(res->buf.area, b_head(errmsg), b_data(errmsg));
1118 res_htx = htx_from_buf(&res->buf);
1119
1120 total = res_htx->data;
1121 appctx->st0 = HTX_CACHE_END;
1122 goto end;
1123}
1124
1125
Frédéric Lécaillee7a770c2018-10-26 14:29:22 +02001126/*
1127 * Append an "Age" header into <chn> channel for this <ce> cache entry.
Joseph Herlant8dae5b32018-11-15 14:07:53 -08001128 * This is the responsibility of the caller to insure there is enough
Frédéric Lécaillee7a770c2018-10-26 14:29:22 +02001129 * data in the channel.
1130 *
1131 * Returns the number of bytes inserted if succeeded, 0 if failed.
1132 */
1133static int cache_channel_append_age_header(struct cache_entry *ce, struct channel *chn)
1134{
1135 unsigned int age;
1136
1137 age = MAX(0, (int)(now.tv_sec - ce->latest_validation)) + ce->age;
1138 if (unlikely(age > CACHE_ENTRY_MAX_AGE))
1139 age = CACHE_ENTRY_MAX_AGE;
1140
1141 chunk_reset(&trash);
1142 chunk_printf(&trash, "Age: %u", age);
1143
1144 return ci_insert_line2(chn, ce->eoh, trash.area, trash.data);
1145}
1146
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +02001147static int cache_channel_row_data_get(struct appctx *appctx, int len)
William Lallemand77c11972017-10-31 20:43:01 +01001148{
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +02001149 int ret, total;
William Lallemand77c11972017-10-31 20:43:01 +01001150 struct stream_interface *si = appctx->owner;
1151 struct channel *res = si_ic(si);
Christopher Faulet95220e22018-12-07 17:34:39 +01001152 struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0];
1153 struct cache *cache = cconf->c.cache;
William Lallemand77c11972017-10-31 20:43:01 +01001154 struct shared_context *shctx = shctx_ptr(cache);
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +02001155 struct cache_entry *cache_ptr = appctx->ctx.cache.entry;
1156 struct shared_block *blk, *next = appctx->ctx.cache.next;
1157 int offset;
1158
1159 total = 0;
1160 offset = 0;
1161
1162 if (!next) {
1163 offset = sizeof(struct cache_entry);
1164 next = block_ptr(cache_ptr);
1165 }
1166
1167 blk = next;
1168 list_for_each_entry_from(blk, &shctx->hot, list) {
1169 int sz;
1170
1171 if (len <= 0)
1172 break;
1173
1174 sz = MIN(len, shctx->block_size - offset);
1175
1176 ret = ci_putblk(res, (const char *)blk->data + offset, sz);
1177 if (unlikely(offset))
1178 offset = 0;
1179 if (ret <= 0) {
1180 if (ret == -3 || ret == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001181 si_rx_room_blk(si);
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +02001182 break;
1183 }
1184 return -1;
1185 }
1186
1187 total += sz;
1188 len -= sz;
1189 }
1190 appctx->ctx.cache.next = blk;
1191
1192 return total;
1193}
1194
1195static void http_cache_io_handler(struct appctx *appctx)
1196{
1197 struct stream_interface *si = appctx->owner;
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001198 struct stream *s = si_strm(si);
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +02001199 struct channel *res = si_ic(si);
1200 struct cache_entry *cache_ptr = appctx->ctx.cache.entry;
William Lallemand77c11972017-10-31 20:43:01 +01001201 struct shared_block *first = block_ptr(cache_ptr);
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001202 unsigned int *sent = &appctx->ctx.cache.sent;
1203
1204 if (IS_HTX_STRM(s))
1205 return htx_cache_io_handler(appctx);
William Lallemand77c11972017-10-31 20:43:01 +01001206
1207 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
1208 goto out;
1209
Joseph Herlant8dae5b32018-11-15 14:07:53 -08001210 /* Check if the input buffer is available. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +02001211 if (res->buf.size == 0) {
Willy Tarreau4b962a42018-11-15 11:03:21 +01001212 /* buf.size==0 means we failed to get a buffer and were
1213 * already subscribed to a wait list to get a buffer.
1214 */
William Lallemand77c11972017-10-31 20:43:01 +01001215 goto out;
1216 }
1217
Willy Tarreauefef3232018-12-16 00:37:45 +01001218 if (res->flags & (CF_SHUTW|CF_SHUTW_NOW|CF_SHUTR))
William Lallemand77c11972017-10-31 20:43:01 +01001219 appctx->st0 = HTTP_CACHE_END;
1220
1221 /* buffer are aligned there, should be fine */
Frédéric Lécaillee7a770c2018-10-26 14:29:22 +02001222 if (appctx->st0 == HTTP_CACHE_HEADER || appctx->st0 == HTTP_CACHE_INIT) {
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +02001223 int len = first->len - *sent - sizeof(struct cache_entry);
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +02001224 if (len > 0) {
1225 int ret;
1226
1227 ret = cache_channel_row_data_get(appctx, len);
1228 if (ret == -1)
1229 appctx->st0 = HTTP_CACHE_END;
1230 else
1231 *sent += ret;
Frédéric Lécaillee7a770c2018-10-26 14:29:22 +02001232 if (appctx->st0 == HTTP_CACHE_INIT && *sent > cache_ptr->eoh &&
1233 cache_channel_append_age_header(cache_ptr, res))
1234 appctx->st0 = HTTP_CACHE_HEADER;
Christopher Faulet61123912019-01-02 14:10:01 +01001235 else if (ret == len) {
1236 *sent = 0;
1237 appctx->st0 = HTTP_CACHE_FWD;
1238 }
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +02001239 }
1240 else {
1241 *sent = 0;
1242 appctx->st0 = HTTP_CACHE_FWD;
William Lallemand77c11972017-10-31 20:43:01 +01001243 }
William Lallemand77c11972017-10-31 20:43:01 +01001244 }
1245
Christopher Fauletadb36312019-02-25 11:40:49 +01001246 if (appctx->st0 == HTTP_CACHE_FWD)
1247 appctx->st0 = HTTP_CACHE_END;
1248
1249 if (!(res->flags & CF_SHUTR) && appctx->st0 == HTTP_CACHE_END) {
William Lallemand77c11972017-10-31 20:43:01 +01001250 res->flags |= CF_READ_NULL;
1251 si_shutr(si);
1252 }
William Lallemand77c11972017-10-31 20:43:01 +01001253out:
Christopher Fauletadb36312019-02-25 11:40:49 +01001254 /* eat the whole request */
1255 if (co_data(si_oc(si)))
1256 co_skip(si_oc(si), co_data(si_oc(si)));
William Lallemand77c11972017-10-31 20:43:01 +01001257}
1258
Christopher Faulet95220e22018-12-07 17:34:39 +01001259static int parse_cache_rule(struct proxy *proxy, const char *name, struct act_rule *rule, char **err)
William Lallemand41db4602017-10-30 11:15:51 +01001260{
1261 struct flt_conf *fconf;
Christopher Faulet95220e22018-12-07 17:34:39 +01001262 struct cache_flt_conf *cconf = NULL;
William Lallemand41db4602017-10-30 11:15:51 +01001263
Christopher Faulet95220e22018-12-07 17:34:39 +01001264 if (!*name || strcmp(name, "if") == 0 || strcmp(name, "unless") == 0) {
William Lallemand41db4602017-10-30 11:15:51 +01001265 memprintf(err, "expects a cache name");
Christopher Faulet95220e22018-12-07 17:34:39 +01001266 goto err;
William Lallemand41db4602017-10-30 11:15:51 +01001267 }
1268
1269 /* check if a cache filter was already registered with this cache
1270 * name, if that's the case, must use it. */
1271 list_for_each_entry(fconf, &proxy->filter_configs, list) {
Christopher Faulet95220e22018-12-07 17:34:39 +01001272 if (fconf->id == cache_store_flt_id) {
1273 cconf = fconf->conf;
1274 if (cconf && !strcmp((char *)cconf->c.name, name)) {
1275 rule->arg.act.p[0] = cconf;
1276 return 1;
1277 }
William Lallemand41db4602017-10-30 11:15:51 +01001278 }
1279 }
1280
Christopher Faulet95220e22018-12-07 17:34:39 +01001281 /* Create the filter cache config */
1282 cconf = calloc(1, sizeof(*cconf));
1283 if (!cconf) {
1284 memprintf(err, "out of memory\n");
1285 goto err;
1286 }
Christopher Faulet99a17a22018-12-11 09:18:27 +01001287 cconf->flags = CACHE_FLT_F_IMPLICIT_DECL;
Christopher Faulet95220e22018-12-07 17:34:39 +01001288 cconf->c.name = strdup(name);
1289 if (!cconf->c.name) {
1290 memprintf(err, "out of memory\n");
William Lallemand41db4602017-10-30 11:15:51 +01001291 goto err;
1292 }
Christopher Faulet95220e22018-12-07 17:34:39 +01001293
William Lallemand41db4602017-10-30 11:15:51 +01001294 /* register a filter to fill the cache buffer */
1295 fconf = calloc(1, sizeof(*fconf));
1296 if (!fconf) {
Christopher Faulet95220e22018-12-07 17:34:39 +01001297 memprintf(err, "out of memory\n");
William Lallemand41db4602017-10-30 11:15:51 +01001298 goto err;
1299 }
Christopher Faulet95220e22018-12-07 17:34:39 +01001300 fconf->id = cache_store_flt_id;
1301 fconf->conf = cconf;
William Lallemand41db4602017-10-30 11:15:51 +01001302 fconf->ops = &cache_ops;
1303 LIST_ADDQ(&proxy->filter_configs, &fconf->list);
1304
Christopher Faulet95220e22018-12-07 17:34:39 +01001305 rule->arg.act.p[0] = cconf;
1306 return 1;
William Lallemand41db4602017-10-30 11:15:51 +01001307
Christopher Faulet95220e22018-12-07 17:34:39 +01001308 err:
1309 free(cconf);
1310 return 0;
1311}
1312
1313enum act_parse_ret parse_cache_store(const char **args, int *orig_arg, struct proxy *proxy,
1314 struct act_rule *rule, char **err)
1315{
1316 rule->action = ACT_CUSTOM;
1317 rule->action_ptr = http_action_store_cache;
1318
1319 if (!parse_cache_rule(proxy, args[*orig_arg], rule, err))
1320 return ACT_RET_PRS_ERR;
William Lallemand41db4602017-10-30 11:15:51 +01001321
Christopher Faulet95220e22018-12-07 17:34:39 +01001322 (*orig_arg)++;
1323 return ACT_RET_PRS_OK;
William Lallemand41db4602017-10-30 11:15:51 +01001324}
1325
William Lallemandf528fff2017-11-23 19:43:17 +01001326/* This produces a sha1 hash of the concatenation of the first
1327 * occurrence of the Host header followed by the path component if it
1328 * begins with a slash ('/'). */
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001329int sha1_hosturi(struct stream *s)
William Lallemandf528fff2017-11-23 19:43:17 +01001330{
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001331 struct http_txn *txn = s->txn;
William Lallemandf528fff2017-11-23 19:43:17 +01001332 blk_SHA_CTX sha1_ctx;
Willy Tarreau83061a82018-07-13 11:56:34 +02001333 struct buffer *trash;
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001334
William Lallemandf528fff2017-11-23 19:43:17 +01001335 trash = get_trash_chunk();
1336
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001337 if (IS_HTX_STRM(s)) {
1338 struct htx *htx = htxbuf(&s->req.buf);
1339 struct htx_sl *sl;
1340 struct http_hdr_ctx ctx;
1341 struct ist path;
William Lallemandf528fff2017-11-23 19:43:17 +01001342
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001343 ctx.blk = NULL;
1344 if (!http_find_header(htx, ist("Host"), &ctx, 0))
1345 return 0;
1346 chunk_memcat(trash, ctx.value.ptr, ctx.value.len);
1347
Christopher Faulet297fbb42019-05-13 14:41:27 +02001348 sl = http_get_stline(htx);
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001349 path = http_get_path(htx_sl_req_uri(sl));
1350 if (!path.ptr)
1351 return 0;
1352 chunk_memcat(trash, path.ptr, path.len);
1353 }
1354 else {
1355 struct hdr_ctx ctx;
1356 char *path;
1357 char *end;
1358
1359 /* retrive the host */
1360 ctx.idx = 0;
1361 if (!http_find_header2("Host", 4, ci_head(txn->req.chn), &txn->hdr_idx, &ctx))
1362 return 0;
1363 chunk_strncat(trash, ctx.line + ctx.val, ctx.vlen);
1364
1365 /* now retrieve the path */
1366 end = ci_head(txn->req.chn) + txn->req.sl.rq.u + txn->req.sl.rq.u_l;
1367 path = http_txn_get_path(txn);
1368 if (!path)
1369 return 0;
1370 chunk_strncat(trash, path, end - path);
1371 }
William Lallemandf528fff2017-11-23 19:43:17 +01001372
1373 /* hash everything */
1374 blk_SHA1_Init(&sha1_ctx);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001375 blk_SHA1_Update(&sha1_ctx, trash->area, trash->data);
William Lallemandf528fff2017-11-23 19:43:17 +01001376 blk_SHA1_Final((unsigned char *)txn->cache_hash, &sha1_ctx);
1377
1378 return 1;
1379}
1380
William Lallemand41db4602017-10-30 11:15:51 +01001381enum act_return http_action_req_cache_use(struct act_rule *rule, struct proxy *px,
1382 struct session *sess, struct stream *s, int flags)
1383{
William Lallemand77c11972017-10-31 20:43:01 +01001384
Christopher Fauletb3d4bca2019-02-25 10:59:33 +01001385 struct http_txn *txn = s->txn;
William Lallemand77c11972017-10-31 20:43:01 +01001386 struct cache_entry *res;
Christopher Faulet95220e22018-12-07 17:34:39 +01001387 struct cache_flt_conf *cconf = rule->arg.act.p[0];
1388 struct cache *cache = cconf->c.cache;
William Lallemand77c11972017-10-31 20:43:01 +01001389
Christopher Fauletb3d4bca2019-02-25 10:59:33 +01001390 /* Ignore cache for HTTP/1.0 requests and for requests other than GET
1391 * and HEAD */
1392 if (!(txn->req.flags & HTTP_MSGF_VER_11) ||
1393 (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD))
1394 txn->flags |= TX_CACHE_IGNORE;
1395
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001396 if (IS_HTX_STRM(s))
1397 htx_check_request_for_cacheability(s, &s->req);
1398 else
1399 check_request_for_cacheability(s, &s->req);
1400
Willy Tarreau504455c2017-12-22 17:47:35 +01001401 if ((s->txn->flags & (TX_CACHE_IGNORE|TX_CACHEABLE)) == TX_CACHE_IGNORE)
1402 return ACT_RET_CONT;
1403
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001404 if (!sha1_hosturi(s))
Willy Tarreau7704b1e2017-12-22 16:32:43 +01001405 return ACT_RET_CONT;
William Lallemandf528fff2017-11-23 19:43:17 +01001406
Willy Tarreau504455c2017-12-22 17:47:35 +01001407 if (s->txn->flags & TX_CACHE_IGNORE)
1408 return ACT_RET_CONT;
1409
Willy Tarreaua1214a52018-12-14 14:00:25 +01001410 if (px == strm_fe(s))
Olivier Houchardaa090d42019-03-08 18:49:24 +01001411 _HA_ATOMIC_ADD(&px->fe_counters.p.http.cache_lookups, 1);
Willy Tarreaua1214a52018-12-14 14:00:25 +01001412 else
Olivier Houchardaa090d42019-03-08 18:49:24 +01001413 _HA_ATOMIC_ADD(&px->be_counters.p.http.cache_lookups, 1);
Willy Tarreaua1214a52018-12-14 14:00:25 +01001414
William Lallemanda400a3a2017-11-20 19:13:12 +01001415 shctx_lock(shctx_ptr(cache));
William Lallemandf528fff2017-11-23 19:43:17 +01001416 res = entry_exist(cache, s->txn->cache_hash);
William Lallemand77c11972017-10-31 20:43:01 +01001417 if (res) {
1418 struct appctx *appctx;
William Lallemanda400a3a2017-11-20 19:13:12 +01001419 shctx_row_inc_hot(shctx_ptr(cache), block_ptr(res));
1420 shctx_unlock(shctx_ptr(cache));
William Lallemand77c11972017-10-31 20:43:01 +01001421 s->target = &http_cache_applet.obj_type;
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01001422 if ((appctx = si_register_handler(&s->si[1], objt_applet(s->target)))) {
William Lallemand77c11972017-10-31 20:43:01 +01001423 appctx->st0 = HTTP_CACHE_INIT;
1424 appctx->rule = rule;
1425 appctx->ctx.cache.entry = res;
Frédéric Lécaille8df65ae2018-10-22 18:01:48 +02001426 appctx->ctx.cache.next = NULL;
1427 appctx->ctx.cache.sent = 0;
Willy Tarreaua1214a52018-12-14 14:00:25 +01001428
1429 if (px == strm_fe(s))
Olivier Houchardaa090d42019-03-08 18:49:24 +01001430 _HA_ATOMIC_ADD(&px->fe_counters.p.http.cache_hits, 1);
Willy Tarreaua1214a52018-12-14 14:00:25 +01001431 else
Olivier Houchardaa090d42019-03-08 18:49:24 +01001432 _HA_ATOMIC_ADD(&px->be_counters.p.http.cache_hits, 1);
Olivier Houchardfccf8402017-11-01 14:04:02 +01001433 return ACT_RET_CONT;
William Lallemand77c11972017-10-31 20:43:01 +01001434 } else {
William Lallemand55e76742017-11-21 20:01:28 +01001435 shctx_lock(shctx_ptr(cache));
1436 shctx_row_dec_hot(shctx_ptr(cache), block_ptr(res));
1437 shctx_unlock(shctx_ptr(cache));
Olivier Houchardfccf8402017-11-01 14:04:02 +01001438 return ACT_RET_YIELD;
William Lallemand77c11972017-10-31 20:43:01 +01001439 }
1440 }
William Lallemanda400a3a2017-11-20 19:13:12 +01001441 shctx_unlock(shctx_ptr(cache));
Olivier Houchardfccf8402017-11-01 14:04:02 +01001442 return ACT_RET_CONT;
William Lallemand41db4602017-10-30 11:15:51 +01001443}
1444
1445
1446enum act_parse_ret parse_cache_use(const char **args, int *orig_arg, struct proxy *proxy,
1447 struct act_rule *rule, char **err)
1448{
William Lallemand41db4602017-10-30 11:15:51 +01001449 rule->action = ACT_CUSTOM;
1450 rule->action_ptr = http_action_req_cache_use;
1451
Christopher Faulet95220e22018-12-07 17:34:39 +01001452 if (!parse_cache_rule(proxy, args[*orig_arg], rule, err))
William Lallemand41db4602017-10-30 11:15:51 +01001453 return ACT_RET_PRS_ERR;
William Lallemand41db4602017-10-30 11:15:51 +01001454
1455 (*orig_arg)++;
1456 return ACT_RET_PRS_OK;
William Lallemand41db4602017-10-30 11:15:51 +01001457}
1458
1459int cfg_parse_cache(const char *file, int linenum, char **args, int kwm)
1460{
1461 int err_code = 0;
1462
1463 if (strcmp(args[0], "cache") == 0) { /* new cache section */
1464
1465 if (!*args[1]) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001466 ha_alert("parsing [%s:%d] : '%s' expects an <id> argument\n",
1467 file, linenum, args[0]);
William Lallemand41db4602017-10-30 11:15:51 +01001468 err_code |= ERR_ALERT | ERR_ABORT;
1469 goto out;
1470 }
1471
1472 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
1473 err_code |= ERR_ABORT;
1474 goto out;
1475 }
1476
1477 if (tmp_cache_config == NULL) {
1478 tmp_cache_config = calloc(1, sizeof(*tmp_cache_config));
1479 if (!tmp_cache_config) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001480 ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum);
William Lallemand41db4602017-10-30 11:15:51 +01001481 err_code |= ERR_ALERT | ERR_ABORT;
1482 goto out;
1483 }
1484
1485 strlcpy2(tmp_cache_config->id, args[1], 33);
1486 if (strlen(args[1]) > 32) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001487 ha_warning("parsing [%s:%d]: cache id is limited to 32 characters, truncate to '%s'.\n",
1488 file, linenum, tmp_cache_config->id);
William Lallemand41db4602017-10-30 11:15:51 +01001489 err_code |= ERR_WARN;
1490 }
William Lallemand49b44532017-11-24 18:53:43 +01001491 tmp_cache_config->maxage = 60;
William Lallemand41db4602017-10-30 11:15:51 +01001492 tmp_cache_config->maxblocks = 0;
Frédéric Lécaillea2219f52018-10-22 16:59:13 +02001493 tmp_cache_config->maxobjsz = 0;
Christopher Faulet1f672c52018-12-03 14:30:41 +01001494 tmp_cache_config->flags = 0;
William Lallemand41db4602017-10-30 11:15:51 +01001495 }
1496 } else if (strcmp(args[0], "total-max-size") == 0) {
Frédéric Lécailleb9b8b6b2018-10-25 20:17:45 +02001497 unsigned long int maxsize;
1498 char *err;
William Lallemand41db4602017-10-30 11:15:51 +01001499
1500 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
1501 err_code |= ERR_ABORT;
1502 goto out;
1503 }
1504
Frédéric Lécailleb9b8b6b2018-10-25 20:17:45 +02001505 maxsize = strtoul(args[1], &err, 10);
1506 if (err == args[1] || *err != '\0') {
1507 ha_warning("parsing [%s:%d]: total-max-size wrong value '%s'\n",
1508 file, linenum, args[1]);
1509 err_code |= ERR_ABORT;
1510 goto out;
1511 }
1512
1513 if (maxsize > (UINT_MAX >> 20)) {
1514 ha_warning("parsing [%s:%d]: \"total-max-size\" (%s) must not be greater than %u\n",
1515 file, linenum, args[1], UINT_MAX >> 20);
1516 err_code |= ERR_ABORT;
1517 goto out;
1518 }
1519
William Lallemand41db4602017-10-30 11:15:51 +01001520 /* size in megabytes */
Frédéric Lécailleb9b8b6b2018-10-25 20:17:45 +02001521 maxsize *= 1024 * 1024 / CACHE_BLOCKSIZE;
William Lallemand41db4602017-10-30 11:15:51 +01001522 tmp_cache_config->maxblocks = maxsize;
William Lallemand49b44532017-11-24 18:53:43 +01001523 } else if (strcmp(args[0], "max-age") == 0) {
1524 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
1525 err_code |= ERR_ABORT;
1526 goto out;
1527 }
1528
1529 if (!*args[1]) {
1530 ha_warning("parsing [%s:%d]: '%s' expects an age parameter in seconds.\n",
1531 file, linenum, args[0]);
1532 err_code |= ERR_WARN;
1533 }
1534
1535 tmp_cache_config->maxage = atoi(args[1]);
Frédéric Lécaillea2219f52018-10-22 16:59:13 +02001536 } else if (strcmp(args[0], "max-object-size") == 0) {
Frédéric Lécaille4eba5442018-10-25 20:29:31 +02001537 unsigned int maxobjsz;
1538 char *err;
1539
Frédéric Lécaillea2219f52018-10-22 16:59:13 +02001540 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
1541 err_code |= ERR_ABORT;
1542 goto out;
1543 }
1544
1545 if (!*args[1]) {
1546 ha_warning("parsing [%s:%d]: '%s' expects a maximum file size parameter in bytes.\n",
1547 file, linenum, args[0]);
1548 err_code |= ERR_WARN;
1549 }
1550
Frédéric Lécaille4eba5442018-10-25 20:29:31 +02001551 maxobjsz = strtoul(args[1], &err, 10);
1552 if (err == args[1] || *err != '\0') {
1553 ha_warning("parsing [%s:%d]: max-object-size wrong value '%s'\n",
1554 file, linenum, args[1]);
1555 err_code |= ERR_ABORT;
1556 goto out;
1557 }
1558 tmp_cache_config->maxobjsz = maxobjsz;
Frédéric Lécaillea2219f52018-10-22 16:59:13 +02001559 }
1560 else if (*args[0] != 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001561 ha_alert("parsing [%s:%d] : unknown keyword '%s' in 'cache' section\n", file, linenum, args[0]);
William Lallemand41db4602017-10-30 11:15:51 +01001562 err_code |= ERR_ALERT | ERR_FATAL;
1563 goto out;
1564 }
1565out:
1566 return err_code;
1567}
1568
1569/* once the cache section is parsed */
1570
1571int cfg_post_parse_section_cache()
1572{
1573 struct shared_context *shctx;
1574 int err_code = 0;
1575 int ret_shctx;
1576
1577 if (tmp_cache_config) {
1578 struct cache *cache;
1579
1580 if (tmp_cache_config->maxblocks <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001581 ha_alert("Size not specified for cache '%s'\n", tmp_cache_config->id);
William Lallemand41db4602017-10-30 11:15:51 +01001582 err_code |= ERR_FATAL | ERR_ALERT;
1583 goto out;
1584 }
1585
Frédéric Lécaille4eba5442018-10-25 20:29:31 +02001586 if (!tmp_cache_config->maxobjsz) {
Frédéric Lécaillea2219f52018-10-22 16:59:13 +02001587 /* Default max. file size is a 256th of the cache size. */
1588 tmp_cache_config->maxobjsz =
1589 (tmp_cache_config->maxblocks * CACHE_BLOCKSIZE) >> 8;
Frédéric Lécaille4eba5442018-10-25 20:29:31 +02001590 }
1591 else if (tmp_cache_config->maxobjsz > tmp_cache_config->maxblocks * CACHE_BLOCKSIZE / 2) {
1592 ha_alert("\"max-object-size\" is limited to an half of \"total-max-size\" => %u\n", tmp_cache_config->maxblocks * CACHE_BLOCKSIZE / 2);
1593 err_code |= ERR_FATAL | ERR_ALERT;
1594 goto out;
1595 }
Frédéric Lécaillea2219f52018-10-22 16:59:13 +02001596
1597 ret_shctx = shctx_init(&shctx, tmp_cache_config->maxblocks, CACHE_BLOCKSIZE,
1598 tmp_cache_config->maxobjsz, sizeof(struct cache), 1);
William Lallemand4da3f8a2017-10-31 14:33:34 +01001599
Frédéric Lécaillebc584492018-10-25 20:18:59 +02001600 if (ret_shctx <= 0) {
William Lallemand41db4602017-10-30 11:15:51 +01001601 if (ret_shctx == SHCTX_E_INIT_LOCK)
Christopher Faulet767a84b2017-11-24 16:50:31 +01001602 ha_alert("Unable to initialize the lock for the cache.\n");
William Lallemand41db4602017-10-30 11:15:51 +01001603 else
Christopher Faulet767a84b2017-11-24 16:50:31 +01001604 ha_alert("Unable to allocate cache.\n");
William Lallemand41db4602017-10-30 11:15:51 +01001605
1606 err_code |= ERR_FATAL | ERR_ALERT;
1607 goto out;
1608 }
William Lallemanda400a3a2017-11-20 19:13:12 +01001609 shctx->free_block = cache_free_blocks;
William Lallemand41db4602017-10-30 11:15:51 +01001610 memcpy(shctx->data, tmp_cache_config, sizeof(struct cache));
1611 cache = (struct cache *)shctx->data;
1612 cache->entries = EB_ROOT_UNIQUE;
William Lallemand41db4602017-10-30 11:15:51 +01001613 LIST_ADDQ(&caches, &cache->list);
1614 }
1615out:
1616 free(tmp_cache_config);
1617 tmp_cache_config = NULL;
1618 return err_code;
1619
1620}
1621
1622/*
1623 * Resolve the cache name to a pointer once the file is completely read.
1624 */
1625int cfg_cache_postparser()
1626{
William Lallemand41db4602017-10-30 11:15:51 +01001627 struct cache *cache;
William Lallemand41db4602017-10-30 11:15:51 +01001628 int err = 0;
Christopher Faulet1f672c52018-12-03 14:30:41 +01001629
1630 /* Check if the cache is used by HTX and legacy HTTP proxies in same
1631 * time
1632 */
1633 list_for_each_entry(cache, &caches, list) {
1634 if ((cache->flags & (CACHE_F_HTX|CACHE_F_LEGACY_HTTP)) == (CACHE_F_HTX|CACHE_F_LEGACY_HTTP)) {
1635 ha_alert("Cache '%s': cannot be used by HTX and legacy HTTP proxies in same time.\n",
1636 cache->id);
1637 err++;
1638 }
1639 }
1640
William Lallemand41db4602017-10-30 11:15:51 +01001641 return err;
1642}
1643
1644
1645struct flt_ops cache_ops = {
1646 .init = cache_store_init,
Christopher Faulet95220e22018-12-07 17:34:39 +01001647 .check = cache_store_check,
1648 .deinit = cache_store_deinit,
William Lallemand41db4602017-10-30 11:15:51 +01001649
William Lallemand4da3f8a2017-10-31 14:33:34 +01001650 /* Handle channels activity */
1651 .channel_start_analyze = cache_store_chn_start_analyze,
William Lallemand49dc0482017-11-24 14:33:54 +01001652 .channel_end_analyze = cache_store_chn_end_analyze,
Christopher Faulet839791a2019-01-07 16:12:07 +01001653 .channel_post_analyze = cache_store_post_analyze,
William Lallemand4da3f8a2017-10-31 14:33:34 +01001654
1655 /* Filter HTTP requests and responses */
1656 .http_headers = cache_store_http_headers,
Christopher Faulet54a8d5a2018-12-07 12:21:11 +01001657 .http_payload = cache_store_http_payload,
William Lallemand4da3f8a2017-10-31 14:33:34 +01001658 .http_end = cache_store_http_end,
1659
1660 .http_forward_data = cache_store_http_forward_data,
1661
William Lallemand41db4602017-10-30 11:15:51 +01001662};
1663
Christopher Faulet99a17a22018-12-11 09:18:27 +01001664
1665
1666static int
1667parse_cache_flt(char **args, int *cur_arg, struct proxy *px,
1668 struct flt_conf *fconf, char **err, void *private)
1669{
1670 struct flt_conf *f, *back;
Willy Tarreaua73da1e2018-12-14 10:19:28 +01001671 struct cache_flt_conf *cconf = NULL;
Christopher Faulet99a17a22018-12-11 09:18:27 +01001672 char *name = NULL;
1673 int pos = *cur_arg;
1674
1675 /* Get the cache filter name*/
1676 if (!strcmp(args[pos], "cache")) {
1677 if (!*args[pos + 1]) {
1678 memprintf(err, "%s : expects an <id> argument", args[pos]);
1679 goto error;
1680 }
1681 name = strdup(args[pos + 1]);
1682 if (!name) {
1683 memprintf(err, "%s '%s' : out of memory", args[pos], args[pos + 1]);
1684 goto error;
1685 }
1686 pos += 2;
1687 }
1688
1689 /* Check if an implicit filter with the same name already exists. If so,
1690 * we remove the implicit filter to use the explicit one. */
1691 list_for_each_entry_safe(f, back, &px->filter_configs, list) {
1692 if (f->id != cache_store_flt_id)
1693 continue;
1694
1695 cconf = f->conf;
1696 if (strcmp(name, cconf->c.name)) {
1697 cconf = NULL;
1698 continue;
1699 }
1700
1701 if (!(cconf->flags & CACHE_FLT_F_IMPLICIT_DECL)) {
1702 cconf = NULL;
1703 memprintf(err, "%s: multiple explicit declarations of the cache filter '%s'",
1704 px->id, name);
1705 return -1;
1706 }
1707
1708 /* Remove the implicit filter. <cconf> is kept for the explicit one */
1709 LIST_DEL(&f->list);
1710 free(f);
1711 free(name);
1712 break;
1713 }
1714
1715 /* No implicit cache filter found, create configuration for the explicit one */
1716 if (!cconf) {
1717 cconf = calloc(1, sizeof(*cconf));
1718 if (!cconf) {
1719 memprintf(err, "%s: out of memory", args[*cur_arg]);
1720 goto error;
1721 }
1722 cconf->c.name = name;
1723 }
1724
1725 cconf->flags = 0;
1726 fconf->id = cache_store_flt_id;
1727 fconf->conf = cconf;
1728 fconf->ops = &cache_ops;
1729
1730 *cur_arg = pos;
1731 return 0;
1732
1733 error:
1734 free(name);
1735 free(cconf);
1736 return -1;
1737}
1738
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001739static int cli_parse_show_cache(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemand1f49a362017-11-21 20:01:26 +01001740{
1741 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1742 return 1;
1743
1744 return 0;
1745}
1746
1747static int cli_io_handler_show_cache(struct appctx *appctx)
1748{
1749 struct cache* cache = appctx->ctx.cli.p0;
1750 struct stream_interface *si = appctx->owner;
1751
William Lallemand1f49a362017-11-21 20:01:26 +01001752 if (cache == NULL) {
1753 cache = LIST_ELEM((caches).n, typeof(struct cache *), list);
1754 }
1755
1756 list_for_each_entry_from(cache, &caches, list) {
1757 struct eb32_node *node = NULL;
1758 unsigned int next_key;
1759 struct cache_entry *entry;
1760
William Lallemand1f49a362017-11-21 20:01:26 +01001761 next_key = appctx->ctx.cli.i0;
Willy Tarreauafe1de52018-04-04 11:56:43 +02001762 if (!next_key) {
1763 chunk_printf(&trash, "%p: %s (shctx:%p, available blocks:%d)\n", cache, cache->id, shctx_ptr(cache), shctx_ptr(cache)->nbav);
1764 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001765 si_rx_room_blk(si);
Willy Tarreauafe1de52018-04-04 11:56:43 +02001766 return 0;
1767 }
1768 }
William Lallemand1f49a362017-11-21 20:01:26 +01001769
1770 appctx->ctx.cli.p0 = cache;
1771
1772 while (1) {
1773
1774 shctx_lock(shctx_ptr(cache));
1775 node = eb32_lookup_ge(&cache->entries, next_key);
1776 if (!node) {
1777 shctx_unlock(shctx_ptr(cache));
Willy Tarreauafe1de52018-04-04 11:56:43 +02001778 appctx->ctx.cli.i0 = 0;
William Lallemand1f49a362017-11-21 20:01:26 +01001779 break;
1780 }
1781
1782 entry = container_of(node, struct cache_entry, eb);
Willy Tarreauafe1de52018-04-04 11:56:43 +02001783 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 Lallemand1f49a362017-11-21 20:01:26 +01001784
1785 next_key = node->key + 1;
1786 appctx->ctx.cli.i0 = next_key;
1787
1788 shctx_unlock(shctx_ptr(cache));
1789
1790 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001791 si_rx_room_blk(si);
William Lallemand1f49a362017-11-21 20:01:26 +01001792 return 0;
1793 }
1794 }
1795
1796 }
1797
1798 return 1;
1799
1800}
1801
Christopher Faulet99a17a22018-12-11 09:18:27 +01001802/* Declare the filter parser for "cache" keyword */
1803static struct flt_kw_list filter_kws = { "CACHE", { }, {
1804 { "cache", parse_cache_flt, NULL },
1805 { NULL, NULL, NULL },
1806 }
1807};
1808
1809INITCALL1(STG_REGISTER, flt_register_keywords, &filter_kws);
1810
William Lallemand1f49a362017-11-21 20:01:26 +01001811static struct cli_kw_list cli_kws = {{},{
William Lallemande899af82017-11-22 16:41:26 +01001812 { { "show", "cache", NULL }, "show cache : show cache status", cli_parse_show_cache, cli_io_handler_show_cache, NULL, NULL },
1813 {{},}
William Lallemand1f49a362017-11-21 20:01:26 +01001814}};
1815
Willy Tarreau0108d902018-11-25 19:14:37 +01001816INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
William Lallemand1f49a362017-11-21 20:01:26 +01001817
William Lallemand41db4602017-10-30 11:15:51 +01001818static struct action_kw_list http_res_actions = {
1819 .kw = {
1820 { "cache-store", parse_cache_store },
1821 { NULL, NULL }
1822 }
1823};
1824
Willy Tarreau0108d902018-11-25 19:14:37 +01001825INITCALL1(STG_REGISTER, http_res_keywords_register, &http_res_actions);
1826
William Lallemand41db4602017-10-30 11:15:51 +01001827static struct action_kw_list http_req_actions = {
1828 .kw = {
1829 { "cache-use", parse_cache_use },
1830 { NULL, NULL }
1831 }
1832};
1833
Willy Tarreau0108d902018-11-25 19:14:37 +01001834INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions);
1835
Willy Tarreau2231b632019-03-29 18:26:52 +01001836struct applet http_cache_applet = {
William Lallemand41db4602017-10-30 11:15:51 +01001837 .obj_type = OBJ_TYPE_APPLET,
1838 .name = "<CACHE>", /* used for logging */
William Lallemand77c11972017-10-31 20:43:01 +01001839 .fct = http_cache_io_handler,
William Lallemandecb73b12017-11-24 14:33:55 +01001840 .release = http_cache_applet_release,
William Lallemand41db4602017-10-30 11:15:51 +01001841};
1842
Willy Tarreaue6552512018-11-26 11:33:13 +01001843/* config parsers for this section */
1844REGISTER_CONFIG_SECTION("cache", cfg_parse_cache, cfg_post_parse_section_cache);
1845REGISTER_CONFIG_POSTPARSER("cache", cfg_cache_postparser);