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 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 13 | #include <import/eb32tree.h> |
| 14 | #include <import/sha1.h> |
| 15 | |
Willy Tarreau | 122eba9 | 2020-06-04 10:15:32 +0200 | [diff] [blame] | 16 | #include <haproxy/action-t.h> |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 17 | #include <haproxy/api.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 18 | #include <haproxy/cfgparse.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 19 | #include <haproxy/channel.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 20 | #include <haproxy/cli.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 21 | #include <haproxy/errors.h> |
Willy Tarreau | c7babd8 | 2020-06-04 21:29:29 +0200 | [diff] [blame] | 22 | #include <haproxy/filters.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 23 | #include <haproxy/hash.h> |
Remi Tricot-Le Breton | dbb65b5 | 2020-10-22 10:40:04 +0200 | [diff] [blame] | 24 | #include <haproxy/http.h> |
Willy Tarreau | c2b1ff0 | 2020-06-04 21:21:03 +0200 | [diff] [blame] | 25 | #include <haproxy/http_ana.h> |
Willy Tarreau | 8773533 | 2020-06-04 09:08:41 +0200 | [diff] [blame] | 26 | #include <haproxy/http_htx.h> |
Willy Tarreau | c761f84 | 2020-06-04 11:40:28 +0200 | [diff] [blame] | 27 | #include <haproxy/http_rules.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 28 | #include <haproxy/htx.h> |
| 29 | #include <haproxy/net_helper.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 30 | #include <haproxy/proxy.h> |
Remi Tricot-Le Breton | bf97121 | 2020-10-27 11:55:57 +0100 | [diff] [blame] | 31 | #include <haproxy/sample.h> |
Willy Tarreau | 334099c | 2020-06-03 18:38:48 +0200 | [diff] [blame] | 32 | #include <haproxy/shctx.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 33 | #include <haproxy/stream.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 34 | #include <haproxy/stream_interface.h> |
Willy Tarreau | ce6700a | 2021-05-08 13:03:55 +0200 | [diff] [blame] | 35 | #include <haproxy/tools.h> |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 36 | |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 37 | #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] | 38 | * the filter keyword) */ |
Tim Duesterhus | d7c6e6a | 2020-09-14 18:01:33 +0200 | [diff] [blame] | 39 | #define CACHE_FLT_INIT 0x00000002 /* Whether the cache name was freed. */ |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 40 | |
Christopher Faulet | f4a4ef7 | 2018-12-07 17:39:53 +0100 | [diff] [blame] | 41 | const char *cache_store_flt_id = "cache store filter"; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 42 | |
Willy Tarreau | 2231b63 | 2019-03-29 18:26:52 +0100 | [diff] [blame] | 43 | extern struct applet http_cache_applet; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 44 | |
| 45 | struct flt_ops cache_ops; |
| 46 | |
| 47 | struct cache { |
Willy Tarreau | fd5efb5 | 2017-11-26 08:54:31 +0100 | [diff] [blame] | 48 | struct list list; /* cache linked list */ |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 49 | struct eb_root entries; /* head of cache entries based on keys */ |
Willy Tarreau | fd5efb5 | 2017-11-26 08:54:31 +0100 | [diff] [blame] | 50 | unsigned int maxage; /* max-age */ |
| 51 | unsigned int maxblocks; |
Frédéric Lécaille | 4eba544 | 2018-10-25 20:29:31 +0200 | [diff] [blame] | 52 | unsigned int maxobjsz; /* max-object-size (in bytes) */ |
Remi Tricot-Le Breton | 5853c0c | 2020-12-10 17:58:43 +0100 | [diff] [blame] | 53 | unsigned int max_secondary_entries; /* maximum number of secondary entries with the same primary hash */ |
Remi Tricot-Le Breton | 754b242 | 2020-11-16 15:56:10 +0100 | [diff] [blame] | 54 | uint8_t vary_processing_enabled; /* boolean : manage Vary header (disabled by default) */ |
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 | |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 67 | |
| 68 | /* |
| 69 | * Vary-related structures and functions |
| 70 | */ |
| 71 | enum vary_header_bit { |
| 72 | VARY_ACCEPT_ENCODING = (1 << 0), |
| 73 | VARY_REFERER = (1 << 1), |
| 74 | VARY_LAST /* should always be last */ |
| 75 | }; |
| 76 | |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 77 | /* |
| 78 | * Encoding list extracted from |
| 79 | * https://www.iana.org/assignments/http-parameters/http-parameters.xhtml |
| 80 | * and RFC7231#5.3.4. |
| 81 | */ |
| 82 | enum vary_encoding { |
| 83 | VARY_ENCODING_GZIP = (1 << 0), |
| 84 | VARY_ENCODING_DEFLATE = (1 << 1), |
| 85 | VARY_ENCODING_BR = (1 << 2), |
| 86 | VARY_ENCODING_COMPRESS = (1 << 3), |
| 87 | VARY_ENCODING_AES128GCM = (1 << 4), |
| 88 | VARY_ENCODING_EXI = (1 << 5), |
| 89 | VARY_ENCODING_PACK200_GZIP = (1 << 6), |
| 90 | VARY_ENCODING_ZSTD = (1 << 7), |
| 91 | VARY_ENCODING_IDENTITY = (1 << 8), |
| 92 | VARY_ENCODING_STAR = (1 << 9), |
| 93 | VARY_ENCODING_OTHER = (1 << 10) |
| 94 | }; |
| 95 | |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 96 | struct vary_hashing_information { |
| 97 | struct ist hdr_name; /* Header name */ |
Ilya Shipitsin | f38a018 | 2020-12-21 01:16:17 +0500 | [diff] [blame] | 98 | enum vary_header_bit value; /* Bit representing the header in a vary signature */ |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 99 | unsigned int hash_length; /* Size of the sub hash for this header's value */ |
Remi Tricot-Le Breton | 6a34b2b | 2020-12-23 18:13:47 +0100 | [diff] [blame] | 100 | int(*norm_fn)(struct htx*,struct ist hdr_name,char* buf,unsigned int* buf_len); /* Normalization function */ |
Tim Duesterhus | ed84d84 | 2021-01-18 13:41:17 +0100 | [diff] [blame] | 101 | int(*cmp_fn)(const void *ref, const void *new, unsigned int len); /* Comparison function, should return 0 if the hashes are alike */ |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 102 | }; |
| 103 | |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 104 | static int http_request_prebuild_full_secondary_key(struct stream *s); |
| 105 | static int http_request_build_secondary_key(struct stream *s, int vary_signature); |
| 106 | static int http_request_reduce_secondary_key(unsigned int vary_signature, |
| 107 | char prebuilt_key[HTTP_CACHE_SEC_KEY_LEN]); |
| 108 | |
| 109 | static int parse_encoding_value(struct ist value, unsigned int *encoding_value, |
| 110 | unsigned int *has_null_weight); |
| 111 | |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 112 | static int accept_encoding_normalizer(struct htx *htx, struct ist hdr_name, |
| 113 | char *buf, unsigned int *buf_len); |
| 114 | static int default_normalizer(struct htx *htx, struct ist hdr_name, |
| 115 | char *buf, unsigned int *buf_len); |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 116 | |
Tim Duesterhus | ed84d84 | 2021-01-18 13:41:17 +0100 | [diff] [blame] | 117 | static int accept_encoding_bitmap_cmp(const void *ref, const void *new, unsigned int len); |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 118 | |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 119 | /* Warning : do not forget to update HTTP_CACHE_SEC_KEY_LEN when new items are |
| 120 | * added to this array. */ |
| 121 | const struct vary_hashing_information vary_information[] = { |
Tim Duesterhus | ed84d84 | 2021-01-18 13:41:17 +0100 | [diff] [blame] | 122 | { IST("accept-encoding"), VARY_ACCEPT_ENCODING, sizeof(uint32_t), &accept_encoding_normalizer, &accept_encoding_bitmap_cmp }, |
Remi Tricot-Le Breton | 6a34b2b | 2020-12-23 18:13:47 +0100 | [diff] [blame] | 123 | { IST("referer"), VARY_REFERER, sizeof(int), &default_normalizer, NULL }, |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 124 | }; |
| 125 | |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 126 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 127 | /* |
| 128 | * cache ctx for filters |
| 129 | */ |
| 130 | struct cache_st { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 131 | struct shared_block *first_block; |
| 132 | }; |
| 133 | |
Remi Tricot-Le Breton | 5853c0c | 2020-12-10 17:58:43 +0100 | [diff] [blame] | 134 | #define DEFAULT_MAX_SECONDARY_ENTRY 10 |
Remi Tricot-Le Breton | 65904e4 | 2020-12-10 17:58:41 +0100 | [diff] [blame] | 135 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 136 | struct cache_entry { |
Remi Tricot-Le Breton | 3243447 | 2020-11-25 10:09:43 +0100 | [diff] [blame] | 137 | unsigned int complete; /* An entry won't be valid until complete is not null. */ |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 138 | unsigned int latest_validation; /* latest validation date */ |
| 139 | unsigned int expire; /* expiration date */ |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 140 | unsigned int age; /* Origin server "Age" header value */ |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 141 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 142 | struct eb32_node eb; /* ebtree node used to hold the cache object */ |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 143 | char hash[20]; |
Remi Tricot-Le Breton | dbb65b5 | 2020-10-22 10:40:04 +0200 | [diff] [blame] | 144 | |
Remi Tricot-Le Breton | 1785f3d | 2020-11-16 15:56:09 +0100 | [diff] [blame] | 145 | char secondary_key[HTTP_CACHE_SEC_KEY_LEN]; /* Optional secondary key. */ |
| 146 | unsigned int secondary_key_signature; /* Bitfield of the HTTP headers that should be used |
| 147 | * to build secondary keys for this cache entry. */ |
Remi Tricot-Le Breton | 65904e4 | 2020-12-10 17:58:41 +0100 | [diff] [blame] | 148 | unsigned int secondary_entries_count; /* Should only be filled in the last entry of a list of dup entries */ |
Remi Tricot-Le Breton | 73be796 | 2020-12-10 17:58:42 +0100 | [diff] [blame] | 149 | unsigned int last_clear_ts; /* Timestamp of the last call to clear_expired_duplicates. */ |
Remi Tricot-Le Breton | 1785f3d | 2020-11-16 15:56:09 +0100 | [diff] [blame] | 150 | |
Remi Tricot-Le Breton | dbb65b5 | 2020-10-22 10:40:04 +0200 | [diff] [blame] | 151 | unsigned int etag_length; /* Length of the ETag value (if one was found in the response). */ |
| 152 | unsigned int etag_offset; /* Offset of the ETag value in the data buffer. */ |
| 153 | |
Remi Tricot Le Breton | 27091b4 | 2020-10-23 10:51:27 +0200 | [diff] [blame] | 154 | time_t last_modified; /* Origin server "Last-Modified" header value converted in |
| 155 | * seconds since epoch. If no "Last-Modified" |
| 156 | * header is found, use "Date" header value, |
| 157 | * otherwise use reception time. This field will |
| 158 | * be used in case of an "If-Modified-Since"-based |
| 159 | * conditional request. */ |
| 160 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 161 | unsigned char data[0]; |
| 162 | }; |
| 163 | |
| 164 | #define CACHE_BLOCKSIZE 1024 |
Willy Tarreau | 96062a1 | 2018-11-11 14:00:28 +0100 | [diff] [blame] | 165 | #define CACHE_ENTRY_MAX_AGE 2147483648U |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 166 | |
| 167 | static struct list caches = LIST_HEAD_INIT(caches); |
William Lallemand | d1d1e22 | 2019-08-28 15:22:49 +0200 | [diff] [blame] | 168 | static struct list caches_config = LIST_HEAD_INIT(caches_config); /* cache config to init */ |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 169 | static struct cache *tmp_cache_config = NULL; |
| 170 | |
Willy Tarreau | 8ceae72 | 2018-11-26 11:58:30 +0100 | [diff] [blame] | 171 | DECLARE_STATIC_POOL(pool_head_cache_st, "cache_st", sizeof(struct cache_st)); |
| 172 | |
Remi Tricot-Le Breton | 65904e4 | 2020-12-10 17:58:41 +0100 | [diff] [blame] | 173 | static struct eb32_node *insert_entry(struct cache *cache, struct cache_entry *new_entry); |
| 174 | static void delete_entry(struct cache_entry *del_entry); |
| 175 | |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 176 | struct cache_entry *entry_exist(struct cache *cache, char *hash) |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 177 | { |
| 178 | struct eb32_node *node; |
| 179 | struct cache_entry *entry; |
| 180 | |
Willy Tarreau | 8b50758 | 2020-02-25 09:35:07 +0100 | [diff] [blame] | 181 | node = eb32_lookup(&cache->entries, read_u32(hash)); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 182 | if (!node) |
| 183 | return NULL; |
| 184 | |
| 185 | entry = eb32_entry(node, struct cache_entry, eb); |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 186 | |
| 187 | /* if that's not the right node */ |
| 188 | if (memcmp(entry->hash, hash, sizeof(entry->hash))) |
| 189 | return NULL; |
| 190 | |
William Lallemand | 0872766 | 2017-11-21 20:01:27 +0100 | [diff] [blame] | 191 | if (entry->expire > now.tv_sec) { |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 192 | return entry; |
William Lallemand | 0872766 | 2017-11-21 20:01:27 +0100 | [diff] [blame] | 193 | } else { |
Remi Tricot-Le Breton | 65904e4 | 2020-12-10 17:58:41 +0100 | [diff] [blame] | 194 | delete_entry(entry); |
William Lallemand | 0872766 | 2017-11-21 20:01:27 +0100 | [diff] [blame] | 195 | entry->eb.key = 0; |
| 196 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 197 | return NULL; |
| 198 | |
| 199 | } |
| 200 | |
Remi Tricot-Le Breton | 6a34b2b | 2020-12-23 18:13:47 +0100 | [diff] [blame] | 201 | |
| 202 | /* |
| 203 | * Compare a newly built secondary key to the one found in a cache_entry. |
| 204 | * Every sub-part of the key is compared to the reference through the dedicated |
| 205 | * comparison function of the sub-part (that might do more than a simple |
| 206 | * memcmp). |
| 207 | * Returns 0 if the keys are alike. |
| 208 | */ |
| 209 | static int secondary_key_cmp(const char *ref_key, const char *new_key) |
| 210 | { |
| 211 | int retval = 0; |
Tim Duesterhus | 5897cfe | 2021-01-18 13:41:18 +0100 | [diff] [blame] | 212 | size_t idx = 0; |
| 213 | unsigned int offset = 0; |
Remi Tricot-Le Breton | 6a34b2b | 2020-12-23 18:13:47 +0100 | [diff] [blame] | 214 | const struct vary_hashing_information *info; |
| 215 | |
| 216 | for (idx = 0; idx < sizeof(vary_information)/sizeof(*vary_information) && !retval; ++idx) { |
| 217 | info = &vary_information[idx]; |
| 218 | |
| 219 | if (info->cmp_fn) |
| 220 | retval = info->cmp_fn(&ref_key[offset], &new_key[offset], info->hash_length); |
| 221 | else |
| 222 | retval = memcmp(&ref_key[offset], &new_key[offset], info->hash_length); |
| 223 | |
| 224 | offset += info->hash_length; |
| 225 | } |
| 226 | |
| 227 | return retval; |
| 228 | } |
| 229 | |
Remi Tricot-Le Breton | 1785f3d | 2020-11-16 15:56:09 +0100 | [diff] [blame] | 230 | /* |
| 231 | * There can be multiple entries with the same primary key in the ebtree so in |
| 232 | * order to get the proper one out of the list, we use a secondary_key. |
| 233 | * This function simply iterates over all the entries with the same primary_key |
| 234 | * until it finds the right one. |
| 235 | * Returns the cache_entry in case of success, NULL otherwise. |
| 236 | */ |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 237 | struct cache_entry *secondary_entry_exist(struct cache *cache, struct cache_entry *entry, |
Remi Tricot-Le Breton | 6a34b2b | 2020-12-23 18:13:47 +0100 | [diff] [blame] | 238 | const char *secondary_key) |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 239 | { |
| 240 | struct eb32_node *node = &entry->eb; |
| 241 | |
| 242 | if (!entry->secondary_key_signature) |
| 243 | return NULL; |
| 244 | |
Remi Tricot-Le Breton | 6a34b2b | 2020-12-23 18:13:47 +0100 | [diff] [blame] | 245 | while (entry && secondary_key_cmp(entry->secondary_key, secondary_key) != 0) { |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 246 | node = eb32_next_dup(node); |
Remi Tricot-Le Breton | 65904e4 | 2020-12-10 17:58:41 +0100 | [diff] [blame] | 247 | |
| 248 | /* Make the best use of this iteration and clear expired entries |
| 249 | * when we find them. Calling delete_entry would be too costly |
| 250 | * so we simply call eb32_delete. The secondary_entry count will |
| 251 | * be updated when we try to insert a new entry to this list. */ |
| 252 | if (entry->expire <= now.tv_sec) { |
| 253 | eb32_delete(&entry->eb); |
| 254 | entry->eb.key = 0; |
| 255 | } |
| 256 | |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 257 | entry = node ? eb32_entry(node, struct cache_entry, eb) : NULL; |
| 258 | } |
| 259 | |
| 260 | /* Expired entry */ |
| 261 | if (entry && entry->expire <= now.tv_sec) { |
| 262 | eb32_delete(&entry->eb); |
| 263 | entry->eb.key = 0; |
| 264 | entry = NULL; |
| 265 | } |
| 266 | |
| 267 | return entry; |
| 268 | } |
| 269 | |
Remi Tricot-Le Breton | 65904e4 | 2020-12-10 17:58:41 +0100 | [diff] [blame] | 270 | |
Remi Tricot-Le Breton | 73be796 | 2020-12-10 17:58:42 +0100 | [diff] [blame] | 271 | /* |
| 272 | * Remove all expired entries from a list of duplicates. |
| 273 | * Return the number of alive entries in the list and sets dup_tail to the |
| 274 | * current last item of the list. |
| 275 | */ |
| 276 | static unsigned int clear_expired_duplicates(struct eb32_node **dup_tail) |
| 277 | { |
| 278 | unsigned int entry_count = 0; |
| 279 | struct cache_entry *entry = NULL; |
| 280 | struct eb32_node *prev = *dup_tail; |
| 281 | struct eb32_node *tail = NULL; |
| 282 | |
| 283 | while (prev) { |
| 284 | entry = container_of(prev, struct cache_entry, eb); |
| 285 | prev = eb32_prev_dup(prev); |
| 286 | if (entry->expire <= now.tv_sec) { |
| 287 | eb32_delete(&entry->eb); |
| 288 | entry->eb.key = 0; |
| 289 | } |
| 290 | else { |
| 291 | if (!tail) |
| 292 | tail = &entry->eb; |
| 293 | ++entry_count; |
| 294 | } |
| 295 | } |
| 296 | |
| 297 | *dup_tail = tail; |
| 298 | |
| 299 | return entry_count; |
| 300 | } |
| 301 | |
Remi Tricot-Le Breton | 65904e4 | 2020-12-10 17:58:41 +0100 | [diff] [blame] | 302 | |
| 303 | /* |
| 304 | * This function inserts a cache_entry in the cache's ebtree. In case of |
| 305 | * duplicate entries (vary), it then checks that the number of entries did not |
| 306 | * reach the max number of secondary entries. If this entry should not have been |
| 307 | * created, remove it. |
| 308 | * In the regular case (unique entries), this function does not do more than a |
| 309 | * simple insert. In case of secondary entries, it will at most cost an |
| 310 | * insertion+max_sec_entries time checks and entry deletion. |
| 311 | * Returns the newly inserted node in case of success, NULL otherwise. |
| 312 | */ |
| 313 | static struct eb32_node *insert_entry(struct cache *cache, struct cache_entry *new_entry) |
| 314 | { |
| 315 | struct eb32_node *prev = NULL; |
| 316 | struct cache_entry *entry = NULL; |
| 317 | unsigned int entry_count = 0; |
Remi Tricot-Le Breton | 73be796 | 2020-12-10 17:58:42 +0100 | [diff] [blame] | 318 | unsigned int last_clear_ts = now.tv_sec; |
Remi Tricot-Le Breton | 65904e4 | 2020-12-10 17:58:41 +0100 | [diff] [blame] | 319 | |
| 320 | struct eb32_node *node = eb32_insert(&cache->entries, &new_entry->eb); |
| 321 | |
| 322 | /* We should not have multiple entries with the same primary key unless |
| 323 | * the entry has a non null vary signature. */ |
| 324 | if (!new_entry->secondary_key_signature) |
| 325 | return node; |
| 326 | |
| 327 | prev = eb32_prev_dup(node); |
| 328 | if (prev != NULL) { |
| 329 | /* The last entry of a duplicate list should contain the current |
| 330 | * number of entries in the list. */ |
| 331 | entry = container_of(prev, struct cache_entry, eb); |
| 332 | entry_count = entry->secondary_entries_count; |
Remi Tricot-Le Breton | 73be796 | 2020-12-10 17:58:42 +0100 | [diff] [blame] | 333 | last_clear_ts = entry->last_clear_ts; |
Remi Tricot-Le Breton | 65904e4 | 2020-12-10 17:58:41 +0100 | [diff] [blame] | 334 | |
Remi Tricot-Le Breton | 5853c0c | 2020-12-10 17:58:43 +0100 | [diff] [blame] | 335 | if (entry_count >= cache->max_secondary_entries) { |
Remi Tricot-Le Breton | 73be796 | 2020-12-10 17:58:42 +0100 | [diff] [blame] | 336 | /* Some entries of the duplicate list might be expired so |
| 337 | * we will iterate over all the items in order to free some |
| 338 | * space. In order to avoid going over the same list too |
| 339 | * often, we first check the timestamp of the last check |
| 340 | * performed. */ |
| 341 | if (last_clear_ts == now.tv_sec) { |
| 342 | /* Too many entries for this primary key, clear the |
| 343 | * one that was inserted. */ |
| 344 | eb32_delete(node); |
| 345 | node->key = 0; |
| 346 | return NULL; |
| 347 | } |
| 348 | |
| 349 | entry_count = clear_expired_duplicates(&prev); |
Remi Tricot-Le Breton | 5853c0c | 2020-12-10 17:58:43 +0100 | [diff] [blame] | 350 | if (entry_count >= cache->max_secondary_entries) { |
Remi Tricot-Le Breton | 73be796 | 2020-12-10 17:58:42 +0100 | [diff] [blame] | 351 | /* Still too many entries for this primary key, delete |
| 352 | * the newly inserted one. */ |
| 353 | entry = container_of(prev, struct cache_entry, eb); |
| 354 | entry->last_clear_ts = now.tv_sec; |
| 355 | eb32_delete(node); |
| 356 | node->key = 0; |
| 357 | return NULL; |
| 358 | } |
Remi Tricot-Le Breton | 65904e4 | 2020-12-10 17:58:41 +0100 | [diff] [blame] | 359 | } |
| 360 | } |
| 361 | |
| 362 | new_entry->secondary_entries_count = entry_count + 1; |
Remi Tricot-Le Breton | 73be796 | 2020-12-10 17:58:42 +0100 | [diff] [blame] | 363 | new_entry->last_clear_ts = last_clear_ts; |
Remi Tricot-Le Breton | 65904e4 | 2020-12-10 17:58:41 +0100 | [diff] [blame] | 364 | |
| 365 | return node; |
| 366 | } |
| 367 | |
| 368 | |
| 369 | /* |
| 370 | * This function removes an entry from the ebtree. If the entry was a duplicate |
| 371 | * (in case of Vary), it updates the secondary entry counter in another |
| 372 | * duplicate entry (the last entry of the dup list). |
| 373 | */ |
| 374 | static void delete_entry(struct cache_entry *del_entry) |
| 375 | { |
| 376 | struct eb32_node *prev = NULL, *next = NULL; |
| 377 | struct cache_entry *entry = NULL; |
| 378 | struct eb32_node *last = NULL; |
| 379 | |
| 380 | if (del_entry->secondary_key_signature) { |
| 381 | next = &del_entry->eb; |
| 382 | |
| 383 | /* Look for last entry of the duplicates list. */ |
| 384 | while ((next = eb32_next_dup(next))) { |
| 385 | last = next; |
| 386 | } |
| 387 | |
| 388 | if (last) { |
| 389 | entry = container_of(last, struct cache_entry, eb); |
| 390 | --entry->secondary_entries_count; |
| 391 | } |
| 392 | else { |
| 393 | /* The current entry is the last one, look for the |
| 394 | * previous one to update its counter. */ |
| 395 | prev = eb32_prev_dup(&del_entry->eb); |
| 396 | if (prev) { |
| 397 | entry = container_of(prev, struct cache_entry, eb); |
| 398 | entry->secondary_entries_count = del_entry->secondary_entries_count - 1; |
| 399 | } |
| 400 | } |
| 401 | } |
| 402 | eb32_delete(&del_entry->eb); |
| 403 | del_entry->eb.key = 0; |
| 404 | } |
| 405 | |
| 406 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 407 | static inline struct shared_context *shctx_ptr(struct cache *cache) |
| 408 | { |
| 409 | return (struct shared_context *)((unsigned char *)cache - ((struct shared_context *)NULL)->data); |
| 410 | } |
| 411 | |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 412 | static inline struct shared_block *block_ptr(struct cache_entry *entry) |
| 413 | { |
| 414 | return (struct shared_block *)((unsigned char *)entry - ((struct shared_block *)NULL)->data); |
| 415 | } |
| 416 | |
| 417 | |
| 418 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 419 | static int |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 420 | cache_store_init(struct proxy *px, struct flt_conf *fconf) |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 421 | { |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 422 | fconf->flags |= FLT_CFG_FL_HTX; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 423 | return 0; |
| 424 | } |
| 425 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 426 | static void |
| 427 | cache_store_deinit(struct proxy *px, struct flt_conf *fconf) |
| 428 | { |
| 429 | struct cache_flt_conf *cconf = fconf->conf; |
| 430 | |
Tim Duesterhus | d7c6e6a | 2020-09-14 18:01:33 +0200 | [diff] [blame] | 431 | if (!(cconf->flags & CACHE_FLT_INIT)) |
| 432 | free(cconf->c.name); |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 433 | free(cconf); |
| 434 | } |
| 435 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 436 | static int |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 437 | cache_store_check(struct proxy *px, struct flt_conf *fconf) |
| 438 | { |
| 439 | struct cache_flt_conf *cconf = fconf->conf; |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 440 | struct flt_conf *f; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 441 | struct cache *cache; |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 442 | int comp = 0; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 443 | |
William Lallemand | d1d1e22 | 2019-08-28 15:22:49 +0200 | [diff] [blame] | 444 | /* Find the cache corresponding to the name in the filter config. The |
| 445 | * cache will not be referenced now in the filter config because it is |
| 446 | * not fully allocated. This step will be performed during the cache |
| 447 | * post_check. |
| 448 | */ |
| 449 | list_for_each_entry(cache, &caches_config, list) { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 450 | if (strcmp(cache->id, cconf->c.name) == 0) |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 451 | goto found; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | ha_alert("config: %s '%s': unable to find the cache '%s' referenced by the filter 'cache'.\n", |
| 455 | proxy_type_str(px), px->id, (char *)cconf->c.name); |
| 456 | return 1; |
| 457 | |
| 458 | found: |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 459 | /* Here <cache> points on the cache the filter must use and <cconf> |
| 460 | * points on the cache filter configuration. */ |
| 461 | |
| 462 | /* Check all filters for proxy <px> to know if the compression is |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 463 | * enabled and if it is after the cache. When the compression is before |
| 464 | * the cache, an error is returned. Also check if the cache filter must |
| 465 | * be explicitly declaired or not. */ |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 466 | list_for_each_entry(f, &px->filter_configs, list) { |
| 467 | if (f == fconf) { |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 468 | /* The compression filter must be evaluated after the cache. */ |
| 469 | if (comp) { |
| 470 | ha_alert("config: %s '%s': unable to enable the compression filter before " |
| 471 | "the cache '%s'.\n", proxy_type_str(px), px->id, cache->id); |
| 472 | return 1; |
| 473 | } |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 474 | } |
Christopher Faulet | 8f7fe1c | 2019-07-15 15:08:25 +0200 | [diff] [blame] | 475 | else if (f->id == http_comp_flt_id) |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 476 | comp = 1; |
Christopher Faulet | 78fbb9f | 2019-08-11 23:11:03 +0200 | [diff] [blame] | 477 | else if (f->id == fcgi_flt_id) |
| 478 | continue; |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 479 | else if ((f->id != fconf->id) && (cconf->flags & CACHE_FLT_F_IMPLICIT_DECL)) { |
| 480 | /* Implicit declaration is only allowed with the |
Christopher Faulet | 78fbb9f | 2019-08-11 23:11:03 +0200 | [diff] [blame] | 481 | * compression and fcgi. For other filters, an implicit |
Christopher Faulet | 27d93c3 | 2018-12-15 22:32:02 +0100 | [diff] [blame] | 482 | * declaration is required. */ |
| 483 | ha_alert("config: %s '%s': require an explicit filter declaration " |
| 484 | "to use the cache '%s'.\n", proxy_type_str(px), px->id, cache->id); |
| 485 | return 1; |
| 486 | } |
| 487 | |
Christopher Faulet | afd819c | 2018-12-11 08:57:45 +0100 | [diff] [blame] | 488 | } |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 489 | return 0; |
| 490 | } |
| 491 | |
| 492 | static int |
Christopher Faulet | 65554e1 | 2020-03-06 14:52:06 +0100 | [diff] [blame] | 493 | cache_store_strm_init(struct stream *s, struct filter *filter) |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 494 | { |
Christopher Faulet | 65554e1 | 2020-03-06 14:52:06 +0100 | [diff] [blame] | 495 | struct cache_st *st; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 496 | |
Willy Tarreau | acc5b01 | 2021-03-22 15:00:49 +0100 | [diff] [blame] | 497 | st = pool_alloc(pool_head_cache_st); |
Christopher Faulet | 65554e1 | 2020-03-06 14:52:06 +0100 | [diff] [blame] | 498 | if (st == NULL) |
| 499 | return -1; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 500 | |
Christopher Faulet | 65554e1 | 2020-03-06 14:52:06 +0100 | [diff] [blame] | 501 | st->first_block = NULL; |
| 502 | filter->ctx = st; |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 503 | |
Christopher Faulet | 65554e1 | 2020-03-06 14:52:06 +0100 | [diff] [blame] | 504 | /* Register post-analyzer on AN_RES_WAIT_HTTP */ |
| 505 | filter->post_analyzers |= AN_RES_WAIT_HTTP; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 506 | return 1; |
| 507 | } |
| 508 | |
Christopher Faulet | 65554e1 | 2020-03-06 14:52:06 +0100 | [diff] [blame] | 509 | static void |
| 510 | cache_store_strm_deinit(struct stream *s, struct filter *filter) |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 511 | { |
| 512 | struct cache_st *st = filter->ctx; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 513 | struct cache_flt_conf *cconf = FLT_CONF(filter); |
| 514 | struct cache *cache = cconf->c.cache; |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 515 | struct shared_context *shctx = shctx_ptr(cache); |
| 516 | |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 517 | /* Everything should be released in the http_end filter, but we need to do it |
| 518 | * there too, in case of errors */ |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 519 | if (st && st->first_block) { |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 520 | shctx_lock(shctx); |
| 521 | shctx_row_dec_hot(shctx, st->first_block); |
| 522 | shctx_unlock(shctx); |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 523 | } |
| 524 | if (st) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 525 | pool_free(pool_head_cache_st, st); |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 526 | filter->ctx = NULL; |
| 527 | } |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 528 | } |
| 529 | |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 530 | static int |
| 531 | cache_store_post_analyze(struct stream *s, struct filter *filter, struct channel *chn, |
| 532 | unsigned an_bit) |
| 533 | { |
| 534 | struct http_txn *txn = s->txn; |
| 535 | struct http_msg *msg = &txn->rsp; |
| 536 | struct cache_st *st = filter->ctx; |
| 537 | |
| 538 | if (an_bit != AN_RES_WAIT_HTTP) |
| 539 | goto end; |
| 540 | |
| 541 | /* Here we need to check if any compression filter precedes the cache |
| 542 | * filter. This is only possible when the compression is configured in |
| 543 | * the frontend while the cache filter is configured on the |
| 544 | * backend. This case cannot be detected during HAProxy startup. So in |
| 545 | * such cases, the cache is disabled. |
| 546 | */ |
| 547 | if (st && (msg->flags & HTTP_MSGF_COMPRESSING)) { |
| 548 | pool_free(pool_head_cache_st, st); |
| 549 | filter->ctx = NULL; |
| 550 | } |
| 551 | |
| 552 | end: |
| 553 | return 1; |
| 554 | } |
William Lallemand | 49dc048 | 2017-11-24 14:33:54 +0100 | [diff] [blame] | 555 | |
| 556 | static int |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 557 | cache_store_http_headers(struct stream *s, struct filter *filter, struct http_msg *msg) |
| 558 | { |
| 559 | struct cache_st *st = filter->ctx; |
| 560 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 561 | if (!(msg->chn->flags & CF_ISRESP) || !st) |
| 562 | return 1; |
| 563 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 564 | if (st->first_block) |
Christopher Faulet | 67658c9 | 2018-12-06 21:59:39 +0100 | [diff] [blame] | 565 | register_data_filter(s, msg->chn, filter); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 566 | return 1; |
| 567 | } |
| 568 | |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 569 | static inline void disable_cache_entry(struct cache_st *st, |
| 570 | struct filter *filter, struct shared_context *shctx) |
| 571 | { |
| 572 | struct cache_entry *object; |
| 573 | |
| 574 | object = (struct cache_entry *)st->first_block->data; |
| 575 | filter->ctx = NULL; /* disable cache */ |
| 576 | shctx_lock(shctx); |
| 577 | shctx_row_dec_hot(shctx, st->first_block); |
Remi Tricot-Le Breton | 964caaf | 2020-12-15 14:30:12 +0100 | [diff] [blame] | 578 | eb32_delete(&object->eb); |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 579 | object->eb.key = 0; |
| 580 | shctx_unlock(shctx); |
| 581 | pool_free(pool_head_cache_st, st); |
| 582 | } |
| 583 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 584 | static int |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 585 | cache_store_http_payload(struct stream *s, struct filter *filter, struct http_msg *msg, |
| 586 | unsigned int offset, unsigned int len) |
| 587 | { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 588 | struct cache_flt_conf *cconf = FLT_CONF(filter); |
| 589 | struct shared_context *shctx = shctx_ptr(cconf->c.cache); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 590 | struct cache_st *st = filter->ctx; |
| 591 | struct htx *htx = htxbuf(&msg->chn->buf); |
| 592 | struct htx_blk *blk; |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 593 | struct shared_block *fb; |
Christopher Faulet | 497c759 | 2020-03-02 16:19:50 +0100 | [diff] [blame] | 594 | struct htx_ret htxret; |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 595 | unsigned int orig_len, to_forward; |
| 596 | int ret; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 597 | |
| 598 | if (!len) |
| 599 | return len; |
| 600 | |
| 601 | if (!st->first_block) { |
| 602 | unregister_data_filter(s, msg->chn, filter); |
| 603 | return len; |
| 604 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 605 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 606 | chunk_reset(&trash); |
| 607 | orig_len = len; |
| 608 | to_forward = 0; |
Christopher Faulet | 497c759 | 2020-03-02 16:19:50 +0100 | [diff] [blame] | 609 | |
| 610 | htxret = htx_find_offset(htx, offset); |
| 611 | blk = htxret.blk; |
| 612 | offset = htxret.ret; |
| 613 | for (; blk && len; blk = htx_get_next_blk(htx, blk)) { |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 614 | enum htx_blk_type type = htx_get_blk_type(blk); |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 615 | uint32_t info, sz = htx_get_blksz(blk); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 616 | struct ist v; |
| 617 | |
| 618 | switch (type) { |
| 619 | case HTX_BLK_UNUSED: |
| 620 | break; |
| 621 | |
| 622 | case HTX_BLK_DATA: |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 623 | v = htx_get_blk_value(htx, blk); |
Tim Duesterhus | 154374c | 2021-03-02 18:57:27 +0100 | [diff] [blame] | 624 | v = istadv(v, offset); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 625 | if (v.len > len) |
| 626 | v.len = len; |
| 627 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 628 | info = (type << 28) + v.len; |
| 629 | chunk_memcat(&trash, (char *)&info, sizeof(info)); |
| 630 | chunk_memcat(&trash, v.ptr, v.len); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 631 | to_forward += v.len; |
| 632 | len -= v.len; |
| 633 | break; |
| 634 | |
| 635 | default: |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 636 | /* Here offset must always be 0 because only |
| 637 | * DATA blocks can be partially transferred. */ |
| 638 | if (offset) |
| 639 | goto no_cache; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 640 | if (sz > len) |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 641 | goto end; |
| 642 | |
| 643 | chunk_memcat(&trash, (char *)&blk->info, sizeof(blk->info)); |
| 644 | chunk_memcat(&trash, htx_get_blk_ptr(htx, blk), sz); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 645 | to_forward += sz; |
| 646 | len -= sz; |
| 647 | break; |
| 648 | } |
| 649 | |
| 650 | offset = 0; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 651 | } |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 652 | |
| 653 | end: |
| 654 | shctx_lock(shctx); |
| 655 | fb = shctx_row_reserve_hot(shctx, st->first_block, trash.data); |
| 656 | if (!fb) { |
| 657 | shctx_unlock(shctx); |
| 658 | goto no_cache; |
| 659 | } |
| 660 | shctx_unlock(shctx); |
| 661 | |
| 662 | ret = shctx_row_data_append(shctx, st->first_block, st->first_block->last_append, |
| 663 | (unsigned char *)b_head(&trash), b_data(&trash)); |
| 664 | if (ret < 0) |
| 665 | goto no_cache; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 666 | |
| 667 | return to_forward; |
| 668 | |
| 669 | no_cache: |
| 670 | disable_cache_entry(st, filter, shctx); |
| 671 | unregister_data_filter(s, msg->chn, filter); |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 672 | return orig_len; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 673 | } |
| 674 | |
| 675 | static int |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 676 | cache_store_http_end(struct stream *s, struct filter *filter, |
| 677 | struct http_msg *msg) |
| 678 | { |
| 679 | struct cache_st *st = filter->ctx; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 680 | struct cache_flt_conf *cconf = FLT_CONF(filter); |
| 681 | struct cache *cache = cconf->c.cache; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 682 | struct shared_context *shctx = shctx_ptr(cache); |
| 683 | struct cache_entry *object; |
| 684 | |
| 685 | if (!(msg->chn->flags & CF_ISRESP)) |
| 686 | return 1; |
| 687 | |
| 688 | if (st && st->first_block) { |
| 689 | |
| 690 | object = (struct cache_entry *)st->first_block->data; |
| 691 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 692 | shctx_lock(shctx); |
Remi Tricot-Le Breton | 3243447 | 2020-11-25 10:09:43 +0100 | [diff] [blame] | 693 | /* The whole payload was cached, the entry can now be used. */ |
| 694 | object->complete = 1; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 695 | /* remove from the hotlist */ |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 696 | shctx_row_dec_hot(shctx, st->first_block); |
| 697 | shctx_unlock(shctx); |
| 698 | |
| 699 | } |
| 700 | if (st) { |
Willy Tarreau | bafbe01 | 2017-11-24 17:34:44 +0100 | [diff] [blame] | 701 | pool_free(pool_head_cache_st, st); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 702 | filter->ctx = NULL; |
| 703 | } |
| 704 | |
| 705 | return 1; |
| 706 | } |
| 707 | |
| 708 | /* |
| 709 | * This intends to be used when checking HTTP headers for some |
| 710 | * word=value directive. Return a pointer to the first character of value, if |
Willy Tarreau | 94a01e1 | 2021-01-06 17:35:12 +0100 | [diff] [blame] | 711 | * the word was not found or if there wasn't any value assigned to it return NULL |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 712 | */ |
| 713 | char *directive_value(const char *sample, int slen, const char *word, int wlen) |
| 714 | { |
| 715 | int st = 0; |
| 716 | |
| 717 | if (slen < wlen) |
| 718 | return 0; |
| 719 | |
| 720 | while (wlen) { |
| 721 | char c = *sample ^ *word; |
| 722 | if (c && c != ('A' ^ 'a')) |
| 723 | return NULL; |
| 724 | sample++; |
| 725 | word++; |
| 726 | slen--; |
| 727 | wlen--; |
| 728 | } |
| 729 | |
| 730 | while (slen) { |
| 731 | if (st == 0) { |
| 732 | if (*sample != '=') |
| 733 | return NULL; |
| 734 | sample++; |
| 735 | slen--; |
| 736 | st = 1; |
| 737 | continue; |
| 738 | } else { |
| 739 | return (char *)sample; |
| 740 | } |
| 741 | } |
| 742 | |
| 743 | return NULL; |
| 744 | } |
| 745 | |
| 746 | /* |
| 747 | * Return the maxage in seconds of an HTTP response. |
Remi Tricot-Le Breton | 795e141 | 2020-12-03 18:19:29 +0100 | [diff] [blame] | 748 | * The returned value will always take the cache's configuration into account |
| 749 | * (cache->maxage) but the actual max age of the response will be set in the |
| 750 | * true_maxage parameter. It will be used to determine if a response is already |
| 751 | * stale or not. |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 752 | * Compute the maxage using either: |
| 753 | * - the assigned max-age of the cache |
| 754 | * - the s-maxage directive |
| 755 | * - the max-age directive |
| 756 | * - (Expires - Data) headers |
| 757 | * - the default-max-age of the cache |
| 758 | * |
| 759 | */ |
Remi Tricot-Le Breton | 795e141 | 2020-12-03 18:19:29 +0100 | [diff] [blame] | 760 | int http_calc_maxage(struct stream *s, struct cache *cache, int *true_maxage) |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 761 | { |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 762 | struct htx *htx = htxbuf(&s->res.buf); |
| 763 | struct http_hdr_ctx ctx = { .blk = NULL }; |
Remi Tricot-Le Breton | fcea374 | 2020-12-03 18:19:30 +0100 | [diff] [blame] | 764 | long smaxage = -1; |
| 765 | long maxage = -1; |
Remi Tricot-Le Breton | a647611 | 2020-10-28 17:52:53 +0100 | [diff] [blame] | 766 | int expires = -1; |
| 767 | struct tm tm = {}; |
| 768 | time_t expires_val = 0; |
Remi Tricot-Le Breton | fcea374 | 2020-12-03 18:19:30 +0100 | [diff] [blame] | 769 | char *endptr = NULL; |
| 770 | int offset = 0; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 771 | |
Remi Tricot-Le Breton | fcea374 | 2020-12-03 18:19:30 +0100 | [diff] [blame] | 772 | /* The Cache-Control max-age and s-maxage directives should be followed by |
| 773 | * a positive numerical value (see RFC 7234#5.2.1.1). According to the |
| 774 | * specs, a sender "should not" generate a quoted-string value but we will |
| 775 | * still accept this format since it isn't strictly forbidden. */ |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 776 | while (http_find_header(htx, ist("cache-control"), &ctx, 0)) { |
| 777 | char *value; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 778 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 779 | value = directive_value(ctx.value.ptr, ctx.value.len, "s-maxage", 8); |
| 780 | if (value) { |
| 781 | struct buffer *chk = get_trash_chunk(); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 782 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 783 | chunk_strncat(chk, value, ctx.value.len - 8 + 1); |
| 784 | chunk_strncat(chk, "", 1); |
Remi Tricot-Le Breton | fcea374 | 2020-12-03 18:19:30 +0100 | [diff] [blame] | 785 | offset = (*chk->area == '"') ? 1 : 0; |
| 786 | smaxage = strtol(chk->area + offset, &endptr, 10); |
| 787 | if (unlikely(smaxage < 0 || endptr == chk->area)) |
| 788 | return -1; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 789 | } |
| 790 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 791 | value = directive_value(ctx.value.ptr, ctx.value.len, "max-age", 7); |
| 792 | if (value) { |
| 793 | struct buffer *chk = get_trash_chunk(); |
Christopher Faulet | 5f2c49f | 2019-07-15 20:49:46 +0200 | [diff] [blame] | 794 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 795 | chunk_strncat(chk, value, ctx.value.len - 7 + 1); |
| 796 | chunk_strncat(chk, "", 1); |
Remi Tricot-Le Breton | fcea374 | 2020-12-03 18:19:30 +0100 | [diff] [blame] | 797 | offset = (*chk->area == '"') ? 1 : 0; |
| 798 | maxage = strtol(chk->area + offset, &endptr, 10); |
| 799 | if (unlikely(maxage < 0 || endptr == chk->area)) |
| 800 | return -1; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 801 | } |
| 802 | } |
| 803 | |
Remi Tricot-Le Breton | a647611 | 2020-10-28 17:52:53 +0100 | [diff] [blame] | 804 | /* Look for Expires header if no s-maxage or max-age Cache-Control data |
| 805 | * was found. */ |
| 806 | if (maxage == -1 && smaxage == -1) { |
| 807 | ctx.blk = NULL; |
| 808 | if (http_find_header(htx, ist("expires"), &ctx, 1)) { |
| 809 | if (parse_http_date(istptr(ctx.value), istlen(ctx.value), &tm)) { |
| 810 | expires_val = my_timegm(&tm); |
| 811 | /* A request having an expiring date earlier |
| 812 | * than the current date should be considered as |
| 813 | * stale. */ |
| 814 | expires = (expires_val >= now.tv_sec) ? |
| 815 | (expires_val - now.tv_sec) : 0; |
| 816 | } |
| 817 | else { |
| 818 | /* Following RFC 7234#5.3, an invalid date |
| 819 | * format must be treated as a date in the past |
| 820 | * so the cache entry must be seen as already |
| 821 | * expired. */ |
| 822 | expires = 0; |
| 823 | } |
| 824 | } |
| 825 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 826 | |
| 827 | |
Remi Tricot-Le Breton | 795e141 | 2020-12-03 18:19:29 +0100 | [diff] [blame] | 828 | if (smaxage > 0) { |
| 829 | if (true_maxage) |
| 830 | *true_maxage = smaxage; |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 831 | return MIN(smaxage, cache->maxage); |
Remi Tricot-Le Breton | 795e141 | 2020-12-03 18:19:29 +0100 | [diff] [blame] | 832 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 833 | |
Remi Tricot-Le Breton | 795e141 | 2020-12-03 18:19:29 +0100 | [diff] [blame] | 834 | if (maxage > 0) { |
| 835 | if (true_maxage) |
| 836 | *true_maxage = maxage; |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 837 | return MIN(maxage, cache->maxage); |
Remi Tricot-Le Breton | 795e141 | 2020-12-03 18:19:29 +0100 | [diff] [blame] | 838 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 839 | |
Remi Tricot-Le Breton | 795e141 | 2020-12-03 18:19:29 +0100 | [diff] [blame] | 840 | if (expires >= 0) { |
| 841 | if (true_maxage) |
| 842 | *true_maxage = expires; |
Remi Tricot-Le Breton | a647611 | 2020-10-28 17:52:53 +0100 | [diff] [blame] | 843 | return MIN(expires, cache->maxage); |
Remi Tricot-Le Breton | 795e141 | 2020-12-03 18:19:29 +0100 | [diff] [blame] | 844 | } |
Remi Tricot-Le Breton | a647611 | 2020-10-28 17:52:53 +0100 | [diff] [blame] | 845 | |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 846 | return cache->maxage; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 847 | |
| 848 | } |
| 849 | |
| 850 | |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 851 | static void cache_free_blocks(struct shared_block *first, struct shared_block *block) |
| 852 | { |
Willy Tarreau | 5bd37fa | 2018-04-04 20:17:03 +0200 | [diff] [blame] | 853 | struct cache_entry *object = (struct cache_entry *)block->data; |
| 854 | |
| 855 | if (first == block && object->eb.key) |
Remi Tricot-Le Breton | 65904e4 | 2020-12-10 17:58:41 +0100 | [diff] [blame] | 856 | delete_entry(object); |
Willy Tarreau | 5bd37fa | 2018-04-04 20:17:03 +0200 | [diff] [blame] | 857 | object->eb.key = 0; |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 858 | } |
| 859 | |
Remi Tricot Le Breton | 27091b4 | 2020-10-23 10:51:27 +0200 | [diff] [blame] | 860 | |
| 861 | /* As per RFC 7234#4.3.2, in case of "If-Modified-Since" conditional request, the |
| 862 | * date value should be compared to a date determined by in a previous response (for |
| 863 | * the same entity). This date could either be the "Last-Modified" value, or the "Date" |
| 864 | * value of the response's reception time (by decreasing order of priority). */ |
| 865 | static time_t get_last_modified_time(struct htx *htx) |
| 866 | { |
| 867 | time_t last_modified = 0; |
| 868 | struct http_hdr_ctx ctx = { .blk = NULL }; |
| 869 | struct tm tm = {}; |
| 870 | |
| 871 | if (http_find_header(htx, ist("last-modified"), &ctx, 1)) { |
| 872 | if (parse_http_date(istptr(ctx.value), istlen(ctx.value), &tm)) { |
| 873 | last_modified = my_timegm(&tm); |
| 874 | } |
| 875 | } |
| 876 | |
| 877 | if (!last_modified) { |
| 878 | ctx.blk = NULL; |
| 879 | if (http_find_header(htx, ist("date"), &ctx, 1)) { |
| 880 | if (parse_http_date(istptr(ctx.value), istlen(ctx.value), &tm)) { |
| 881 | last_modified = my_timegm(&tm); |
| 882 | } |
| 883 | } |
| 884 | } |
| 885 | |
| 886 | /* Fallback on the current time if no "Last-Modified" or "Date" header |
| 887 | * was found. */ |
| 888 | if (!last_modified) |
| 889 | last_modified = now.tv_sec; |
| 890 | |
| 891 | return last_modified; |
| 892 | } |
| 893 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 894 | /* |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 895 | * Checks the vary header's value. The headers on which vary should be applied |
Ilya Shipitsin | f38a018 | 2020-12-21 01:16:17 +0500 | [diff] [blame] | 896 | * must be explicitly supported in the vary_information array (see cache.c). If |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 897 | * any other header is mentioned, we won't store the response. |
| 898 | * Returns 1 if Vary-based storage can work, 0 otherwise. |
| 899 | */ |
| 900 | static int http_check_vary_header(struct htx *htx, unsigned int *vary_signature) |
| 901 | { |
| 902 | unsigned int vary_idx; |
| 903 | unsigned int vary_info_count; |
| 904 | const struct vary_hashing_information *vary_info; |
| 905 | struct http_hdr_ctx ctx = { .blk = NULL }; |
| 906 | |
| 907 | int retval = 1; |
| 908 | |
| 909 | *vary_signature = 0; |
| 910 | |
| 911 | vary_info_count = sizeof(vary_information)/sizeof(*vary_information); |
| 912 | while (retval && http_find_header(htx, ist("Vary"), &ctx, 0)) { |
| 913 | for (vary_idx = 0; vary_idx < vary_info_count; ++vary_idx) { |
| 914 | vary_info = &vary_information[vary_idx]; |
| 915 | if (isteqi(ctx.value, vary_info->hdr_name)) { |
| 916 | *vary_signature |= vary_info->value; |
| 917 | break; |
| 918 | } |
| 919 | } |
| 920 | retval = (vary_idx < vary_info_count); |
| 921 | } |
| 922 | |
| 923 | return retval; |
| 924 | } |
| 925 | |
| 926 | |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 927 | /* |
| 928 | * Look for the accept-encoding part of the secondary_key and replace the |
| 929 | * encoding bitmap part of the hash with the actual encoding of the response, |
| 930 | * extracted from the content-encoding header value. |
Remi Tricot-Le Breton | 6ca8916 | 2021-01-07 14:50:51 +0100 | [diff] [blame] | 931 | * Responses that have an unknown encoding will not be cached if they also |
| 932 | * "vary" on the accept-encoding value. |
| 933 | * Returns 0 if we found a known encoding in the response, -1 otherwise. |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 934 | */ |
Remi Tricot-Le Breton | 6ca8916 | 2021-01-07 14:50:51 +0100 | [diff] [blame] | 935 | static int set_secondary_key_encoding(struct htx *htx, char *secondary_key) |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 936 | { |
| 937 | unsigned int resp_encoding_bitmap = 0; |
| 938 | const struct vary_hashing_information *info = vary_information; |
| 939 | unsigned int offset = 0; |
| 940 | unsigned int count = 0; |
| 941 | unsigned int hash_info_count = sizeof(vary_information)/sizeof(*vary_information); |
| 942 | unsigned int encoding_value; |
| 943 | struct http_hdr_ctx ctx = { .blk = NULL }; |
| 944 | |
| 945 | /* Look for the accept-encoding part of the secondary_key. */ |
| 946 | while (count < hash_info_count && info->value != VARY_ACCEPT_ENCODING) { |
| 947 | offset += info->hash_length; |
| 948 | ++info; |
| 949 | ++count; |
| 950 | } |
| 951 | |
| 952 | if (count == hash_info_count) |
Remi Tricot-Le Breton | 6ca8916 | 2021-01-07 14:50:51 +0100 | [diff] [blame] | 953 | return -1; |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 954 | |
| 955 | while (http_find_header(htx, ist("content-encoding"), &ctx, 0)) { |
Remi Tricot-Le Breton | 6ca8916 | 2021-01-07 14:50:51 +0100 | [diff] [blame] | 956 | if (parse_encoding_value(ctx.value, &encoding_value, NULL)) |
| 957 | return -1; /* Do not store responses with an unknown encoding */ |
| 958 | resp_encoding_bitmap |= encoding_value; |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 959 | } |
| 960 | |
| 961 | if (!resp_encoding_bitmap) |
| 962 | resp_encoding_bitmap |= VARY_ENCODING_IDENTITY; |
| 963 | |
| 964 | /* Rewrite the bitmap part of the hash with the new bitmap that only |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 965 | * corresponds the the response's encoding. */ |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 966 | write_u32(secondary_key + offset, resp_encoding_bitmap); |
Remi Tricot-Le Breton | 6ca8916 | 2021-01-07 14:50:51 +0100 | [diff] [blame] | 967 | |
| 968 | return 0; |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 969 | } |
| 970 | |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 971 | |
| 972 | /* |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 973 | * This function will store the headers of the response in a buffer and then |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 974 | * register a filter to store the data |
| 975 | */ |
| 976 | 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] | 977 | struct session *sess, struct stream *s, int flags) |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 978 | { |
Remi Tricot-Le Breton | 795e141 | 2020-12-03 18:19:29 +0100 | [diff] [blame] | 979 | int effective_maxage = 0; |
| 980 | int true_maxage = 0; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 981 | struct http_txn *txn = s->txn; |
| 982 | struct http_msg *msg = &txn->rsp; |
| 983 | struct filter *filter; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 984 | struct shared_block *first = NULL; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 985 | struct cache_flt_conf *cconf = rule->arg.act.p[0]; |
Remi Tricot-Le Breton | 754b242 | 2020-11-16 15:56:10 +0100 | [diff] [blame] | 986 | struct cache *cache = cconf->c.cache; |
| 987 | struct shared_context *shctx = shctx_ptr(cache); |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 988 | struct cache_st *cache_ctx = NULL; |
| 989 | struct cache_entry *object, *old; |
Willy Tarreau | 8b50758 | 2020-02-25 09:35:07 +0100 | [diff] [blame] | 990 | unsigned int key = read_u32(txn->cache_hash); |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 991 | struct htx *htx; |
| 992 | struct http_hdr_ctx ctx; |
Christopher Faulet | b066747 | 2019-09-03 22:22:12 +0200 | [diff] [blame] | 993 | size_t hdrs_len = 0; |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 994 | int32_t pos; |
Remi Tricot-Le Breton | 1785f3d | 2020-11-16 15:56:09 +0100 | [diff] [blame] | 995 | unsigned int vary_signature = 0; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 996 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 997 | /* Don't cache if the response came from a cache */ |
| 998 | if ((obj_type(s->target) == OBJ_TYPE_APPLET) && |
| 999 | s->target == &http_cache_applet.obj_type) { |
| 1000 | goto out; |
| 1001 | } |
| 1002 | |
| 1003 | /* cache only HTTP/1.1 */ |
| 1004 | if (!(txn->req.flags & HTTP_MSGF_VER_11)) |
| 1005 | goto out; |
| 1006 | |
Willy Tarreau | 6905d18 | 2019-10-01 17:59:17 +0200 | [diff] [blame] | 1007 | /* cache only GET method */ |
Remi Tricot-Le Breton | 72cffaf | 2020-12-03 18:19:31 +0100 | [diff] [blame] | 1008 | if (txn->meth != HTTP_METH_GET) { |
| 1009 | /* In case of successful unsafe method on a stored resource, the |
| 1010 | * cached entry must be invalidated (see RFC7234#4.4). |
| 1011 | * A "non-error response" is one with a 2xx (Successful) or 3xx |
| 1012 | * (Redirection) status code. */ |
| 1013 | if (txn->status >= 200 && txn->status < 400) { |
| 1014 | switch (txn->meth) { |
| 1015 | case HTTP_METH_OPTIONS: |
| 1016 | case HTTP_METH_GET: |
| 1017 | case HTTP_METH_HEAD: |
| 1018 | case HTTP_METH_TRACE: |
| 1019 | break; |
| 1020 | |
| 1021 | default: /* Any unsafe method */ |
Ilya Shipitsin | f38a018 | 2020-12-21 01:16:17 +0500 | [diff] [blame] | 1022 | /* Discard any corresponding entry in case of successful |
Remi Tricot-Le Breton | 72cffaf | 2020-12-03 18:19:31 +0100 | [diff] [blame] | 1023 | * unsafe request (such as PUT, POST or DELETE). */ |
| 1024 | shctx_lock(shctx); |
| 1025 | |
| 1026 | old = entry_exist(cconf->c.cache, txn->cache_hash); |
| 1027 | if (old) { |
| 1028 | eb32_delete(&old->eb); |
| 1029 | old->eb.key = 0; |
| 1030 | } |
| 1031 | shctx_unlock(shctx); |
| 1032 | } |
| 1033 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1034 | goto out; |
Remi Tricot-Le Breton | 72cffaf | 2020-12-03 18:19:31 +0100 | [diff] [blame] | 1035 | } |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1036 | |
Willy Tarreau | c9036c0 | 2019-01-11 19:38:25 +0100 | [diff] [blame] | 1037 | /* cache key was not computed */ |
| 1038 | if (!key) |
| 1039 | goto out; |
| 1040 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1041 | /* cache only 200 status code */ |
| 1042 | if (txn->status != 200) |
| 1043 | goto out; |
| 1044 | |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 1045 | /* Find the corresponding filter instance for the current stream */ |
| 1046 | list_for_each_entry(filter, &s->strm_flt.filters, list) { |
| 1047 | if (FLT_ID(filter) == cache_store_flt_id && FLT_CONF(filter) == cconf) { |
| 1048 | /* No filter ctx, don't cache anything */ |
| 1049 | if (!filter->ctx) |
| 1050 | goto out; |
| 1051 | cache_ctx = filter->ctx; |
| 1052 | break; |
| 1053 | } |
| 1054 | } |
| 1055 | |
| 1056 | /* from there, cache_ctx is always defined */ |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1057 | htx = htxbuf(&s->res.buf); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1058 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1059 | /* Do not cache too big objects. */ |
| 1060 | if ((msg->flags & HTTP_MSGF_CNT_LEN) && shctx->max_obj_size > 0 && |
| 1061 | htx->data + htx->extra > shctx->max_obj_size) |
| 1062 | goto out; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1063 | |
Remi Tricot-Le Breton | 1785f3d | 2020-11-16 15:56:09 +0100 | [diff] [blame] | 1064 | /* Only a subset of headers are supported in our Vary implementation. If |
| 1065 | * any other header is present in the Vary header value, we won't be |
Remi Tricot-Le Breton | 754b242 | 2020-11-16 15:56:10 +0100 | [diff] [blame] | 1066 | * able to use the cache. Likewise, if Vary header support is disabled, |
| 1067 | * avoid caching responses that contain such a header. */ |
| 1068 | ctx.blk = NULL; |
| 1069 | if (cache->vary_processing_enabled) { |
| 1070 | if (!http_check_vary_header(htx, &vary_signature)) |
| 1071 | goto out; |
Remi Tricot-Le Breton | 2b5c5cb | 2020-12-23 18:13:45 +0100 | [diff] [blame] | 1072 | if (vary_signature) { |
| 1073 | /* If something went wrong during the secondary key |
| 1074 | * building, do not store the response. */ |
| 1075 | if (!(txn->flags & TX_CACHE_HAS_SEC_KEY)) |
| 1076 | goto out; |
Remi Tricot-Le Breton | 3243447 | 2020-11-25 10:09:43 +0100 | [diff] [blame] | 1077 | http_request_reduce_secondary_key(vary_signature, txn->cache_secondary_hash); |
Remi Tricot-Le Breton | 2b5c5cb | 2020-12-23 18:13:45 +0100 | [diff] [blame] | 1078 | } |
Remi Tricot-Le Breton | 754b242 | 2020-11-16 15:56:10 +0100 | [diff] [blame] | 1079 | } |
| 1080 | else if (http_find_header(htx, ist("Vary"), &ctx, 0)) { |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1081 | goto out; |
Remi Tricot-Le Breton | 1785f3d | 2020-11-16 15:56:09 +0100 | [diff] [blame] | 1082 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1083 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1084 | http_check_response_for_cacheability(s, &s->res); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1085 | |
Remi Tricot-Le Breton | cc9bf2e | 2020-11-12 11:14:41 +0100 | [diff] [blame] | 1086 | if (!(txn->flags & TX_CACHEABLE) || !(txn->flags & TX_CACHE_COOK) || (txn->flags & TX_CACHE_IGNORE)) |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1087 | goto out; |
Remi Tricot-Le Breton | 3243447 | 2020-11-25 10:09:43 +0100 | [diff] [blame] | 1088 | |
| 1089 | shctx_lock(shctx); |
| 1090 | old = entry_exist(cache, txn->cache_hash); |
| 1091 | if (old) { |
| 1092 | if (vary_signature) |
| 1093 | old = secondary_entry_exist(cconf->c.cache, old, |
| 1094 | txn->cache_secondary_hash); |
| 1095 | if (old) { |
| 1096 | if (!old->complete) { |
| 1097 | /* An entry with the same primary key is already being |
| 1098 | * created, we should not try to store the current |
| 1099 | * response because it will waste space in the cache. */ |
| 1100 | shctx_unlock(shctx); |
| 1101 | goto out; |
| 1102 | } |
Remi Tricot-Le Breton | 65904e4 | 2020-12-10 17:58:41 +0100 | [diff] [blame] | 1103 | delete_entry(old); |
Remi Tricot-Le Breton | 3243447 | 2020-11-25 10:09:43 +0100 | [diff] [blame] | 1104 | old->eb.key = 0; |
| 1105 | } |
| 1106 | } |
| 1107 | first = shctx_row_reserve_hot(shctx, NULL, sizeof(struct cache_entry)); |
| 1108 | if (!first) { |
| 1109 | shctx_unlock(shctx); |
| 1110 | goto out; |
| 1111 | } |
| 1112 | /* the received memory is not initialized, we need at least to mark |
| 1113 | * the object as not indexed yet. |
| 1114 | */ |
| 1115 | object = (struct cache_entry *)first->data; |
| 1116 | memset(object, 0, sizeof(*object)); |
| 1117 | object->eb.key = key; |
| 1118 | object->secondary_key_signature = vary_signature; |
| 1119 | /* We need to temporarily set a valid expiring time until the actual one |
| 1120 | * is set by the end of this function (in case of concurrent accesses to |
| 1121 | * the same resource). This way the second access will find an existing |
| 1122 | * but not yet usable entry in the tree and will avoid storing its data. */ |
| 1123 | object->expire = now.tv_sec + 2; |
| 1124 | |
| 1125 | memcpy(object->hash, txn->cache_hash, sizeof(object->hash)); |
| 1126 | if (vary_signature) |
| 1127 | memcpy(object->secondary_key, txn->cache_secondary_hash, HTTP_CACHE_SEC_KEY_LEN); |
| 1128 | |
| 1129 | /* Insert the entry in the tree even if the payload is not cached yet. */ |
Remi Tricot-Le Breton | 65904e4 | 2020-12-10 17:58:41 +0100 | [diff] [blame] | 1130 | if (insert_entry(cache, object) != &object->eb) { |
Remi Tricot-Le Breton | 3243447 | 2020-11-25 10:09:43 +0100 | [diff] [blame] | 1131 | object->eb.key = 0; |
| 1132 | shctx_unlock(shctx); |
| 1133 | goto out; |
| 1134 | } |
| 1135 | shctx_unlock(shctx); |
| 1136 | |
| 1137 | /* reserve space for the cache_entry structure */ |
| 1138 | first->len = sizeof(struct cache_entry); |
| 1139 | first->last_append = NULL; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1140 | |
Remi Tricot-Le Breton | 795e141 | 2020-12-03 18:19:29 +0100 | [diff] [blame] | 1141 | /* Determine the entry's maximum age (taking into account the cache's |
| 1142 | * configuration) as well as the response's explicit max age (extracted |
| 1143 | * from cache-control directives or the expires header). */ |
| 1144 | effective_maxage = http_calc_maxage(s, cconf->c.cache, &true_maxage); |
| 1145 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1146 | ctx.blk = NULL; |
| 1147 | if (http_find_header(htx, ist("Age"), &ctx, 0)) { |
Tim Duesterhus | c294284 | 2021-01-02 22:47:17 +0100 | [diff] [blame] | 1148 | long long hdr_age; |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1149 | if (!strl2llrc(ctx.value.ptr, ctx.value.len, &hdr_age) && hdr_age > 0) { |
| 1150 | if (unlikely(hdr_age > CACHE_ENTRY_MAX_AGE)) |
| 1151 | hdr_age = CACHE_ENTRY_MAX_AGE; |
Remi Tricot-Le Breton | 795e141 | 2020-12-03 18:19:29 +0100 | [diff] [blame] | 1152 | /* A response with an Age value greater than its |
| 1153 | * announced max age is stale and should not be stored. */ |
Remi Tricot-Le Breton | 3243447 | 2020-11-25 10:09:43 +0100 | [diff] [blame] | 1154 | object->age = hdr_age; |
Remi Tricot-Le Breton | 795e141 | 2020-12-03 18:19:29 +0100 | [diff] [blame] | 1155 | if (unlikely(object->age > true_maxage)) |
| 1156 | goto out; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1157 | } |
Remi Tricot-Le Breton | 51058d6 | 2020-12-03 18:19:32 +0100 | [diff] [blame] | 1158 | else |
| 1159 | goto out; |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1160 | http_remove_header(htx, &ctx); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1161 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1162 | |
Remi Tricot Le Breton | 27091b4 | 2020-10-23 10:51:27 +0200 | [diff] [blame] | 1163 | /* Build a last-modified time that will be stored in the cache_entry and |
| 1164 | * compared to a future If-Modified-Since client header. */ |
Remi Tricot-Le Breton | 3243447 | 2020-11-25 10:09:43 +0100 | [diff] [blame] | 1165 | object->last_modified = get_last_modified_time(htx); |
Remi Tricot Le Breton | 27091b4 | 2020-10-23 10:51:27 +0200 | [diff] [blame] | 1166 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1167 | chunk_reset(&trash); |
| 1168 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 1169 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 1170 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 1171 | uint32_t sz = htx_get_blksz(blk); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1172 | |
Christopher Faulet | b066747 | 2019-09-03 22:22:12 +0200 | [diff] [blame] | 1173 | hdrs_len += sizeof(*blk) + sz; |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1174 | chunk_memcat(&trash, (char *)&blk->info, sizeof(blk->info)); |
| 1175 | chunk_memcat(&trash, htx_get_blk_ptr(htx, blk), sz); |
Remi Tricot-Le Breton | dbb65b5 | 2020-10-22 10:40:04 +0200 | [diff] [blame] | 1176 | |
| 1177 | /* Look for optional ETag header. |
| 1178 | * We need to store the offset of the ETag value in order for |
| 1179 | * future conditional requests to be able to perform ETag |
| 1180 | * comparisons. */ |
| 1181 | if (type == HTX_BLK_HDR) { |
Tim Duesterhus | e2fff10 | 2021-01-02 22:47:16 +0100 | [diff] [blame] | 1182 | struct ist header_name = htx_get_blk_name(htx, blk); |
Remi Tricot-Le Breton | dbb65b5 | 2020-10-22 10:40:04 +0200 | [diff] [blame] | 1183 | if (isteq(header_name, ist("etag"))) { |
Remi Tricot-Le Breton | 3243447 | 2020-11-25 10:09:43 +0100 | [diff] [blame] | 1184 | object->etag_length = sz - istlen(header_name); |
| 1185 | object->etag_offset = sizeof(struct cache_entry) + b_data(&trash) - sz + istlen(header_name); |
Remi Tricot-Le Breton | dbb65b5 | 2020-10-22 10:40:04 +0200 | [diff] [blame] | 1186 | } |
| 1187 | } |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1188 | if (type == HTX_BLK_EOH) |
| 1189 | break; |
Frédéric Lécaille | e7a770c | 2018-10-26 14:29:22 +0200 | [diff] [blame] | 1190 | } |
| 1191 | |
Christopher Faulet | b066747 | 2019-09-03 22:22:12 +0200 | [diff] [blame] | 1192 | /* Do not cache objects if the headers are too big. */ |
| 1193 | if (hdrs_len > htx->size - global.tune.maxrewrite) |
| 1194 | goto out; |
| 1195 | |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 1196 | /* If the response has a secondary_key, fill its key part related to |
| 1197 | * encodings with the actual encoding of the response. This way any |
| 1198 | * subsequent request having the same primary key will have its accepted |
Remi Tricot-Le Breton | 6ca8916 | 2021-01-07 14:50:51 +0100 | [diff] [blame] | 1199 | * encodings tested upon the cached response's one. |
| 1200 | * We will not cache a response that has an unknown encoding (not |
Ilya Shipitsin | 7704b0e | 2021-01-23 02:11:59 +0500 | [diff] [blame] | 1201 | * explicitly supported in parse_encoding_value function). */ |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 1202 | if (cache->vary_processing_enabled && vary_signature) |
Remi Tricot-Le Breton | 6ca8916 | 2021-01-07 14:50:51 +0100 | [diff] [blame] | 1203 | if (set_secondary_key_encoding(htx, object->secondary_key)) |
| 1204 | goto out; |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 1205 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1206 | shctx_lock(shctx); |
Remi Tricot-Le Breton | 3243447 | 2020-11-25 10:09:43 +0100 | [diff] [blame] | 1207 | if (!shctx_row_reserve_hot(shctx, first, trash.data)) { |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1208 | shctx_unlock(shctx); |
| 1209 | goto out; |
| 1210 | } |
| 1211 | shctx_unlock(shctx); |
| 1212 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1213 | /* cache the headers in a http action because it allows to chose what |
| 1214 | * to cache, for example you might want to cache a response before |
| 1215 | * modifying some HTTP headers, or on the contrary after modifying |
| 1216 | * those headers. |
| 1217 | */ |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1218 | /* does not need to be locked because it's in the "hot" list, |
| 1219 | * copy the headers */ |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1220 | if (shctx_row_data_append(shctx, first, NULL, (unsigned char *)trash.area, trash.data) < 0) |
| 1221 | goto out; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1222 | |
| 1223 | /* register the buffer in the filter ctx for filling it with data*/ |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 1224 | if (cache_ctx) { |
| 1225 | cache_ctx->first_block = first; |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 1226 | /* store latest value and expiration time */ |
| 1227 | object->latest_validation = now.tv_sec; |
Remi Tricot-Le Breton | 795e141 | 2020-12-03 18:19:29 +0100 | [diff] [blame] | 1228 | object->expire = now.tv_sec + effective_maxage; |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 1229 | return ACT_RET_CONT; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1230 | } |
| 1231 | |
| 1232 | out: |
| 1233 | /* if does not cache */ |
| 1234 | if (first) { |
| 1235 | shctx_lock(shctx); |
William Lallemand | 0872766 | 2017-11-21 20:01:27 +0100 | [diff] [blame] | 1236 | first->len = 0; |
Remi Tricot-Le Breton | 3243447 | 2020-11-25 10:09:43 +0100 | [diff] [blame] | 1237 | if (object->eb.key) |
Remi Tricot-Le Breton | 65904e4 | 2020-12-10 17:58:41 +0100 | [diff] [blame] | 1238 | delete_entry(object); |
William Lallemand | 0872766 | 2017-11-21 20:01:27 +0100 | [diff] [blame] | 1239 | object->eb.key = 0; |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 1240 | shctx_row_dec_hot(shctx, first); |
| 1241 | shctx_unlock(shctx); |
| 1242 | } |
| 1243 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1244 | return ACT_RET_CONT; |
| 1245 | } |
| 1246 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1247 | #define HTX_CACHE_INIT 0 /* Initial state. */ |
| 1248 | #define HTX_CACHE_HEADER 1 /* Cache entry headers forwarding */ |
| 1249 | #define HTX_CACHE_DATA 2 /* Cache entry data forwarding */ |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1250 | #define HTX_CACHE_EOM 3 /* Cache entry completely forwarded. Finish the HTX message */ |
| 1251 | #define HTX_CACHE_END 4 /* Cache entry treatment terminated */ |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1252 | |
William Lallemand | ecb73b1 | 2017-11-24 14:33:55 +0100 | [diff] [blame] | 1253 | static void http_cache_applet_release(struct appctx *appctx) |
| 1254 | { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1255 | struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0]; |
William Lallemand | ecb73b1 | 2017-11-24 14:33:55 +0100 | [diff] [blame] | 1256 | struct cache_entry *cache_ptr = appctx->ctx.cache.entry; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1257 | struct cache *cache = cconf->c.cache; |
William Lallemand | ecb73b1 | 2017-11-24 14:33:55 +0100 | [diff] [blame] | 1258 | struct shared_block *first = block_ptr(cache_ptr); |
| 1259 | |
| 1260 | shctx_lock(shctx_ptr(cache)); |
| 1261 | shctx_row_dec_hot(shctx_ptr(cache), first); |
| 1262 | shctx_unlock(shctx_ptr(cache)); |
| 1263 | } |
| 1264 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1265 | |
| 1266 | static unsigned int htx_cache_dump_blk(struct appctx *appctx, struct htx *htx, enum htx_blk_type type, |
| 1267 | uint32_t info, struct shared_block *shblk, unsigned int offset) |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1268 | { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1269 | struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0]; |
| 1270 | struct shared_context *shctx = shctx_ptr(cconf->c.cache); |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1271 | struct htx_blk *blk; |
Christopher Faulet | 15a4ce8 | 2019-09-03 22:11:52 +0200 | [diff] [blame] | 1272 | char *ptr; |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1273 | unsigned int max, total; |
| 1274 | uint32_t blksz; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1275 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1276 | max = htx_get_max_blksz(htx, channel_htx_recv_max(si_ic(appctx->owner), htx)); |
| 1277 | if (!max) |
| 1278 | return 0; |
Christopher Faulet | 2d7c539 | 2019-06-03 10:41:26 +0200 | [diff] [blame] | 1279 | blksz = ((type == HTX_BLK_HDR || type == HTX_BLK_TLR) |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1280 | ? (info & 0xff) + ((info >> 8) & 0xfffff) |
| 1281 | : info & 0xfffffff); |
| 1282 | if (blksz > max) |
| 1283 | return 0; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1284 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1285 | blk = htx_add_blk(htx, type, blksz); |
| 1286 | if (!blk) |
| 1287 | return 0; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1288 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1289 | blk->info = info; |
| 1290 | total = 4; |
Christopher Faulet | 15a4ce8 | 2019-09-03 22:11:52 +0200 | [diff] [blame] | 1291 | ptr = htx_get_blk_ptr(htx, blk); |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1292 | while (blksz) { |
| 1293 | max = MIN(blksz, shctx->block_size - offset); |
Christopher Faulet | 15a4ce8 | 2019-09-03 22:11:52 +0200 | [diff] [blame] | 1294 | memcpy(ptr, (const char *)shblk->data + offset, max); |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1295 | offset += max; |
| 1296 | blksz -= max; |
| 1297 | total += max; |
Christopher Faulet | 15a4ce8 | 2019-09-03 22:11:52 +0200 | [diff] [blame] | 1298 | ptr += max; |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1299 | if (blksz || offset == shctx->block_size) { |
| 1300 | shblk = LIST_NEXT(&shblk->list, typeof(shblk), list); |
| 1301 | offset = 0; |
| 1302 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1303 | } |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1304 | appctx->ctx.cache.offset = offset; |
| 1305 | appctx->ctx.cache.next = shblk; |
| 1306 | appctx->ctx.cache.sent += total; |
| 1307 | return total; |
| 1308 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1309 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1310 | static unsigned int htx_cache_dump_data_blk(struct appctx *appctx, struct htx *htx, |
| 1311 | uint32_t info, struct shared_block *shblk, unsigned int offset) |
| 1312 | { |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1313 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1314 | struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0]; |
| 1315 | struct shared_context *shctx = shctx_ptr(cconf->c.cache); |
| 1316 | unsigned int max, total, rem_data; |
| 1317 | uint32_t blksz; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1318 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1319 | max = htx_get_max_blksz(htx, channel_htx_recv_max(si_ic(appctx->owner), htx)); |
| 1320 | if (!max) |
| 1321 | return 0; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1322 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1323 | rem_data = 0; |
Christopher Faulet | bda8397 | 2019-06-11 09:58:09 +0200 | [diff] [blame] | 1324 | if (appctx->ctx.cache.rem_data) { |
| 1325 | blksz = appctx->ctx.cache.rem_data; |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1326 | total = 0; |
Christopher Faulet | bda8397 | 2019-06-11 09:58:09 +0200 | [diff] [blame] | 1327 | } |
| 1328 | else { |
| 1329 | blksz = (info & 0xfffffff); |
| 1330 | total = 4; |
| 1331 | } |
| 1332 | if (blksz > max) { |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1333 | rem_data = blksz - max; |
| 1334 | blksz = max; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1335 | } |
| 1336 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1337 | while (blksz) { |
| 1338 | size_t sz; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1339 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1340 | max = MIN(blksz, shctx->block_size - offset); |
| 1341 | sz = htx_add_data(htx, ist2(shblk->data + offset, max)); |
| 1342 | offset += sz; |
| 1343 | blksz -= sz; |
| 1344 | total += sz; |
| 1345 | if (sz < max) |
| 1346 | break; |
| 1347 | if (blksz || offset == shctx->block_size) { |
| 1348 | shblk = LIST_NEXT(&shblk->list, typeof(shblk), list); |
| 1349 | offset = 0; |
| 1350 | } |
| 1351 | } |
| 1352 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1353 | appctx->ctx.cache.offset = offset; |
| 1354 | appctx->ctx.cache.next = shblk; |
| 1355 | appctx->ctx.cache.sent += total; |
| 1356 | appctx->ctx.cache.rem_data = rem_data + blksz; |
| 1357 | return total; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1358 | } |
| 1359 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1360 | static size_t htx_cache_dump_msg(struct appctx *appctx, struct htx *htx, unsigned int len, |
| 1361 | enum htx_blk_type mark) |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1362 | { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1363 | struct cache_flt_conf *cconf = appctx->rule->arg.act.p[0]; |
| 1364 | struct shared_context *shctx = shctx_ptr(cconf->c.cache); |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1365 | struct shared_block *shblk; |
| 1366 | unsigned int offset, sz; |
| 1367 | unsigned int ret, total = 0; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1368 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1369 | while (len) { |
| 1370 | enum htx_blk_type type; |
| 1371 | uint32_t info; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1372 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1373 | shblk = appctx->ctx.cache.next; |
| 1374 | offset = appctx->ctx.cache.offset; |
| 1375 | if (appctx->ctx.cache.rem_data) { |
| 1376 | type = HTX_BLK_DATA; |
| 1377 | info = 0; |
| 1378 | goto add_data_blk; |
| 1379 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1380 | |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 1381 | /* Get info of the next HTX block. May be split on 2 shblk */ |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1382 | sz = MIN(4, shctx->block_size - offset); |
| 1383 | memcpy((char *)&info, (const char *)shblk->data + offset, sz); |
| 1384 | offset += sz; |
| 1385 | if (sz < 4) { |
| 1386 | shblk = LIST_NEXT(&shblk->list, typeof(shblk), list); |
| 1387 | memcpy(((char *)&info)+sz, (const char *)shblk->data, 4 - sz); |
| 1388 | offset = (4 - sz); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1389 | } |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1390 | |
| 1391 | /* Get payload of the next HTX block and insert it. */ |
| 1392 | type = (info >> 28); |
| 1393 | if (type != HTX_BLK_DATA) |
| 1394 | ret = htx_cache_dump_blk(appctx, htx, type, info, shblk, offset); |
| 1395 | else { |
| 1396 | add_data_blk: |
| 1397 | ret = htx_cache_dump_data_blk(appctx, htx, info, shblk, offset); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1398 | } |
| 1399 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1400 | if (!ret) |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1401 | break; |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1402 | total += ret; |
| 1403 | len -= ret; |
| 1404 | |
| 1405 | if (appctx->ctx.cache.rem_data || type == mark) |
| 1406 | break; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1407 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1408 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1409 | return total; |
| 1410 | } |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1411 | |
| 1412 | static int htx_cache_add_age_hdr(struct appctx *appctx, struct htx *htx) |
| 1413 | { |
| 1414 | struct cache_entry *cache_ptr = appctx->ctx.cache.entry; |
| 1415 | unsigned int age; |
| 1416 | char *end; |
| 1417 | |
| 1418 | chunk_reset(&trash); |
| 1419 | age = MAX(0, (int)(now.tv_sec - cache_ptr->latest_validation)) + cache_ptr->age; |
| 1420 | if (unlikely(age > CACHE_ENTRY_MAX_AGE)) |
| 1421 | age = CACHE_ENTRY_MAX_AGE; |
| 1422 | end = ultoa_o(age, b_head(&trash), b_size(&trash)); |
| 1423 | b_set_data(&trash, end - b_head(&trash)); |
| 1424 | if (!http_add_header(htx, ist("Age"), ist2(b_head(&trash), b_data(&trash)))) |
| 1425 | return 0; |
| 1426 | return 1; |
| 1427 | } |
| 1428 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1429 | static void http_cache_io_handler(struct appctx *appctx) |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1430 | { |
| 1431 | struct cache_entry *cache_ptr = appctx->ctx.cache.entry; |
| 1432 | struct shared_block *first = block_ptr(cache_ptr); |
| 1433 | struct stream_interface *si = appctx->owner; |
| 1434 | struct channel *req = si_oc(si); |
| 1435 | struct channel *res = si_ic(si); |
| 1436 | struct htx *req_htx, *res_htx; |
| 1437 | struct buffer *errmsg; |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1438 | unsigned int len; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1439 | size_t ret, total = 0; |
| 1440 | |
| 1441 | res_htx = htxbuf(&res->buf); |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1442 | total = res_htx->data; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1443 | |
| 1444 | if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO)) |
| 1445 | goto out; |
| 1446 | |
Ilya Shipitsin | 6fb0f21 | 2020-04-02 15:25:26 +0500 | [diff] [blame] | 1447 | /* Check if the input buffer is available. */ |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1448 | if (!b_size(&res->buf)) { |
| 1449 | si_rx_room_blk(si); |
| 1450 | goto out; |
| 1451 | } |
| 1452 | |
Willy Tarreau | efef323 | 2018-12-16 00:37:45 +0100 | [diff] [blame] | 1453 | if (res->flags & (CF_SHUTW|CF_SHUTR|CF_SHUTW_NOW)) |
Willy Tarreau | 273e964 | 2018-12-16 00:35:15 +0100 | [diff] [blame] | 1454 | appctx->st0 = HTX_CACHE_END; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1455 | |
| 1456 | if (appctx->st0 == HTX_CACHE_INIT) { |
| 1457 | appctx->ctx.cache.next = block_ptr(cache_ptr); |
| 1458 | appctx->ctx.cache.offset = sizeof(*cache_ptr); |
| 1459 | appctx->ctx.cache.sent = 0; |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1460 | appctx->ctx.cache.rem_data = 0; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1461 | appctx->st0 = HTX_CACHE_HEADER; |
| 1462 | } |
| 1463 | |
| 1464 | if (appctx->st0 == HTX_CACHE_HEADER) { |
| 1465 | /* Headers must be dump at once. Otherwise it is an error */ |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1466 | len = first->len - sizeof(*cache_ptr) - appctx->ctx.cache.sent; |
| 1467 | ret = htx_cache_dump_msg(appctx, res_htx, len, HTX_BLK_EOH); |
| 1468 | if (!ret || (htx_get_tail_type(res_htx) != HTX_BLK_EOH) || |
| 1469 | !htx_cache_add_age_hdr(appctx, res_htx)) |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1470 | goto error; |
| 1471 | |
Remi Tricot-Le Breton | 6cb1038 | 2020-10-22 10:40:05 +0200 | [diff] [blame] | 1472 | /* In case of a conditional request, we might want to send a |
| 1473 | * "304 Not Modified" response instead of the stored data. */ |
Tim Duesterhus | e014234 | 2020-10-22 21:15:06 +0200 | [diff] [blame] | 1474 | if (appctx->ctx.cache.send_notmodified) { |
| 1475 | if (!http_replace_res_status(res_htx, ist("304"), ist("Not Modified"))) { |
| 1476 | /* If replacing the status code fails we need to send the full response. */ |
| 1477 | appctx->ctx.cache.send_notmodified = 0; |
| 1478 | } |
| 1479 | } |
Remi Tricot-Le Breton | 6cb1038 | 2020-10-22 10:40:05 +0200 | [diff] [blame] | 1480 | |
| 1481 | /* Skip response body for HEAD requests or in case of "304 Not |
| 1482 | * Modified" response. */ |
| 1483 | if (si_strm(si)->txn->meth == HTTP_METH_HEAD || appctx->ctx.cache.send_notmodified) |
Christopher Faulet | f0dd037 | 2019-02-25 11:08:34 +0100 | [diff] [blame] | 1484 | appctx->st0 = HTX_CACHE_EOM; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1485 | else |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1486 | appctx->st0 = HTX_CACHE_DATA; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1487 | } |
| 1488 | |
| 1489 | if (appctx->st0 == HTX_CACHE_DATA) { |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1490 | len = first->len - sizeof(*cache_ptr) - appctx->ctx.cache.sent; |
| 1491 | if (len) { |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1492 | ret = htx_cache_dump_msg(appctx, res_htx, len, HTX_BLK_UNUSED); |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1493 | if (ret < len) { |
| 1494 | si_rx_room_blk(si); |
| 1495 | goto out; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1496 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1497 | } |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1498 | appctx->st0 = HTX_CACHE_EOM; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1499 | } |
| 1500 | |
| 1501 | if (appctx->st0 == HTX_CACHE_EOM) { |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1502 | /* no more data are expected. */ |
| 1503 | res_htx->flags |= HTX_FL_EOM; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1504 | appctx->st0 = HTX_CACHE_END; |
| 1505 | } |
| 1506 | |
| 1507 | end: |
Christopher Faulet | adb3631 | 2019-02-25 11:40:49 +0100 | [diff] [blame] | 1508 | if (!(res->flags & CF_SHUTR) && appctx->st0 == HTX_CACHE_END) { |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1509 | res->flags |= CF_READ_NULL; |
| 1510 | si_shutr(si); |
| 1511 | } |
| 1512 | |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1513 | out: |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1514 | total = res_htx->data - total; |
Christopher Faulet | 6112391 | 2019-01-02 14:10:01 +0100 | [diff] [blame] | 1515 | if (total) |
| 1516 | channel_add_input(res, total); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1517 | htx_to_buf(res_htx, &res->buf); |
Christopher Faulet | adb3631 | 2019-02-25 11:40:49 +0100 | [diff] [blame] | 1518 | |
| 1519 | /* eat the whole request */ |
| 1520 | if (co_data(req)) { |
| 1521 | req_htx = htx_from_buf(&req->buf); |
| 1522 | co_htx_skip(req, req_htx, co_data(req)); |
| 1523 | htx_to_buf(req_htx, &req->buf); |
| 1524 | } |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1525 | return; |
| 1526 | |
| 1527 | error: |
| 1528 | /* Sent and HTTP error 500 */ |
| 1529 | b_reset(&res->buf); |
Christopher Faulet | f734638 | 2019-07-17 22:02:08 +0200 | [diff] [blame] | 1530 | errmsg = &http_err_chunks[HTTP_ERR_500]; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1531 | res->buf.data = b_data(errmsg); |
| 1532 | memcpy(res->buf.area, b_head(errmsg), b_data(errmsg)); |
| 1533 | res_htx = htx_from_buf(&res->buf); |
| 1534 | |
Christopher Faulet | 8f3c256 | 2019-06-03 22:19:18 +0200 | [diff] [blame] | 1535 | total = 0; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1536 | appctx->st0 = HTX_CACHE_END; |
| 1537 | goto end; |
| 1538 | } |
| 1539 | |
| 1540 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1541 | 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] | 1542 | { |
| 1543 | struct flt_conf *fconf; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1544 | struct cache_flt_conf *cconf = NULL; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1545 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1546 | if (!*name || strcmp(name, "if") == 0 || strcmp(name, "unless") == 0) { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1547 | memprintf(err, "expects a cache name"); |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1548 | goto err; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1549 | } |
| 1550 | |
| 1551 | /* check if a cache filter was already registered with this cache |
| 1552 | * name, if that's the case, must use it. */ |
| 1553 | list_for_each_entry(fconf, &proxy->filter_configs, list) { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1554 | if (fconf->id == cache_store_flt_id) { |
| 1555 | cconf = fconf->conf; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1556 | if (cconf && strcmp((char *)cconf->c.name, name) == 0) { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1557 | rule->arg.act.p[0] = cconf; |
| 1558 | return 1; |
| 1559 | } |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1560 | } |
| 1561 | } |
| 1562 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1563 | /* Create the filter cache config */ |
| 1564 | cconf = calloc(1, sizeof(*cconf)); |
| 1565 | if (!cconf) { |
| 1566 | memprintf(err, "out of memory\n"); |
| 1567 | goto err; |
| 1568 | } |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 1569 | cconf->flags = CACHE_FLT_F_IMPLICIT_DECL; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1570 | cconf->c.name = strdup(name); |
| 1571 | if (!cconf->c.name) { |
| 1572 | memprintf(err, "out of memory\n"); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1573 | goto err; |
| 1574 | } |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1575 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1576 | /* register a filter to fill the cache buffer */ |
| 1577 | fconf = calloc(1, sizeof(*fconf)); |
| 1578 | if (!fconf) { |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1579 | memprintf(err, "out of memory\n"); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1580 | goto err; |
| 1581 | } |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1582 | fconf->id = cache_store_flt_id; |
| 1583 | fconf->conf = cconf; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1584 | fconf->ops = &cache_ops; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 1585 | LIST_APPEND(&proxy->filter_configs, &fconf->list); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1586 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1587 | rule->arg.act.p[0] = cconf; |
| 1588 | return 1; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1589 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1590 | err: |
| 1591 | free(cconf); |
| 1592 | return 0; |
| 1593 | } |
| 1594 | |
| 1595 | enum act_parse_ret parse_cache_store(const char **args, int *orig_arg, struct proxy *proxy, |
| 1596 | struct act_rule *rule, char **err) |
| 1597 | { |
| 1598 | rule->action = ACT_CUSTOM; |
| 1599 | rule->action_ptr = http_action_store_cache; |
| 1600 | |
| 1601 | if (!parse_cache_rule(proxy, args[*orig_arg], rule, err)) |
| 1602 | return ACT_RET_PRS_ERR; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1603 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1604 | (*orig_arg)++; |
| 1605 | return ACT_RET_PRS_OK; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1606 | } |
| 1607 | |
Baptiste Assmann | db92a83 | 2019-08-05 16:55:32 +0200 | [diff] [blame] | 1608 | /* This produces a sha1 hash of the concatenation of the HTTP method, |
| 1609 | * the first occurrence of the Host header followed by the path component |
| 1610 | * if it begins with a slash ('/'). */ |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1611 | int sha1_hosturi(struct stream *s) |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1612 | { |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1613 | struct http_txn *txn = s->txn; |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1614 | struct htx *htx = htxbuf(&s->req.buf); |
| 1615 | struct htx_sl *sl; |
| 1616 | struct http_hdr_ctx ctx; |
Willy Tarreau | ccc61d8 | 2019-10-17 09:28:28 +0200 | [diff] [blame] | 1617 | struct ist uri; |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1618 | blk_SHA_CTX sha1_ctx; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 1619 | struct buffer *trash; |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1620 | |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1621 | trash = get_trash_chunk(); |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1622 | ctx.blk = NULL; |
Baptiste Assmann | db92a83 | 2019-08-05 16:55:32 +0200 | [diff] [blame] | 1623 | |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1624 | sl = http_get_stline(htx); |
Willy Tarreau | ccc61d8 | 2019-10-17 09:28:28 +0200 | [diff] [blame] | 1625 | uri = htx_sl_req_uri(sl); // whole uri |
| 1626 | if (!uri.len) |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1627 | return 0; |
Willy Tarreau | ccc61d8 | 2019-10-17 09:28:28 +0200 | [diff] [blame] | 1628 | |
| 1629 | /* In HTTP/1, most URIs are seen in origin form ('/path/to/resource'), |
| 1630 | * unless haproxy is deployed in front of an outbound cache. In HTTP/2, |
| 1631 | * URIs are almost always sent in absolute form with their scheme. In |
| 1632 | * this case, the scheme is almost always "https". In order to support |
| 1633 | * sharing of cache objects between H1 and H2, we'll hash the absolute |
| 1634 | * URI whenever known, or prepend "https://" + the Host header for |
| 1635 | * relative URIs. The difference will only appear on absolute HTTP/1 |
| 1636 | * requests sent to an origin server, which practically is never met in |
| 1637 | * the real world so we don't care about the ability to share the same |
| 1638 | * key here.URIs are normalized from the absolute URI to an origin form as |
| 1639 | * well. |
| 1640 | */ |
| 1641 | if (!(sl->flags & HTX_SL_F_HAS_AUTHORITY)) { |
Willy Tarreau | 20020ae | 2019-10-29 13:02:15 +0100 | [diff] [blame] | 1642 | chunk_istcat(trash, ist("https://")); |
Willy Tarreau | ccc61d8 | 2019-10-17 09:28:28 +0200 | [diff] [blame] | 1643 | if (!http_find_header(htx, ist("Host"), &ctx, 0)) |
| 1644 | return 0; |
Willy Tarreau | 20020ae | 2019-10-29 13:02:15 +0100 | [diff] [blame] | 1645 | chunk_istcat(trash, ctx.value); |
Willy Tarreau | ccc61d8 | 2019-10-17 09:28:28 +0200 | [diff] [blame] | 1646 | } |
| 1647 | |
| 1648 | chunk_memcat(trash, uri.ptr, uri.len); |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1649 | |
| 1650 | /* hash everything */ |
| 1651 | blk_SHA1_Init(&sha1_ctx); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1652 | blk_SHA1_Update(&sha1_ctx, trash->area, trash->data); |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1653 | blk_SHA1_Final((unsigned char *)txn->cache_hash, &sha1_ctx); |
| 1654 | |
| 1655 | return 1; |
| 1656 | } |
| 1657 | |
Remi Tricot-Le Breton | 6cb1038 | 2020-10-22 10:40:05 +0200 | [diff] [blame] | 1658 | /* Looks for "If-None-Match" headers in the request and compares their value |
| 1659 | * with the one that might have been stored in the cache_entry. If any of them |
| 1660 | * matches, a "304 Not Modified" response should be sent instead of the cached |
| 1661 | * data. |
| 1662 | * Although unlikely in a GET/HEAD request, the "If-None-Match: *" syntax is |
Remi Tricot-Le Breton | 53161d8 | 2020-10-23 10:51:28 +0200 | [diff] [blame] | 1663 | * valid and should receive a "304 Not Modified" response (RFC 7234#4.3.2). |
| 1664 | * |
| 1665 | * If no "If-None-Match" header was found, look for an "If-Modified-Since" |
| 1666 | * header and compare its value (date) to the one stored in the cache_entry. |
| 1667 | * If the request's date is later than the cached one, we also send a |
| 1668 | * "304 Not Modified" response (see RFCs 7232#3.3 and 7234#4.3.2). |
| 1669 | * |
Remi Tricot-Le Breton | 6cb1038 | 2020-10-22 10:40:05 +0200 | [diff] [blame] | 1670 | * Returns 1 if "304 Not Modified" should be sent, 0 otherwise. |
| 1671 | */ |
| 1672 | static int should_send_notmodified_response(struct cache *cache, struct htx *htx, |
| 1673 | struct cache_entry *entry) |
| 1674 | { |
| 1675 | int retval = 0; |
| 1676 | |
| 1677 | struct http_hdr_ctx ctx = { .blk = NULL }; |
| 1678 | struct ist cache_entry_etag = IST_NULL; |
| 1679 | struct buffer *etag_buffer = NULL; |
Remi Tricot-Le Breton | 53161d8 | 2020-10-23 10:51:28 +0200 | [diff] [blame] | 1680 | int if_none_match_found = 0; |
Remi Tricot-Le Breton | 6cb1038 | 2020-10-22 10:40:05 +0200 | [diff] [blame] | 1681 | |
Remi Tricot-Le Breton | 53161d8 | 2020-10-23 10:51:28 +0200 | [diff] [blame] | 1682 | struct tm tm = {}; |
| 1683 | time_t if_modified_since = 0; |
Remi Tricot-Le Breton | 6cb1038 | 2020-10-22 10:40:05 +0200 | [diff] [blame] | 1684 | |
| 1685 | /* If we find a "If-None-Match" header in the request, rebuild the |
Remi Tricot-Le Breton | 53161d8 | 2020-10-23 10:51:28 +0200 | [diff] [blame] | 1686 | * cache_entry's ETag in order to perform comparisons. |
| 1687 | * There could be multiple "if-none-match" header lines. */ |
Remi Tricot-Le Breton | 6cb1038 | 2020-10-22 10:40:05 +0200 | [diff] [blame] | 1688 | while (http_find_header(htx, ist("if-none-match"), &ctx, 0)) { |
Remi Tricot-Le Breton | 53161d8 | 2020-10-23 10:51:28 +0200 | [diff] [blame] | 1689 | if_none_match_found = 1; |
Remi Tricot-Le Breton | 6cb1038 | 2020-10-22 10:40:05 +0200 | [diff] [blame] | 1690 | |
| 1691 | /* A '*' matches everything. */ |
| 1692 | if (isteq(ctx.value, ist("*")) != 0) { |
| 1693 | retval = 1; |
| 1694 | break; |
| 1695 | } |
| 1696 | |
Remi Tricot-Le Breton | 53161d8 | 2020-10-23 10:51:28 +0200 | [diff] [blame] | 1697 | /* No need to rebuild an etag if none was stored in the cache. */ |
| 1698 | if (entry->etag_length == 0) |
| 1699 | break; |
| 1700 | |
Remi Tricot-Le Breton | 6cb1038 | 2020-10-22 10:40:05 +0200 | [diff] [blame] | 1701 | /* Rebuild the stored ETag. */ |
| 1702 | if (etag_buffer == NULL) { |
| 1703 | etag_buffer = get_trash_chunk(); |
| 1704 | |
| 1705 | if (shctx_row_data_get(shctx_ptr(cache), block_ptr(entry), |
| 1706 | (unsigned char*)b_orig(etag_buffer), |
| 1707 | entry->etag_offset, entry->etag_length) == 0) { |
| 1708 | cache_entry_etag = ist2(b_orig(etag_buffer), entry->etag_length); |
| 1709 | } else { |
| 1710 | /* We could not rebuild the ETag in one go, we |
| 1711 | * won't send a "304 Not Modified" response. */ |
| 1712 | break; |
| 1713 | } |
| 1714 | } |
| 1715 | |
| 1716 | if (http_compare_etags(cache_entry_etag, ctx.value) == 1) { |
| 1717 | retval = 1; |
| 1718 | break; |
| 1719 | } |
| 1720 | } |
| 1721 | |
Remi Tricot-Le Breton | 53161d8 | 2020-10-23 10:51:28 +0200 | [diff] [blame] | 1722 | /* If the request did not contain an "If-None-Match" header, we look for |
| 1723 | * an "If-Modified-Since" header (see RFC 7232#3.3). */ |
| 1724 | if (retval == 0 && if_none_match_found == 0) { |
| 1725 | ctx.blk = NULL; |
| 1726 | if (http_find_header(htx, ist("if-modified-since"), &ctx, 1)) { |
| 1727 | if (parse_http_date(istptr(ctx.value), istlen(ctx.value), &tm)) { |
| 1728 | if_modified_since = my_timegm(&tm); |
| 1729 | |
| 1730 | /* We send a "304 Not Modified" response if the |
| 1731 | * entry's last modified date is earlier than |
| 1732 | * the one found in the "If-Modified-Since" |
| 1733 | * header. */ |
| 1734 | retval = (entry->last_modified <= if_modified_since); |
| 1735 | } |
| 1736 | } |
| 1737 | } |
| 1738 | |
Remi Tricot-Le Breton | 6cb1038 | 2020-10-22 10:40:05 +0200 | [diff] [blame] | 1739 | return retval; |
| 1740 | } |
| 1741 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1742 | enum act_return http_action_req_cache_use(struct act_rule *rule, struct proxy *px, |
| 1743 | struct session *sess, struct stream *s, int flags) |
| 1744 | { |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1745 | |
Christopher Faulet | b3d4bca | 2019-02-25 10:59:33 +0100 | [diff] [blame] | 1746 | struct http_txn *txn = s->txn; |
Remi Tricot-Le Breton | 1785f3d | 2020-11-16 15:56:09 +0100 | [diff] [blame] | 1747 | struct cache_entry *res, *sec_entry = NULL; |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1748 | struct cache_flt_conf *cconf = rule->arg.act.p[0]; |
| 1749 | struct cache *cache = cconf->c.cache; |
Remi Tricot-Le Breton | 1785f3d | 2020-11-16 15:56:09 +0100 | [diff] [blame] | 1750 | struct shared_block *entry_block; |
| 1751 | |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1752 | |
Willy Tarreau | 6905d18 | 2019-10-01 17:59:17 +0200 | [diff] [blame] | 1753 | /* Ignore cache for HTTP/1.0 requests and for requests other than GET |
| 1754 | * and HEAD */ |
Christopher Faulet | b3d4bca | 2019-02-25 10:59:33 +0100 | [diff] [blame] | 1755 | if (!(txn->req.flags & HTTP_MSGF_VER_11) || |
Willy Tarreau | 6905d18 | 2019-10-01 17:59:17 +0200 | [diff] [blame] | 1756 | (txn->meth != HTTP_METH_GET && txn->meth != HTTP_METH_HEAD)) |
Christopher Faulet | b3d4bca | 2019-02-25 10:59:33 +0100 | [diff] [blame] | 1757 | txn->flags |= TX_CACHE_IGNORE; |
| 1758 | |
Christopher Faulet | fc9cfe4 | 2019-07-16 14:54:53 +0200 | [diff] [blame] | 1759 | http_check_request_for_cacheability(s, &s->req); |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 1760 | |
Remi Tricot-Le Breton | 72cffaf | 2020-12-03 18:19:31 +0100 | [diff] [blame] | 1761 | /* The request's hash has to be calculated for all requests, even POSTs |
Ilya Shipitsin | f38a018 | 2020-12-21 01:16:17 +0500 | [diff] [blame] | 1762 | * or PUTs for instance because RFC7234 specifies that a successful |
Remi Tricot-Le Breton | 72cffaf | 2020-12-03 18:19:31 +0100 | [diff] [blame] | 1763 | * "unsafe" method on a stored resource must invalidate it |
| 1764 | * (see RFC7234#4.4). */ |
| 1765 | if (!sha1_hosturi(s)) |
Willy Tarreau | 504455c | 2017-12-22 17:47:35 +0100 | [diff] [blame] | 1766 | return ACT_RET_CONT; |
| 1767 | |
Willy Tarreau | 504455c | 2017-12-22 17:47:35 +0100 | [diff] [blame] | 1768 | if (s->txn->flags & TX_CACHE_IGNORE) |
| 1769 | return ACT_RET_CONT; |
| 1770 | |
Willy Tarreau | a1214a5 | 2018-12-14 14:00:25 +0100 | [diff] [blame] | 1771 | if (px == strm_fe(s)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1772 | _HA_ATOMIC_INC(&px->fe_counters.p.http.cache_lookups); |
Willy Tarreau | a1214a5 | 2018-12-14 14:00:25 +0100 | [diff] [blame] | 1773 | else |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1774 | _HA_ATOMIC_INC(&px->be_counters.p.http.cache_lookups); |
Willy Tarreau | a1214a5 | 2018-12-14 14:00:25 +0100 | [diff] [blame] | 1775 | |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 1776 | shctx_lock(shctx_ptr(cache)); |
William Lallemand | f528fff | 2017-11-23 19:43:17 +0100 | [diff] [blame] | 1777 | res = entry_exist(cache, s->txn->cache_hash); |
Remi Tricot-Le Breton | 3243447 | 2020-11-25 10:09:43 +0100 | [diff] [blame] | 1778 | /* We must not use an entry that is not complete. */ |
| 1779 | if (res && res->complete) { |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1780 | struct appctx *appctx; |
Remi Tricot-Le Breton | 1785f3d | 2020-11-16 15:56:09 +0100 | [diff] [blame] | 1781 | entry_block = block_ptr(res); |
| 1782 | shctx_row_inc_hot(shctx_ptr(cache), entry_block); |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 1783 | shctx_unlock(shctx_ptr(cache)); |
Remi Tricot-Le Breton | 1785f3d | 2020-11-16 15:56:09 +0100 | [diff] [blame] | 1784 | |
| 1785 | /* In case of Vary, we could have multiple entries with the same |
Remi Tricot-Le Breton | 2b5c5cb | 2020-12-23 18:13:45 +0100 | [diff] [blame] | 1786 | * primary hash. We need to calculate the secondary hash in order |
Remi Tricot-Le Breton | 1785f3d | 2020-11-16 15:56:09 +0100 | [diff] [blame] | 1787 | * to find the actual entry we want (if it exists). */ |
| 1788 | if (res->secondary_key_signature) { |
| 1789 | if (!http_request_build_secondary_key(s, res->secondary_key_signature)) { |
| 1790 | shctx_lock(shctx_ptr(cache)); |
| 1791 | sec_entry = secondary_entry_exist(cache, res, |
| 1792 | s->txn->cache_secondary_hash); |
| 1793 | if (sec_entry && sec_entry != res) { |
| 1794 | /* The wrong row was added to the hot list. */ |
| 1795 | shctx_row_dec_hot(shctx_ptr(cache), entry_block); |
| 1796 | entry_block = block_ptr(sec_entry); |
| 1797 | shctx_row_inc_hot(shctx_ptr(cache), entry_block); |
| 1798 | } |
| 1799 | res = sec_entry; |
| 1800 | shctx_unlock(shctx_ptr(cache)); |
| 1801 | } |
| 1802 | else |
| 1803 | res = NULL; |
| 1804 | } |
| 1805 | |
| 1806 | /* We looked for a valid secondary entry and could not find one, |
| 1807 | * the request must be forwarded to the server. */ |
| 1808 | if (!res) { |
| 1809 | shctx_lock(shctx_ptr(cache)); |
| 1810 | shctx_row_dec_hot(shctx_ptr(cache), entry_block); |
| 1811 | shctx_unlock(shctx_ptr(cache)); |
| 1812 | return ACT_RET_CONT; |
| 1813 | } |
| 1814 | |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1815 | s->target = &http_cache_applet.obj_type; |
Willy Tarreau | 14bfe9a | 2018-12-19 15:19:27 +0100 | [diff] [blame] | 1816 | if ((appctx = si_register_handler(&s->si[1], objt_applet(s->target)))) { |
Christopher Faulet | 95e7ea3 | 2019-07-15 21:01:29 +0200 | [diff] [blame] | 1817 | appctx->st0 = HTX_CACHE_INIT; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1818 | appctx->rule = rule; |
| 1819 | appctx->ctx.cache.entry = res; |
Frédéric Lécaille | 8df65ae | 2018-10-22 18:01:48 +0200 | [diff] [blame] | 1820 | appctx->ctx.cache.next = NULL; |
| 1821 | appctx->ctx.cache.sent = 0; |
Remi Tricot-Le Breton | 6cb1038 | 2020-10-22 10:40:05 +0200 | [diff] [blame] | 1822 | appctx->ctx.cache.send_notmodified = |
| 1823 | should_send_notmodified_response(cache, htxbuf(&s->req.buf), res); |
Willy Tarreau | a1214a5 | 2018-12-14 14:00:25 +0100 | [diff] [blame] | 1824 | |
| 1825 | if (px == strm_fe(s)) |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1826 | _HA_ATOMIC_INC(&px->fe_counters.p.http.cache_hits); |
Willy Tarreau | a1214a5 | 2018-12-14 14:00:25 +0100 | [diff] [blame] | 1827 | else |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 1828 | _HA_ATOMIC_INC(&px->be_counters.p.http.cache_hits); |
Olivier Houchard | fccf840 | 2017-11-01 14:04:02 +0100 | [diff] [blame] | 1829 | return ACT_RET_CONT; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1830 | } else { |
William Lallemand | 55e7674 | 2017-11-21 20:01:28 +0100 | [diff] [blame] | 1831 | shctx_lock(shctx_ptr(cache)); |
Remi Tricot-Le Breton | 1785f3d | 2020-11-16 15:56:09 +0100 | [diff] [blame] | 1832 | shctx_row_dec_hot(shctx_ptr(cache), entry_block); |
William Lallemand | 55e7674 | 2017-11-21 20:01:28 +0100 | [diff] [blame] | 1833 | shctx_unlock(shctx_ptr(cache)); |
Olivier Houchard | fccf840 | 2017-11-01 14:04:02 +0100 | [diff] [blame] | 1834 | return ACT_RET_YIELD; |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 1835 | } |
| 1836 | } |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 1837 | shctx_unlock(shctx_ptr(cache)); |
Remi Tricot-Le Breton | 1785f3d | 2020-11-16 15:56:09 +0100 | [diff] [blame] | 1838 | |
| 1839 | /* Shared context does not need to be locked while we calculate the |
| 1840 | * secondary hash. */ |
Remi Tricot-Le Breton | 754b242 | 2020-11-16 15:56:10 +0100 | [diff] [blame] | 1841 | if (!res && cache->vary_processing_enabled) { |
Remi Tricot-Le Breton | 1785f3d | 2020-11-16 15:56:09 +0100 | [diff] [blame] | 1842 | /* Build a complete secondary hash until the server response |
| 1843 | * tells us which fields should be kept (if any). */ |
| 1844 | http_request_prebuild_full_secondary_key(s); |
| 1845 | } |
Olivier Houchard | fccf840 | 2017-11-01 14:04:02 +0100 | [diff] [blame] | 1846 | return ACT_RET_CONT; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1847 | } |
| 1848 | |
| 1849 | |
| 1850 | enum act_parse_ret parse_cache_use(const char **args, int *orig_arg, struct proxy *proxy, |
| 1851 | struct act_rule *rule, char **err) |
| 1852 | { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1853 | rule->action = ACT_CUSTOM; |
| 1854 | rule->action_ptr = http_action_req_cache_use; |
| 1855 | |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 1856 | if (!parse_cache_rule(proxy, args[*orig_arg], rule, err)) |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1857 | return ACT_RET_PRS_ERR; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1858 | |
| 1859 | (*orig_arg)++; |
| 1860 | return ACT_RET_PRS_OK; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1861 | } |
| 1862 | |
| 1863 | int cfg_parse_cache(const char *file, int linenum, char **args, int kwm) |
| 1864 | { |
| 1865 | int err_code = 0; |
| 1866 | |
| 1867 | if (strcmp(args[0], "cache") == 0) { /* new cache section */ |
| 1868 | |
| 1869 | if (!*args[1]) { |
Tim Duesterhus | ff4d86b | 2020-08-18 22:20:27 +0200 | [diff] [blame] | 1870 | ha_alert("parsing [%s:%d] : '%s' expects a <name> argument\n", |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1871 | file, linenum, args[0]); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1872 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1873 | goto out; |
| 1874 | } |
| 1875 | |
| 1876 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 1877 | err_code |= ERR_ABORT; |
| 1878 | goto out; |
| 1879 | } |
| 1880 | |
| 1881 | if (tmp_cache_config == NULL) { |
Tim Duesterhus | ff4d86b | 2020-08-18 22:20:27 +0200 | [diff] [blame] | 1882 | struct cache *cache_config; |
| 1883 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1884 | tmp_cache_config = calloc(1, sizeof(*tmp_cache_config)); |
| 1885 | if (!tmp_cache_config) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1886 | ha_alert("parsing [%s:%d]: out of memory.\n", file, linenum); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1887 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1888 | goto out; |
| 1889 | } |
| 1890 | |
| 1891 | strlcpy2(tmp_cache_config->id, args[1], 33); |
| 1892 | if (strlen(args[1]) > 32) { |
Tim Duesterhus | ff4d86b | 2020-08-18 22:20:27 +0200 | [diff] [blame] | 1893 | ha_warning("parsing [%s:%d]: cache name is limited to 32 characters, truncate to '%s'.\n", |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 1894 | file, linenum, tmp_cache_config->id); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1895 | err_code |= ERR_WARN; |
| 1896 | } |
Tim Duesterhus | ff4d86b | 2020-08-18 22:20:27 +0200 | [diff] [blame] | 1897 | |
| 1898 | list_for_each_entry(cache_config, &caches_config, list) { |
| 1899 | if (strcmp(tmp_cache_config->id, cache_config->id) == 0) { |
| 1900 | ha_alert("parsing [%s:%d]: Duplicate cache name '%s'.\n", |
| 1901 | file, linenum, tmp_cache_config->id); |
| 1902 | err_code |= ERR_ALERT | ERR_ABORT; |
| 1903 | goto out; |
| 1904 | } |
| 1905 | } |
| 1906 | |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 1907 | tmp_cache_config->maxage = 60; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1908 | tmp_cache_config->maxblocks = 0; |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 1909 | tmp_cache_config->maxobjsz = 0; |
Remi Tricot-Le Breton | 5853c0c | 2020-12-10 17:58:43 +0100 | [diff] [blame] | 1910 | tmp_cache_config->max_secondary_entries = DEFAULT_MAX_SECONDARY_ENTRY; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1911 | } |
| 1912 | } else if (strcmp(args[0], "total-max-size") == 0) { |
Frédéric Lécaille | b9b8b6b | 2018-10-25 20:17:45 +0200 | [diff] [blame] | 1913 | unsigned long int maxsize; |
| 1914 | char *err; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1915 | |
| 1916 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 1917 | err_code |= ERR_ABORT; |
| 1918 | goto out; |
| 1919 | } |
| 1920 | |
Frédéric Lécaille | b9b8b6b | 2018-10-25 20:17:45 +0200 | [diff] [blame] | 1921 | maxsize = strtoul(args[1], &err, 10); |
| 1922 | if (err == args[1] || *err != '\0') { |
| 1923 | ha_warning("parsing [%s:%d]: total-max-size wrong value '%s'\n", |
| 1924 | file, linenum, args[1]); |
| 1925 | err_code |= ERR_ABORT; |
| 1926 | goto out; |
| 1927 | } |
| 1928 | |
| 1929 | if (maxsize > (UINT_MAX >> 20)) { |
| 1930 | ha_warning("parsing [%s:%d]: \"total-max-size\" (%s) must not be greater than %u\n", |
| 1931 | file, linenum, args[1], UINT_MAX >> 20); |
| 1932 | err_code |= ERR_ABORT; |
| 1933 | goto out; |
| 1934 | } |
| 1935 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1936 | /* size in megabytes */ |
Frédéric Lécaille | b9b8b6b | 2018-10-25 20:17:45 +0200 | [diff] [blame] | 1937 | maxsize *= 1024 * 1024 / CACHE_BLOCKSIZE; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 1938 | tmp_cache_config->maxblocks = maxsize; |
William Lallemand | 49b4453 | 2017-11-24 18:53:43 +0100 | [diff] [blame] | 1939 | } else if (strcmp(args[0], "max-age") == 0) { |
| 1940 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 1941 | err_code |= ERR_ABORT; |
| 1942 | goto out; |
| 1943 | } |
| 1944 | |
| 1945 | if (!*args[1]) { |
| 1946 | ha_warning("parsing [%s:%d]: '%s' expects an age parameter in seconds.\n", |
| 1947 | file, linenum, args[0]); |
| 1948 | err_code |= ERR_WARN; |
| 1949 | } |
| 1950 | |
| 1951 | tmp_cache_config->maxage = atoi(args[1]); |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 1952 | } else if (strcmp(args[0], "max-object-size") == 0) { |
Frédéric Lécaille | 4eba544 | 2018-10-25 20:29:31 +0200 | [diff] [blame] | 1953 | unsigned int maxobjsz; |
| 1954 | char *err; |
| 1955 | |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 1956 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 1957 | err_code |= ERR_ABORT; |
| 1958 | goto out; |
| 1959 | } |
| 1960 | |
| 1961 | if (!*args[1]) { |
| 1962 | ha_warning("parsing [%s:%d]: '%s' expects a maximum file size parameter in bytes.\n", |
| 1963 | file, linenum, args[0]); |
| 1964 | err_code |= ERR_WARN; |
| 1965 | } |
| 1966 | |
Frédéric Lécaille | 4eba544 | 2018-10-25 20:29:31 +0200 | [diff] [blame] | 1967 | maxobjsz = strtoul(args[1], &err, 10); |
| 1968 | if (err == args[1] || *err != '\0') { |
| 1969 | ha_warning("parsing [%s:%d]: max-object-size wrong value '%s'\n", |
| 1970 | file, linenum, args[1]); |
| 1971 | err_code |= ERR_ABORT; |
| 1972 | goto out; |
| 1973 | } |
| 1974 | tmp_cache_config->maxobjsz = maxobjsz; |
Remi Tricot-Le Breton | 754b242 | 2020-11-16 15:56:10 +0100 | [diff] [blame] | 1975 | } else if (strcmp(args[0], "process-vary") == 0) { |
| 1976 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 1977 | err_code |= ERR_ABORT; |
| 1978 | goto out; |
| 1979 | } |
| 1980 | |
| 1981 | if (!*args[1]) { |
Remi Tricot-Le Breton | e6cc5b5 | 2020-12-23 18:13:53 +0100 | [diff] [blame] | 1982 | ha_warning("parsing [%s:%d]: '%s' expects \"on\" or \"off\" (enable or disable vary processing).\n", |
Remi Tricot-Le Breton | 754b242 | 2020-11-16 15:56:10 +0100 | [diff] [blame] | 1983 | file, linenum, args[0]); |
| 1984 | err_code |= ERR_WARN; |
| 1985 | } |
Remi Tricot-Le Breton | e6cc5b5 | 2020-12-23 18:13:53 +0100 | [diff] [blame] | 1986 | if (strcmp(args[1], "on") == 0) |
| 1987 | tmp_cache_config->vary_processing_enabled = 1; |
| 1988 | else if (strcmp(args[1], "off") == 0) |
| 1989 | tmp_cache_config->vary_processing_enabled = 0; |
| 1990 | else { |
| 1991 | ha_warning("parsing [%s:%d]: '%s' expects \"on\" or \"off\" (enable or disable vary processing).\n", |
| 1992 | file, linenum, args[0]); |
| 1993 | err_code |= ERR_WARN; |
| 1994 | } |
Remi Tricot-Le Breton | 5853c0c | 2020-12-10 17:58:43 +0100 | [diff] [blame] | 1995 | } else if (strcmp(args[0], "max-secondary-entries") == 0) { |
| 1996 | unsigned int max_sec_entries; |
| 1997 | char *err; |
| 1998 | |
| 1999 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) { |
| 2000 | err_code |= ERR_ABORT; |
| 2001 | goto out; |
| 2002 | } |
| 2003 | |
| 2004 | if (!*args[1]) { |
| 2005 | ha_warning("parsing [%s:%d]: '%s' expects a strictly positive number.\n", |
| 2006 | file, linenum, args[0]); |
| 2007 | err_code |= ERR_WARN; |
| 2008 | } |
| 2009 | |
| 2010 | max_sec_entries = strtoul(args[1], &err, 10); |
| 2011 | if (err == args[1] || *err != '\0' || max_sec_entries == 0) { |
| 2012 | ha_warning("parsing [%s:%d]: max-secondary-entries wrong value '%s'\n", |
| 2013 | file, linenum, args[1]); |
| 2014 | err_code |= ERR_ABORT; |
| 2015 | goto out; |
| 2016 | } |
| 2017 | tmp_cache_config->max_secondary_entries = max_sec_entries; |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 2018 | } |
| 2019 | else if (*args[0] != 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2020 | 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] | 2021 | err_code |= ERR_ALERT | ERR_FATAL; |
| 2022 | goto out; |
| 2023 | } |
| 2024 | out: |
| 2025 | return err_code; |
| 2026 | } |
| 2027 | |
| 2028 | /* once the cache section is parsed */ |
| 2029 | |
| 2030 | int cfg_post_parse_section_cache() |
| 2031 | { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2032 | int err_code = 0; |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2033 | |
| 2034 | if (tmp_cache_config) { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2035 | |
| 2036 | if (tmp_cache_config->maxblocks <= 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2037 | 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] | 2038 | err_code |= ERR_FATAL | ERR_ALERT; |
| 2039 | goto out; |
| 2040 | } |
| 2041 | |
Frédéric Lécaille | 4eba544 | 2018-10-25 20:29:31 +0200 | [diff] [blame] | 2042 | if (!tmp_cache_config->maxobjsz) { |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 2043 | /* Default max. file size is a 256th of the cache size. */ |
| 2044 | tmp_cache_config->maxobjsz = |
| 2045 | (tmp_cache_config->maxblocks * CACHE_BLOCKSIZE) >> 8; |
Frédéric Lécaille | 4eba544 | 2018-10-25 20:29:31 +0200 | [diff] [blame] | 2046 | } |
| 2047 | else if (tmp_cache_config->maxobjsz > tmp_cache_config->maxblocks * CACHE_BLOCKSIZE / 2) { |
| 2048 | ha_alert("\"max-object-size\" is limited to an half of \"total-max-size\" => %u\n", tmp_cache_config->maxblocks * CACHE_BLOCKSIZE / 2); |
| 2049 | err_code |= ERR_FATAL | ERR_ALERT; |
| 2050 | goto out; |
| 2051 | } |
Frédéric Lécaille | a2219f5 | 2018-10-22 16:59:13 +0200 | [diff] [blame] | 2052 | |
William Lallemand | d1d1e22 | 2019-08-28 15:22:49 +0200 | [diff] [blame] | 2053 | /* add to the list of cache to init and reinit tmp_cache_config |
| 2054 | * for next cache section, if any. |
| 2055 | */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2056 | LIST_APPEND(&caches_config, &tmp_cache_config->list); |
William Lallemand | d1d1e22 | 2019-08-28 15:22:49 +0200 | [diff] [blame] | 2057 | tmp_cache_config = NULL; |
| 2058 | return err_code; |
| 2059 | } |
| 2060 | out: |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 2061 | ha_free(&tmp_cache_config); |
William Lallemand | d1d1e22 | 2019-08-28 15:22:49 +0200 | [diff] [blame] | 2062 | return err_code; |
| 2063 | |
| 2064 | } |
| 2065 | |
| 2066 | int post_check_cache() |
| 2067 | { |
| 2068 | struct proxy *px; |
| 2069 | struct cache *back, *cache_config, *cache; |
| 2070 | struct shared_context *shctx; |
| 2071 | int ret_shctx; |
Christopher Faulet | fc633b6 | 2020-11-06 15:24:23 +0100 | [diff] [blame] | 2072 | int err_code = ERR_NONE; |
William Lallemand | d1d1e22 | 2019-08-28 15:22:49 +0200 | [diff] [blame] | 2073 | |
| 2074 | list_for_each_entry_safe(cache_config, back, &caches_config, list) { |
| 2075 | |
| 2076 | ret_shctx = shctx_init(&shctx, cache_config->maxblocks, CACHE_BLOCKSIZE, |
| 2077 | cache_config->maxobjsz, sizeof(struct cache), 1); |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 2078 | |
Frédéric Lécaille | bc58449 | 2018-10-25 20:18:59 +0200 | [diff] [blame] | 2079 | if (ret_shctx <= 0) { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2080 | if (ret_shctx == SHCTX_E_INIT_LOCK) |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2081 | ha_alert("Unable to initialize the lock for the cache.\n"); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2082 | else |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2083 | ha_alert("Unable to allocate cache.\n"); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2084 | |
| 2085 | err_code |= ERR_FATAL | ERR_ALERT; |
| 2086 | goto out; |
| 2087 | } |
William Lallemand | a400a3a | 2017-11-20 19:13:12 +0100 | [diff] [blame] | 2088 | shctx->free_block = cache_free_blocks; |
William Lallemand | d1d1e22 | 2019-08-28 15:22:49 +0200 | [diff] [blame] | 2089 | /* the cache structure is stored in the shctx and added to the |
| 2090 | * caches list, we can remove the entry from the caches_config |
| 2091 | * list */ |
| 2092 | memcpy(shctx->data, cache_config, sizeof(struct cache)); |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2093 | cache = (struct cache *)shctx->data; |
Remi Tricot-Le Breton | 1785f3d | 2020-11-16 15:56:09 +0100 | [diff] [blame] | 2094 | cache->entries = EB_ROOT; |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2095 | LIST_APPEND(&caches, &cache->list); |
| 2096 | LIST_DELETE(&cache_config->list); |
William Lallemand | d1d1e22 | 2019-08-28 15:22:49 +0200 | [diff] [blame] | 2097 | free(cache_config); |
| 2098 | |
| 2099 | /* Find all references for this cache in the existing filters |
| 2100 | * (over all proxies) and reference it in matching filters. |
| 2101 | */ |
| 2102 | for (px = proxies_list; px; px = px->next) { |
| 2103 | struct flt_conf *fconf; |
| 2104 | struct cache_flt_conf *cconf; |
| 2105 | |
| 2106 | list_for_each_entry(fconf, &px->filter_configs, list) { |
| 2107 | if (fconf->id != cache_store_flt_id) |
| 2108 | continue; |
| 2109 | |
| 2110 | cconf = fconf->conf; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2111 | if (strcmp(cache->id, cconf->c.name) == 0) { |
William Lallemand | d1d1e22 | 2019-08-28 15:22:49 +0200 | [diff] [blame] | 2112 | free(cconf->c.name); |
Tim Duesterhus | d7c6e6a | 2020-09-14 18:01:33 +0200 | [diff] [blame] | 2113 | cconf->flags |= CACHE_FLT_INIT; |
William Lallemand | d1d1e22 | 2019-08-28 15:22:49 +0200 | [diff] [blame] | 2114 | cconf->c.cache = cache; |
| 2115 | break; |
| 2116 | } |
| 2117 | } |
| 2118 | } |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2119 | } |
William Lallemand | d1d1e22 | 2019-08-28 15:22:49 +0200 | [diff] [blame] | 2120 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2121 | out: |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2122 | return err_code; |
| 2123 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2124 | } |
| 2125 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2126 | struct flt_ops cache_ops = { |
| 2127 | .init = cache_store_init, |
Christopher Faulet | 95220e2 | 2018-12-07 17:34:39 +0100 | [diff] [blame] | 2128 | .check = cache_store_check, |
| 2129 | .deinit = cache_store_deinit, |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2130 | |
Christopher Faulet | 65554e1 | 2020-03-06 14:52:06 +0100 | [diff] [blame] | 2131 | /* Handle stream init/deinit */ |
| 2132 | .attach = cache_store_strm_init, |
| 2133 | .detach = cache_store_strm_deinit, |
| 2134 | |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 2135 | /* Handle channels activity */ |
Christopher Faulet | 839791a | 2019-01-07 16:12:07 +0100 | [diff] [blame] | 2136 | .channel_post_analyze = cache_store_post_analyze, |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 2137 | |
| 2138 | /* Filter HTTP requests and responses */ |
| 2139 | .http_headers = cache_store_http_headers, |
Christopher Faulet | 54a8d5a | 2018-12-07 12:21:11 +0100 | [diff] [blame] | 2140 | .http_payload = cache_store_http_payload, |
William Lallemand | 4da3f8a | 2017-10-31 14:33:34 +0100 | [diff] [blame] | 2141 | .http_end = cache_store_http_end, |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2142 | }; |
| 2143 | |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 2144 | |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2145 | #define CHECK_ENCODING(str, encoding_name, encoding_value) \ |
| 2146 | ({ \ |
| 2147 | int retval = 0; \ |
| 2148 | if (istmatch(str, (struct ist){ .ptr = encoding_name+1, .len = sizeof(encoding_name) - 2 })) { \ |
| 2149 | retval = encoding_value; \ |
| 2150 | encoding = istadv(encoding, sizeof(encoding_name) - 2); \ |
| 2151 | } \ |
| 2152 | (retval); \ |
| 2153 | }) |
| 2154 | |
| 2155 | /* |
| 2156 | * Parse the encoding <encoding> and try to match the encoding part upon an |
| 2157 | * encoding list of explicitly supported encodings (which all have a specific |
| 2158 | * bit in an encoding bitmap). If a weight is included in the value, find out if |
| 2159 | * it is null or not. The bit value will be set in the <encoding_value> |
| 2160 | * parameter and the <has_null_weight> will be set to 1 if the weight is strictly |
| 2161 | * 0, 1 otherwise. |
| 2162 | * The encodings list is extracted from |
| 2163 | * https://www.iana.org/assignments/http-parameters/http-parameters.xhtml. |
| 2164 | * Returns 0 in case of success and -1 in case of error. |
| 2165 | */ |
| 2166 | static int parse_encoding_value(struct ist encoding, unsigned int *encoding_value, |
| 2167 | unsigned int *has_null_weight) |
| 2168 | { |
| 2169 | int retval = 0; |
| 2170 | |
| 2171 | if (!encoding_value) |
| 2172 | return -1; |
| 2173 | |
| 2174 | if (!istlen(encoding)) |
| 2175 | return -1; /* Invalid encoding */ |
| 2176 | |
| 2177 | *encoding_value = 0; |
| 2178 | if (has_null_weight) |
| 2179 | *has_null_weight = 0; |
| 2180 | |
| 2181 | switch (*encoding.ptr) { |
| 2182 | case 'a': |
| 2183 | encoding = istadv(encoding, 1); |
| 2184 | *encoding_value = CHECK_ENCODING(encoding, "aes128gcm", VARY_ENCODING_AES128GCM); |
| 2185 | break; |
| 2186 | case 'b': |
| 2187 | encoding = istadv(encoding, 1); |
| 2188 | *encoding_value = CHECK_ENCODING(encoding, "br", VARY_ENCODING_BR); |
| 2189 | break; |
| 2190 | case 'c': |
| 2191 | encoding = istadv(encoding, 1); |
| 2192 | *encoding_value = CHECK_ENCODING(encoding, "compress", VARY_ENCODING_COMPRESS); |
| 2193 | break; |
| 2194 | case 'd': |
| 2195 | encoding = istadv(encoding, 1); |
| 2196 | *encoding_value = CHECK_ENCODING(encoding, "deflate", VARY_ENCODING_DEFLATE); |
| 2197 | break; |
| 2198 | case 'e': |
| 2199 | encoding = istadv(encoding, 1); |
| 2200 | *encoding_value = CHECK_ENCODING(encoding, "exi", VARY_ENCODING_EXI); |
| 2201 | break; |
| 2202 | case 'g': |
| 2203 | encoding = istadv(encoding, 1); |
| 2204 | *encoding_value = CHECK_ENCODING(encoding, "gzip", VARY_ENCODING_GZIP); |
| 2205 | break; |
| 2206 | case 'i': |
| 2207 | encoding = istadv(encoding, 1); |
| 2208 | *encoding_value = CHECK_ENCODING(encoding, "identity", VARY_ENCODING_IDENTITY); |
| 2209 | break; |
| 2210 | case 'p': |
| 2211 | encoding = istadv(encoding, 1); |
| 2212 | *encoding_value = CHECK_ENCODING(encoding, "pack200-gzip", VARY_ENCODING_PACK200_GZIP); |
| 2213 | break; |
| 2214 | case 'x': |
| 2215 | encoding = istadv(encoding, 1); |
| 2216 | *encoding_value = CHECK_ENCODING(encoding, "x-gzip", VARY_ENCODING_GZIP); |
| 2217 | if (!*encoding_value) |
| 2218 | *encoding_value = CHECK_ENCODING(encoding, "x-compress", VARY_ENCODING_COMPRESS); |
| 2219 | break; |
| 2220 | case 'z': |
| 2221 | encoding = istadv(encoding, 1); |
| 2222 | *encoding_value = CHECK_ENCODING(encoding, "zstd", VARY_ENCODING_ZSTD); |
| 2223 | break; |
| 2224 | case '*': |
| 2225 | encoding = istadv(encoding, 1); |
| 2226 | *encoding_value = VARY_ENCODING_STAR; |
| 2227 | break; |
| 2228 | default: |
| 2229 | retval = -1; /* Unmanaged encoding */ |
| 2230 | break; |
| 2231 | } |
| 2232 | |
| 2233 | /* Process the optional weight part of the encoding. */ |
| 2234 | if (*encoding_value) { |
| 2235 | encoding = http_trim_leading_spht(encoding); |
| 2236 | if (istlen(encoding)) { |
| 2237 | if (*encoding.ptr != ';') |
| 2238 | return -1; |
| 2239 | |
| 2240 | if (has_null_weight) { |
| 2241 | encoding = istadv(encoding, 1); |
| 2242 | |
| 2243 | encoding = http_trim_leading_spht(encoding); |
| 2244 | |
| 2245 | *has_null_weight = isteq(encoding, ist("q=0")); |
| 2246 | } |
| 2247 | } |
| 2248 | } |
| 2249 | |
| 2250 | return retval; |
| 2251 | } |
| 2252 | |
Tim Duesterhus | 23b2945 | 2020-11-24 22:22:56 +0100 | [diff] [blame] | 2253 | #define ACCEPT_ENCODING_MAX_ENTRIES 16 |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2254 | /* |
Tim Duesterhus | 1d66e39 | 2021-01-18 13:41:16 +0100 | [diff] [blame] | 2255 | * Build a bitmap of the accept-encoding header. |
| 2256 | * |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2257 | * The bitmap is built by matching every sub-part of the accept-encoding value |
| 2258 | * with a subset of explicitly supported encodings, which all have their own bit |
| 2259 | * in the bitmap. This bitmap will be used to determine if a response can be |
| 2260 | * served to a client (that is if it has an encoding that is accepted by the |
Tim Duesterhus | 1d66e39 | 2021-01-18 13:41:16 +0100 | [diff] [blame] | 2261 | * client). Any unknown encodings will be indicated by the VARY_ENCODING_OTHER |
| 2262 | * bit. |
| 2263 | * |
| 2264 | * Returns 0 in case of success and -1 in case of error. |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2265 | */ |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 2266 | static int accept_encoding_normalizer(struct htx *htx, struct ist hdr_name, |
| 2267 | char *buf, unsigned int *buf_len) |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2268 | { |
Tim Duesterhus | 23b2945 | 2020-11-24 22:22:56 +0100 | [diff] [blame] | 2269 | size_t count = 0; |
Tim Duesterhus | 1d66e39 | 2021-01-18 13:41:16 +0100 | [diff] [blame] | 2270 | uint32_t encoding_bitmap = 0; |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2271 | unsigned int encoding_bmp_bl = -1; |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 2272 | struct http_hdr_ctx ctx = { .blk = NULL }; |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2273 | unsigned int encoding_value; |
| 2274 | unsigned int rejected_encoding; |
| 2275 | |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 2276 | /* A user agent always accepts an unencoded value unless it explicitly |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2277 | * refuses it through an "identity;q=0" accept-encoding value. */ |
Tim Duesterhus | 1d66e39 | 2021-01-18 13:41:16 +0100 | [diff] [blame] | 2278 | encoding_bitmap |= VARY_ENCODING_IDENTITY; |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2279 | |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 2280 | /* Iterate over all the ACCEPT_ENCODING_MAX_ENTRIES first accept-encoding |
| 2281 | * values that might span acrosse multiple accept-encoding headers. */ |
| 2282 | while (http_find_header(htx, hdr_name, &ctx, 0) && count < ACCEPT_ENCODING_MAX_ENTRIES) { |
Tim Duesterhus | beec7ea | 2021-06-18 15:09:28 +0200 | [diff] [blame] | 2283 | count++; |
| 2284 | |
| 2285 | /* As per RFC7231#5.3.4, "An Accept-Encoding header field with a |
| 2286 | * combined field-value that is empty implies that the user agent |
| 2287 | * does not want any content-coding in response." |
| 2288 | * |
| 2289 | * We must (and did) count the existence of this empty header to not |
| 2290 | * hit the `count == 0` case below, but must ignore the value to not |
| 2291 | * include VARY_ENCODING_OTHER into the final bitmap. |
| 2292 | */ |
| 2293 | if (istlen(ctx.value) == 0) |
| 2294 | continue; |
| 2295 | |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 2296 | /* Turn accept-encoding value to lower case */ |
| 2297 | ist2bin_lc(istptr(ctx.value), ctx.value); |
Tim Duesterhus | 23b2945 | 2020-11-24 22:22:56 +0100 | [diff] [blame] | 2298 | |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2299 | /* Try to identify a known encoding and to manage null weights. */ |
| 2300 | if (!parse_encoding_value(ctx.value, &encoding_value, &rejected_encoding)) { |
| 2301 | if (rejected_encoding) |
| 2302 | encoding_bmp_bl &= ~encoding_value; |
| 2303 | else |
Tim Duesterhus | 1d66e39 | 2021-01-18 13:41:16 +0100 | [diff] [blame] | 2304 | encoding_bitmap |= encoding_value; |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2305 | } |
| 2306 | else { |
| 2307 | /* Unknown encoding */ |
Tim Duesterhus | 1d66e39 | 2021-01-18 13:41:16 +0100 | [diff] [blame] | 2308 | encoding_bitmap |= VARY_ENCODING_OTHER; |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2309 | } |
Remi Tricot-Le Breton | 8bb72aa | 2020-11-30 17:06:03 +0100 | [diff] [blame] | 2310 | } |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 2311 | |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2312 | /* If a "*" was found in the accepted encodings (without a null weight), |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 2313 | * all the encoding are accepted except the ones explicitly rejected. */ |
Tim Duesterhus | 1d66e39 | 2021-01-18 13:41:16 +0100 | [diff] [blame] | 2314 | if (encoding_bitmap & VARY_ENCODING_STAR) { |
| 2315 | encoding_bitmap = ~0; |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2316 | } |
| 2317 | |
Ilya Shipitsin | b8888ab | 2021-01-06 21:20:16 +0500 | [diff] [blame] | 2318 | /* Clear explicitly rejected encodings from the bitmap */ |
Tim Duesterhus | 1d66e39 | 2021-01-18 13:41:16 +0100 | [diff] [blame] | 2319 | encoding_bitmap &= encoding_bmp_bl; |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2320 | |
| 2321 | /* As per RFC7231#5.3.4, "If no Accept-Encoding field is in the request, |
| 2322 | * any content-coding is considered acceptable by the user agent". */ |
| 2323 | if (count == 0) |
Tim Duesterhus | 1d66e39 | 2021-01-18 13:41:16 +0100 | [diff] [blame] | 2324 | encoding_bitmap = ~0; |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2325 | |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 2326 | /* A request with more than ACCEPT_ENCODING_MAX_ENTRIES accepted |
| 2327 | * encodings might be illegitimate so we will not use it. */ |
| 2328 | if (count == ACCEPT_ENCODING_MAX_ENTRIES) |
| 2329 | return -1; |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2330 | |
Tim Duesterhus | 1d66e39 | 2021-01-18 13:41:16 +0100 | [diff] [blame] | 2331 | write_u32(buf, encoding_bitmap); |
| 2332 | *buf_len = sizeof(encoding_bitmap); |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2333 | |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 2334 | /* This function fills the hash buffer correctly even if no header was |
| 2335 | * found, hence the 0 return value (success). */ |
Tim Duesterhus | 23b2945 | 2020-11-24 22:22:56 +0100 | [diff] [blame] | 2336 | return 0; |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2337 | } |
Tim Duesterhus | 23b2945 | 2020-11-24 22:22:56 +0100 | [diff] [blame] | 2338 | #undef ACCEPT_ENCODING_MAX_ENTRIES |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2339 | |
| 2340 | /* |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 2341 | * Normalizer used by default for the Referer header. It only |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2342 | * calculates a simple crc of the whole value. |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 2343 | * Only the first occurrence of the header will be taken into account in the |
| 2344 | * hash. |
| 2345 | * Returns 0 in case of success, 1 if the hash buffer should be filled with 0s |
| 2346 | * and -1 in case of error. |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2347 | */ |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 2348 | static int default_normalizer(struct htx *htx, struct ist hdr_name, |
| 2349 | char *buf, unsigned int *buf_len) |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2350 | { |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 2351 | int retval = 1; |
| 2352 | struct http_hdr_ctx ctx = { .blk = NULL }; |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2353 | |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 2354 | if (http_find_header(htx, hdr_name, &ctx, 1)) { |
| 2355 | retval = 0; |
| 2356 | write_u32(buf, hash_crc32(istptr(ctx.value), istlen(ctx.value))); |
| 2357 | *buf_len = sizeof(int); |
| 2358 | } |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2359 | |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 2360 | return retval; |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2361 | } |
| 2362 | |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2363 | /* |
Tim Duesterhus | ed84d84 | 2021-01-18 13:41:17 +0100 | [diff] [blame] | 2364 | * Accept-Encoding bitmap comparison function. |
| 2365 | * Returns 0 if the bitmaps are compatible. |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2366 | */ |
Tim Duesterhus | ed84d84 | 2021-01-18 13:41:17 +0100 | [diff] [blame] | 2367 | static int accept_encoding_bitmap_cmp(const void *ref, const void *new, unsigned int len) |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2368 | { |
Tim Duesterhus | ed84d84 | 2021-01-18 13:41:17 +0100 | [diff] [blame] | 2369 | uint32_t ref_bitmap = read_u32(ref); |
| 2370 | uint32_t new_bitmap = read_u32(new); |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2371 | |
Tim Duesterhus | ed84d84 | 2021-01-18 13:41:17 +0100 | [diff] [blame] | 2372 | if (!(ref_bitmap & VARY_ENCODING_OTHER)) { |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2373 | /* All the bits set in the reference bitmap correspond to the |
| 2374 | * stored response' encoding and should all be set in the new |
| 2375 | * encoding bitmap in order for the client to be able to manage |
Tim Duesterhus | dc38bc4 | 2020-12-29 12:43:53 +0100 | [diff] [blame] | 2376 | * the response. |
| 2377 | * |
| 2378 | * If this is the case the cached response has encodings that |
| 2379 | * are accepted by the client. It can be served directly by |
| 2380 | * the cache (as far as the accept-encoding part is concerned). |
| 2381 | */ |
| 2382 | |
Tim Duesterhus | ed84d84 | 2021-01-18 13:41:17 +0100 | [diff] [blame] | 2383 | return (ref_bitmap & new_bitmap) != ref_bitmap; |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2384 | } |
Tim Duesterhus | dc38bc4 | 2020-12-29 12:43:53 +0100 | [diff] [blame] | 2385 | else { |
Tim Duesterhus | 1d66e39 | 2021-01-18 13:41:16 +0100 | [diff] [blame] | 2386 | return 1; |
Tim Duesterhus | dc38bc4 | 2020-12-29 12:43:53 +0100 | [diff] [blame] | 2387 | } |
Remi Tricot-Le Breton | ce9e7b2 | 2020-12-23 18:13:49 +0100 | [diff] [blame] | 2388 | } |
| 2389 | |
| 2390 | |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2391 | /* |
| 2392 | * Pre-calculate the hashes of all the supported headers (in our Vary |
| 2393 | * implementation) of a given request. We have to calculate all the hashes |
| 2394 | * in advance because the actual Vary signature won't be known until the first |
| 2395 | * response. |
| 2396 | * Only the first occurrence of every header will be taken into account in the |
| 2397 | * hash. |
| 2398 | * If the header is not present, the hash portion of the given header will be |
| 2399 | * filled with zeros. |
| 2400 | * Returns 0 in case of success. |
| 2401 | */ |
| 2402 | static int http_request_prebuild_full_secondary_key(struct stream *s) |
| 2403 | { |
Remi Tricot-Le Breton | bba2912 | 2020-12-23 18:13:44 +0100 | [diff] [blame] | 2404 | /* The fake signature (second parameter) will ensure that every part of the |
| 2405 | * secondary key is calculated. */ |
| 2406 | return http_request_build_secondary_key(s, ~0); |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2407 | } |
| 2408 | |
| 2409 | |
| 2410 | /* |
| 2411 | * Calculate the secondary key for a request for which we already have a known |
| 2412 | * vary signature. The key is made by aggregating hashes calculated for every |
| 2413 | * header mentioned in the vary signature. |
| 2414 | * Only the first occurrence of every header will be taken into account in the |
| 2415 | * hash. |
| 2416 | * If the header is not present, the hash portion of the given header will be |
| 2417 | * filled with zeros. |
| 2418 | * Returns 0 in case of success. |
| 2419 | */ |
| 2420 | static int http_request_build_secondary_key(struct stream *s, int vary_signature) |
| 2421 | { |
| 2422 | struct http_txn *txn = s->txn; |
| 2423 | struct htx *htx = htxbuf(&s->req.buf); |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2424 | |
| 2425 | unsigned int idx; |
| 2426 | const struct vary_hashing_information *info = NULL; |
| 2427 | unsigned int hash_length = 0; |
| 2428 | int retval = 0; |
| 2429 | int offset = 0; |
| 2430 | |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 2431 | for (idx = 0; idx < sizeof(vary_information)/sizeof(*vary_information) && retval >= 0; ++idx) { |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2432 | info = &vary_information[idx]; |
| 2433 | |
Remi Tricot-Le Breton | e4421de | 2020-12-23 18:13:46 +0100 | [diff] [blame] | 2434 | /* The normalizing functions will be in charge of getting the |
| 2435 | * header values from the htx. This way they can manage multiple |
| 2436 | * occurrences of their processed header. */ |
| 2437 | if ((vary_signature & info->value) && info->norm_fn != NULL && |
| 2438 | !(retval = info->norm_fn(htx, info->hdr_name, &txn->cache_secondary_hash[offset], &hash_length))) { |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2439 | offset += hash_length; |
| 2440 | } |
| 2441 | else { |
| 2442 | /* Fill hash with 0s. */ |
| 2443 | hash_length = info->hash_length; |
| 2444 | memset(&txn->cache_secondary_hash[offset], 0, hash_length); |
| 2445 | offset += hash_length; |
| 2446 | } |
| 2447 | } |
| 2448 | |
Remi Tricot-Le Breton | 2b5c5cb | 2020-12-23 18:13:45 +0100 | [diff] [blame] | 2449 | if (retval >= 0) |
| 2450 | txn->flags |= TX_CACHE_HAS_SEC_KEY; |
| 2451 | |
| 2452 | return (retval < 0); |
Remi Tricot-Le Breton | 3d08236 | 2020-11-16 15:56:08 +0100 | [diff] [blame] | 2453 | } |
| 2454 | |
| 2455 | /* |
| 2456 | * Build the actual secondary key of a given request out of the prebuilt key and |
| 2457 | * the actual vary signature (extracted from the response). |
| 2458 | * Returns 0 in case of success. |
| 2459 | */ |
| 2460 | static int http_request_reduce_secondary_key(unsigned int vary_signature, |
| 2461 | char prebuilt_key[HTTP_CACHE_SEC_KEY_LEN]) |
| 2462 | { |
| 2463 | int offset = 0; |
| 2464 | int global_offset = 0; |
| 2465 | int vary_info_count = 0; |
| 2466 | int keep = 0; |
| 2467 | unsigned int vary_idx; |
| 2468 | const struct vary_hashing_information *vary_info; |
| 2469 | |
| 2470 | vary_info_count = sizeof(vary_information)/sizeof(*vary_information); |
| 2471 | for (vary_idx = 0; vary_idx < vary_info_count; ++vary_idx) { |
| 2472 | vary_info = &vary_information[vary_idx]; |
| 2473 | keep = (vary_signature & vary_info->value) ? 0xff : 0; |
| 2474 | |
| 2475 | for (offset = 0; offset < vary_info->hash_length; ++offset,++global_offset) { |
| 2476 | prebuilt_key[global_offset] &= keep; |
| 2477 | } |
| 2478 | } |
| 2479 | |
| 2480 | return 0; |
| 2481 | } |
| 2482 | |
| 2483 | |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 2484 | |
| 2485 | static int |
| 2486 | parse_cache_flt(char **args, int *cur_arg, struct proxy *px, |
| 2487 | struct flt_conf *fconf, char **err, void *private) |
| 2488 | { |
| 2489 | struct flt_conf *f, *back; |
Willy Tarreau | a73da1e | 2018-12-14 10:19:28 +0100 | [diff] [blame] | 2490 | struct cache_flt_conf *cconf = NULL; |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 2491 | char *name = NULL; |
| 2492 | int pos = *cur_arg; |
| 2493 | |
Christopher Faulet | 2a37cdb | 2020-05-18 11:58:16 +0200 | [diff] [blame] | 2494 | /* Get the cache filter name. <pos> point on "cache" keyword */ |
| 2495 | if (!*args[pos + 1]) { |
Tim Duesterhus | ea969f6 | 2020-08-18 22:06:51 +0200 | [diff] [blame] | 2496 | memprintf(err, "%s : expects a <name> argument", args[pos]); |
Christopher Faulet | 2a37cdb | 2020-05-18 11:58:16 +0200 | [diff] [blame] | 2497 | goto error; |
| 2498 | } |
| 2499 | name = strdup(args[pos + 1]); |
| 2500 | if (!name) { |
| 2501 | memprintf(err, "%s '%s' : out of memory", args[pos], args[pos + 1]); |
| 2502 | goto error; |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 2503 | } |
Christopher Faulet | 2a37cdb | 2020-05-18 11:58:16 +0200 | [diff] [blame] | 2504 | pos += 2; |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 2505 | |
| 2506 | /* Check if an implicit filter with the same name already exists. If so, |
| 2507 | * we remove the implicit filter to use the explicit one. */ |
| 2508 | list_for_each_entry_safe(f, back, &px->filter_configs, list) { |
| 2509 | if (f->id != cache_store_flt_id) |
| 2510 | continue; |
| 2511 | |
| 2512 | cconf = f->conf; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2513 | if (strcmp(name, cconf->c.name) != 0) { |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 2514 | cconf = NULL; |
| 2515 | continue; |
| 2516 | } |
| 2517 | |
| 2518 | if (!(cconf->flags & CACHE_FLT_F_IMPLICIT_DECL)) { |
| 2519 | cconf = NULL; |
| 2520 | memprintf(err, "%s: multiple explicit declarations of the cache filter '%s'", |
| 2521 | px->id, name); |
Tim Duesterhus | d34b1ce | 2020-01-18 01:46:18 +0100 | [diff] [blame] | 2522 | goto error; |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 2523 | } |
| 2524 | |
| 2525 | /* Remove the implicit filter. <cconf> is kept for the explicit one */ |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 2526 | LIST_DELETE(&f->list); |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 2527 | free(f); |
| 2528 | free(name); |
| 2529 | break; |
| 2530 | } |
| 2531 | |
| 2532 | /* No implicit cache filter found, create configuration for the explicit one */ |
| 2533 | if (!cconf) { |
| 2534 | cconf = calloc(1, sizeof(*cconf)); |
| 2535 | if (!cconf) { |
| 2536 | memprintf(err, "%s: out of memory", args[*cur_arg]); |
| 2537 | goto error; |
| 2538 | } |
| 2539 | cconf->c.name = name; |
| 2540 | } |
| 2541 | |
| 2542 | cconf->flags = 0; |
| 2543 | fconf->id = cache_store_flt_id; |
| 2544 | fconf->conf = cconf; |
| 2545 | fconf->ops = &cache_ops; |
| 2546 | |
| 2547 | *cur_arg = pos; |
| 2548 | return 0; |
| 2549 | |
| 2550 | error: |
| 2551 | free(name); |
| 2552 | free(cconf); |
| 2553 | return -1; |
| 2554 | } |
| 2555 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2556 | 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] | 2557 | { |
| 2558 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 2559 | return 1; |
| 2560 | |
| 2561 | return 0; |
| 2562 | } |
| 2563 | |
| 2564 | static int cli_io_handler_show_cache(struct appctx *appctx) |
| 2565 | { |
| 2566 | struct cache* cache = appctx->ctx.cli.p0; |
| 2567 | struct stream_interface *si = appctx->owner; |
| 2568 | |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 2569 | if (cache == NULL) { |
| 2570 | cache = LIST_ELEM((caches).n, typeof(struct cache *), list); |
| 2571 | } |
| 2572 | |
| 2573 | list_for_each_entry_from(cache, &caches, list) { |
| 2574 | struct eb32_node *node = NULL; |
| 2575 | unsigned int next_key; |
| 2576 | struct cache_entry *entry; |
Remi Tricot-Le Breton | e3e1e5f | 2020-11-27 15:48:40 +0100 | [diff] [blame] | 2577 | unsigned int i; |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 2578 | |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 2579 | next_key = appctx->ctx.cli.i0; |
Willy Tarreau | afe1de5 | 2018-04-04 11:56:43 +0200 | [diff] [blame] | 2580 | if (!next_key) { |
| 2581 | chunk_printf(&trash, "%p: %s (shctx:%p, available blocks:%d)\n", cache, cache->id, shctx_ptr(cache), shctx_ptr(cache)->nbav); |
| 2582 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 2583 | si_rx_room_blk(si); |
Willy Tarreau | afe1de5 | 2018-04-04 11:56:43 +0200 | [diff] [blame] | 2584 | return 0; |
| 2585 | } |
| 2586 | } |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 2587 | |
| 2588 | appctx->ctx.cli.p0 = cache; |
| 2589 | |
| 2590 | while (1) { |
| 2591 | |
| 2592 | shctx_lock(shctx_ptr(cache)); |
Remi Tricot-Le Breton | e3e1e5f | 2020-11-27 15:48:40 +0100 | [diff] [blame] | 2593 | if (!node || (node = eb32_next_dup(node)) == NULL) |
| 2594 | node = eb32_lookup_ge(&cache->entries, next_key); |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 2595 | if (!node) { |
| 2596 | shctx_unlock(shctx_ptr(cache)); |
Willy Tarreau | afe1de5 | 2018-04-04 11:56:43 +0200 | [diff] [blame] | 2597 | appctx->ctx.cli.i0 = 0; |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 2598 | break; |
| 2599 | } |
| 2600 | |
| 2601 | entry = container_of(node, struct cache_entry, eb); |
Remi Tricot-Le Breton | e3e1e5f | 2020-11-27 15:48:40 +0100 | [diff] [blame] | 2602 | chunk_printf(&trash, "%p hash:%u vary:0x", entry, read_u32(entry->hash)); |
| 2603 | for (i = 0; i < HTTP_CACHE_SEC_KEY_LEN; ++i) |
| 2604 | chunk_appendf(&trash, "%02x", (unsigned char)entry->secondary_key[i]); |
| 2605 | chunk_appendf(&trash, " size:%u (%u blocks), refcount:%u, expire:%d\n", 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] | 2606 | |
| 2607 | next_key = node->key + 1; |
| 2608 | appctx->ctx.cli.i0 = next_key; |
| 2609 | |
| 2610 | shctx_unlock(shctx_ptr(cache)); |
| 2611 | |
| 2612 | if (ci_putchk(si_ic(si), &trash) == -1) { |
Willy Tarreau | db39843 | 2018-11-15 11:08:52 +0100 | [diff] [blame] | 2613 | si_rx_room_blk(si); |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 2614 | return 0; |
| 2615 | } |
| 2616 | } |
| 2617 | |
| 2618 | } |
| 2619 | |
| 2620 | return 1; |
| 2621 | |
| 2622 | } |
| 2623 | |
Remi Tricot-Le Breton | bf97121 | 2020-10-27 11:55:57 +0100 | [diff] [blame] | 2624 | |
| 2625 | /* |
| 2626 | * boolean, returns true if response was built out of a cache entry. |
| 2627 | */ |
| 2628 | static int |
| 2629 | smp_fetch_res_cache_hit(const struct arg *args, struct sample *smp, |
| 2630 | const char *kw, void *private) |
| 2631 | { |
| 2632 | smp->data.type = SMP_T_BOOL; |
| 2633 | smp->data.u.sint = (smp->strm ? (smp->strm->target == &http_cache_applet.obj_type) : 0); |
| 2634 | |
| 2635 | return 1; |
| 2636 | } |
| 2637 | |
| 2638 | /* |
| 2639 | * string, returns cache name (if response came from a cache). |
| 2640 | */ |
| 2641 | static int |
| 2642 | smp_fetch_res_cache_name(const struct arg *args, struct sample *smp, |
| 2643 | const char *kw, void *private) |
| 2644 | { |
| 2645 | struct appctx *appctx = NULL; |
| 2646 | |
| 2647 | struct cache_flt_conf *cconf = NULL; |
| 2648 | struct cache *cache = NULL; |
| 2649 | |
| 2650 | if (!smp->strm || smp->strm->target != &http_cache_applet.obj_type) |
| 2651 | return 0; |
| 2652 | |
| 2653 | /* Get appctx from the stream_interface. */ |
| 2654 | appctx = si_appctx(&smp->strm->si[1]); |
| 2655 | if (appctx && appctx->rule) { |
| 2656 | cconf = appctx->rule->arg.act.p[0]; |
| 2657 | if (cconf) { |
| 2658 | cache = cconf->c.cache; |
| 2659 | |
| 2660 | smp->data.type = SMP_T_STR; |
| 2661 | smp->flags = SMP_F_CONST; |
| 2662 | smp->data.u.str.area = cache->id; |
| 2663 | smp->data.u.str.data = strlen(cache->id); |
| 2664 | return 1; |
| 2665 | } |
| 2666 | } |
| 2667 | |
| 2668 | return 0; |
| 2669 | } |
| 2670 | |
Christopher Faulet | 99a17a2 | 2018-12-11 09:18:27 +0100 | [diff] [blame] | 2671 | /* Declare the filter parser for "cache" keyword */ |
| 2672 | static struct flt_kw_list filter_kws = { "CACHE", { }, { |
| 2673 | { "cache", parse_cache_flt, NULL }, |
| 2674 | { NULL, NULL, NULL }, |
| 2675 | } |
| 2676 | }; |
| 2677 | |
| 2678 | INITCALL1(STG_REGISTER, flt_register_keywords, &filter_kws); |
| 2679 | |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 2680 | static struct cli_kw_list cli_kws = {{},{ |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 2681 | { { "show", "cache", NULL }, "show cache : show cache status", cli_parse_show_cache, cli_io_handler_show_cache, NULL, NULL }, |
William Lallemand | e899af8 | 2017-11-22 16:41:26 +0100 | [diff] [blame] | 2682 | {{},} |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 2683 | }}; |
| 2684 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 2685 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
William Lallemand | 1f49a36 | 2017-11-21 20:01:26 +0100 | [diff] [blame] | 2686 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2687 | static struct action_kw_list http_res_actions = { |
| 2688 | .kw = { |
| 2689 | { "cache-store", parse_cache_store }, |
| 2690 | { NULL, NULL } |
| 2691 | } |
| 2692 | }; |
| 2693 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 2694 | INITCALL1(STG_REGISTER, http_res_keywords_register, &http_res_actions); |
| 2695 | |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2696 | static struct action_kw_list http_req_actions = { |
| 2697 | .kw = { |
| 2698 | { "cache-use", parse_cache_use }, |
| 2699 | { NULL, NULL } |
| 2700 | } |
| 2701 | }; |
| 2702 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 2703 | INITCALL1(STG_REGISTER, http_req_keywords_register, &http_req_actions); |
| 2704 | |
Willy Tarreau | 2231b63 | 2019-03-29 18:26:52 +0100 | [diff] [blame] | 2705 | struct applet http_cache_applet = { |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2706 | .obj_type = OBJ_TYPE_APPLET, |
| 2707 | .name = "<CACHE>", /* used for logging */ |
William Lallemand | 77c1197 | 2017-10-31 20:43:01 +0100 | [diff] [blame] | 2708 | .fct = http_cache_io_handler, |
William Lallemand | ecb73b1 | 2017-11-24 14:33:55 +0100 | [diff] [blame] | 2709 | .release = http_cache_applet_release, |
William Lallemand | 41db460 | 2017-10-30 11:15:51 +0100 | [diff] [blame] | 2710 | }; |
| 2711 | |
Willy Tarreau | e655251 | 2018-11-26 11:33:13 +0100 | [diff] [blame] | 2712 | /* config parsers for this section */ |
| 2713 | REGISTER_CONFIG_SECTION("cache", cfg_parse_cache, cfg_post_parse_section_cache); |
William Lallemand | d1d1e22 | 2019-08-28 15:22:49 +0200 | [diff] [blame] | 2714 | REGISTER_POST_CHECK(post_check_cache); |
Remi Tricot-Le Breton | bf97121 | 2020-10-27 11:55:57 +0100 | [diff] [blame] | 2715 | |
| 2716 | |
| 2717 | /* Note: must not be declared <const> as its list will be overwritten */ |
| 2718 | static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, { |
| 2719 | { "res.cache_hit", smp_fetch_res_cache_hit, 0, NULL, SMP_T_BOOL, SMP_USE_HRSHP, SMP_VAL_RESPONSE }, |
| 2720 | { "res.cache_name", smp_fetch_res_cache_name, 0, NULL, SMP_T_STR, SMP_USE_HRSHP, SMP_VAL_RESPONSE }, |
| 2721 | { /* END */ }, |
| 2722 | } |
| 2723 | }; |
| 2724 | |
| 2725 | INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords); |