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