Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1 | /* |
| 2 | * HTTP samples fetching |
| 3 | * |
| 4 | * Copyright 2000-2018 Willy Tarreau <w@1wt.eu> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <sys/types.h> |
| 14 | |
| 15 | #include <ctype.h> |
| 16 | #include <string.h> |
| 17 | #include <time.h> |
| 18 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 19 | #include <haproxy/api.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 20 | #include <haproxy/arg.h> |
Willy Tarreau | ac13aea | 2020-06-04 10:36:03 +0200 | [diff] [blame] | 21 | #include <haproxy/auth.h> |
Willy Tarreau | 8d36697 | 2020-05-27 16:10:29 +0200 | [diff] [blame] | 22 | #include <haproxy/base64.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 23 | #include <haproxy/channel.h> |
Willy Tarreau | c13ed53 | 2020-06-02 10:22:45 +0200 | [diff] [blame] | 24 | #include <haproxy/chunk.h> |
Willy Tarreau | 7ea393d | 2020-06-04 18:02:10 +0200 | [diff] [blame] | 25 | #include <haproxy/connection.h> |
Willy Tarreau | f268ee8 | 2020-06-04 17:05:57 +0200 | [diff] [blame] | 26 | #include <haproxy/global.h> |
Willy Tarreau | 5413a87 | 2020-06-02 19:33:08 +0200 | [diff] [blame] | 27 | #include <haproxy/h1.h> |
Willy Tarreau | c6fe884 | 2020-06-04 09:00:02 +0200 | [diff] [blame] | 28 | #include <haproxy/h1_htx.h> |
Willy Tarreau | cd72d8c | 2020-06-02 19:11:26 +0200 | [diff] [blame] | 29 | #include <haproxy/http.h> |
Willy Tarreau | c2b1ff0 | 2020-06-04 21:21:03 +0200 | [diff] [blame] | 30 | #include <haproxy/http_ana.h> |
Willy Tarreau | 126ba3a | 2020-06-04 18:26:43 +0200 | [diff] [blame] | 31 | #include <haproxy/http_fetch.h> |
Willy Tarreau | 8773533 | 2020-06-04 09:08:41 +0200 | [diff] [blame] | 32 | #include <haproxy/http_htx.h> |
Willy Tarreau | 16f958c | 2020-06-03 08:44:35 +0200 | [diff] [blame] | 33 | #include <haproxy/htx.h> |
Willy Tarreau | 8efbdfb | 2020-06-04 11:29:21 +0200 | [diff] [blame] | 34 | #include <haproxy/obj_type.h> |
Willy Tarreau | d0ef439 | 2020-06-02 09:38:52 +0200 | [diff] [blame] | 35 | #include <haproxy/pool.h> |
Willy Tarreau | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 36 | #include <haproxy/sample.h> |
Willy Tarreau | 5edca2f | 2022-05-27 09:25:10 +0200 | [diff] [blame] | 37 | #include <haproxy/sc_strm.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 38 | #include <haproxy/stream.h> |
Willy Tarreau | 48fbcae | 2020-06-03 18:09:46 +0200 | [diff] [blame] | 39 | #include <haproxy/tools.h> |
Willy Tarreau | d678805 | 2020-05-27 15:59:00 +0200 | [diff] [blame] | 40 | #include <haproxy/version.h> |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 41 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 42 | |
| 43 | /* this struct is used between calls to smp_fetch_hdr() or smp_fetch_cookie() */ |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 44 | static THREAD_LOCAL struct http_hdr_ctx static_http_hdr_ctx; |
Richard Russo | 458eafb | 2019-07-31 11:45:56 -0700 | [diff] [blame] | 45 | /* this is used to convert raw connection buffers to htx */ |
| 46 | static THREAD_LOCAL struct buffer static_raw_htx_chunk; |
| 47 | static THREAD_LOCAL char *static_raw_htx_buf; |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 48 | |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 49 | #define SMP_REQ_CHN(smp) (smp->strm ? &smp->strm->req : NULL) |
| 50 | #define SMP_RES_CHN(smp) (smp->strm ? &smp->strm->res : NULL) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 51 | |
Richard Russo | 458eafb | 2019-07-31 11:45:56 -0700 | [diff] [blame] | 52 | /* This function returns the static htx chunk, where raw connections get |
| 53 | * converted to HTX as needed for samplxsing. |
| 54 | */ |
| 55 | struct buffer *get_raw_htx_chunk(void) |
| 56 | { |
| 57 | chunk_reset(&static_raw_htx_chunk); |
| 58 | return &static_raw_htx_chunk; |
| 59 | } |
| 60 | |
| 61 | static int alloc_raw_htx_chunk_per_thread() |
| 62 | { |
| 63 | static_raw_htx_buf = malloc(global.tune.bufsize); |
| 64 | if (!static_raw_htx_buf) |
| 65 | return 0; |
| 66 | chunk_init(&static_raw_htx_chunk, static_raw_htx_buf, global.tune.bufsize); |
| 67 | return 1; |
| 68 | } |
| 69 | |
| 70 | static void free_raw_htx_chunk_per_thread() |
| 71 | { |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 72 | ha_free(&static_raw_htx_buf); |
Richard Russo | 458eafb | 2019-07-31 11:45:56 -0700 | [diff] [blame] | 73 | } |
| 74 | |
| 75 | REGISTER_PER_THREAD_ALLOC(alloc_raw_htx_chunk_per_thread); |
| 76 | REGISTER_PER_THREAD_FREE(free_raw_htx_chunk_per_thread); |
| 77 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 78 | /* |
| 79 | * Returns the data from Authorization header. Function may be called more |
| 80 | * than once so data is stored in txn->auth_data. When no header is found |
| 81 | * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid |
| 82 | * searching again for something we are unable to find anyway. However, if |
| 83 | * the result if valid, the cache is not reused because we would risk to |
| 84 | * have the credentials overwritten by another stream in parallel. |
Willy Tarreau | eae8372 | 2020-04-29 11:52:51 +0200 | [diff] [blame] | 85 | * The caller is responsible for passing a sample with a valid stream/txn, |
| 86 | * and a valid htx. |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 87 | */ |
| 88 | |
Christopher Faulet | cd76195 | 2019-07-15 13:58:29 +0200 | [diff] [blame] | 89 | static int get_http_auth(struct sample *smp, struct htx *htx) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 90 | { |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 91 | struct stream *s = smp->strm; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 92 | struct http_txn *txn = s->txn; |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 93 | struct http_hdr_ctx ctx = { .blk = NULL }; |
| 94 | struct ist hdr; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 95 | struct buffer auth_method; |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 96 | char *p; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 97 | int len; |
| 98 | |
| 99 | #ifdef DEBUG_AUTH |
| 100 | printf("Auth for stream %p: %d\n", s, txn->auth.method); |
| 101 | #endif |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 102 | if (txn->auth.method == HTTP_AUTH_WRONG) |
| 103 | return 0; |
| 104 | |
| 105 | txn->auth.method = HTTP_AUTH_WRONG; |
| 106 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 107 | if (txn->flags & TX_USE_PX_CONN) |
| 108 | hdr = ist("Proxy-Authorization"); |
| 109 | else |
| 110 | hdr = ist("Authorization"); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 111 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 112 | ctx.blk = NULL; |
| 113 | if (!http_find_header(htx, hdr, &ctx, 0)) |
| 114 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 115 | |
Willy Tarreau | 1725493 | 2020-09-02 07:08:47 +0200 | [diff] [blame] | 116 | p = memchr(ctx.value.ptr, ' ', ctx.value.len); |
| 117 | if (!p || p == ctx.value.ptr) /* if no space was found or if the space is the first character */ |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 118 | return 0; |
Willy Tarreau | 1725493 | 2020-09-02 07:08:47 +0200 | [diff] [blame] | 119 | len = p - ctx.value.ptr; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 120 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 121 | if (chunk_initlen(&auth_method, ctx.value.ptr, 0, len) != 1) |
| 122 | return 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 123 | |
Remi Tricot-Le Breton | 68c4eae | 2021-10-29 15:25:18 +0200 | [diff] [blame] | 124 | /* According to RFC7235, there could be multiple spaces between the |
| 125 | * scheme and its value, we must skip all of them. |
| 126 | */ |
| 127 | while (p < istend(ctx.value) && *p == ' ') |
| 128 | ++p; |
| 129 | |
| 130 | chunk_initlen(&txn->auth.method_data, p, 0, istend(ctx.value) - p); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 131 | |
| 132 | if (!strncasecmp("Basic", auth_method.area, auth_method.data)) { |
| 133 | struct buffer *http_auth = get_trash_chunk(); |
| 134 | |
| 135 | len = base64dec(txn->auth.method_data.area, |
| 136 | txn->auth.method_data.data, |
| 137 | http_auth->area, global.tune.bufsize - 1); |
| 138 | |
| 139 | if (len < 0) |
| 140 | return 0; |
| 141 | |
| 142 | |
| 143 | http_auth->area[len] = '\0'; |
| 144 | |
| 145 | p = strchr(http_auth->area, ':'); |
| 146 | |
| 147 | if (!p) |
| 148 | return 0; |
| 149 | |
| 150 | txn->auth.user = http_auth->area; |
| 151 | *p = '\0'; |
| 152 | txn->auth.pass = p+1; |
| 153 | |
| 154 | txn->auth.method = HTTP_AUTH_BASIC; |
| 155 | return 1; |
Remi Tricot-Le Breton | f5dd337 | 2021-10-01 15:36:53 +0200 | [diff] [blame] | 156 | } else if (!strncasecmp("Bearer", auth_method.area, auth_method.data)) { |
| 157 | txn->auth.method = HTTP_AUTH_BEARER; |
| 158 | return 1; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | return 0; |
| 162 | } |
| 163 | |
| 164 | /* This function ensures that the prerequisites for an L7 fetch are ready, |
| 165 | * which means that a request or response is ready. If some data is missing, |
| 166 | * a parsing attempt is made. This is useful in TCP-based ACLs which are able |
Christopher Faulet | 5ec8bcb | 2019-04-17 12:04:12 +0200 | [diff] [blame] | 167 | * to extract data from L7. If <vol> is non-null during a prefetch, another |
| 168 | * test is made to ensure the required information is not gone. |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 169 | * |
| 170 | * The function returns : |
| 171 | * NULL with SMP_F_MAY_CHANGE in the sample flags if some data is missing to |
| 172 | * decide whether or not an HTTP message is present ; |
| 173 | * NULL if the requested data cannot be fetched or if it is certain that |
Willy Tarreau | eae8372 | 2020-04-29 11:52:51 +0200 | [diff] [blame] | 174 | * we'll never have any HTTP message there; this includes null strm or chn. |
Willy Tarreau | a6d9879 | 2020-08-12 14:04:52 +0200 | [diff] [blame] | 175 | * NULL if the sample's direction does not match the channel's (i.e. the |
| 176 | * function was asked to work on the wrong channel) |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 177 | * The HTX message if ready |
| 178 | */ |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 179 | struct htx *smp_prefetch_htx(struct sample *smp, struct channel *chn, struct check *check, int vol) |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 180 | { |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 181 | struct stream *s = smp->strm; |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 182 | struct http_txn *txn = NULL; |
| 183 | struct htx *htx = NULL; |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 184 | struct http_msg *msg; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 185 | struct htx_sl *sl; |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 186 | |
Willy Tarreau | a6d9879 | 2020-08-12 14:04:52 +0200 | [diff] [blame] | 187 | if (chn && |
| 188 | (((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ && (chn->flags & CF_ISRESP)) || |
| 189 | ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES && !(chn->flags & CF_ISRESP)))) |
| 190 | return 0; |
| 191 | |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 192 | /* Note: it is possible that <s> is NULL when called before stream |
| 193 | * initialization (eg: tcp-request connection), so this function is the |
| 194 | * one responsible for guarding against this case for all HTTP users. |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 195 | * |
| 196 | * In the health check context, the stream and the channel must be NULL |
| 197 | * and <check> must be set. In this case, only the input buffer, |
| 198 | * corresponding to the response, is considered. It is the caller |
| 199 | * responsibility to provide <check>. |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 200 | */ |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 201 | BUG_ON(check && (s || chn)); |
| 202 | if (!s || !chn) { |
| 203 | if (check) { |
| 204 | htx = htxbuf(&check->bi); |
| 205 | |
| 206 | /* Analyse not yet started */ |
| 207 | if (htx_is_empty(htx) || htx->first == -1) |
| 208 | return NULL; |
| 209 | |
| 210 | sl = http_get_stline(htx); |
| 211 | if (vol && !sl) { |
| 212 | /* The start-line was already forwarded, it is too late to fetch anything */ |
| 213 | return NULL; |
| 214 | } |
| 215 | goto end; |
| 216 | } |
| 217 | |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 218 | return NULL; |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 219 | } |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 220 | |
Christopher Faulet | 75f619a | 2021-03-08 19:12:58 +0100 | [diff] [blame] | 221 | if (!s->txn && !http_create_txn(s)) |
| 222 | return NULL; |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 223 | txn = s->txn; |
| 224 | msg = (!(chn->flags & CF_ISRESP) ? &txn->req : &txn->rsp); |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 225 | |
Christopher Faulet | eca8854 | 2019-04-03 10:12:42 +0200 | [diff] [blame] | 226 | if (IS_HTX_STRM(s)) { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 227 | htx = htxbuf(&chn->buf); |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 228 | |
Christopher Faulet | 5aab0a3 | 2023-01-13 10:58:20 +0100 | [diff] [blame] | 229 | if (htx->flags & HTX_FL_PARSING_ERROR) |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 230 | return NULL; |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 231 | |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 232 | if (msg->msg_state < HTTP_MSG_BODY) { |
| 233 | /* Analyse not yet started */ |
Christopher Faulet | 29f1758 | 2019-05-23 11:03:26 +0200 | [diff] [blame] | 234 | if (htx_is_empty(htx) || htx->first == -1) { |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 235 | /* Parsing is done by the mux, just wait */ |
| 236 | smp->flags |= SMP_F_MAY_CHANGE; |
| 237 | return NULL; |
| 238 | } |
| 239 | } |
Christopher Faulet | 297fbb4 | 2019-05-13 14:41:27 +0200 | [diff] [blame] | 240 | sl = http_get_stline(htx); |
Christopher Faulet | 5ec8bcb | 2019-04-17 12:04:12 +0200 | [diff] [blame] | 241 | if (vol && !sl) { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 242 | /* The start-line was already forwarded, it is too late to fetch anything */ |
| 243 | return NULL; |
| 244 | } |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 245 | } |
Christopher Faulet | eca8854 | 2019-04-03 10:12:42 +0200 | [diff] [blame] | 246 | else { /* RAW mode */ |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 247 | struct buffer *buf; |
| 248 | struct h1m h1m; |
Christopher Faulet | e4ab11b | 2019-06-11 15:05:37 +0200 | [diff] [blame] | 249 | struct http_hdr hdrs[global.tune.max_http_hdr]; |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 250 | union h1_sl h1sl; |
| 251 | unsigned int flags = HTX_FL_NONE; |
| 252 | int ret; |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 253 | |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 254 | /* no HTTP fetch on the response in TCP mode */ |
| 255 | if (chn->flags & CF_ISRESP) |
| 256 | return NULL; |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 257 | |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 258 | /* Now we are working on the request only */ |
| 259 | buf = &chn->buf; |
| 260 | if (b_head(buf) + b_data(buf) > b_wrap(buf)) |
| 261 | b_slow_realign(buf, trash.area, 0); |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 262 | |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 263 | h1m_init_req(&h1m); |
| 264 | ret = h1_headers_to_hdr_list(b_head(buf), b_stop(buf), |
| 265 | hdrs, sizeof(hdrs)/sizeof(hdrs[0]), &h1m, &h1sl); |
| 266 | if (ret <= 0) { |
| 267 | /* Invalid or too big*/ |
| 268 | if (ret < 0 || channel_full(&s->req, global.tune.maxrewrite)) |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 269 | return NULL; |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 270 | |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 271 | /* wait for a full request */ |
| 272 | smp->flags |= SMP_F_MAY_CHANGE; |
| 273 | return NULL; |
| 274 | } |
Christopher Faulet | f1ba18d | 2018-11-26 21:37:08 +0100 | [diff] [blame] | 275 | |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 276 | /* OK we just got a valid HTTP message. We have to convert it |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 277 | * into an HTX message. |
| 278 | */ |
| 279 | if (unlikely(h1sl.rq.v.len == 0)) { |
| 280 | /* try to convert HTTP/0.9 requests to HTTP/1.0 */ |
| 281 | if (h1sl.rq.meth != HTTP_METH_GET || !h1sl.rq.u.len) |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 282 | return NULL; |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 283 | h1sl.rq.v = ist("HTTP/1.0"); |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 284 | } |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 285 | |
| 286 | /* Set HTX start-line flags */ |
| 287 | if (h1m.flags & H1_MF_VER_11) |
| 288 | flags |= HTX_SL_F_VER_11; |
| 289 | if (h1m.flags & H1_MF_XFER_ENC) |
| 290 | flags |= HTX_SL_F_XFER_ENC; |
| 291 | flags |= HTX_SL_F_XFER_LEN; |
| 292 | if (h1m.flags & H1_MF_CHNK) |
| 293 | flags |= HTX_SL_F_CHNK; |
| 294 | else if (h1m.flags & H1_MF_CLEN) |
| 295 | flags |= HTX_SL_F_CLEN; |
| 296 | |
Richard Russo | 458eafb | 2019-07-31 11:45:56 -0700 | [diff] [blame] | 297 | htx = htx_from_buf(get_raw_htx_chunk()); |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 298 | sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, h1sl.rq.m, h1sl.rq.u, h1sl.rq.v); |
| 299 | if (!sl || !htx_add_all_headers(htx, hdrs)) |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 300 | return NULL; |
Willy Tarreau | ce9bbf5 | 2019-05-13 08:32:31 +0200 | [diff] [blame] | 301 | sl->info.req.meth = h1sl.rq.meth; |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | /* OK we just got a valid HTTP message. If not already done by |
| 305 | * HTTP analyzers, we have some minor preparation to perform so |
| 306 | * that further checks can rely on HTTP tests. |
| 307 | */ |
| 308 | if (sl && msg->msg_state < HTTP_MSG_BODY) { |
| 309 | if (!(chn->flags & CF_ISRESP)) { |
| 310 | txn->meth = sl->info.req.meth; |
| 311 | if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD) |
| 312 | s->flags |= SF_REDIRECTABLE; |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 313 | } |
Christopher Faulet | 31850b4 | 2023-01-04 10:11:32 +0100 | [diff] [blame] | 314 | else if (txn->status == -1) |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 315 | txn->status = sl->info.res.status; |
| 316 | if (sl->flags & HTX_SL_F_VER_11) |
| 317 | msg->flags |= HTTP_MSGF_VER_11; |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 318 | } |
| 319 | |
| 320 | /* everything's OK */ |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 321 | end: |
Christopher Faulet | ef453ed | 2018-10-24 21:39:27 +0200 | [diff] [blame] | 322 | return htx; |
| 323 | } |
| 324 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 325 | /* This function fetches the method of current HTTP request and stores |
| 326 | * it in the global pattern struct as a chunk. There are two possibilities : |
| 327 | * - if the method is known (not HTTP_METH_OTHER), its identifier is stored |
| 328 | * in <len> and <ptr> is NULL ; |
| 329 | * - if the method is unknown (HTTP_METH_OTHER), <ptr> points to the text and |
| 330 | * <len> to its length. |
| 331 | * This is intended to be used with pat_match_meth() only. |
| 332 | */ |
| 333 | static int smp_fetch_meth(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 334 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 335 | struct channel *chn = SMP_REQ_CHN(smp); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 336 | struct http_txn *txn; |
Willy Tarreau | 2e2b79d | 2022-10-04 09:18:34 +0200 | [diff] [blame] | 337 | struct htx *htx = NULL; |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 338 | int meth; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 339 | |
Christopher Faulet | 12f6dbb | 2022-07-06 17:53:02 +0200 | [diff] [blame] | 340 | txn = (smp->strm ? smp->strm->txn : NULL); |
Willy Tarreau | a6d9879 | 2020-08-12 14:04:52 +0200 | [diff] [blame] | 341 | if (!txn) |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 342 | return 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 343 | |
Willy Tarreau | a88e8bf | 2022-07-10 13:13:52 +0200 | [diff] [blame] | 344 | meth = txn->meth; |
| 345 | if (meth == HTTP_METH_OTHER) { |
Christopher Faulet | dbbdb25 | 2022-06-22 17:16:41 +0200 | [diff] [blame] | 346 | htx = smp_prefetch_htx(smp, chn, NULL, 1); |
| 347 | if (!htx) |
| 348 | return 0; |
Christopher Faulet | eefcd8a | 2022-10-04 08:58:02 +0200 | [diff] [blame] | 349 | meth = txn->meth; |
Christopher Faulet | dbbdb25 | 2022-06-22 17:16:41 +0200 | [diff] [blame] | 350 | } |
| 351 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 352 | smp->data.type = SMP_T_METH; |
| 353 | smp->data.u.meth.meth = meth; |
| 354 | if (meth == HTTP_METH_OTHER) { |
| 355 | struct htx_sl *sl; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 356 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 357 | sl = http_get_stline(htx); |
| 358 | smp->flags |= SMP_F_CONST; |
| 359 | smp->data.u.meth.str.area = HTX_SL_REQ_MPTR(sl); |
| 360 | smp->data.u.meth.str.data = HTX_SL_REQ_MLEN(sl); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 361 | } |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 362 | smp->flags |= SMP_F_VOL_1ST; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 363 | return 1; |
| 364 | } |
| 365 | |
| 366 | static int smp_fetch_rqver(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 367 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 368 | struct channel *chn = SMP_REQ_CHN(smp); |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 369 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 370 | struct htx_sl *sl; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 371 | char *ptr; |
| 372 | int len; |
| 373 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 374 | if (!htx) |
| 375 | return 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 376 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 377 | sl = http_get_stline(htx); |
| 378 | len = HTX_SL_REQ_VLEN(sl); |
| 379 | ptr = HTX_SL_REQ_VPTR(sl); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 380 | |
| 381 | while ((len-- > 0) && (*ptr++ != '/')); |
| 382 | if (len <= 0) |
| 383 | return 0; |
| 384 | |
| 385 | smp->data.type = SMP_T_STR; |
| 386 | smp->data.u.str.area = ptr; |
| 387 | smp->data.u.str.data = len; |
| 388 | |
| 389 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
| 390 | return 1; |
| 391 | } |
| 392 | |
| 393 | static int smp_fetch_stver(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 394 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 395 | struct channel *chn = SMP_RES_CHN(smp); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 396 | struct check *check = objt_check(smp->sess->origin); |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 397 | struct htx *htx = smp_prefetch_htx(smp, chn, check, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 398 | struct htx_sl *sl; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 399 | char *ptr; |
| 400 | int len; |
| 401 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 402 | if (!htx) |
| 403 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 404 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 405 | sl = http_get_stline(htx); |
| 406 | len = HTX_SL_RES_VLEN(sl); |
| 407 | ptr = HTX_SL_RES_VPTR(sl); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 408 | |
| 409 | while ((len-- > 0) && (*ptr++ != '/')); |
| 410 | if (len <= 0) |
| 411 | return 0; |
| 412 | |
| 413 | smp->data.type = SMP_T_STR; |
| 414 | smp->data.u.str.area = ptr; |
| 415 | smp->data.u.str.data = len; |
| 416 | |
| 417 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
| 418 | return 1; |
| 419 | } |
| 420 | |
| 421 | /* 3. Check on Status Code. We manipulate integers here. */ |
| 422 | static int smp_fetch_stcode(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 423 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 424 | struct channel *chn = SMP_RES_CHN(smp); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 425 | struct check *check = objt_check(smp->sess->origin); |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 426 | struct htx *htx = smp_prefetch_htx(smp, chn, check, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 427 | struct htx_sl *sl; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 428 | char *ptr; |
| 429 | int len; |
| 430 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 431 | if (!htx) |
| 432 | return 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 433 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 434 | sl = http_get_stline(htx); |
| 435 | len = HTX_SL_RES_CLEN(sl); |
| 436 | ptr = HTX_SL_RES_CPTR(sl); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 437 | |
| 438 | smp->data.type = SMP_T_SINT; |
| 439 | smp->data.u.sint = __strl2ui(ptr, len); |
| 440 | smp->flags = SMP_F_VOL_1ST; |
| 441 | return 1; |
| 442 | } |
| 443 | |
| 444 | static int smp_fetch_uniqueid(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 445 | { |
Tim Duesterhus | a17e662 | 2020-03-05 20:19:02 +0100 | [diff] [blame] | 446 | struct ist unique_id; |
Tim Duesterhus | 2825b4b | 2020-02-28 15:13:34 +0100 | [diff] [blame] | 447 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 448 | if (LIST_ISEMPTY(&smp->sess->fe->format_unique_id)) |
| 449 | return 0; |
| 450 | |
Willy Tarreau | a1062a4 | 2020-04-29 11:50:38 +0200 | [diff] [blame] | 451 | if (!smp->strm) |
| 452 | return 0; |
| 453 | |
Tim Duesterhus | a17e662 | 2020-03-05 20:19:02 +0100 | [diff] [blame] | 454 | unique_id = stream_generate_unique_id(smp->strm, &smp->sess->fe->format_unique_id); |
| 455 | if (!isttest(unique_id)) |
Tim Duesterhus | 2825b4b | 2020-02-28 15:13:34 +0100 | [diff] [blame] | 456 | return 0; |
| 457 | |
Tim Duesterhus | a17e662 | 2020-03-05 20:19:02 +0100 | [diff] [blame] | 458 | smp->data.u.str.area = smp->strm->unique_id.ptr; |
| 459 | smp->data.u.str.data = smp->strm->unique_id.len; |
Tim Duesterhus | 2825b4b | 2020-02-28 15:13:34 +0100 | [diff] [blame] | 460 | smp->data.type = SMP_T_STR; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 461 | smp->flags = SMP_F_CONST; |
| 462 | return 1; |
| 463 | } |
| 464 | |
| 465 | /* Returns a string block containing all headers including the |
Joseph Herlant | 942eea3 | 2018-11-15 13:57:22 -0800 | [diff] [blame] | 466 | * empty line which separes headers from the body. This is useful |
| 467 | * for some headers analysis. |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 468 | */ |
| 469 | static int smp_fetch_hdrs(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 470 | { |
Christopher Faulet | e596d18 | 2020-05-05 17:46:34 +0200 | [diff] [blame] | 471 | /* possible keywords: req.hdrs, res.hdrs */ |
| 472 | struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp)); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 473 | struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL); |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 474 | struct htx *htx = smp_prefetch_htx(smp, chn, check, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 475 | struct buffer *temp; |
| 476 | int32_t pos; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 477 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 478 | if (!htx) |
| 479 | return 0; |
| 480 | temp = get_trash_chunk(); |
| 481 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 482 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 483 | enum htx_blk_type type = htx_get_blk_type(blk); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 484 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 485 | if (type == HTX_BLK_HDR) { |
| 486 | struct ist n = htx_get_blk_name(htx, blk); |
| 487 | struct ist v = htx_get_blk_value(htx, blk); |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 488 | |
Christopher Faulet | 53a899b | 2019-10-08 16:38:42 +0200 | [diff] [blame] | 489 | if (!h1_format_htx_hdr(n, v, temp)) |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 490 | return 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 491 | } |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 492 | else if (type == HTX_BLK_EOH) { |
| 493 | if (!chunk_memcat(temp, "\r\n", 2)) |
| 494 | return 0; |
| 495 | break; |
| 496 | } |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 497 | } |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 498 | smp->data.type = SMP_T_STR; |
| 499 | smp->data.u.str = *temp; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 500 | return 1; |
| 501 | } |
| 502 | |
| 503 | /* Returns the header request in a length/value encoded format. |
| 504 | * This is useful for exchanges with the SPOE. |
| 505 | * |
| 506 | * A "length value" is a multibyte code encoding numbers. It uses the |
| 507 | * SPOE format. The encoding is the following: |
| 508 | * |
| 509 | * Each couple "header name" / "header value" is composed |
| 510 | * like this: |
| 511 | * "length value" "header name bytes" |
| 512 | * "length value" "header value bytes" |
| 513 | * When the last header is reached, the header name and the header |
| 514 | * value are empty. Their length are 0 |
| 515 | */ |
| 516 | static int smp_fetch_hdrs_bin(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 517 | { |
Christopher Faulet | e596d18 | 2020-05-05 17:46:34 +0200 | [diff] [blame] | 518 | /* possible keywords: req.hdrs_bin, res.hdrs_bin */ |
| 519 | struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp)); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 520 | struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL); |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 521 | struct htx *htx = smp_prefetch_htx(smp, chn, check, 1); |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 522 | struct buffer *temp; |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 523 | char *p, *end; |
| 524 | int32_t pos; |
| 525 | int ret; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 526 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 527 | if (!htx) |
| 528 | return 0; |
| 529 | temp = get_trash_chunk(); |
| 530 | p = temp->area; |
| 531 | end = temp->area + temp->size; |
| 532 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 533 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 534 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 535 | struct ist n, v; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 536 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 537 | if (type == HTX_BLK_HDR) { |
| 538 | n = htx_get_blk_name(htx,blk); |
| 539 | v = htx_get_blk_value(htx, blk); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 540 | |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 541 | /* encode the header name. */ |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 542 | ret = encode_varint(n.len, &p, end); |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 543 | if (ret == -1) |
| 544 | return 0; |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 545 | if (p + n.len > end) |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 546 | return 0; |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 547 | memcpy(p, n.ptr, n.len); |
| 548 | p += n.len; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 549 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 550 | /* encode the header value. */ |
| 551 | ret = encode_varint(v.len, &p, end); |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 552 | if (ret == -1) |
| 553 | return 0; |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 554 | if (p + v.len > end) |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 555 | return 0; |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 556 | memcpy(p, v.ptr, v.len); |
| 557 | p += v.len; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 558 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 559 | } |
| 560 | else if (type == HTX_BLK_EOH) { |
| 561 | /* encode the end of the header list with empty |
| 562 | * header name and header value. |
| 563 | */ |
| 564 | ret = encode_varint(0, &p, end); |
| 565 | if (ret == -1) |
| 566 | return 0; |
| 567 | ret = encode_varint(0, &p, end); |
| 568 | if (ret == -1) |
| 569 | return 0; |
| 570 | break; |
| 571 | } |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 572 | } |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 573 | |
| 574 | /* Initialise sample data which will be filled. */ |
| 575 | smp->data.type = SMP_T_BIN; |
| 576 | smp->data.u.str.area = temp->area; |
| 577 | smp->data.u.str.data = p - temp->area; |
| 578 | smp->data.u.str.size = temp->size; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 579 | return 1; |
| 580 | } |
| 581 | |
| 582 | /* returns the longest available part of the body. This requires that the body |
| 583 | * has been waited for using http-buffer-request. |
| 584 | */ |
| 585 | static int smp_fetch_body(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 586 | { |
Christopher Faulet | e596d18 | 2020-05-05 17:46:34 +0200 | [diff] [blame] | 587 | /* possible keywords: req.body, res.body */ |
| 588 | struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp)); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 589 | struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL); |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 590 | struct htx *htx = smp_prefetch_htx(smp, chn, check, 1); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 591 | struct buffer *temp; |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 592 | int32_t pos; |
Christopher Faulet | a9ffc41 | 2020-11-25 08:08:08 +0100 | [diff] [blame] | 593 | int finished = 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 594 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 595 | if (!htx) |
| 596 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 597 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 598 | temp = get_trash_chunk(); |
| 599 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 600 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 601 | enum htx_blk_type type = htx_get_blk_type(blk); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 602 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 603 | if (type == HTX_BLK_TLR || type == HTX_BLK_EOT) { |
Christopher Faulet | a9ffc41 | 2020-11-25 08:08:08 +0100 | [diff] [blame] | 604 | finished = 1; |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 605 | break; |
Christopher Faulet | a9ffc41 | 2020-11-25 08:08:08 +0100 | [diff] [blame] | 606 | } |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 607 | if (type == HTX_BLK_DATA) { |
Christopher Faulet | 53a899b | 2019-10-08 16:38:42 +0200 | [diff] [blame] | 608 | if (!h1_format_htx_data(htx_get_blk_value(htx, blk), temp, 0)) |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 609 | return 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 610 | } |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 611 | } |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 612 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 613 | smp->data.type = SMP_T_BIN; |
| 614 | smp->data.u.str = *temp; |
| 615 | smp->flags = SMP_F_VOL_TEST; |
Willy Tarreau | 9dc92b2 | 2020-06-15 18:01:10 +0200 | [diff] [blame] | 616 | |
Christopher Faulet | a9ffc41 | 2020-11-25 08:08:08 +0100 | [diff] [blame] | 617 | if (!finished && (check || (chn && !channel_full(chn, global.tune.maxrewrite) && |
Christopher Faulet | ca5309a | 2023-04-17 16:17:32 +0200 | [diff] [blame] | 618 | !(chn_prod(chn)->flags & (SC_FL_EOI|SC_FL_EOS|SC_FL_ABRT_DONE))))) |
Willy Tarreau | 9dc92b2 | 2020-06-15 18:01:10 +0200 | [diff] [blame] | 619 | smp->flags |= SMP_F_MAY_CHANGE; |
| 620 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 621 | return 1; |
| 622 | } |
| 623 | |
| 624 | |
| 625 | /* returns the available length of the body. This requires that the body |
| 626 | * has been waited for using http-buffer-request. |
| 627 | */ |
| 628 | static int smp_fetch_body_len(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 629 | { |
Christopher Faulet | e596d18 | 2020-05-05 17:46:34 +0200 | [diff] [blame] | 630 | /* possible keywords: req.body_len, res.body_len */ |
| 631 | struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp)); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 632 | struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL); |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 633 | struct htx *htx = smp_prefetch_htx(smp, chn, check, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 634 | int32_t pos; |
| 635 | unsigned long long len = 0; |
Christopher Faulet | c16317d | 2018-12-12 14:11:22 +0100 | [diff] [blame] | 636 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 637 | if (!htx) |
| 638 | return 0; |
Christopher Faulet | c16317d | 2018-12-12 14:11:22 +0100 | [diff] [blame] | 639 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 640 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 641 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 642 | enum htx_blk_type type = htx_get_blk_type(blk); |
Christopher Faulet | c16317d | 2018-12-12 14:11:22 +0100 | [diff] [blame] | 643 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 644 | if (type == HTX_BLK_TLR || type == HTX_BLK_EOT) |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 645 | break; |
| 646 | if (type == HTX_BLK_DATA) |
| 647 | len += htx_get_blksz(blk); |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 648 | } |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 649 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 650 | smp->data.type = SMP_T_SINT; |
| 651 | smp->data.u.sint = len; |
| 652 | smp->flags = SMP_F_VOL_TEST; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 653 | return 1; |
| 654 | } |
| 655 | |
| 656 | |
| 657 | /* returns the advertised length of the body, or the advertised size of the |
| 658 | * chunks available in the buffer. This requires that the body has been waited |
| 659 | * for using http-buffer-request. |
| 660 | */ |
| 661 | static int smp_fetch_body_size(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 662 | { |
Christopher Faulet | e596d18 | 2020-05-05 17:46:34 +0200 | [diff] [blame] | 663 | /* possible keywords: req.body_size, res.body_size */ |
| 664 | struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp)); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 665 | struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL); |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 666 | struct htx *htx = smp_prefetch_htx(smp, chn, check, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 667 | int32_t pos; |
| 668 | unsigned long long len = 0; |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 669 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 670 | if (!htx) |
| 671 | return 0; |
Christopher Faulet | c16317d | 2018-12-12 14:11:22 +0100 | [diff] [blame] | 672 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 673 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 674 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 675 | enum htx_blk_type type = htx_get_blk_type(blk); |
Christopher Faulet | c16317d | 2018-12-12 14:11:22 +0100 | [diff] [blame] | 676 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 677 | if (type == HTX_BLK_TLR || type == HTX_BLK_EOT) |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 678 | break; |
| 679 | if (type == HTX_BLK_DATA) |
| 680 | len += htx_get_blksz(blk); |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 681 | } |
Christopher Faulet | 2e47e3a | 2023-01-13 11:40:24 +0100 | [diff] [blame] | 682 | if (htx->extra != HTX_UNKOWN_PAYLOAD_LENGTH) |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 683 | len += htx->extra; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 684 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 685 | smp->data.type = SMP_T_SINT; |
| 686 | smp->data.u.sint = len; |
| 687 | smp->flags = SMP_F_VOL_TEST; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 688 | return 1; |
| 689 | } |
| 690 | |
| 691 | |
| 692 | /* 4. Check on URL/URI. A pointer to the URI is stored. */ |
| 693 | static int smp_fetch_url(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 694 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 695 | struct channel *chn = SMP_REQ_CHN(smp); |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 696 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 697 | struct htx_sl *sl; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 698 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 699 | if (!htx) |
| 700 | return 0; |
| 701 | sl = http_get_stline(htx); |
| 702 | smp->data.type = SMP_T_STR; |
| 703 | smp->data.u.str.area = HTX_SL_REQ_UPTR(sl); |
| 704 | smp->data.u.str.data = HTX_SL_REQ_ULEN(sl); |
| 705 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 706 | return 1; |
| 707 | } |
| 708 | |
| 709 | static int smp_fetch_url_ip(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 710 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 711 | struct channel *chn = SMP_REQ_CHN(smp); |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 712 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 713 | struct htx_sl *sl; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 714 | struct sockaddr_storage addr; |
| 715 | |
Amaury Denoyelle | c89d533 | 2021-05-10 11:23:34 +0200 | [diff] [blame] | 716 | memset(&addr, 0, sizeof(addr)); |
| 717 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 718 | if (!htx) |
| 719 | return 0; |
| 720 | sl = http_get_stline(htx); |
Amaury Denoyelle | c89d533 | 2021-05-10 11:23:34 +0200 | [diff] [blame] | 721 | if (url2sa(HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl), &addr, NULL) < 0) |
| 722 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 723 | |
Willy Tarreau | 4858464 | 2021-05-09 10:32:54 +0200 | [diff] [blame] | 724 | if (addr.ss_family != AF_INET) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 725 | return 0; |
| 726 | |
| 727 | smp->data.type = SMP_T_IPV4; |
| 728 | smp->data.u.ipv4 = ((struct sockaddr_in *)&addr)->sin_addr; |
| 729 | smp->flags = 0; |
| 730 | return 1; |
| 731 | } |
| 732 | |
| 733 | static int smp_fetch_url_port(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 734 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 735 | struct channel *chn = SMP_REQ_CHN(smp); |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 736 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 737 | struct htx_sl *sl; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 738 | struct sockaddr_storage addr; |
| 739 | |
Amaury Denoyelle | c89d533 | 2021-05-10 11:23:34 +0200 | [diff] [blame] | 740 | memset(&addr, 0, sizeof(addr)); |
| 741 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 742 | if (!htx) |
| 743 | return 0; |
| 744 | sl = http_get_stline(htx); |
Amaury Denoyelle | c89d533 | 2021-05-10 11:23:34 +0200 | [diff] [blame] | 745 | if (url2sa(HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl), &addr, NULL) < 0) |
| 746 | return 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 747 | |
Willy Tarreau | 4858464 | 2021-05-09 10:32:54 +0200 | [diff] [blame] | 748 | if (addr.ss_family != AF_INET) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 749 | return 0; |
| 750 | |
| 751 | smp->data.type = SMP_T_SINT; |
Willy Tarreau | 4858464 | 2021-05-09 10:32:54 +0200 | [diff] [blame] | 752 | smp->data.u.sint = get_host_port(&addr); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 753 | smp->flags = 0; |
| 754 | return 1; |
| 755 | } |
| 756 | |
| 757 | /* Fetch an HTTP header. A pointer to the beginning of the value is returned. |
| 758 | * Accepts an optional argument of type string containing the header field name, |
| 759 | * and an optional argument of type signed or unsigned integer to request an |
| 760 | * explicit occurrence of the header. Note that in the event of a missing name, |
| 761 | * headers are considered from the first one. It does not stop on commas and |
| 762 | * returns full lines instead (useful for User-Agent or Date for example). |
| 763 | */ |
| 764 | static int smp_fetch_fhdr(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 765 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 766 | /* possible keywords: req.fhdr, res.fhdr */ |
| 767 | struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp)); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 768 | struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL); |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 769 | struct htx *htx = smp_prefetch_htx(smp, chn, check, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 770 | struct http_hdr_ctx *ctx = smp->ctx.a[0]; |
| 771 | struct ist name; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 772 | int occ = 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 773 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 774 | if (!ctx) { |
| 775 | /* first call */ |
| 776 | ctx = &static_http_hdr_ctx; |
| 777 | ctx->blk = NULL; |
| 778 | smp->ctx.a[0] = ctx; |
| 779 | } |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 780 | |
Christopher Faulet | 623af93 | 2021-01-29 11:22:15 +0100 | [diff] [blame] | 781 | if (args[0].type != ARGT_STR) |
| 782 | return 0; |
Tim Duesterhus | 92c696e | 2021-02-28 16:11:36 +0100 | [diff] [blame] | 783 | name = ist2(args[0].data.str.area, args[0].data.str.data); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 784 | |
Christopher Faulet | 623af93 | 2021-01-29 11:22:15 +0100 | [diff] [blame] | 785 | if (args[1].type == ARGT_SINT) |
| 786 | occ = args[1].data.sint; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 787 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 788 | if (!htx) |
| 789 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 790 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 791 | if (ctx && !(smp->flags & SMP_F_NOT_LAST)) |
| 792 | /* search for header from the beginning */ |
| 793 | ctx->blk = NULL; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 794 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 795 | if (!occ && !(smp->opt & SMP_OPT_ITERATE)) |
| 796 | /* no explicit occurrence and single fetch => last header by default */ |
| 797 | occ = -1; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 798 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 799 | if (!occ) |
| 800 | /* prepare to report multiple occurrences for ACL fetches */ |
| 801 | smp->flags |= SMP_F_NOT_LAST; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 802 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 803 | smp->data.type = SMP_T_STR; |
| 804 | smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST; |
| 805 | if (http_get_htx_fhdr(htx, name, occ, ctx, &smp->data.u.str.area, &smp->data.u.str.data)) |
| 806 | return 1; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 807 | smp->flags &= ~SMP_F_NOT_LAST; |
| 808 | return 0; |
| 809 | } |
| 810 | |
| 811 | /* 6. Check on HTTP header count. The number of occurrences is returned. |
| 812 | * Accepts exactly 1 argument of type string. It does not stop on commas and |
| 813 | * returns full lines instead (useful for User-Agent or Date for example). |
| 814 | */ |
| 815 | static int smp_fetch_fhdr_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 816 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 817 | /* possible keywords: req.fhdr_cnt, res.fhdr_cnt */ |
| 818 | struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp)); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 819 | struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL); |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 820 | struct htx *htx = smp_prefetch_htx(smp, chn, check, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 821 | struct http_hdr_ctx ctx; |
| 822 | struct ist name; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 823 | int cnt; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 824 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 825 | if (!htx) |
| 826 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 827 | |
Christopher Faulet | 623af93 | 2021-01-29 11:22:15 +0100 | [diff] [blame] | 828 | if (args->type == ARGT_STR) { |
Tim Duesterhus | 92c696e | 2021-02-28 16:11:36 +0100 | [diff] [blame] | 829 | name = ist2(args->data.str.area, args->data.str.data); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 830 | } else { |
Tim Duesterhus | 68a088d | 2021-02-28 16:11:37 +0100 | [diff] [blame] | 831 | name = IST_NULL; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 832 | } |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 833 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 834 | ctx.blk = NULL; |
| 835 | cnt = 0; |
| 836 | while (http_find_header(htx, name, &ctx, 1)) |
| 837 | cnt++; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 838 | smp->data.type = SMP_T_SINT; |
| 839 | smp->data.u.sint = cnt; |
| 840 | smp->flags = SMP_F_VOL_HDR; |
| 841 | return 1; |
| 842 | } |
| 843 | |
| 844 | static int smp_fetch_hdr_names(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 845 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 846 | /* possible keywords: req.hdr_names, res.hdr_names */ |
| 847 | struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp)); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 848 | struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL); |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 849 | struct htx *htx = smp_prefetch_htx(smp, chn, check, 1); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 850 | struct buffer *temp; |
| 851 | char del = ','; |
| 852 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 853 | int32_t pos; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 854 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 855 | if (!htx) |
| 856 | return 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 857 | |
Christopher Faulet | 623af93 | 2021-01-29 11:22:15 +0100 | [diff] [blame] | 858 | if (args->type == ARGT_STR) |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 859 | del = *args[0].data.str.area; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 860 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 861 | temp = get_trash_chunk(); |
| 862 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 863 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 864 | enum htx_blk_type type = htx_get_blk_type(blk); |
| 865 | struct ist n; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 866 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 867 | if (type == HTX_BLK_EOH) |
| 868 | break; |
| 869 | if (type != HTX_BLK_HDR) |
| 870 | continue; |
| 871 | n = htx_get_blk_name(htx, blk); |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 872 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 873 | if (temp->data) |
| 874 | temp->area[temp->data++] = del; |
Tim Duesterhus | 9f7ed8a | 2021-11-08 09:05:04 +0100 | [diff] [blame] | 875 | chunk_istcat(temp, n); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 876 | } |
| 877 | |
| 878 | smp->data.type = SMP_T_STR; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 879 | smp->data.u.str = *temp; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 880 | smp->flags = SMP_F_VOL_HDR; |
| 881 | return 1; |
| 882 | } |
| 883 | |
| 884 | /* Fetch an HTTP header. A pointer to the beginning of the value is returned. |
| 885 | * Accepts an optional argument of type string containing the header field name, |
| 886 | * and an optional argument of type signed or unsigned integer to request an |
| 887 | * explicit occurrence of the header. Note that in the event of a missing name, |
| 888 | * headers are considered from the first one. |
| 889 | */ |
| 890 | static int smp_fetch_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 891 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 892 | /* possible keywords: req.hdr / hdr, res.hdr / shdr */ |
| 893 | struct channel *chn = ((kw[0] == 'h' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp)); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 894 | struct check *check = ((kw[0] == 's' || kw[2] == 's') ? objt_check(smp->sess->origin) : NULL); |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 895 | struct htx *htx = smp_prefetch_htx(smp, chn, check, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 896 | struct http_hdr_ctx *ctx = smp->ctx.a[0]; |
| 897 | struct ist name; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 898 | int occ = 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 899 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 900 | if (!ctx) { |
| 901 | /* first call */ |
| 902 | ctx = &static_http_hdr_ctx; |
| 903 | ctx->blk = NULL; |
| 904 | smp->ctx.a[0] = ctx; |
| 905 | } |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 906 | |
Christopher Faulet | 623af93 | 2021-01-29 11:22:15 +0100 | [diff] [blame] | 907 | if (args[0].type != ARGT_STR) |
| 908 | return 0; |
Tim Duesterhus | 92c696e | 2021-02-28 16:11:36 +0100 | [diff] [blame] | 909 | name = ist2(args[0].data.str.area, args[0].data.str.data); |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 910 | |
Christopher Faulet | 623af93 | 2021-01-29 11:22:15 +0100 | [diff] [blame] | 911 | if (args[1].type == ARGT_SINT) |
| 912 | occ = args[1].data.sint; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 913 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 914 | if (!htx) |
| 915 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 916 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 917 | if (ctx && !(smp->flags & SMP_F_NOT_LAST)) |
| 918 | /* search for header from the beginning */ |
| 919 | ctx->blk = NULL; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 920 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 921 | if (!occ && !(smp->opt & SMP_OPT_ITERATE)) |
| 922 | /* no explicit occurrence and single fetch => last header by default */ |
| 923 | occ = -1; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 924 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 925 | if (!occ) |
| 926 | /* prepare to report multiple occurrences for ACL fetches */ |
| 927 | smp->flags |= SMP_F_NOT_LAST; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 928 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 929 | smp->data.type = SMP_T_STR; |
| 930 | smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST; |
| 931 | if (http_get_htx_hdr(htx, name, occ, ctx, &smp->data.u.str.area, &smp->data.u.str.data)) |
| 932 | return 1; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 933 | |
| 934 | smp->flags &= ~SMP_F_NOT_LAST; |
| 935 | return 0; |
| 936 | } |
| 937 | |
Christopher Faulet | c1f40dd | 2019-05-16 10:07:30 +0200 | [diff] [blame] | 938 | /* Same than smp_fetch_hdr() but only relies on the sample direction to choose |
| 939 | * the right channel. So instead of duplicating the code, we just change the |
| 940 | * keyword and then fallback on smp_fetch_hdr(). |
| 941 | */ |
| 942 | static int smp_fetch_chn_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 943 | { |
| 944 | kw = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ ? "req.hdr" : "res.hdr"); |
| 945 | return smp_fetch_hdr(args, smp, kw, private); |
| 946 | } |
| 947 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 948 | /* 6. Check on HTTP header count. The number of occurrences is returned. |
| 949 | * Accepts exactly 1 argument of type string. |
| 950 | */ |
| 951 | static int smp_fetch_hdr_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 952 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 953 | /* possible keywords: req.hdr_cnt / hdr_cnt, res.hdr_cnt / shdr_cnt */ |
| 954 | struct channel *chn = ((kw[0] == 'h' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp)); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 955 | struct check *check = ((kw[0] == 's' || kw[2] == 's') ? objt_check(smp->sess->origin) : NULL); |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 956 | struct htx *htx = smp_prefetch_htx(smp, chn, check, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 957 | struct http_hdr_ctx ctx; |
| 958 | struct ist name; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 959 | int cnt; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 960 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 961 | if (!htx) |
| 962 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 963 | |
Christopher Faulet | 623af93 | 2021-01-29 11:22:15 +0100 | [diff] [blame] | 964 | if (args->type == ARGT_STR) { |
Tim Duesterhus | 92c696e | 2021-02-28 16:11:36 +0100 | [diff] [blame] | 965 | name = ist2(args->data.str.area, args->data.str.data); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 966 | } else { |
Tim Duesterhus | 68a088d | 2021-02-28 16:11:37 +0100 | [diff] [blame] | 967 | name = IST_NULL; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 968 | } |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 969 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 970 | ctx.blk = NULL; |
| 971 | cnt = 0; |
| 972 | while (http_find_header(htx, name, &ctx, 0)) |
| 973 | cnt++; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 974 | |
| 975 | smp->data.type = SMP_T_SINT; |
| 976 | smp->data.u.sint = cnt; |
| 977 | smp->flags = SMP_F_VOL_HDR; |
| 978 | return 1; |
| 979 | } |
| 980 | |
| 981 | /* Fetch an HTTP header's integer value. The integer value is returned. It |
| 982 | * takes a mandatory argument of type string and an optional one of type int |
| 983 | * to designate a specific occurrence. It returns an unsigned integer, which |
| 984 | * may or may not be appropriate for everything. |
| 985 | */ |
| 986 | static int smp_fetch_hdr_val(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 987 | { |
| 988 | int ret = smp_fetch_hdr(args, smp, kw, private); |
| 989 | |
| 990 | if (ret > 0) { |
| 991 | smp->data.type = SMP_T_SINT; |
| 992 | smp->data.u.sint = strl2ic(smp->data.u.str.area, |
| 993 | smp->data.u.str.data); |
| 994 | } |
| 995 | |
| 996 | return ret; |
| 997 | } |
| 998 | |
| 999 | /* Fetch an HTTP header's IP value. takes a mandatory argument of type string |
| 1000 | * and an optional one of type int to designate a specific occurrence. |
Willy Tarreau | 7b0e00d | 2021-03-25 14:12:29 +0100 | [diff] [blame] | 1001 | * It returns an IPv4 or IPv6 address. Addresses surrounded by invalid chars |
| 1002 | * are rejected. However IPv4 addresses may be followed with a colon and a |
| 1003 | * valid port number. |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1004 | */ |
| 1005 | static int smp_fetch_hdr_ip(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1006 | { |
Tim Duesterhus | 5cd0087 | 2020-06-26 15:44:48 +0200 | [diff] [blame] | 1007 | struct buffer *temp = get_trash_chunk(); |
Willy Tarreau | 7b0e00d | 2021-03-25 14:12:29 +0100 | [diff] [blame] | 1008 | int ret, len; |
| 1009 | int port; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1010 | |
| 1011 | while ((ret = smp_fetch_hdr(args, smp, kw, private)) > 0) { |
Tim Duesterhus | 5cd0087 | 2020-06-26 15:44:48 +0200 | [diff] [blame] | 1012 | if (smp->data.u.str.data < temp->size - 1) { |
| 1013 | memcpy(temp->area, smp->data.u.str.area, |
| 1014 | smp->data.u.str.data); |
| 1015 | temp->area[smp->data.u.str.data] = '\0'; |
Willy Tarreau | 7b0e00d | 2021-03-25 14:12:29 +0100 | [diff] [blame] | 1016 | len = url2ipv4((char *) temp->area, &smp->data.u.ipv4); |
Willy Tarreau | 645dc08 | 2021-03-31 11:41:36 +0200 | [diff] [blame] | 1017 | if (len > 0 && len == smp->data.u.str.data) { |
Willy Tarreau | 7b0e00d | 2021-03-25 14:12:29 +0100 | [diff] [blame] | 1018 | /* plain IPv4 address */ |
| 1019 | smp->data.type = SMP_T_IPV4; |
| 1020 | break; |
| 1021 | } else if (len > 0 && temp->area[len] == ':' && |
| 1022 | strl2irc(temp->area + len + 1, smp->data.u.str.data - len - 1, &port) == 0 && |
| 1023 | port >= 0 && port <= 65535) { |
| 1024 | /* IPv4 address suffixed with ':' followed by a valid port number */ |
Tim Duesterhus | 5cd0087 | 2020-06-26 15:44:48 +0200 | [diff] [blame] | 1025 | smp->data.type = SMP_T_IPV4; |
| 1026 | break; |
Oto Valek | d1773e6 | 2023-02-24 21:39:56 +0100 | [diff] [blame] | 1027 | } else if (temp->area[0] == '[' && temp->area[smp->data.u.str.data-1] == ']') { |
| 1028 | /* IPv6 address enclosed in square brackets */ |
| 1029 | temp->area[smp->data.u.str.data-1] = '\0'; |
| 1030 | if (inet_pton(AF_INET6, temp->area+1, &smp->data.u.ipv6)) { |
| 1031 | smp->data.type = SMP_T_IPV6; |
| 1032 | break; |
| 1033 | } |
Tim Duesterhus | 5cd0087 | 2020-06-26 15:44:48 +0200 | [diff] [blame] | 1034 | } else if (inet_pton(AF_INET6, temp->area, &smp->data.u.ipv6)) { |
Oto Valek | d1773e6 | 2023-02-24 21:39:56 +0100 | [diff] [blame] | 1035 | /* plain IPv6 address */ |
Tim Duesterhus | 5cd0087 | 2020-06-26 15:44:48 +0200 | [diff] [blame] | 1036 | smp->data.type = SMP_T_IPV6; |
| 1037 | break; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1038 | } |
| 1039 | } |
| 1040 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1041 | /* if the header doesn't match an IP address, fetch next one */ |
| 1042 | if (!(smp->flags & SMP_F_NOT_LAST)) |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1043 | return 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1044 | } |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1045 | return ret; |
| 1046 | } |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1047 | |
Christopher Faulet | e720c32 | 2020-09-02 17:25:18 +0200 | [diff] [blame] | 1048 | /* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at the |
| 1049 | * first '/' after the possible hostname. It ends before the possible '?' except |
| 1050 | * for 'pathq' keyword. |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1051 | */ |
| 1052 | static int smp_fetch_path(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1053 | { |
| 1054 | struct channel *chn = SMP_REQ_CHN(smp); |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 1055 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1056 | struct htx_sl *sl; |
| 1057 | struct ist path; |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 1058 | struct http_uri_parser parser; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1059 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1060 | if (!htx) |
| 1061 | return 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1062 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1063 | sl = http_get_stline(htx); |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 1064 | parser = http_uri_parser_init(htx_sl_req_uri(sl)); |
Christopher Faulet | e720c32 | 2020-09-02 17:25:18 +0200 | [diff] [blame] | 1065 | |
Yves Lafon | b4d3708 | 2021-02-11 11:01:28 +0100 | [diff] [blame] | 1066 | if (kw[4] == 'q' && (kw[0] == 'p' || kw[0] == 'b')) // pathq or baseq |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 1067 | path = http_parse_path(&parser); |
Christopher Faulet | e720c32 | 2020-09-02 17:25:18 +0200 | [diff] [blame] | 1068 | else |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 1069 | path = iststop(http_parse_path(&parser), '?'); |
Christopher Faulet | e720c32 | 2020-09-02 17:25:18 +0200 | [diff] [blame] | 1070 | |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 1071 | if (!isttest(path)) |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1072 | return 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1073 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1074 | /* OK, we got the '/' ! */ |
| 1075 | smp->data.type = SMP_T_STR; |
| 1076 | smp->data.u.str.area = path.ptr; |
Jerome Magnin | 4fb196c | 2020-02-21 10:49:12 +0100 | [diff] [blame] | 1077 | smp->data.u.str.data = path.len; |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1078 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1079 | return 1; |
| 1080 | } |
| 1081 | |
| 1082 | /* This produces a concatenation of the first occurrence of the Host header |
| 1083 | * followed by the path component if it begins with a slash ('/'). This means |
| 1084 | * that '*' will not be added, resulting in exactly the first Host entry. |
| 1085 | * If no Host header is found, then the path is returned as-is. The returned |
| 1086 | * value is stored in the trash so it does not need to be marked constant. |
| 1087 | * The returned sample is of type string. |
| 1088 | */ |
| 1089 | static int smp_fetch_base(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1090 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 1091 | struct channel *chn = SMP_REQ_CHN(smp); |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 1092 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1093 | struct htx_sl *sl; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1094 | struct buffer *temp; |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1095 | struct http_hdr_ctx ctx; |
| 1096 | struct ist path; |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 1097 | struct http_uri_parser parser; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1098 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1099 | if (!htx) |
| 1100 | return 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1101 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1102 | ctx.blk = NULL; |
| 1103 | if (!http_find_header(htx, ist("Host"), &ctx, 0) || !ctx.value.len) |
| 1104 | return smp_fetch_path(args, smp, kw, private); |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1105 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1106 | /* OK we have the header value in ctx.value */ |
| 1107 | temp = get_trash_chunk(); |
Tim Duesterhus | 7750850 | 2022-03-15 13:11:06 +0100 | [diff] [blame] | 1108 | chunk_istcat(temp, ctx.value); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1109 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1110 | /* now retrieve the path */ |
| 1111 | sl = http_get_stline(htx); |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 1112 | parser = http_uri_parser_init(htx_sl_req_uri(sl)); |
| 1113 | path = http_parse_path(&parser); |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 1114 | if (isttest(path)) { |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1115 | size_t len; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1116 | |
Yves Lafon | b4d3708 | 2021-02-11 11:01:28 +0100 | [diff] [blame] | 1117 | if (kw[4] == 'q' && kw[0] == 'b') { // baseq |
| 1118 | len = path.len; |
| 1119 | } else { |
| 1120 | for (len = 0; len < path.len && *(path.ptr + len) != '?'; len++) |
| 1121 | ; |
| 1122 | } |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1123 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1124 | if (len && *(path.ptr) == '/') |
| 1125 | chunk_memcat(temp, path.ptr, len); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1126 | } |
| 1127 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1128 | smp->data.type = SMP_T_STR; |
| 1129 | smp->data.u.str = *temp; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1130 | smp->flags = SMP_F_VOL_1ST; |
| 1131 | return 1; |
| 1132 | } |
| 1133 | |
| 1134 | /* This produces a 32-bit hash of the concatenation of the first occurrence of |
| 1135 | * the Host header followed by the path component if it begins with a slash ('/'). |
| 1136 | * This means that '*' will not be added, resulting in exactly the first Host |
| 1137 | * entry. If no Host header is found, then the path is used. The resulting value |
| 1138 | * is hashed using the path hash followed by a full avalanche hash and provides a |
| 1139 | * 32-bit integer value. This fetch is useful for tracking per-path activity on |
| 1140 | * high-traffic sites without having to store whole paths. |
| 1141 | */ |
| 1142 | static int smp_fetch_base32(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1143 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 1144 | struct channel *chn = SMP_REQ_CHN(smp); |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 1145 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1146 | struct htx_sl *sl; |
| 1147 | struct http_hdr_ctx ctx; |
| 1148 | struct ist path; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1149 | unsigned int hash = 0; |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 1150 | struct http_uri_parser parser; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1151 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1152 | if (!htx) |
| 1153 | return 0; |
Dragan Dosen | 8861e1c | 2019-02-12 19:50:31 +0100 | [diff] [blame] | 1154 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1155 | ctx.blk = NULL; |
| 1156 | if (http_find_header(htx, ist("Host"), &ctx, 0)) { |
| 1157 | /* OK we have the header value in ctx.value */ |
| 1158 | while (ctx.value.len--) |
| 1159 | hash = *(ctx.value.ptr++) + (hash << 6) + (hash << 16) - hash; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1160 | } |
| 1161 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1162 | /* now retrieve the path */ |
| 1163 | sl = http_get_stline(htx); |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 1164 | parser = http_uri_parser_init(htx_sl_req_uri(sl)); |
| 1165 | path = http_parse_path(&parser); |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 1166 | if (isttest(path)) { |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1167 | size_t len; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1168 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1169 | for (len = 0; len < path.len && *(path.ptr + len) != '?'; len++) |
| 1170 | ; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1171 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1172 | if (len && *(path.ptr) == '/') { |
| 1173 | while (len--) |
| 1174 | hash = *(path.ptr++) + (hash << 6) + (hash << 16) - hash; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1175 | } |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1176 | } |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1177 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1178 | hash = full_hash(hash); |
| 1179 | |
| 1180 | smp->data.type = SMP_T_SINT; |
| 1181 | smp->data.u.sint = hash; |
| 1182 | smp->flags = SMP_F_VOL_1ST; |
| 1183 | return 1; |
| 1184 | } |
| 1185 | |
| 1186 | /* This concatenates the source address with the 32-bit hash of the Host and |
| 1187 | * path as returned by smp_fetch_base32(). The idea is to have per-source and |
| 1188 | * per-path counters. The result is a binary block from 8 to 20 bytes depending |
| 1189 | * on the source address length. The path hash is stored before the address so |
| 1190 | * that in environments where IPv6 is insignificant, truncating the output to |
| 1191 | * 8 bytes would still work. |
| 1192 | */ |
| 1193 | static int smp_fetch_base32_src(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1194 | { |
Willy Tarreau | d68ff01 | 2022-05-27 08:57:21 +0200 | [diff] [blame] | 1195 | const struct sockaddr_storage *src = (smp->strm ? sc_src(smp->strm->scf) : NULL); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1196 | struct buffer *temp; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1197 | |
Christopher Faulet | 6fc817a | 2021-10-25 07:48:27 +0200 | [diff] [blame] | 1198 | if (!src) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1199 | return 0; |
| 1200 | |
| 1201 | if (!smp_fetch_base32(args, smp, kw, private)) |
| 1202 | return 0; |
| 1203 | |
| 1204 | temp = get_trash_chunk(); |
| 1205 | *(unsigned int *) temp->area = htonl(smp->data.u.sint); |
| 1206 | temp->data += sizeof(unsigned int); |
| 1207 | |
Christopher Faulet | 6fc817a | 2021-10-25 07:48:27 +0200 | [diff] [blame] | 1208 | switch (src->ss_family) { |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1209 | case AF_INET: |
| 1210 | memcpy(temp->area + temp->data, |
Christopher Faulet | 6fc817a | 2021-10-25 07:48:27 +0200 | [diff] [blame] | 1211 | &((struct sockaddr_in *)src)->sin_addr, |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1212 | 4); |
| 1213 | temp->data += 4; |
| 1214 | break; |
| 1215 | case AF_INET6: |
| 1216 | memcpy(temp->area + temp->data, |
Christopher Faulet | 6fc817a | 2021-10-25 07:48:27 +0200 | [diff] [blame] | 1217 | &((struct sockaddr_in6 *)src)->sin6_addr, |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1218 | 16); |
| 1219 | temp->data += 16; |
| 1220 | break; |
| 1221 | default: |
| 1222 | return 0; |
| 1223 | } |
| 1224 | |
| 1225 | smp->data.u.str = *temp; |
| 1226 | smp->data.type = SMP_T_BIN; |
| 1227 | return 1; |
| 1228 | } |
| 1229 | |
| 1230 | /* Extracts the query string, which comes after the question mark '?'. If no |
| 1231 | * question mark is found, nothing is returned. Otherwise it returns a sample |
| 1232 | * of type string carrying the whole query string. |
| 1233 | */ |
| 1234 | static int smp_fetch_query(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1235 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 1236 | struct channel *chn = SMP_REQ_CHN(smp); |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 1237 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1238 | struct htx_sl *sl; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1239 | char *ptr, *end; |
| 1240 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1241 | if (!htx) |
| 1242 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1243 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1244 | sl = http_get_stline(htx); |
| 1245 | ptr = HTX_SL_REQ_UPTR(sl); |
| 1246 | end = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1247 | |
| 1248 | /* look up the '?' */ |
| 1249 | do { |
| 1250 | if (ptr == end) |
| 1251 | return 0; |
| 1252 | } while (*ptr++ != '?'); |
| 1253 | |
| 1254 | smp->data.type = SMP_T_STR; |
| 1255 | smp->data.u.str.area = ptr; |
| 1256 | smp->data.u.str.data = end - ptr; |
| 1257 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
| 1258 | return 1; |
| 1259 | } |
| 1260 | |
| 1261 | static int smp_fetch_proto_http(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1262 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 1263 | struct channel *chn = SMP_REQ_CHN(smp); |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 1264 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 0); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1265 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1266 | if (!htx) |
| 1267 | return 0; |
| 1268 | smp->data.type = SMP_T_BOOL; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1269 | smp->data.u.sint = 1; |
| 1270 | return 1; |
| 1271 | } |
| 1272 | |
| 1273 | /* return a valid test if the current request is the first one on the connection */ |
| 1274 | static int smp_fetch_http_first_req(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1275 | { |
Willy Tarreau | 79512b6 | 2020-04-29 11:52:13 +0200 | [diff] [blame] | 1276 | if (!smp->strm) |
| 1277 | return 0; |
| 1278 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1279 | smp->data.type = SMP_T_BOOL; |
| 1280 | smp->data.u.sint = !(smp->strm->txn->flags & TX_NOT_FIRST); |
| 1281 | return 1; |
| 1282 | } |
| 1283 | |
Christopher Faulet | a406356 | 2019-08-02 11:51:37 +0200 | [diff] [blame] | 1284 | /* Fetch the authentication method if there is an Authorization header. It |
| 1285 | * relies on get_http_auth() |
| 1286 | */ |
| 1287 | static int smp_fetch_http_auth_type(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1288 | { |
| 1289 | struct channel *chn = SMP_REQ_CHN(smp); |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 1290 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Christopher Faulet | a406356 | 2019-08-02 11:51:37 +0200 | [diff] [blame] | 1291 | struct http_txn *txn; |
| 1292 | |
| 1293 | if (!htx) |
| 1294 | return 0; |
| 1295 | |
| 1296 | txn = smp->strm->txn; |
| 1297 | if (!get_http_auth(smp, htx)) |
| 1298 | return 0; |
| 1299 | |
| 1300 | switch (txn->auth.method) { |
| 1301 | case HTTP_AUTH_BASIC: |
| 1302 | smp->data.u.str.area = "Basic"; |
| 1303 | smp->data.u.str.data = 5; |
| 1304 | break; |
| 1305 | case HTTP_AUTH_DIGEST: |
| 1306 | /* Unexpected because not supported */ |
| 1307 | smp->data.u.str.area = "Digest"; |
| 1308 | smp->data.u.str.data = 6; |
| 1309 | break; |
Remi Tricot-Le Breton | f5dd337 | 2021-10-01 15:36:53 +0200 | [diff] [blame] | 1310 | case HTTP_AUTH_BEARER: |
| 1311 | smp->data.u.str.area = "Bearer"; |
| 1312 | smp->data.u.str.data = 6; |
| 1313 | break; |
Christopher Faulet | a406356 | 2019-08-02 11:51:37 +0200 | [diff] [blame] | 1314 | default: |
| 1315 | return 0; |
| 1316 | } |
| 1317 | |
| 1318 | smp->data.type = SMP_T_STR; |
| 1319 | smp->flags = SMP_F_CONST; |
| 1320 | return 1; |
| 1321 | } |
| 1322 | |
| 1323 | /* Fetch the user supplied if there is an Authorization header. It relies on |
| 1324 | * get_http_auth() |
| 1325 | */ |
| 1326 | static int smp_fetch_http_auth_user(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1327 | { |
| 1328 | struct channel *chn = SMP_REQ_CHN(smp); |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 1329 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Christopher Faulet | a406356 | 2019-08-02 11:51:37 +0200 | [diff] [blame] | 1330 | struct http_txn *txn; |
| 1331 | |
| 1332 | if (!htx) |
| 1333 | return 0; |
| 1334 | |
| 1335 | txn = smp->strm->txn; |
Remi Tricot-Le Breton | f5dd337 | 2021-10-01 15:36:53 +0200 | [diff] [blame] | 1336 | if (!get_http_auth(smp, htx) || txn->auth.method != HTTP_AUTH_BASIC) |
Christopher Faulet | a406356 | 2019-08-02 11:51:37 +0200 | [diff] [blame] | 1337 | return 0; |
| 1338 | |
| 1339 | smp->data.type = SMP_T_STR; |
| 1340 | smp->data.u.str.area = txn->auth.user; |
| 1341 | smp->data.u.str.data = strlen(txn->auth.user); |
| 1342 | smp->flags = SMP_F_CONST; |
| 1343 | return 1; |
| 1344 | } |
| 1345 | |
| 1346 | /* Fetch the password supplied if there is an Authorization header. It relies on |
| 1347 | * get_http_auth() |
| 1348 | */ |
| 1349 | static int smp_fetch_http_auth_pass(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1350 | { |
| 1351 | struct channel *chn = SMP_REQ_CHN(smp); |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 1352 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Christopher Faulet | a406356 | 2019-08-02 11:51:37 +0200 | [diff] [blame] | 1353 | struct http_txn *txn; |
| 1354 | |
| 1355 | if (!htx) |
| 1356 | return 0; |
| 1357 | |
| 1358 | txn = smp->strm->txn; |
Remi Tricot-Le Breton | f5dd337 | 2021-10-01 15:36:53 +0200 | [diff] [blame] | 1359 | if (!get_http_auth(smp, htx) || txn->auth.method != HTTP_AUTH_BASIC) |
Christopher Faulet | a406356 | 2019-08-02 11:51:37 +0200 | [diff] [blame] | 1360 | return 0; |
| 1361 | |
| 1362 | smp->data.type = SMP_T_STR; |
| 1363 | smp->data.u.str.area = txn->auth.pass; |
| 1364 | smp->data.u.str.data = strlen(txn->auth.pass); |
| 1365 | smp->flags = SMP_F_CONST; |
| 1366 | return 1; |
| 1367 | } |
| 1368 | |
Remi Tricot-Le Breton | f5dd337 | 2021-10-01 15:36:53 +0200 | [diff] [blame] | 1369 | static int smp_fetch_http_auth_bearer(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1370 | { |
| 1371 | struct channel *chn = SMP_REQ_CHN(smp); |
| 1372 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
| 1373 | struct http_txn *txn; |
| 1374 | struct buffer bearer_val = {}; |
| 1375 | |
| 1376 | if (!htx) |
| 1377 | return 0; |
| 1378 | |
| 1379 | if (args->type == ARGT_STR) { |
| 1380 | struct http_hdr_ctx ctx; |
| 1381 | struct ist hdr_name = ist2(args->data.str.area, args->data.str.data); |
| 1382 | |
| 1383 | ctx.blk = NULL; |
| 1384 | if (http_find_header(htx, hdr_name, &ctx, 0)) { |
Remi Tricot-Le Breton | 7da35bf | 2021-10-29 15:25:19 +0200 | [diff] [blame] | 1385 | struct ist type = istsplit(&ctx.value, ' '); |
| 1386 | |
| 1387 | /* There must be "at least" one space character between |
| 1388 | * the scheme and the following value so ctx.value might |
| 1389 | * still have leading spaces here (see RFC7235). |
| 1390 | */ |
| 1391 | ctx.value = istskip(ctx.value, ' '); |
| 1392 | |
| 1393 | if (isteqi(type, ist("Bearer")) && istlen(ctx.value)) |
| 1394 | chunk_initlen(&bearer_val, istptr(ctx.value), 0, istlen(ctx.value)); |
Remi Tricot-Le Breton | f5dd337 | 2021-10-01 15:36:53 +0200 | [diff] [blame] | 1395 | } |
| 1396 | } |
| 1397 | else { |
| 1398 | txn = smp->strm->txn; |
| 1399 | if (!get_http_auth(smp, htx) || txn->auth.method != HTTP_AUTH_BEARER) |
| 1400 | return 0; |
| 1401 | |
| 1402 | bearer_val = txn->auth.method_data; |
| 1403 | } |
| 1404 | |
| 1405 | smp->data.type = SMP_T_STR; |
| 1406 | smp->data.u.str = bearer_val; |
| 1407 | smp->flags = SMP_F_CONST; |
| 1408 | return 1; |
| 1409 | } |
| 1410 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1411 | /* Accepts exactly 1 argument of type userlist */ |
| 1412 | static int smp_fetch_http_auth(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1413 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 1414 | struct channel *chn = SMP_REQ_CHN(smp); |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 1415 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1416 | |
Christopher Faulet | 623af93 | 2021-01-29 11:22:15 +0100 | [diff] [blame] | 1417 | if (args->type != ARGT_USR) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1418 | return 0; |
| 1419 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1420 | if (!htx) |
| 1421 | return 0; |
Remi Tricot-Le Breton | f5dd337 | 2021-10-01 15:36:53 +0200 | [diff] [blame] | 1422 | if (!get_http_auth(smp, htx) || smp->strm->txn->auth.method != HTTP_AUTH_BASIC) |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1423 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1424 | |
| 1425 | smp->data.type = SMP_T_BOOL; |
| 1426 | smp->data.u.sint = check_user(args->data.usr, smp->strm->txn->auth.user, |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1427 | smp->strm->txn->auth.pass); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1428 | return 1; |
| 1429 | } |
| 1430 | |
| 1431 | /* Accepts exactly 1 argument of type userlist */ |
| 1432 | static int smp_fetch_http_auth_grp(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1433 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 1434 | struct channel *chn = SMP_REQ_CHN(smp); |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 1435 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 1436 | |
Christopher Faulet | 623af93 | 2021-01-29 11:22:15 +0100 | [diff] [blame] | 1437 | if (args->type != ARGT_USR) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1438 | return 0; |
| 1439 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1440 | if (!htx) |
| 1441 | return 0; |
Remi Tricot-Le Breton | f5dd337 | 2021-10-01 15:36:53 +0200 | [diff] [blame] | 1442 | if (!get_http_auth(smp, htx) || smp->strm->txn->auth.method != HTTP_AUTH_BASIC) |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1443 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1444 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1445 | /* if the user does not belong to the userlist or has a wrong password, |
| 1446 | * report that it unconditionally does not match. Otherwise we return |
| 1447 | * a string containing the username. |
| 1448 | */ |
| 1449 | if (!check_user(args->data.usr, smp->strm->txn->auth.user, |
| 1450 | smp->strm->txn->auth.pass)) |
| 1451 | return 0; |
| 1452 | |
| 1453 | /* pat_match_auth() will need the user list */ |
| 1454 | smp->ctx.a[0] = args->data.usr; |
| 1455 | |
| 1456 | smp->data.type = SMP_T_STR; |
| 1457 | smp->flags = SMP_F_CONST; |
| 1458 | smp->data.u.str.area = smp->strm->txn->auth.user; |
| 1459 | smp->data.u.str.data = strlen(smp->strm->txn->auth.user); |
| 1460 | |
| 1461 | return 1; |
| 1462 | } |
| 1463 | |
| 1464 | /* Fetch a captured HTTP request header. The index is the position of |
| 1465 | * the "capture" option in the configuration file |
| 1466 | */ |
| 1467 | static int smp_fetch_capture_req_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1468 | { |
Willy Tarreau | 0898c2d | 2020-04-29 11:44:54 +0200 | [diff] [blame] | 1469 | struct proxy *fe; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1470 | int idx; |
| 1471 | |
Christopher Faulet | 623af93 | 2021-01-29 11:22:15 +0100 | [diff] [blame] | 1472 | if (args->type != ARGT_SINT) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1473 | return 0; |
| 1474 | |
Willy Tarreau | 0898c2d | 2020-04-29 11:44:54 +0200 | [diff] [blame] | 1475 | if (!smp->strm) |
| 1476 | return 0; |
| 1477 | |
| 1478 | fe = strm_fe(smp->strm); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1479 | idx = args->data.sint; |
| 1480 | |
| 1481 | if (idx > (fe->nb_req_cap - 1) || smp->strm->req_cap == NULL || smp->strm->req_cap[idx] == NULL) |
| 1482 | return 0; |
| 1483 | |
| 1484 | smp->data.type = SMP_T_STR; |
| 1485 | smp->flags |= SMP_F_CONST; |
| 1486 | smp->data.u.str.area = smp->strm->req_cap[idx]; |
| 1487 | smp->data.u.str.data = strlen(smp->strm->req_cap[idx]); |
| 1488 | |
| 1489 | return 1; |
| 1490 | } |
| 1491 | |
| 1492 | /* Fetch a captured HTTP response header. The index is the position of |
| 1493 | * the "capture" option in the configuration file |
| 1494 | */ |
| 1495 | static int smp_fetch_capture_res_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1496 | { |
Willy Tarreau | 0898c2d | 2020-04-29 11:44:54 +0200 | [diff] [blame] | 1497 | struct proxy *fe; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1498 | int idx; |
| 1499 | |
Christopher Faulet | 623af93 | 2021-01-29 11:22:15 +0100 | [diff] [blame] | 1500 | if (args->type != ARGT_SINT) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1501 | return 0; |
| 1502 | |
Willy Tarreau | 0898c2d | 2020-04-29 11:44:54 +0200 | [diff] [blame] | 1503 | if (!smp->strm) |
| 1504 | return 0; |
| 1505 | |
| 1506 | fe = strm_fe(smp->strm); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1507 | idx = args->data.sint; |
| 1508 | |
| 1509 | if (idx > (fe->nb_rsp_cap - 1) || smp->strm->res_cap == NULL || smp->strm->res_cap[idx] == NULL) |
| 1510 | return 0; |
| 1511 | |
| 1512 | smp->data.type = SMP_T_STR; |
| 1513 | smp->flags |= SMP_F_CONST; |
| 1514 | smp->data.u.str.area = smp->strm->res_cap[idx]; |
| 1515 | smp->data.u.str.data = strlen(smp->strm->res_cap[idx]); |
| 1516 | |
| 1517 | return 1; |
| 1518 | } |
| 1519 | |
| 1520 | /* Extracts the METHOD in the HTTP request, the txn->uri should be filled before the call */ |
| 1521 | static int smp_fetch_capture_req_method(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1522 | { |
| 1523 | struct buffer *temp; |
Willy Tarreau | 0898c2d | 2020-04-29 11:44:54 +0200 | [diff] [blame] | 1524 | struct http_txn *txn; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1525 | char *ptr; |
| 1526 | |
Willy Tarreau | 0898c2d | 2020-04-29 11:44:54 +0200 | [diff] [blame] | 1527 | if (!smp->strm) |
| 1528 | return 0; |
| 1529 | |
| 1530 | txn = smp->strm->txn; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1531 | if (!txn || !txn->uri) |
| 1532 | return 0; |
| 1533 | |
| 1534 | ptr = txn->uri; |
| 1535 | |
| 1536 | while (*ptr != ' ' && *ptr != '\0') /* find first space */ |
| 1537 | ptr++; |
| 1538 | |
| 1539 | temp = get_trash_chunk(); |
| 1540 | temp->area = txn->uri; |
| 1541 | temp->data = ptr - txn->uri; |
| 1542 | smp->data.u.str = *temp; |
| 1543 | smp->data.type = SMP_T_STR; |
| 1544 | smp->flags = SMP_F_CONST; |
| 1545 | |
| 1546 | return 1; |
| 1547 | |
| 1548 | } |
| 1549 | |
| 1550 | /* Extracts the path in the HTTP request, the txn->uri should be filled before the call */ |
| 1551 | static int smp_fetch_capture_req_uri(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1552 | { |
Willy Tarreau | 0898c2d | 2020-04-29 11:44:54 +0200 | [diff] [blame] | 1553 | struct http_txn *txn; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1554 | struct ist path; |
| 1555 | const char *ptr; |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 1556 | struct http_uri_parser parser; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1557 | |
Willy Tarreau | 0898c2d | 2020-04-29 11:44:54 +0200 | [diff] [blame] | 1558 | if (!smp->strm) |
| 1559 | return 0; |
| 1560 | |
| 1561 | txn = smp->strm->txn; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1562 | if (!txn || !txn->uri) |
| 1563 | return 0; |
| 1564 | |
| 1565 | ptr = txn->uri; |
| 1566 | |
| 1567 | while (*ptr != ' ' && *ptr != '\0') /* find first space */ |
| 1568 | ptr++; |
| 1569 | |
| 1570 | if (!*ptr) |
| 1571 | return 0; |
| 1572 | |
Christopher Faulet | 78337bb | 2018-11-15 14:35:18 +0100 | [diff] [blame] | 1573 | /* skip the first space and find space after URI */ |
| 1574 | path = ist2(++ptr, 0); |
| 1575 | while (*ptr != ' ' && *ptr != '\0') |
| 1576 | ptr++; |
| 1577 | path.len = ptr - path.ptr; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1578 | |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 1579 | parser = http_uri_parser_init(path); |
| 1580 | path = http_parse_path(&parser); |
Tim Duesterhus | ed52637 | 2020-03-05 17:56:33 +0100 | [diff] [blame] | 1581 | if (!isttest(path)) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1582 | return 0; |
| 1583 | |
| 1584 | smp->data.u.str.area = path.ptr; |
| 1585 | smp->data.u.str.data = path.len; |
| 1586 | smp->data.type = SMP_T_STR; |
| 1587 | smp->flags = SMP_F_CONST; |
| 1588 | |
| 1589 | return 1; |
| 1590 | } |
| 1591 | |
| 1592 | /* Retrieves the HTTP version from the request (either 1.0 or 1.1) and emits it |
| 1593 | * as a string (either "HTTP/1.0" or "HTTP/1.1"). |
| 1594 | */ |
| 1595 | static int smp_fetch_capture_req_ver(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1596 | { |
Willy Tarreau | 0898c2d | 2020-04-29 11:44:54 +0200 | [diff] [blame] | 1597 | struct http_txn *txn; |
| 1598 | |
| 1599 | if (!smp->strm) |
| 1600 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1601 | |
Willy Tarreau | 0898c2d | 2020-04-29 11:44:54 +0200 | [diff] [blame] | 1602 | txn = smp->strm->txn; |
Christopher Faulet | 09f8836 | 2021-04-01 16:00:29 +0200 | [diff] [blame] | 1603 | if (!txn || txn->req.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1604 | return 0; |
| 1605 | |
| 1606 | if (txn->req.flags & HTTP_MSGF_VER_11) |
| 1607 | smp->data.u.str.area = "HTTP/1.1"; |
| 1608 | else |
| 1609 | smp->data.u.str.area = "HTTP/1.0"; |
| 1610 | |
| 1611 | smp->data.u.str.data = 8; |
| 1612 | smp->data.type = SMP_T_STR; |
| 1613 | smp->flags = SMP_F_CONST; |
| 1614 | return 1; |
| 1615 | |
| 1616 | } |
| 1617 | |
| 1618 | /* Retrieves the HTTP version from the response (either 1.0 or 1.1) and emits it |
| 1619 | * as a string (either "HTTP/1.0" or "HTTP/1.1"). |
| 1620 | */ |
| 1621 | static int smp_fetch_capture_res_ver(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1622 | { |
Willy Tarreau | 0898c2d | 2020-04-29 11:44:54 +0200 | [diff] [blame] | 1623 | struct http_txn *txn; |
| 1624 | |
| 1625 | if (!smp->strm) |
| 1626 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1627 | |
Willy Tarreau | 0898c2d | 2020-04-29 11:44:54 +0200 | [diff] [blame] | 1628 | txn = smp->strm->txn; |
Christopher Faulet | 09f8836 | 2021-04-01 16:00:29 +0200 | [diff] [blame] | 1629 | if (!txn || txn->rsp.msg_state < HTTP_MSG_BODY) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1630 | return 0; |
| 1631 | |
| 1632 | if (txn->rsp.flags & HTTP_MSGF_VER_11) |
| 1633 | smp->data.u.str.area = "HTTP/1.1"; |
| 1634 | else |
| 1635 | smp->data.u.str.area = "HTTP/1.0"; |
| 1636 | |
| 1637 | smp->data.u.str.data = 8; |
| 1638 | smp->data.type = SMP_T_STR; |
| 1639 | smp->flags = SMP_F_CONST; |
| 1640 | return 1; |
| 1641 | |
| 1642 | } |
| 1643 | |
| 1644 | /* Iterate over all cookies present in a message. The context is stored in |
| 1645 | * smp->ctx.a[0] for the in-header position, smp->ctx.a[1] for the |
| 1646 | * end-of-header-value, and smp->ctx.a[2] for the hdr_ctx. Depending on |
| 1647 | * the direction, multiple cookies may be parsed on the same line or not. |
Maciej Zdeb | dea7c20 | 2020-11-13 09:38:06 +0000 | [diff] [blame] | 1648 | * If provided, the searched cookie name is in args, in args->data.str. If |
| 1649 | * the input options indicate that no iterating is desired, then only last |
| 1650 | * value is fetched if any. If no cookie name is provided, the first cookie |
| 1651 | * value found is fetched. The returned sample is of type CSTR. Can be used |
| 1652 | * to parse cookies in other files. |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1653 | */ |
| 1654 | static int smp_fetch_cookie(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1655 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 1656 | /* possible keywords: req.cookie / cookie / cook, res.cookie / scook / set-cookie */ |
| 1657 | struct channel *chn = ((kw[0] == 'c' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp)); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 1658 | struct check *check = ((kw[0] == 's' || kw[2] == 's') ? objt_check(smp->sess->origin) : NULL); |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 1659 | struct htx *htx = smp_prefetch_htx(smp, chn, check, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1660 | struct http_hdr_ctx *ctx = smp->ctx.a[2]; |
| 1661 | struct ist hdr; |
Christopher Faulet | 97fc8da | 2020-11-13 13:41:04 +0100 | [diff] [blame] | 1662 | char *cook = NULL; |
| 1663 | size_t cook_l = 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1664 | int found = 0; |
| 1665 | |
Christopher Faulet | 623af93 | 2021-01-29 11:22:15 +0100 | [diff] [blame] | 1666 | if (args->type == ARGT_STR) { |
Christopher Faulet | 97fc8da | 2020-11-13 13:41:04 +0100 | [diff] [blame] | 1667 | cook = args->data.str.area; |
| 1668 | cook_l = args->data.str.data; |
| 1669 | } |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1670 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1671 | if (!ctx) { |
| 1672 | /* first call */ |
| 1673 | ctx = &static_http_hdr_ctx; |
| 1674 | ctx->blk = NULL; |
| 1675 | smp->ctx.a[2] = ctx; |
| 1676 | } |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1677 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1678 | if (!htx) |
| 1679 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1680 | |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 1681 | hdr = (!(check || (chn && chn->flags & CF_ISRESP)) ? ist("Cookie") : ist("Set-Cookie")); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1682 | |
Maciej Zdeb | dea7c20 | 2020-11-13 09:38:06 +0000 | [diff] [blame] | 1683 | /* OK so basically here, either we want only one value or we want to |
| 1684 | * iterate over all of them and we fetch the next one. In this last case |
| 1685 | * SMP_OPT_ITERATE option is set. |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1686 | */ |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1687 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1688 | if (!(smp->flags & SMP_F_NOT_LAST)) { |
| 1689 | /* search for the header from the beginning, we must first initialize |
| 1690 | * the search parameters. |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1691 | */ |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1692 | smp->ctx.a[0] = NULL; |
| 1693 | ctx->blk = NULL; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1694 | } |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1695 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1696 | smp->flags |= SMP_F_VOL_HDR; |
| 1697 | while (1) { |
| 1698 | /* Note: smp->ctx.a[0] == NULL every time we need to fetch a new header */ |
| 1699 | if (!smp->ctx.a[0]) { |
| 1700 | if (!http_find_header(htx, hdr, ctx, 0)) |
| 1701 | goto out; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1702 | |
Christopher Faulet | 97fc8da | 2020-11-13 13:41:04 +0100 | [diff] [blame] | 1703 | if (ctx->value.len < cook_l + 1) |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1704 | continue; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1705 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1706 | smp->ctx.a[0] = ctx->value.ptr; |
| 1707 | smp->ctx.a[1] = smp->ctx.a[0] + ctx->value.len; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1708 | } |
| 1709 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1710 | smp->data.type = SMP_T_STR; |
| 1711 | smp->flags |= SMP_F_CONST; |
| 1712 | smp->ctx.a[0] = http_extract_cookie_value(smp->ctx.a[0], smp->ctx.a[1], |
Christopher Faulet | 97fc8da | 2020-11-13 13:41:04 +0100 | [diff] [blame] | 1713 | cook, cook_l, |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1714 | (smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ, |
| 1715 | &smp->data.u.str.area, |
| 1716 | &smp->data.u.str.data); |
| 1717 | if (smp->ctx.a[0]) { |
| 1718 | found = 1; |
Maciej Zdeb | dea7c20 | 2020-11-13 09:38:06 +0000 | [diff] [blame] | 1719 | if (smp->opt & SMP_OPT_ITERATE) { |
| 1720 | /* iterate on cookie value */ |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1721 | smp->flags |= SMP_F_NOT_LAST; |
| 1722 | return 1; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1723 | } |
Maciej Zdeb | dea7c20 | 2020-11-13 09:38:06 +0000 | [diff] [blame] | 1724 | if (args->data.str.data == 0) { |
| 1725 | /* No cookie name, first occurrence returned */ |
| 1726 | break; |
| 1727 | } |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1728 | } |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1729 | /* if we're looking for last occurrence, let's loop */ |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1730 | } |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1731 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1732 | /* all cookie headers and values were scanned. If we're looking for the |
| 1733 | * last occurrence, we may return it now. |
| 1734 | */ |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1735 | out: |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1736 | smp->flags &= ~SMP_F_NOT_LAST; |
| 1737 | return found; |
| 1738 | } |
| 1739 | |
Christopher Faulet | c1f40dd | 2019-05-16 10:07:30 +0200 | [diff] [blame] | 1740 | /* Same than smp_fetch_cookie() but only relies on the sample direction to |
| 1741 | * choose the right channel. So instead of duplicating the code, we just change |
| 1742 | * the keyword and then fallback on smp_fetch_cookie(). |
| 1743 | */ |
| 1744 | static int smp_fetch_chn_cookie(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1745 | { |
| 1746 | kw = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ ? "req.cook" : "res.cook"); |
| 1747 | return smp_fetch_cookie(args, smp, kw, private); |
| 1748 | } |
| 1749 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1750 | /* Iterate over all cookies present in a request to count how many occurrences |
| 1751 | * match the name in args and args->data.str.len. If <multi> is non-null, then |
| 1752 | * multiple cookies may be parsed on the same line. The returned sample is of |
| 1753 | * type UINT. Accepts exactly 1 argument of type string. |
| 1754 | */ |
| 1755 | static int smp_fetch_cookie_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1756 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 1757 | /* possible keywords: req.cook_cnt / cook_cnt, res.cook_cnt / scook_cnt */ |
| 1758 | struct channel *chn = ((kw[0] == 'c' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp)); |
Christopher Faulet | f98e626 | 2020-05-06 09:42:04 +0200 | [diff] [blame] | 1759 | struct check *check = ((kw[0] == 's' || kw[2] == 's') ? objt_check(smp->sess->origin) : NULL); |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 1760 | struct htx *htx = smp_prefetch_htx(smp, chn, check, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1761 | struct http_hdr_ctx ctx; |
| 1762 | struct ist hdr; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1763 | char *val_beg, *val_end; |
Christopher Faulet | 97fc8da | 2020-11-13 13:41:04 +0100 | [diff] [blame] | 1764 | char *cook = NULL; |
| 1765 | size_t cook_l = 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1766 | int cnt; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1767 | |
Christopher Faulet | 623af93 | 2021-01-29 11:22:15 +0100 | [diff] [blame] | 1768 | if (args->type == ARGT_STR){ |
Christopher Faulet | 97fc8da | 2020-11-13 13:41:04 +0100 | [diff] [blame] | 1769 | cook = args->data.str.area; |
| 1770 | cook_l = args->data.str.data; |
| 1771 | } |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1772 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1773 | if (!htx) |
| 1774 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1775 | |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 1776 | hdr = (!(check || (chn && chn->flags & CF_ISRESP)) ? ist("Cookie") : ist("Set-Cookie")); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1777 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1778 | val_end = val_beg = NULL; |
| 1779 | ctx.blk = NULL; |
| 1780 | cnt = 0; |
| 1781 | while (1) { |
| 1782 | /* Note: val_beg == NULL every time we need to fetch a new header */ |
| 1783 | if (!val_beg) { |
| 1784 | if (!http_find_header(htx, hdr, &ctx, 0)) |
| 1785 | break; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1786 | |
Christopher Faulet | 97fc8da | 2020-11-13 13:41:04 +0100 | [diff] [blame] | 1787 | if (ctx.value.len < cook_l + 1) |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1788 | continue; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1789 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1790 | val_beg = ctx.value.ptr; |
| 1791 | val_end = val_beg + ctx.value.len; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1792 | } |
| 1793 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1794 | smp->data.type = SMP_T_STR; |
| 1795 | smp->flags |= SMP_F_CONST; |
| 1796 | while ((val_beg = http_extract_cookie_value(val_beg, val_end, |
Christopher Faulet | 97fc8da | 2020-11-13 13:41:04 +0100 | [diff] [blame] | 1797 | cook, cook_l, |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1798 | (smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ, |
| 1799 | &smp->data.u.str.area, |
| 1800 | &smp->data.u.str.data))) { |
| 1801 | cnt++; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1802 | } |
| 1803 | } |
| 1804 | |
| 1805 | smp->data.type = SMP_T_SINT; |
| 1806 | smp->data.u.sint = cnt; |
| 1807 | smp->flags |= SMP_F_VOL_HDR; |
| 1808 | return 1; |
| 1809 | } |
| 1810 | |
| 1811 | /* Fetch an cookie's integer value. The integer value is returned. It |
| 1812 | * takes a mandatory argument of type string. It relies on smp_fetch_cookie(). |
| 1813 | */ |
| 1814 | static int smp_fetch_cookie_val(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1815 | { |
| 1816 | int ret = smp_fetch_cookie(args, smp, kw, private); |
| 1817 | |
| 1818 | if (ret > 0) { |
| 1819 | smp->data.type = SMP_T_SINT; |
| 1820 | smp->data.u.sint = strl2ic(smp->data.u.str.area, |
| 1821 | smp->data.u.str.data); |
| 1822 | } |
| 1823 | |
| 1824 | return ret; |
| 1825 | } |
| 1826 | |
| 1827 | /************************************************************************/ |
| 1828 | /* The code below is dedicated to sample fetches */ |
| 1829 | /************************************************************************/ |
| 1830 | |
| 1831 | /* This scans a URL-encoded query string. It takes an optionally wrapping |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 1832 | * string whose first contiguous chunk has its beginning in ctx->a[0] and end |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1833 | * in ctx->a[1], and the optional second part in (ctx->a[2]..ctx->a[3]). The |
| 1834 | * pointers are updated for next iteration before leaving. |
| 1835 | */ |
Martin DOLEZ | 110e4a8 | 2023-03-28 09:06:05 -0400 | [diff] [blame] | 1836 | static int smp_fetch_param(char delim, const char *name, int name_len, const struct arg *args, struct sample *smp, const char *kw, void *private, char insensitive) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1837 | { |
| 1838 | const char *vstart, *vend; |
| 1839 | struct buffer *temp; |
| 1840 | const char **chunks = (const char **)smp->ctx.a; |
| 1841 | |
| 1842 | if (!http_find_next_url_param(chunks, name, name_len, |
Martin DOLEZ | 110e4a8 | 2023-03-28 09:06:05 -0400 | [diff] [blame] | 1843 | &vstart, &vend, delim, insensitive)) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1844 | return 0; |
| 1845 | |
| 1846 | /* Create sample. If the value is contiguous, return the pointer as CONST, |
| 1847 | * if the value is wrapped, copy-it in a buffer. |
| 1848 | */ |
| 1849 | smp->data.type = SMP_T_STR; |
| 1850 | if (chunks[2] && |
| 1851 | vstart >= chunks[0] && vstart <= chunks[1] && |
| 1852 | vend >= chunks[2] && vend <= chunks[3]) { |
| 1853 | /* Wrapped case. */ |
| 1854 | temp = get_trash_chunk(); |
| 1855 | memcpy(temp->area, vstart, chunks[1] - vstart); |
| 1856 | memcpy(temp->area + ( chunks[1] - vstart ), chunks[2], |
| 1857 | vend - chunks[2]); |
| 1858 | smp->data.u.str.area = temp->area; |
| 1859 | smp->data.u.str.data = ( chunks[1] - vstart ) + ( vend - chunks[2] ); |
| 1860 | } else { |
| 1861 | /* Contiguous case. */ |
| 1862 | smp->data.u.str.area = (char *)vstart; |
| 1863 | smp->data.u.str.data = vend - vstart; |
| 1864 | smp->flags = SMP_F_VOL_1ST | SMP_F_CONST; |
| 1865 | } |
| 1866 | |
| 1867 | /* Update context, check wrapping. */ |
| 1868 | chunks[0] = vend; |
| 1869 | if (chunks[2] && vend >= chunks[2] && vend <= chunks[3]) { |
| 1870 | chunks[1] = chunks[3]; |
| 1871 | chunks[2] = NULL; |
| 1872 | } |
| 1873 | |
| 1874 | if (chunks[0] < chunks[1]) |
| 1875 | smp->flags |= SMP_F_NOT_LAST; |
| 1876 | |
| 1877 | return 1; |
| 1878 | } |
| 1879 | |
| 1880 | /* This function iterates over each parameter of the query string. It uses |
| 1881 | * ctx->a[0] and ctx->a[1] to store the beginning and end of the current |
| 1882 | * parameter. Since it uses smp_fetch_param(), ctx->a[2..3] are both NULL. |
| 1883 | * An optional parameter name is passed in args[0], otherwise any parameter is |
| 1884 | * considered. It supports an optional delimiter argument for the beginning of |
| 1885 | * the string in args[1], which defaults to "?". |
| 1886 | */ |
| 1887 | static int smp_fetch_url_param(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1888 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 1889 | struct channel *chn = SMP_REQ_CHN(smp); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1890 | char delim = '?'; |
| 1891 | const char *name; |
| 1892 | int name_len; |
Martin DOLEZ | 28c5f40 | 2023-03-28 09:06:05 -0400 | [diff] [blame] | 1893 | char insensitive = 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1894 | |
Christopher Faulet | 623af93 | 2021-01-29 11:22:15 +0100 | [diff] [blame] | 1895 | if ((args[0].type && args[0].type != ARGT_STR) || |
Martin DOLEZ | 28c5f40 | 2023-03-28 09:06:05 -0400 | [diff] [blame] | 1896 | (args[1].type && args[1].type != ARGT_STR) || |
| 1897 | (args[2].type && args[2].type != ARGT_STR)) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1898 | return 0; |
| 1899 | |
| 1900 | name = ""; |
| 1901 | name_len = 0; |
| 1902 | if (args->type == ARGT_STR) { |
| 1903 | name = args->data.str.area; |
| 1904 | name_len = args->data.str.data; |
| 1905 | } |
| 1906 | |
Martin DOLEZ | 1a9a994 | 2023-03-28 09:49:53 -0400 | [diff] [blame] | 1907 | if (args[1].type && *args[1].data.str.area) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1908 | delim = *args[1].data.str.area; |
Martin DOLEZ | 28c5f40 | 2023-03-28 09:06:05 -0400 | [diff] [blame] | 1909 | if (args[2].type && *args[2].data.str.area == 'i') |
| 1910 | insensitive = 1; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1911 | |
| 1912 | if (!smp->ctx.a[0]) { // first call, find the query string |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 1913 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1914 | struct htx_sl *sl; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1915 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1916 | if (!htx) |
| 1917 | return 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1918 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1919 | sl = http_get_stline(htx); |
| 1920 | smp->ctx.a[0] = http_find_param_list(HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl), delim); |
| 1921 | if (!smp->ctx.a[0]) |
| 1922 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1923 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1924 | smp->ctx.a[1] = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1925 | |
| 1926 | /* Assume that the context is filled with NULL pointer |
| 1927 | * before the first call. |
| 1928 | * smp->ctx.a[2] = NULL; |
| 1929 | * smp->ctx.a[3] = NULL; |
| 1930 | */ |
| 1931 | } |
| 1932 | |
Martin DOLEZ | 28c5f40 | 2023-03-28 09:06:05 -0400 | [diff] [blame] | 1933 | return smp_fetch_param(delim, name, name_len, args, smp, kw, private, insensitive); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1934 | } |
| 1935 | |
| 1936 | /* This function iterates over each parameter of the body. This requires |
| 1937 | * that the body has been waited for using http-buffer-request. It uses |
| 1938 | * ctx->a[0] and ctx->a[1] to store the beginning and end of the first |
Ilya Shipitsin | 46a030c | 2020-07-05 16:36:08 +0500 | [diff] [blame] | 1939 | * contiguous part of the body, and optionally ctx->a[2..3] to reference the |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1940 | * optional second part if the body wraps at the end of the buffer. An optional |
| 1941 | * parameter name is passed in args[0], otherwise any parameter is considered. |
| 1942 | */ |
| 1943 | static int smp_fetch_body_param(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 1944 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 1945 | struct channel *chn = SMP_REQ_CHN(smp); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1946 | const char *name; |
| 1947 | int name_len; |
Martin DOLEZ | 28c5f40 | 2023-03-28 09:06:05 -0400 | [diff] [blame] | 1948 | char insensitive = 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1949 | |
Martin DOLEZ | 28c5f40 | 2023-03-28 09:06:05 -0400 | [diff] [blame] | 1950 | if ((args[0].type && args[0].type != ARGT_STR) || |
| 1951 | (args[1].type && args[1].type != ARGT_STR)) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1952 | return 0; |
| 1953 | |
| 1954 | name = ""; |
| 1955 | name_len = 0; |
| 1956 | if (args[0].type == ARGT_STR) { |
| 1957 | name = args[0].data.str.area; |
| 1958 | name_len = args[0].data.str.data; |
| 1959 | } |
| 1960 | |
Martin DOLEZ | 28c5f40 | 2023-03-28 09:06:05 -0400 | [diff] [blame] | 1961 | if (args[1].type && *args[1].data.str.area == 'i') |
| 1962 | insensitive = 1; |
| 1963 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1964 | if (!smp->ctx.a[0]) { // first call, find the query string |
Christopher Faulet | e596d18 | 2020-05-05 17:46:34 +0200 | [diff] [blame] | 1965 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1966 | struct buffer *temp; |
| 1967 | int32_t pos; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1968 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1969 | if (!htx) |
| 1970 | return 0; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1971 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1972 | temp = get_trash_chunk(); |
| 1973 | for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) { |
| 1974 | struct htx_blk *blk = htx_get_blk(htx, pos); |
| 1975 | enum htx_blk_type type = htx_get_blk_type(blk); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1976 | |
Christopher Faulet | d1ac2b9 | 2020-12-02 19:12:22 +0100 | [diff] [blame] | 1977 | if (type == HTX_BLK_TLR || type == HTX_BLK_EOT) |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1978 | break; |
| 1979 | if (type == HTX_BLK_DATA) { |
Christopher Faulet | 53a899b | 2019-10-08 16:38:42 +0200 | [diff] [blame] | 1980 | if (!h1_format_htx_data(htx_get_blk_value(htx, blk), temp, 0)) |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1981 | return 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1982 | } |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1983 | } |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1984 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1985 | smp->ctx.a[0] = temp->area; |
| 1986 | smp->ctx.a[1] = temp->area + temp->data; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1987 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 1988 | /* Assume that the context is filled with NULL pointer |
| 1989 | * before the first call. |
| 1990 | * smp->ctx.a[2] = NULL; |
| 1991 | * smp->ctx.a[3] = NULL; |
| 1992 | */ |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1993 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1994 | } |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 1995 | |
Martin DOLEZ | 28c5f40 | 2023-03-28 09:06:05 -0400 | [diff] [blame] | 1996 | return smp_fetch_param('&', name, name_len, args, smp, kw, private, insensitive); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 1997 | } |
| 1998 | |
| 1999 | /* Return the signed integer value for the specified url parameter (see url_param |
| 2000 | * above). |
| 2001 | */ |
| 2002 | static int smp_fetch_url_param_val(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2003 | { |
| 2004 | int ret = smp_fetch_url_param(args, smp, kw, private); |
| 2005 | |
| 2006 | if (ret > 0) { |
| 2007 | smp->data.type = SMP_T_SINT; |
| 2008 | smp->data.u.sint = strl2ic(smp->data.u.str.area, |
| 2009 | smp->data.u.str.data); |
| 2010 | } |
| 2011 | |
| 2012 | return ret; |
| 2013 | } |
| 2014 | |
| 2015 | /* This produces a 32-bit hash of the concatenation of the first occurrence of |
| 2016 | * the Host header followed by the path component if it begins with a slash ('/'). |
| 2017 | * This means that '*' will not be added, resulting in exactly the first Host |
| 2018 | * entry. If no Host header is found, then the path is used. The resulting value |
| 2019 | * is hashed using the url hash followed by a full avalanche hash and provides a |
| 2020 | * 32-bit integer value. This fetch is useful for tracking per-URL activity on |
| 2021 | * high-traffic sites without having to store whole paths. |
| 2022 | * this differs from the base32 functions in that it includes the url parameters |
| 2023 | * as well as the path |
| 2024 | */ |
| 2025 | static int smp_fetch_url32(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2026 | { |
Christopher Faulet | 89dc499 | 2019-04-17 12:02:59 +0200 | [diff] [blame] | 2027 | struct channel *chn = SMP_REQ_CHN(smp); |
Christopher Faulet | 778f5ed | 2020-04-29 15:51:55 +0200 | [diff] [blame] | 2028 | struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 2029 | struct http_hdr_ctx ctx; |
| 2030 | struct htx_sl *sl; |
| 2031 | struct ist path; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2032 | unsigned int hash = 0; |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 2033 | struct http_uri_parser parser; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2034 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 2035 | if (!htx) |
| 2036 | return 0; |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 2037 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 2038 | ctx.blk = NULL; |
| 2039 | if (http_find_header(htx, ist("Host"), &ctx, 1)) { |
| 2040 | /* OK we have the header value in ctx.value */ |
| 2041 | while (ctx.value.len--) |
| 2042 | hash = *(ctx.value.ptr++) + (hash << 6) + (hash << 16) - hash; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2043 | } |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 2044 | |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 2045 | /* now retrieve the path */ |
| 2046 | sl = http_get_stline(htx); |
Amaury Denoyelle | c453f95 | 2021-07-06 11:40:12 +0200 | [diff] [blame] | 2047 | parser = http_uri_parser_init(htx_sl_req_uri(sl)); |
| 2048 | path = http_parse_path(&parser); |
Christopher Faulet | 6d1dd46 | 2019-07-15 14:36:03 +0200 | [diff] [blame] | 2049 | if (path.len && *(path.ptr) == '/') { |
| 2050 | while (path.len--) |
| 2051 | hash = *(path.ptr++) + (hash << 6) + (hash << 16) - hash; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2052 | } |
Christopher Faulet | 311c7ea | 2018-10-24 21:41:55 +0200 | [diff] [blame] | 2053 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2054 | hash = full_hash(hash); |
| 2055 | |
| 2056 | smp->data.type = SMP_T_SINT; |
| 2057 | smp->data.u.sint = hash; |
| 2058 | smp->flags = SMP_F_VOL_1ST; |
| 2059 | return 1; |
| 2060 | } |
| 2061 | |
| 2062 | /* This concatenates the source address with the 32-bit hash of the Host and |
| 2063 | * URL as returned by smp_fetch_base32(). The idea is to have per-source and |
| 2064 | * per-url counters. The result is a binary block from 8 to 20 bytes depending |
| 2065 | * on the source address length. The URL hash is stored before the address so |
| 2066 | * that in environments where IPv6 is insignificant, truncating the output to |
| 2067 | * 8 bytes would still work. |
| 2068 | */ |
| 2069 | static int smp_fetch_url32_src(const struct arg *args, struct sample *smp, const char *kw, void *private) |
| 2070 | { |
Willy Tarreau | d68ff01 | 2022-05-27 08:57:21 +0200 | [diff] [blame] | 2071 | const struct sockaddr_storage *src = (smp->strm ? sc_src(smp->strm->scf) : NULL); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2072 | struct buffer *temp; |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2073 | |
Christopher Faulet | 6fc817a | 2021-10-25 07:48:27 +0200 | [diff] [blame] | 2074 | if (!src) |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2075 | return 0; |
| 2076 | |
| 2077 | if (!smp_fetch_url32(args, smp, kw, private)) |
| 2078 | return 0; |
| 2079 | |
| 2080 | temp = get_trash_chunk(); |
| 2081 | *(unsigned int *) temp->area = htonl(smp->data.u.sint); |
| 2082 | temp->data += sizeof(unsigned int); |
| 2083 | |
Christopher Faulet | 6fc817a | 2021-10-25 07:48:27 +0200 | [diff] [blame] | 2084 | switch (src->ss_family) { |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2085 | case AF_INET: |
| 2086 | memcpy(temp->area + temp->data, |
Christopher Faulet | 6fc817a | 2021-10-25 07:48:27 +0200 | [diff] [blame] | 2087 | &((struct sockaddr_in *)src)->sin_addr, |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2088 | 4); |
| 2089 | temp->data += 4; |
| 2090 | break; |
| 2091 | case AF_INET6: |
| 2092 | memcpy(temp->area + temp->data, |
Christopher Faulet | 6fc817a | 2021-10-25 07:48:27 +0200 | [diff] [blame] | 2093 | &((struct sockaddr_in6 *)src)->sin6_addr, |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2094 | 16); |
| 2095 | temp->data += 16; |
| 2096 | break; |
| 2097 | default: |
| 2098 | return 0; |
| 2099 | } |
| 2100 | |
| 2101 | smp->data.u.str = *temp; |
| 2102 | smp->data.type = SMP_T_BIN; |
| 2103 | return 1; |
| 2104 | } |
| 2105 | |
| 2106 | /************************************************************************/ |
| 2107 | /* Other utility functions */ |
| 2108 | /************************************************************************/ |
| 2109 | |
| 2110 | /* This function is used to validate the arguments passed to any "hdr" fetch |
| 2111 | * keyword. These keywords support an optional positive or negative occurrence |
| 2112 | * number. We must ensure that the number is greater than -MAX_HDR_HISTORY. It |
| 2113 | * is assumed that the types are already the correct ones. Returns 0 on error, |
| 2114 | * non-zero if OK. If <err> is not NULL, it will be filled with a pointer to an |
| 2115 | * error message in case of error, that the caller is responsible for freeing. |
| 2116 | * The initial location must either be freeable or NULL. |
| 2117 | * Note: this function's pointer is checked from Lua. |
| 2118 | */ |
| 2119 | int val_hdr(struct arg *arg, char **err_msg) |
| 2120 | { |
| 2121 | if (arg && arg[1].type == ARGT_SINT && arg[1].data.sint < -MAX_HDR_HISTORY) { |
| 2122 | memprintf(err_msg, "header occurrence must be >= %d", -MAX_HDR_HISTORY); |
| 2123 | return 0; |
| 2124 | } |
| 2125 | return 1; |
| 2126 | } |
| 2127 | |
| 2128 | /************************************************************************/ |
| 2129 | /* All supported sample fetch keywords must be declared here. */ |
| 2130 | /************************************************************************/ |
| 2131 | |
| 2132 | /* Note: must not be declared <const> as its list will be overwritten */ |
| 2133 | static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, { |
| 2134 | { "base", smp_fetch_base, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 2135 | { "base32", smp_fetch_base32, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV }, |
| 2136 | { "base32+src", smp_fetch_base32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV }, |
Yves Lafon | b4d3708 | 2021-02-11 11:01:28 +0100 | [diff] [blame] | 2137 | { "baseq", smp_fetch_base, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2138 | |
| 2139 | /* capture are allocated and are permanent in the stream */ |
| 2140 | { "capture.req.hdr", smp_fetch_capture_req_hdr, ARG1(1,SINT), NULL, SMP_T_STR, SMP_USE_HRQHP }, |
| 2141 | |
| 2142 | /* retrieve these captures from the HTTP logs */ |
| 2143 | { "capture.req.method", smp_fetch_capture_req_method, 0, NULL, SMP_T_STR, SMP_USE_HRQHP }, |
| 2144 | { "capture.req.uri", smp_fetch_capture_req_uri, 0, NULL, SMP_T_STR, SMP_USE_HRQHP }, |
| 2145 | { "capture.req.ver", smp_fetch_capture_req_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP }, |
| 2146 | |
| 2147 | { "capture.res.hdr", smp_fetch_capture_res_hdr, ARG1(1,SINT), NULL, SMP_T_STR, SMP_USE_HRSHP }, |
| 2148 | { "capture.res.ver", smp_fetch_capture_res_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP }, |
| 2149 | |
| 2150 | /* cookie is valid in both directions (eg: for "stick ...") but cook* |
| 2151 | * are only here to match the ACL's name, are request-only and are used |
| 2152 | * for ACL compatibility only. |
| 2153 | */ |
| 2154 | { "cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Christopher Faulet | c1f40dd | 2019-05-16 10:07:30 +0200 | [diff] [blame] | 2155 | { "cookie", smp_fetch_chn_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV }, |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2156 | { "cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV }, |
| 2157 | { "cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV }, |
| 2158 | |
| 2159 | /* hdr is valid in both directions (eg: for "stick ...") but hdr_* are |
| 2160 | * only here to match the ACL's name, are request-only and are used for |
| 2161 | * ACL compatibility only. |
| 2162 | */ |
Christopher Faulet | c1f40dd | 2019-05-16 10:07:30 +0200 | [diff] [blame] | 2163 | { "hdr", smp_fetch_chn_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV }, |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2164 | { "hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV }, |
| 2165 | { "hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV }, |
| 2166 | { "hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRQHV }, |
| 2167 | |
Christopher Faulet | a406356 | 2019-08-02 11:51:37 +0200 | [diff] [blame] | 2168 | { "http_auth_type", smp_fetch_http_auth_type, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 2169 | { "http_auth_user", smp_fetch_http_auth_user, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 2170 | { "http_auth_pass", smp_fetch_http_auth_pass, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Remi Tricot-Le Breton | f5dd337 | 2021-10-01 15:36:53 +0200 | [diff] [blame] | 2171 | { "http_auth_bearer", smp_fetch_http_auth_bearer, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2172 | { "http_auth", smp_fetch_http_auth, ARG1(1,USR), NULL, SMP_T_BOOL, SMP_USE_HRQHV }, |
| 2173 | { "http_auth_group", smp_fetch_http_auth_grp, ARG1(1,USR), NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 2174 | { "http_first_req", smp_fetch_http_first_req, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP }, |
| 2175 | { "method", smp_fetch_meth, 0, NULL, SMP_T_METH, SMP_USE_HRQHP }, |
| 2176 | { "path", smp_fetch_path, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Christopher Faulet | e720c32 | 2020-09-02 17:25:18 +0200 | [diff] [blame] | 2177 | { "pathq", smp_fetch_path, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2178 | { "query", smp_fetch_query, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 2179 | |
| 2180 | /* HTTP protocol on the request path */ |
| 2181 | { "req.proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP }, |
| 2182 | { "req_proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP }, |
| 2183 | |
| 2184 | /* HTTP version on the request path */ |
| 2185 | { "req.ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 2186 | { "req_ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 2187 | |
| 2188 | { "req.body", smp_fetch_body, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV }, |
| 2189 | { "req.body_len", smp_fetch_body_len, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV }, |
| 2190 | { "req.body_size", smp_fetch_body_size, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV }, |
Martin DOLEZ | 28c5f40 | 2023-03-28 09:06:05 -0400 | [diff] [blame] | 2191 | { "req.body_param", smp_fetch_body_param, ARG2(0,STR,STR), NULL, SMP_T_BIN, SMP_USE_HRQHV }, |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2192 | |
| 2193 | { "req.hdrs", smp_fetch_hdrs, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV }, |
| 2194 | { "req.hdrs_bin", smp_fetch_hdrs_bin, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV }, |
| 2195 | |
| 2196 | /* HTTP version on the response path */ |
| 2197 | { "res.ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV }, |
| 2198 | { "resp_ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV }, |
| 2199 | |
Christopher Faulet | e596d18 | 2020-05-05 17:46:34 +0200 | [diff] [blame] | 2200 | { "res.body", smp_fetch_body, 0, NULL, SMP_T_BIN, SMP_USE_HRSHV }, |
| 2201 | { "res.body_len", smp_fetch_body_len, 0, NULL, SMP_T_SINT, SMP_USE_HRSHV }, |
| 2202 | { "res.body_size", smp_fetch_body_size, 0, NULL, SMP_T_SINT, SMP_USE_HRSHV }, |
| 2203 | |
| 2204 | { "res.hdrs", smp_fetch_hdrs, 0, NULL, SMP_T_BIN, SMP_USE_HRSHV }, |
| 2205 | { "res.hdrs_bin", smp_fetch_hdrs_bin, 0, NULL, SMP_T_BIN, SMP_USE_HRSHV }, |
| 2206 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2207 | /* explicit req.{cook,hdr} are used to force the fetch direction to be request-only */ |
| 2208 | { "req.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 2209 | { "req.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV }, |
| 2210 | { "req.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV }, |
| 2211 | |
| 2212 | { "req.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV }, |
| 2213 | { "req.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV }, |
| 2214 | { "req.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV }, |
| 2215 | { "req.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV }, |
| 2216 | { "req.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV }, |
| 2217 | { "req.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 2218 | { "req.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRQHV }, |
| 2219 | |
| 2220 | /* explicit req.{cook,hdr} are used to force the fetch direction to be response-only */ |
| 2221 | { "res.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, |
| 2222 | { "res.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV }, |
| 2223 | { "res.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV }, |
| 2224 | |
| 2225 | { "res.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV }, |
| 2226 | { "res.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV }, |
| 2227 | { "res.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV }, |
| 2228 | { "res.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV }, |
| 2229 | { "res.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV }, |
| 2230 | { "res.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, |
| 2231 | { "res.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRSHV }, |
| 2232 | |
| 2233 | /* scook is valid only on the response and is used for ACL compatibility */ |
| 2234 | { "scook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, |
| 2235 | { "scook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV }, |
| 2236 | { "scook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV }, |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2237 | |
| 2238 | /* shdr is valid only on the response and is used for ACL compatibility */ |
| 2239 | { "shdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV }, |
| 2240 | { "shdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV }, |
| 2241 | { "shdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV }, |
| 2242 | { "shdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRSHV }, |
| 2243 | |
| 2244 | { "status", smp_fetch_stcode, 0, NULL, SMP_T_SINT, SMP_USE_HRSHP }, |
| 2245 | { "unique-id", smp_fetch_uniqueid, 0, NULL, SMP_T_STR, SMP_SRC_L4SRV }, |
| 2246 | { "url", smp_fetch_url, 0, NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 2247 | { "url32", smp_fetch_url32, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV }, |
| 2248 | { "url32+src", smp_fetch_url32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV }, |
| 2249 | { "url_ip", smp_fetch_url_ip, 0, NULL, SMP_T_IPV4, SMP_USE_HRQHV }, |
| 2250 | { "url_port", smp_fetch_url_port, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV }, |
Martin DOLEZ | 28c5f40 | 2023-03-28 09:06:05 -0400 | [diff] [blame] | 2251 | { "url_param", smp_fetch_url_param, ARG3(0,STR,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 2252 | { "urlp" , smp_fetch_url_param, ARG3(0,STR,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV }, |
| 2253 | { "urlp_val", smp_fetch_url_param_val, ARG3(0,STR,STR,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV }, |
Christopher Faulet | 16032ab | 2020-04-30 11:30:00 +0200 | [diff] [blame] | 2254 | |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2255 | { /* END */ }, |
| 2256 | }}; |
| 2257 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 2258 | INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords); |
Willy Tarreau | 79e5733 | 2018-10-02 16:01:16 +0200 | [diff] [blame] | 2259 | |
| 2260 | /* |
| 2261 | * Local variables: |
| 2262 | * c-indent-level: 8 |
| 2263 | * c-basic-offset: 8 |
| 2264 | * End: |
| 2265 | */ |