blob: f617aa9def758c7f9b195bc90ae20054ceb80768 [file] [log] [blame]
Willy Tarreau79e57332018-10-02 16:01:16 +02001/*
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 Tarreauac13aea2020-06-04 10:36:03 +020019#include <haproxy/auth.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020020#include <haproxy/api.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020021#include <haproxy/base64.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020022#include <haproxy/chunk.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020023#include <haproxy/connection.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020024#include <haproxy/global.h>
Willy Tarreau5413a872020-06-02 19:33:08 +020025#include <haproxy/h1.h>
Willy Tarreauc6fe8842020-06-04 09:00:02 +020026#include <haproxy/h1_htx.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020027#include <haproxy/http.h>
Willy Tarreau126ba3a2020-06-04 18:26:43 +020028#include <haproxy/http_fetch.h>
Willy Tarreau87735332020-06-04 09:08:41 +020029#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020030#include <haproxy/htx.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020031#include <haproxy/obj_type.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020032#include <haproxy/pool.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020033#include <haproxy/sample.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020034#include <haproxy/tools.h>
Willy Tarreaud6788052020-05-27 15:59:00 +020035#include <haproxy/version.h>
Willy Tarreau79e57332018-10-02 16:01:16 +020036
Willy Tarreauaa74c4e2020-06-04 10:19:23 +020037#include <haproxy/arg.h>
Christopher Fauleteb2754b2019-07-16 14:49:01 +020038#include <proto/channel.h>
Willy Tarreau79e57332018-10-02 16:01:16 +020039#include <proto/log.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020040#include <proto/http_ana.h>
Willy Tarreau79e57332018-10-02 16:01:16 +020041#include <proto/stream.h>
42
43
44/* this struct is used between calls to smp_fetch_hdr() or smp_fetch_cookie() */
Christopher Fauletef453ed2018-10-24 21:39:27 +020045static THREAD_LOCAL struct http_hdr_ctx static_http_hdr_ctx;
Richard Russo458eafb2019-07-31 11:45:56 -070046/* this is used to convert raw connection buffers to htx */
47static THREAD_LOCAL struct buffer static_raw_htx_chunk;
48static THREAD_LOCAL char *static_raw_htx_buf;
Christopher Fauletef453ed2018-10-24 21:39:27 +020049
Christopher Faulet89dc4992019-04-17 12:02:59 +020050#define SMP_REQ_CHN(smp) (smp->strm ? &smp->strm->req : NULL)
51#define SMP_RES_CHN(smp) (smp->strm ? &smp->strm->res : NULL)
Willy Tarreau79e57332018-10-02 16:01:16 +020052
Richard Russo458eafb2019-07-31 11:45:56 -070053/* This function returns the static htx chunk, where raw connections get
54 * converted to HTX as needed for samplxsing.
55 */
56struct buffer *get_raw_htx_chunk(void)
57{
58 chunk_reset(&static_raw_htx_chunk);
59 return &static_raw_htx_chunk;
60}
61
62static int alloc_raw_htx_chunk_per_thread()
63{
64 static_raw_htx_buf = malloc(global.tune.bufsize);
65 if (!static_raw_htx_buf)
66 return 0;
67 chunk_init(&static_raw_htx_chunk, static_raw_htx_buf, global.tune.bufsize);
68 return 1;
69}
70
71static void free_raw_htx_chunk_per_thread()
72{
73 free(static_raw_htx_buf);
74 static_raw_htx_buf = NULL;
75}
76
77REGISTER_PER_THREAD_ALLOC(alloc_raw_htx_chunk_per_thread);
78REGISTER_PER_THREAD_FREE(free_raw_htx_chunk_per_thread);
79
Willy Tarreau79e57332018-10-02 16:01:16 +020080/*
81 * Returns the data from Authorization header. Function may be called more
82 * than once so data is stored in txn->auth_data. When no header is found
83 * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid
84 * searching again for something we are unable to find anyway. However, if
85 * the result if valid, the cache is not reused because we would risk to
86 * have the credentials overwritten by another stream in parallel.
Willy Tarreaueae83722020-04-29 11:52:51 +020087 * The caller is responsible for passing a sample with a valid stream/txn,
88 * and a valid htx.
Willy Tarreau79e57332018-10-02 16:01:16 +020089 */
90
Christopher Fauletcd761952019-07-15 13:58:29 +020091static int get_http_auth(struct sample *smp, struct htx *htx)
Willy Tarreau79e57332018-10-02 16:01:16 +020092{
Christopher Faulet311c7ea2018-10-24 21:41:55 +020093 struct stream *s = smp->strm;
Willy Tarreau79e57332018-10-02 16:01:16 +020094 struct http_txn *txn = s->txn;
Christopher Faulet6d1dd462019-07-15 14:36:03 +020095 struct http_hdr_ctx ctx = { .blk = NULL };
96 struct ist hdr;
Willy Tarreau79e57332018-10-02 16:01:16 +020097 struct buffer auth_method;
Christopher Faulet6d1dd462019-07-15 14:36:03 +020098 char *p;
Willy Tarreau79e57332018-10-02 16:01:16 +020099 int len;
100
101#ifdef DEBUG_AUTH
102 printf("Auth for stream %p: %d\n", s, txn->auth.method);
103#endif
Willy Tarreau79e57332018-10-02 16:01:16 +0200104 if (txn->auth.method == HTTP_AUTH_WRONG)
105 return 0;
106
107 txn->auth.method = HTTP_AUTH_WRONG;
108
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200109 if (txn->flags & TX_USE_PX_CONN)
110 hdr = ist("Proxy-Authorization");
111 else
112 hdr = ist("Authorization");
Willy Tarreau79e57332018-10-02 16:01:16 +0200113
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200114 ctx.blk = NULL;
115 if (!http_find_header(htx, hdr, &ctx, 0))
116 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200117
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200118 p = memchr(ctx.value.ptr, ' ', ctx.value.len);
119 len = p - ctx.value.ptr;
120 if (!p || len <= 0)
121 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200122
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200123 if (chunk_initlen(&auth_method, ctx.value.ptr, 0, len) != 1)
124 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200125
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200126 chunk_initlen(&txn->auth.method_data, p + 1, 0, ctx.value.len - len - 1);
Willy Tarreau79e57332018-10-02 16:01:16 +0200127
128 if (!strncasecmp("Basic", auth_method.area, auth_method.data)) {
129 struct buffer *http_auth = get_trash_chunk();
130
131 len = base64dec(txn->auth.method_data.area,
132 txn->auth.method_data.data,
133 http_auth->area, global.tune.bufsize - 1);
134
135 if (len < 0)
136 return 0;
137
138
139 http_auth->area[len] = '\0';
140
141 p = strchr(http_auth->area, ':');
142
143 if (!p)
144 return 0;
145
146 txn->auth.user = http_auth->area;
147 *p = '\0';
148 txn->auth.pass = p+1;
149
150 txn->auth.method = HTTP_AUTH_BASIC;
151 return 1;
152 }
153
154 return 0;
155}
156
157/* This function ensures that the prerequisites for an L7 fetch are ready,
158 * which means that a request or response is ready. If some data is missing,
159 * a parsing attempt is made. This is useful in TCP-based ACLs which are able
Christopher Faulet5ec8bcb2019-04-17 12:04:12 +0200160 * to extract data from L7. If <vol> is non-null during a prefetch, another
161 * test is made to ensure the required information is not gone.
Christopher Fauletef453ed2018-10-24 21:39:27 +0200162 *
163 * The function returns :
164 * NULL with SMP_F_MAY_CHANGE in the sample flags if some data is missing to
165 * decide whether or not an HTTP message is present ;
166 * NULL if the requested data cannot be fetched or if it is certain that
Willy Tarreaueae83722020-04-29 11:52:51 +0200167 * we'll never have any HTTP message there; this includes null strm or chn.
Christopher Fauletef453ed2018-10-24 21:39:27 +0200168 * The HTX message if ready
169 */
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200170struct htx *smp_prefetch_htx(struct sample *smp, struct channel *chn, struct check *check, int vol)
Christopher Fauletef453ed2018-10-24 21:39:27 +0200171{
Christopher Fauletef453ed2018-10-24 21:39:27 +0200172 struct stream *s = smp->strm;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200173 struct http_txn *txn = NULL;
174 struct htx *htx = NULL;
Christopher Faulet89dc4992019-04-17 12:02:59 +0200175 struct http_msg *msg;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100176 struct htx_sl *sl;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200177
178 /* Note: it is possible that <s> is NULL when called before stream
179 * initialization (eg: tcp-request connection), so this function is the
180 * one responsible for guarding against this case for all HTTP users.
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200181 *
182 * In the health check context, the stream and the channel must be NULL
183 * and <check> must be set. In this case, only the input buffer,
184 * corresponding to the response, is considered. It is the caller
185 * responsibility to provide <check>.
Christopher Fauletef453ed2018-10-24 21:39:27 +0200186 */
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200187 BUG_ON(check && (s || chn));
188 if (!s || !chn) {
189 if (check) {
190 htx = htxbuf(&check->bi);
191
192 /* Analyse not yet started */
193 if (htx_is_empty(htx) || htx->first == -1)
194 return NULL;
195
196 sl = http_get_stline(htx);
197 if (vol && !sl) {
198 /* The start-line was already forwarded, it is too late to fetch anything */
199 return NULL;
200 }
201 goto end;
202 }
203
Christopher Fauletef453ed2018-10-24 21:39:27 +0200204 return NULL;
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200205 }
Christopher Fauletef453ed2018-10-24 21:39:27 +0200206
207 if (!s->txn) {
208 if (unlikely(!http_alloc_txn(s)))
209 return NULL; /* not enough memory */
210 http_init_txn(s);
211 txn = s->txn;
212 }
Christopher Faulet89dc4992019-04-17 12:02:59 +0200213 txn = s->txn;
214 msg = (!(chn->flags & CF_ISRESP) ? &txn->req : &txn->rsp);
215 smp->data.type = SMP_T_BOOL;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200216
Christopher Fauleteca88542019-04-03 10:12:42 +0200217 if (IS_HTX_STRM(s)) {
Christopher Faulet89dc4992019-04-17 12:02:59 +0200218 htx = htxbuf(&chn->buf);
Christopher Fauletef453ed2018-10-24 21:39:27 +0200219
Christopher Faulet89dc4992019-04-17 12:02:59 +0200220 if (msg->msg_state == HTTP_MSG_ERROR || (htx->flags & HTX_FL_PARSING_ERROR))
221 return NULL;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200222
Christopher Faulet89dc4992019-04-17 12:02:59 +0200223 if (msg->msg_state < HTTP_MSG_BODY) {
224 /* Analyse not yet started */
Christopher Faulet29f17582019-05-23 11:03:26 +0200225 if (htx_is_empty(htx) || htx->first == -1) {
Christopher Fauletef453ed2018-10-24 21:39:27 +0200226 /* Parsing is done by the mux, just wait */
227 smp->flags |= SMP_F_MAY_CHANGE;
228 return NULL;
229 }
230 }
Christopher Faulet297fbb42019-05-13 14:41:27 +0200231 sl = http_get_stline(htx);
Christopher Faulet5ec8bcb2019-04-17 12:04:12 +0200232 if (vol && !sl) {
Christopher Faulet89dc4992019-04-17 12:02:59 +0200233 /* The start-line was already forwarded, it is too late to fetch anything */
234 return NULL;
235 }
Christopher Fauletef453ed2018-10-24 21:39:27 +0200236 }
Christopher Fauleteca88542019-04-03 10:12:42 +0200237 else { /* RAW mode */
Christopher Faulet89dc4992019-04-17 12:02:59 +0200238 struct buffer *buf;
239 struct h1m h1m;
Christopher Faulete4ab11b2019-06-11 15:05:37 +0200240 struct http_hdr hdrs[global.tune.max_http_hdr];
Christopher Faulet89dc4992019-04-17 12:02:59 +0200241 union h1_sl h1sl;
242 unsigned int flags = HTX_FL_NONE;
243 int ret;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200244
Christopher Faulet89dc4992019-04-17 12:02:59 +0200245 /* no HTTP fetch on the response in TCP mode */
246 if (chn->flags & CF_ISRESP)
247 return NULL;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200248
Christopher Faulet89dc4992019-04-17 12:02:59 +0200249 /* Now we are working on the request only */
250 buf = &chn->buf;
251 if (b_head(buf) + b_data(buf) > b_wrap(buf))
252 b_slow_realign(buf, trash.area, 0);
Christopher Fauletef453ed2018-10-24 21:39:27 +0200253
Christopher Faulet89dc4992019-04-17 12:02:59 +0200254 h1m_init_req(&h1m);
255 ret = h1_headers_to_hdr_list(b_head(buf), b_stop(buf),
256 hdrs, sizeof(hdrs)/sizeof(hdrs[0]), &h1m, &h1sl);
257 if (ret <= 0) {
258 /* Invalid or too big*/
259 if (ret < 0 || channel_full(&s->req, global.tune.maxrewrite))
Christopher Fauletef453ed2018-10-24 21:39:27 +0200260 return NULL;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100261
Christopher Faulet89dc4992019-04-17 12:02:59 +0200262 /* wait for a full request */
263 smp->flags |= SMP_F_MAY_CHANGE;
264 return NULL;
265 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100266
Christopher Faulet89dc4992019-04-17 12:02:59 +0200267 /* OK we just got a valid HTTP mesage. We have to convert it
268 * into an HTX message.
269 */
270 if (unlikely(h1sl.rq.v.len == 0)) {
271 /* try to convert HTTP/0.9 requests to HTTP/1.0 */
272 if (h1sl.rq.meth != HTTP_METH_GET || !h1sl.rq.u.len)
Christopher Fauletef453ed2018-10-24 21:39:27 +0200273 return NULL;
Christopher Faulet89dc4992019-04-17 12:02:59 +0200274 h1sl.rq.v = ist("HTTP/1.0");
Christopher Fauletef453ed2018-10-24 21:39:27 +0200275 }
Christopher Faulet89dc4992019-04-17 12:02:59 +0200276
277 /* Set HTX start-line flags */
278 if (h1m.flags & H1_MF_VER_11)
279 flags |= HTX_SL_F_VER_11;
280 if (h1m.flags & H1_MF_XFER_ENC)
281 flags |= HTX_SL_F_XFER_ENC;
282 flags |= HTX_SL_F_XFER_LEN;
283 if (h1m.flags & H1_MF_CHNK)
284 flags |= HTX_SL_F_CHNK;
285 else if (h1m.flags & H1_MF_CLEN)
286 flags |= HTX_SL_F_CLEN;
287
Richard Russo458eafb2019-07-31 11:45:56 -0700288 htx = htx_from_buf(get_raw_htx_chunk());
Christopher Faulet89dc4992019-04-17 12:02:59 +0200289 sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, h1sl.rq.m, h1sl.rq.u, h1sl.rq.v);
290 if (!sl || !htx_add_all_headers(htx, hdrs))
Christopher Fauletef453ed2018-10-24 21:39:27 +0200291 return NULL;
Willy Tarreauce9bbf52019-05-13 08:32:31 +0200292 sl->info.req.meth = h1sl.rq.meth;
Christopher Faulet89dc4992019-04-17 12:02:59 +0200293 }
294
295 /* OK we just got a valid HTTP message. If not already done by
296 * HTTP analyzers, we have some minor preparation to perform so
297 * that further checks can rely on HTTP tests.
298 */
299 if (sl && msg->msg_state < HTTP_MSG_BODY) {
300 if (!(chn->flags & CF_ISRESP)) {
301 txn->meth = sl->info.req.meth;
302 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
303 s->flags |= SF_REDIRECTABLE;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200304 }
Christopher Faulet89dc4992019-04-17 12:02:59 +0200305 else
306 txn->status = sl->info.res.status;
307 if (sl->flags & HTX_SL_F_VER_11)
308 msg->flags |= HTTP_MSGF_VER_11;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200309 }
310
311 /* everything's OK */
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200312 end:
Christopher Fauletef453ed2018-10-24 21:39:27 +0200313 smp->data.u.sint = 1;
314 return htx;
315}
316
Willy Tarreau79e57332018-10-02 16:01:16 +0200317/* This function fetches the method of current HTTP request and stores
318 * it in the global pattern struct as a chunk. There are two possibilities :
319 * - if the method is known (not HTTP_METH_OTHER), its identifier is stored
320 * in <len> and <ptr> is NULL ;
321 * - if the method is unknown (HTTP_METH_OTHER), <ptr> points to the text and
322 * <len> to its length.
323 * This is intended to be used with pat_match_meth() only.
324 */
325static int smp_fetch_meth(const struct arg *args, struct sample *smp, const char *kw, void *private)
326{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200327 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200328 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 0);
Willy Tarreau79e57332018-10-02 16:01:16 +0200329 struct http_txn *txn;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200330 int meth;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200331
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200332 if (!htx)
333 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200334
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200335 txn = smp->strm->txn;
336 meth = txn->meth;
337 smp->data.type = SMP_T_METH;
338 smp->data.u.meth.meth = meth;
339 if (meth == HTTP_METH_OTHER) {
340 struct htx_sl *sl;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200341
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200342 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) {
343 /* ensure the indexes are not affected */
344 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200345 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200346 sl = http_get_stline(htx);
347 smp->flags |= SMP_F_CONST;
348 smp->data.u.meth.str.area = HTX_SL_REQ_MPTR(sl);
349 smp->data.u.meth.str.data = HTX_SL_REQ_MLEN(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +0200350 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200351 smp->flags |= SMP_F_VOL_1ST;
Willy Tarreau79e57332018-10-02 16:01:16 +0200352 return 1;
353}
354
355static int smp_fetch_rqver(const struct arg *args, struct sample *smp, const char *kw, void *private)
356{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200357 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200358 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200359 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +0200360 char *ptr;
361 int len;
362
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200363 if (!htx)
364 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200365
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200366 sl = http_get_stline(htx);
367 len = HTX_SL_REQ_VLEN(sl);
368 ptr = HTX_SL_REQ_VPTR(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +0200369
370 while ((len-- > 0) && (*ptr++ != '/'));
371 if (len <= 0)
372 return 0;
373
374 smp->data.type = SMP_T_STR;
375 smp->data.u.str.area = ptr;
376 smp->data.u.str.data = len;
377
378 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
379 return 1;
380}
381
382static int smp_fetch_stver(const struct arg *args, struct sample *smp, const char *kw, void *private)
383{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200384 struct channel *chn = SMP_RES_CHN(smp);
Christopher Fauletf98e6262020-05-06 09:42:04 +0200385 struct check *check = objt_check(smp->sess->origin);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200386 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200387 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +0200388 char *ptr;
389 int len;
390
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200391 if (!htx)
392 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200393
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200394 sl = http_get_stline(htx);
395 len = HTX_SL_RES_VLEN(sl);
396 ptr = HTX_SL_RES_VPTR(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +0200397
398 while ((len-- > 0) && (*ptr++ != '/'));
399 if (len <= 0)
400 return 0;
401
402 smp->data.type = SMP_T_STR;
403 smp->data.u.str.area = ptr;
404 smp->data.u.str.data = len;
405
406 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
407 return 1;
408}
409
410/* 3. Check on Status Code. We manipulate integers here. */
411static int smp_fetch_stcode(const struct arg *args, struct sample *smp, const char *kw, void *private)
412{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200413 struct channel *chn = SMP_RES_CHN(smp);
Christopher Fauletf98e6262020-05-06 09:42:04 +0200414 struct check *check = objt_check(smp->sess->origin);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200415 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200416 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +0200417 char *ptr;
418 int len;
419
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200420 if (!htx)
421 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200422
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200423 sl = http_get_stline(htx);
424 len = HTX_SL_RES_CLEN(sl);
425 ptr = HTX_SL_RES_CPTR(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +0200426
427 smp->data.type = SMP_T_SINT;
428 smp->data.u.sint = __strl2ui(ptr, len);
429 smp->flags = SMP_F_VOL_1ST;
430 return 1;
431}
432
433static int smp_fetch_uniqueid(const struct arg *args, struct sample *smp, const char *kw, void *private)
434{
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100435 struct ist unique_id;
Tim Duesterhus2825b4b2020-02-28 15:13:34 +0100436
Willy Tarreau79e57332018-10-02 16:01:16 +0200437 if (LIST_ISEMPTY(&smp->sess->fe->format_unique_id))
438 return 0;
439
Willy Tarreaua1062a42020-04-29 11:50:38 +0200440 if (!smp->strm)
441 return 0;
442
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100443 unique_id = stream_generate_unique_id(smp->strm, &smp->sess->fe->format_unique_id);
444 if (!isttest(unique_id))
Tim Duesterhus2825b4b2020-02-28 15:13:34 +0100445 return 0;
446
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100447 smp->data.u.str.area = smp->strm->unique_id.ptr;
448 smp->data.u.str.data = smp->strm->unique_id.len;
Tim Duesterhus2825b4b2020-02-28 15:13:34 +0100449 smp->data.type = SMP_T_STR;
Willy Tarreau79e57332018-10-02 16:01:16 +0200450 smp->flags = SMP_F_CONST;
451 return 1;
452}
453
454/* Returns a string block containing all headers including the
Joseph Herlant942eea32018-11-15 13:57:22 -0800455 * empty line which separes headers from the body. This is useful
456 * for some headers analysis.
Willy Tarreau79e57332018-10-02 16:01:16 +0200457 */
458static int smp_fetch_hdrs(const struct arg *args, struct sample *smp, const char *kw, void *private)
459{
Christopher Faulete596d182020-05-05 17:46:34 +0200460 /* possible keywords: req.hdrs, res.hdrs */
461 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200462 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200463 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200464 struct buffer *temp;
465 int32_t pos;
Willy Tarreau79e57332018-10-02 16:01:16 +0200466
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200467 if (!htx)
468 return 0;
469 temp = get_trash_chunk();
470 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
471 struct htx_blk *blk = htx_get_blk(htx, pos);
472 enum htx_blk_type type = htx_get_blk_type(blk);
Willy Tarreau79e57332018-10-02 16:01:16 +0200473
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200474 if (type == HTX_BLK_HDR) {
475 struct ist n = htx_get_blk_name(htx, blk);
476 struct ist v = htx_get_blk_value(htx, blk);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200477
Christopher Faulet53a899b2019-10-08 16:38:42 +0200478 if (!h1_format_htx_hdr(n, v, temp))
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200479 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200480 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200481 else if (type == HTX_BLK_EOH) {
482 if (!chunk_memcat(temp, "\r\n", 2))
483 return 0;
484 break;
485 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200486 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200487 smp->data.type = SMP_T_STR;
488 smp->data.u.str = *temp;
Willy Tarreau79e57332018-10-02 16:01:16 +0200489 return 1;
490}
491
492/* Returns the header request in a length/value encoded format.
493 * This is useful for exchanges with the SPOE.
494 *
495 * A "length value" is a multibyte code encoding numbers. It uses the
496 * SPOE format. The encoding is the following:
497 *
498 * Each couple "header name" / "header value" is composed
499 * like this:
500 * "length value" "header name bytes"
501 * "length value" "header value bytes"
502 * When the last header is reached, the header name and the header
503 * value are empty. Their length are 0
504 */
505static int smp_fetch_hdrs_bin(const struct arg *args, struct sample *smp, const char *kw, void *private)
506{
Christopher Faulete596d182020-05-05 17:46:34 +0200507 /* possible keywords: req.hdrs_bin, res.hdrs_bin */
508 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200509 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200510 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200511 struct buffer *temp;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200512 char *p, *end;
513 int32_t pos;
514 int ret;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200515
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200516 if (!htx)
517 return 0;
518 temp = get_trash_chunk();
519 p = temp->area;
520 end = temp->area + temp->size;
521 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
522 struct htx_blk *blk = htx_get_blk(htx, pos);
523 enum htx_blk_type type = htx_get_blk_type(blk);
524 struct ist n, v;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200525
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200526 if (type == HTX_BLK_HDR) {
527 n = htx_get_blk_name(htx,blk);
528 v = htx_get_blk_value(htx, blk);
Willy Tarreau79e57332018-10-02 16:01:16 +0200529
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200530 /* encode the header name. */
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200531 ret = encode_varint(n.len, &p, end);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200532 if (ret == -1)
533 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200534 if (p + n.len > end)
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200535 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200536 memcpy(p, n.ptr, n.len);
537 p += n.len;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200538
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200539 /* encode the header value. */
540 ret = encode_varint(v.len, &p, end);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200541 if (ret == -1)
542 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200543 if (p + v.len > end)
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200544 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200545 memcpy(p, v.ptr, v.len);
546 p += v.len;
Willy Tarreau79e57332018-10-02 16:01:16 +0200547
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200548 }
549 else if (type == HTX_BLK_EOH) {
550 /* encode the end of the header list with empty
551 * header name and header value.
552 */
553 ret = encode_varint(0, &p, end);
554 if (ret == -1)
555 return 0;
556 ret = encode_varint(0, &p, end);
557 if (ret == -1)
558 return 0;
559 break;
560 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200561 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200562
563 /* Initialise sample data which will be filled. */
564 smp->data.type = SMP_T_BIN;
565 smp->data.u.str.area = temp->area;
566 smp->data.u.str.data = p - temp->area;
567 smp->data.u.str.size = temp->size;
Willy Tarreau79e57332018-10-02 16:01:16 +0200568 return 1;
569}
570
571/* returns the longest available part of the body. This requires that the body
572 * has been waited for using http-buffer-request.
573 */
574static int smp_fetch_body(const struct arg *args, struct sample *smp, const char *kw, void *private)
575{
Christopher Faulete596d182020-05-05 17:46:34 +0200576 /* possible keywords: req.body, res.body */
577 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200578 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200579 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Willy Tarreau79e57332018-10-02 16:01:16 +0200580 struct buffer *temp;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200581 int32_t pos;
Willy Tarreau79e57332018-10-02 16:01:16 +0200582
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200583 if (!htx)
584 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200585
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200586 temp = get_trash_chunk();
587 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
588 struct htx_blk *blk = htx_get_blk(htx, pos);
589 enum htx_blk_type type = htx_get_blk_type(blk);
Willy Tarreau79e57332018-10-02 16:01:16 +0200590
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200591 if (type == HTX_BLK_EOM || type == HTX_BLK_TLR || type == HTX_BLK_EOT)
592 break;
593 if (type == HTX_BLK_DATA) {
Christopher Faulet53a899b2019-10-08 16:38:42 +0200594 if (!h1_format_htx_data(htx_get_blk_value(htx, blk), temp, 0))
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200595 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200596 }
Willy Tarreau79e57332018-10-02 16:01:16 +0200597 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200598
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200599 smp->data.type = SMP_T_BIN;
600 smp->data.u.str = *temp;
601 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau79e57332018-10-02 16:01:16 +0200602 return 1;
603}
604
605
606/* returns the available length of the body. This requires that the body
607 * has been waited for using http-buffer-request.
608 */
609static int smp_fetch_body_len(const struct arg *args, struct sample *smp, const char *kw, void *private)
610{
Christopher Faulete596d182020-05-05 17:46:34 +0200611 /* possible keywords: req.body_len, res.body_len */
612 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200613 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200614 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200615 int32_t pos;
616 unsigned long long len = 0;
Christopher Fauletc16317d2018-12-12 14:11:22 +0100617
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200618 if (!htx)
619 return 0;
Christopher Fauletc16317d2018-12-12 14:11:22 +0100620
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200621 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
622 struct htx_blk *blk = htx_get_blk(htx, pos);
623 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Fauletc16317d2018-12-12 14:11:22 +0100624
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200625 if (type == HTX_BLK_EOM || type == HTX_BLK_TLR || type == HTX_BLK_EOT)
626 break;
627 if (type == HTX_BLK_DATA)
628 len += htx_get_blksz(blk);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200629 }
Willy Tarreau79e57332018-10-02 16:01:16 +0200630
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200631 smp->data.type = SMP_T_SINT;
632 smp->data.u.sint = len;
633 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau79e57332018-10-02 16:01:16 +0200634 return 1;
635}
636
637
638/* returns the advertised length of the body, or the advertised size of the
639 * chunks available in the buffer. This requires that the body has been waited
640 * for using http-buffer-request.
641 */
642static int smp_fetch_body_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
643{
Christopher Faulete596d182020-05-05 17:46:34 +0200644 /* possible keywords: req.body_size, res.body_size */
645 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200646 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200647 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200648 int32_t pos;
649 unsigned long long len = 0;
Christopher Faulet89dc4992019-04-17 12:02:59 +0200650
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200651 if (!htx)
652 return 0;
Christopher Fauletc16317d2018-12-12 14:11:22 +0100653
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200654 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
655 struct htx_blk *blk = htx_get_blk(htx, pos);
656 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Fauletc16317d2018-12-12 14:11:22 +0100657
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200658 if (type == HTX_BLK_EOM || type == HTX_BLK_TLR || type == HTX_BLK_EOT)
659 break;
660 if (type == HTX_BLK_DATA)
661 len += htx_get_blksz(blk);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200662 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200663 if (htx->extra != ULLONG_MAX)
664 len += htx->extra;
Willy Tarreau79e57332018-10-02 16:01:16 +0200665
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200666 smp->data.type = SMP_T_SINT;
667 smp->data.u.sint = len;
668 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau79e57332018-10-02 16:01:16 +0200669 return 1;
670}
671
672
673/* 4. Check on URL/URI. A pointer to the URI is stored. */
674static int smp_fetch_url(const struct arg *args, struct sample *smp, const char *kw, void *private)
675{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200676 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200677 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200678 struct htx_sl *sl;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200679
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200680 if (!htx)
681 return 0;
682 sl = http_get_stline(htx);
683 smp->data.type = SMP_T_STR;
684 smp->data.u.str.area = HTX_SL_REQ_UPTR(sl);
685 smp->data.u.str.data = HTX_SL_REQ_ULEN(sl);
686 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau79e57332018-10-02 16:01:16 +0200687 return 1;
688}
689
690static int smp_fetch_url_ip(const struct arg *args, struct sample *smp, const char *kw, void *private)
691{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200692 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200693 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200694 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +0200695 struct sockaddr_storage addr;
696
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200697 if (!htx)
698 return 0;
699 sl = http_get_stline(htx);
700 url2sa(HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl), &addr, NULL);
Willy Tarreau79e57332018-10-02 16:01:16 +0200701
Willy Tarreau79e57332018-10-02 16:01:16 +0200702 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
703 return 0;
704
705 smp->data.type = SMP_T_IPV4;
706 smp->data.u.ipv4 = ((struct sockaddr_in *)&addr)->sin_addr;
707 smp->flags = 0;
708 return 1;
709}
710
711static int smp_fetch_url_port(const struct arg *args, struct sample *smp, const char *kw, void *private)
712{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200713 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200714 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200715 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +0200716 struct sockaddr_storage addr;
717
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200718 if (!htx)
719 return 0;
720 sl = http_get_stline(htx);
721 url2sa(HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl), &addr, NULL);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200722
Willy Tarreau79e57332018-10-02 16:01:16 +0200723 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
724 return 0;
725
726 smp->data.type = SMP_T_SINT;
727 smp->data.u.sint = ntohs(((struct sockaddr_in *)&addr)->sin_port);
728 smp->flags = 0;
729 return 1;
730}
731
732/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
733 * Accepts an optional argument of type string containing the header field name,
734 * and an optional argument of type signed or unsigned integer to request an
735 * explicit occurrence of the header. Note that in the event of a missing name,
736 * headers are considered from the first one. It does not stop on commas and
737 * returns full lines instead (useful for User-Agent or Date for example).
738 */
739static int smp_fetch_fhdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
740{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200741 /* possible keywords: req.fhdr, res.fhdr */
742 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200743 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200744 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200745 struct http_hdr_ctx *ctx = smp->ctx.a[0];
746 struct ist name;
Willy Tarreau79e57332018-10-02 16:01:16 +0200747 int occ = 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200748
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200749 if (!ctx) {
750 /* first call */
751 ctx = &static_http_hdr_ctx;
752 ctx->blk = NULL;
753 smp->ctx.a[0] = ctx;
754 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200755
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200756 if (args) {
757 if (args[0].type != ARGT_STR)
Willy Tarreau79e57332018-10-02 16:01:16 +0200758 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200759 name.ptr = args[0].data.str.area;
760 name.len = args[0].data.str.data;
Willy Tarreau79e57332018-10-02 16:01:16 +0200761
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200762 if (args[1].type == ARGT_SINT)
763 occ = args[1].data.sint;
Willy Tarreau79e57332018-10-02 16:01:16 +0200764 }
765
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200766 if (!htx)
767 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200768
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200769 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
770 /* search for header from the beginning */
771 ctx->blk = NULL;
Willy Tarreau79e57332018-10-02 16:01:16 +0200772
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200773 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
774 /* no explicit occurrence and single fetch => last header by default */
775 occ = -1;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200776
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200777 if (!occ)
778 /* prepare to report multiple occurrences for ACL fetches */
779 smp->flags |= SMP_F_NOT_LAST;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200780
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200781 smp->data.type = SMP_T_STR;
782 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
783 if (http_get_htx_fhdr(htx, name, occ, ctx, &smp->data.u.str.area, &smp->data.u.str.data))
784 return 1;
Willy Tarreau79e57332018-10-02 16:01:16 +0200785 smp->flags &= ~SMP_F_NOT_LAST;
786 return 0;
787}
788
789/* 6. Check on HTTP header count. The number of occurrences is returned.
790 * Accepts exactly 1 argument of type string. It does not stop on commas and
791 * returns full lines instead (useful for User-Agent or Date for example).
792 */
793static int smp_fetch_fhdr_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
794{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200795 /* possible keywords: req.fhdr_cnt, res.fhdr_cnt */
796 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200797 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200798 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200799 struct http_hdr_ctx ctx;
800 struct ist name;
Willy Tarreau79e57332018-10-02 16:01:16 +0200801 int cnt;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200802
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200803 if (!htx)
804 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200805
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200806 if (args && args->type == ARGT_STR) {
807 name.ptr = args->data.str.area;
808 name.len = args->data.str.data;
809 } else {
810 name.ptr = NULL;
811 name.len = 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200812 }
Willy Tarreau79e57332018-10-02 16:01:16 +0200813
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200814 ctx.blk = NULL;
815 cnt = 0;
816 while (http_find_header(htx, name, &ctx, 1))
817 cnt++;
Willy Tarreau79e57332018-10-02 16:01:16 +0200818 smp->data.type = SMP_T_SINT;
819 smp->data.u.sint = cnt;
820 smp->flags = SMP_F_VOL_HDR;
821 return 1;
822}
823
824static int smp_fetch_hdr_names(const struct arg *args, struct sample *smp, const char *kw, void *private)
825{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200826 /* possible keywords: req.hdr_names, res.hdr_names */
827 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200828 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200829 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Willy Tarreau79e57332018-10-02 16:01:16 +0200830 struct buffer *temp;
831 char del = ',';
832
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200833 int32_t pos;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200834
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200835 if (!htx)
836 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200837
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200838 if (args && args->type == ARGT_STR)
839 del = *args[0].data.str.area;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200840
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200841 temp = get_trash_chunk();
842 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
843 struct htx_blk *blk = htx_get_blk(htx, pos);
844 enum htx_blk_type type = htx_get_blk_type(blk);
845 struct ist n;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200846
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200847 if (type == HTX_BLK_EOH)
848 break;
849 if (type != HTX_BLK_HDR)
850 continue;
851 n = htx_get_blk_name(htx, blk);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200852
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200853 if (temp->data)
854 temp->area[temp->data++] = del;
855 chunk_memcat(temp, n.ptr, n.len);
Willy Tarreau79e57332018-10-02 16:01:16 +0200856 }
857
858 smp->data.type = SMP_T_STR;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200859 smp->data.u.str = *temp;
Willy Tarreau79e57332018-10-02 16:01:16 +0200860 smp->flags = SMP_F_VOL_HDR;
861 return 1;
862}
863
864/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
865 * Accepts an optional argument of type string containing the header field name,
866 * and an optional argument of type signed or unsigned integer to request an
867 * explicit occurrence of the header. Note that in the event of a missing name,
868 * headers are considered from the first one.
869 */
870static int smp_fetch_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
871{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200872 /* possible keywords: req.hdr / hdr, res.hdr / shdr */
873 struct channel *chn = ((kw[0] == 'h' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200874 struct check *check = ((kw[0] == 's' || kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200875 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200876 struct http_hdr_ctx *ctx = smp->ctx.a[0];
877 struct ist name;
Willy Tarreau79e57332018-10-02 16:01:16 +0200878 int occ = 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200879
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200880 if (!ctx) {
881 /* first call */
882 ctx = &static_http_hdr_ctx;
883 ctx->blk = NULL;
884 smp->ctx.a[0] = ctx;
885 }
Willy Tarreau79e57332018-10-02 16:01:16 +0200886
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200887 if (args) {
888 if (args[0].type != ARGT_STR)
Willy Tarreau79e57332018-10-02 16:01:16 +0200889 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200890 name.ptr = args[0].data.str.area;
891 name.len = args[0].data.str.data;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200892
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200893 if (args[1].type == ARGT_SINT)
894 occ = args[1].data.sint;
Willy Tarreau79e57332018-10-02 16:01:16 +0200895 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200896
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200897 if (!htx)
898 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200899
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200900 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
901 /* search for header from the beginning */
902 ctx->blk = NULL;
Willy Tarreau79e57332018-10-02 16:01:16 +0200903
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200904 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
905 /* no explicit occurrence and single fetch => last header by default */
906 occ = -1;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200907
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200908 if (!occ)
909 /* prepare to report multiple occurrences for ACL fetches */
910 smp->flags |= SMP_F_NOT_LAST;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200911
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200912 smp->data.type = SMP_T_STR;
913 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
914 if (http_get_htx_hdr(htx, name, occ, ctx, &smp->data.u.str.area, &smp->data.u.str.data))
915 return 1;
Willy Tarreau79e57332018-10-02 16:01:16 +0200916
917 smp->flags &= ~SMP_F_NOT_LAST;
918 return 0;
919}
920
Christopher Fauletc1f40dd2019-05-16 10:07:30 +0200921/* Same than smp_fetch_hdr() but only relies on the sample direction to choose
922 * the right channel. So instead of duplicating the code, we just change the
923 * keyword and then fallback on smp_fetch_hdr().
924 */
925static int smp_fetch_chn_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
926{
927 kw = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ ? "req.hdr" : "res.hdr");
928 return smp_fetch_hdr(args, smp, kw, private);
929}
930
Willy Tarreau79e57332018-10-02 16:01:16 +0200931/* 6. Check on HTTP header count. The number of occurrences is returned.
932 * Accepts exactly 1 argument of type string.
933 */
934static int smp_fetch_hdr_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
935{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200936 /* possible keywords: req.hdr_cnt / hdr_cnt, res.hdr_cnt / shdr_cnt */
937 struct channel *chn = ((kw[0] == 'h' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200938 struct check *check = ((kw[0] == 's' || kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200939 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200940 struct http_hdr_ctx ctx;
941 struct ist name;
Willy Tarreau79e57332018-10-02 16:01:16 +0200942 int cnt;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200943
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200944 if (!htx)
945 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200946
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200947 if (args && args->type == ARGT_STR) {
948 name.ptr = args->data.str.area;
949 name.len = args->data.str.data;
950 } else {
951 name.ptr = NULL;
952 name.len = 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200953 }
Willy Tarreau79e57332018-10-02 16:01:16 +0200954
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200955 ctx.blk = NULL;
956 cnt = 0;
957 while (http_find_header(htx, name, &ctx, 0))
958 cnt++;
Willy Tarreau79e57332018-10-02 16:01:16 +0200959
960 smp->data.type = SMP_T_SINT;
961 smp->data.u.sint = cnt;
962 smp->flags = SMP_F_VOL_HDR;
963 return 1;
964}
965
966/* Fetch an HTTP header's integer value. The integer value is returned. It
967 * takes a mandatory argument of type string and an optional one of type int
968 * to designate a specific occurrence. It returns an unsigned integer, which
969 * may or may not be appropriate for everything.
970 */
971static int smp_fetch_hdr_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
972{
973 int ret = smp_fetch_hdr(args, smp, kw, private);
974
975 if (ret > 0) {
976 smp->data.type = SMP_T_SINT;
977 smp->data.u.sint = strl2ic(smp->data.u.str.area,
978 smp->data.u.str.data);
979 }
980
981 return ret;
982}
983
984/* Fetch an HTTP header's IP value. takes a mandatory argument of type string
985 * and an optional one of type int to designate a specific occurrence.
986 * It returns an IPv4 or IPv6 address.
987 */
988static int smp_fetch_hdr_ip(const struct arg *args, struct sample *smp, const char *kw, void *private)
989{
990 int ret;
991
992 while ((ret = smp_fetch_hdr(args, smp, kw, private)) > 0) {
993 if (url2ipv4((char *) smp->data.u.str.area, &smp->data.u.ipv4)) {
994 smp->data.type = SMP_T_IPV4;
995 break;
996 } else {
997 struct buffer *temp = get_trash_chunk();
998 if (smp->data.u.str.data < temp->size - 1) {
999 memcpy(temp->area, smp->data.u.str.area,
1000 smp->data.u.str.data);
1001 temp->area[smp->data.u.str.data] = '\0';
1002 if (inet_pton(AF_INET6, temp->area, &smp->data.u.ipv6)) {
1003 smp->data.type = SMP_T_IPV6;
1004 break;
1005 }
1006 }
1007 }
1008
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001009 /* if the header doesn't match an IP address, fetch next one */
1010 if (!(smp->flags & SMP_F_NOT_LAST))
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001011 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001012 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001013 return ret;
1014}
Willy Tarreau79e57332018-10-02 16:01:16 +02001015
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001016/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
1017 * the first '/' after the possible hostname, and ends before the possible '?'.
1018 */
1019static int smp_fetch_path(const struct arg *args, struct sample *smp, const char *kw, void *private)
1020{
1021 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001022 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001023 struct htx_sl *sl;
1024 struct ist path;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001025
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001026 if (!htx)
1027 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001028
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001029 sl = http_get_stline(htx);
Jerome Magnin4fb196c2020-02-21 10:49:12 +01001030 path = iststop(http_get_path(htx_sl_req_uri(sl)), '?');
Tim Duesterhused526372020-03-05 17:56:33 +01001031 if (!isttest(path))
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001032 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001033
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001034 /* OK, we got the '/' ! */
1035 smp->data.type = SMP_T_STR;
1036 smp->data.u.str.area = path.ptr;
Jerome Magnin4fb196c2020-02-21 10:49:12 +01001037 smp->data.u.str.data = path.len;
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001038 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau79e57332018-10-02 16:01:16 +02001039 return 1;
1040}
1041
1042/* This produces a concatenation of the first occurrence of the Host header
1043 * followed by the path component if it begins with a slash ('/'). This means
1044 * that '*' will not be added, resulting in exactly the first Host entry.
1045 * If no Host header is found, then the path is returned as-is. The returned
1046 * value is stored in the trash so it does not need to be marked constant.
1047 * The returned sample is of type string.
1048 */
1049static int smp_fetch_base(const struct arg *args, struct sample *smp, const char *kw, void *private)
1050{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001051 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001052 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001053 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +02001054 struct buffer *temp;
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001055 struct http_hdr_ctx ctx;
1056 struct ist path;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001057
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001058 if (!htx)
1059 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001060
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001061 ctx.blk = NULL;
1062 if (!http_find_header(htx, ist("Host"), &ctx, 0) || !ctx.value.len)
1063 return smp_fetch_path(args, smp, kw, private);
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001064
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001065 /* OK we have the header value in ctx.value */
1066 temp = get_trash_chunk();
1067 chunk_memcat(temp, ctx.value.ptr, ctx.value.len);
Willy Tarreau79e57332018-10-02 16:01:16 +02001068
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001069 /* now retrieve the path */
1070 sl = http_get_stline(htx);
1071 path = http_get_path(htx_sl_req_uri(sl));
Tim Duesterhused526372020-03-05 17:56:33 +01001072 if (isttest(path)) {
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001073 size_t len;
Willy Tarreau79e57332018-10-02 16:01:16 +02001074
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001075 for (len = 0; len < path.len && *(path.ptr + len) != '?'; len++)
1076 ;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001077
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001078 if (len && *(path.ptr) == '/')
1079 chunk_memcat(temp, path.ptr, len);
Willy Tarreau79e57332018-10-02 16:01:16 +02001080 }
1081
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001082 smp->data.type = SMP_T_STR;
1083 smp->data.u.str = *temp;
Willy Tarreau79e57332018-10-02 16:01:16 +02001084 smp->flags = SMP_F_VOL_1ST;
1085 return 1;
1086}
1087
1088/* This produces a 32-bit hash of the concatenation of the first occurrence of
1089 * the Host header followed by the path component if it begins with a slash ('/').
1090 * This means that '*' will not be added, resulting in exactly the first Host
1091 * entry. If no Host header is found, then the path is used. The resulting value
1092 * is hashed using the path hash followed by a full avalanche hash and provides a
1093 * 32-bit integer value. This fetch is useful for tracking per-path activity on
1094 * high-traffic sites without having to store whole paths.
1095 */
1096static int smp_fetch_base32(const struct arg *args, struct sample *smp, const char *kw, void *private)
1097{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001098 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001099 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001100 struct htx_sl *sl;
1101 struct http_hdr_ctx ctx;
1102 struct ist path;
Willy Tarreau79e57332018-10-02 16:01:16 +02001103 unsigned int hash = 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001104
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001105 if (!htx)
1106 return 0;
Dragan Dosen8861e1c2019-02-12 19:50:31 +01001107
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001108 ctx.blk = NULL;
1109 if (http_find_header(htx, ist("Host"), &ctx, 0)) {
1110 /* OK we have the header value in ctx.value */
1111 while (ctx.value.len--)
1112 hash = *(ctx.value.ptr++) + (hash << 6) + (hash << 16) - hash;
Willy Tarreau79e57332018-10-02 16:01:16 +02001113 }
1114
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001115 /* now retrieve the path */
1116 sl = http_get_stline(htx);
1117 path = http_get_path(htx_sl_req_uri(sl));
Tim Duesterhused526372020-03-05 17:56:33 +01001118 if (isttest(path)) {
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001119 size_t len;
Willy Tarreau79e57332018-10-02 16:01:16 +02001120
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001121 for (len = 0; len < path.len && *(path.ptr + len) != '?'; len++)
1122 ;
Willy Tarreau79e57332018-10-02 16:01:16 +02001123
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001124 if (len && *(path.ptr) == '/') {
1125 while (len--)
1126 hash = *(path.ptr++) + (hash << 6) + (hash << 16) - hash;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001127 }
Willy Tarreau79e57332018-10-02 16:01:16 +02001128 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001129
Willy Tarreau79e57332018-10-02 16:01:16 +02001130 hash = full_hash(hash);
1131
1132 smp->data.type = SMP_T_SINT;
1133 smp->data.u.sint = hash;
1134 smp->flags = SMP_F_VOL_1ST;
1135 return 1;
1136}
1137
1138/* This concatenates the source address with the 32-bit hash of the Host and
1139 * path as returned by smp_fetch_base32(). The idea is to have per-source and
1140 * per-path counters. The result is a binary block from 8 to 20 bytes depending
1141 * on the source address length. The path hash is stored before the address so
1142 * that in environments where IPv6 is insignificant, truncating the output to
1143 * 8 bytes would still work.
1144 */
1145static int smp_fetch_base32_src(const struct arg *args, struct sample *smp, const char *kw, void *private)
1146{
1147 struct buffer *temp;
1148 struct connection *cli_conn = objt_conn(smp->sess->origin);
1149
Willy Tarreaucd7ca792019-07-17 16:57:03 +02001150 if (!cli_conn || !conn_get_src(cli_conn))
Willy Tarreau79e57332018-10-02 16:01:16 +02001151 return 0;
1152
1153 if (!smp_fetch_base32(args, smp, kw, private))
1154 return 0;
1155
1156 temp = get_trash_chunk();
1157 *(unsigned int *) temp->area = htonl(smp->data.u.sint);
1158 temp->data += sizeof(unsigned int);
1159
Willy Tarreau9a1efe12019-07-17 17:13:50 +02001160 switch (cli_conn->src->ss_family) {
Willy Tarreau79e57332018-10-02 16:01:16 +02001161 case AF_INET:
1162 memcpy(temp->area + temp->data,
Willy Tarreau9a1efe12019-07-17 17:13:50 +02001163 &((struct sockaddr_in *)cli_conn->src)->sin_addr,
Willy Tarreau79e57332018-10-02 16:01:16 +02001164 4);
1165 temp->data += 4;
1166 break;
1167 case AF_INET6:
1168 memcpy(temp->area + temp->data,
Willy Tarreau9a1efe12019-07-17 17:13:50 +02001169 &((struct sockaddr_in6 *)cli_conn->src)->sin6_addr,
Willy Tarreau79e57332018-10-02 16:01:16 +02001170 16);
1171 temp->data += 16;
1172 break;
1173 default:
1174 return 0;
1175 }
1176
1177 smp->data.u.str = *temp;
1178 smp->data.type = SMP_T_BIN;
1179 return 1;
1180}
1181
1182/* Extracts the query string, which comes after the question mark '?'. If no
1183 * question mark is found, nothing is returned. Otherwise it returns a sample
1184 * of type string carrying the whole query string.
1185 */
1186static int smp_fetch_query(const struct arg *args, struct sample *smp, const char *kw, void *private)
1187{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001188 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001189 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001190 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +02001191 char *ptr, *end;
1192
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001193 if (!htx)
1194 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001195
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001196 sl = http_get_stline(htx);
1197 ptr = HTX_SL_REQ_UPTR(sl);
1198 end = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +02001199
1200 /* look up the '?' */
1201 do {
1202 if (ptr == end)
1203 return 0;
1204 } while (*ptr++ != '?');
1205
1206 smp->data.type = SMP_T_STR;
1207 smp->data.u.str.area = ptr;
1208 smp->data.u.str.data = end - ptr;
1209 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
1210 return 1;
1211}
1212
1213static int smp_fetch_proto_http(const struct arg *args, struct sample *smp, const char *kw, void *private)
1214{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001215 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001216 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 0);
Willy Tarreau79e57332018-10-02 16:01:16 +02001217
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001218 if (!htx)
1219 return 0;
1220 smp->data.type = SMP_T_BOOL;
Willy Tarreau79e57332018-10-02 16:01:16 +02001221 smp->data.u.sint = 1;
1222 return 1;
1223}
1224
1225/* return a valid test if the current request is the first one on the connection */
1226static int smp_fetch_http_first_req(const struct arg *args, struct sample *smp, const char *kw, void *private)
1227{
Willy Tarreau79512b62020-04-29 11:52:13 +02001228 if (!smp->strm)
1229 return 0;
1230
Willy Tarreau79e57332018-10-02 16:01:16 +02001231 smp->data.type = SMP_T_BOOL;
1232 smp->data.u.sint = !(smp->strm->txn->flags & TX_NOT_FIRST);
1233 return 1;
1234}
1235
Christopher Fauleta4063562019-08-02 11:51:37 +02001236/* Fetch the authentication method if there is an Authorization header. It
1237 * relies on get_http_auth()
1238 */
1239static int smp_fetch_http_auth_type(const struct arg *args, struct sample *smp, const char *kw, void *private)
1240{
1241 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001242 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Fauleta4063562019-08-02 11:51:37 +02001243 struct http_txn *txn;
1244
1245 if (!htx)
1246 return 0;
1247
1248 txn = smp->strm->txn;
1249 if (!get_http_auth(smp, htx))
1250 return 0;
1251
1252 switch (txn->auth.method) {
1253 case HTTP_AUTH_BASIC:
1254 smp->data.u.str.area = "Basic";
1255 smp->data.u.str.data = 5;
1256 break;
1257 case HTTP_AUTH_DIGEST:
1258 /* Unexpected because not supported */
1259 smp->data.u.str.area = "Digest";
1260 smp->data.u.str.data = 6;
1261 break;
1262 default:
1263 return 0;
1264 }
1265
1266 smp->data.type = SMP_T_STR;
1267 smp->flags = SMP_F_CONST;
1268 return 1;
1269}
1270
1271/* Fetch the user supplied if there is an Authorization header. It relies on
1272 * get_http_auth()
1273 */
1274static int smp_fetch_http_auth_user(const struct arg *args, struct sample *smp, const char *kw, void *private)
1275{
1276 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001277 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Fauleta4063562019-08-02 11:51:37 +02001278 struct http_txn *txn;
1279
1280 if (!htx)
1281 return 0;
1282
1283 txn = smp->strm->txn;
1284 if (!get_http_auth(smp, htx))
1285 return 0;
1286
1287 smp->data.type = SMP_T_STR;
1288 smp->data.u.str.area = txn->auth.user;
1289 smp->data.u.str.data = strlen(txn->auth.user);
1290 smp->flags = SMP_F_CONST;
1291 return 1;
1292}
1293
1294/* Fetch the password supplied if there is an Authorization header. It relies on
1295 * get_http_auth()
1296 */
1297static int smp_fetch_http_auth_pass(const struct arg *args, struct sample *smp, const char *kw, void *private)
1298{
1299 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001300 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Fauleta4063562019-08-02 11:51:37 +02001301 struct http_txn *txn;
1302
1303 if (!htx)
1304 return 0;
1305
1306 txn = smp->strm->txn;
1307 if (!get_http_auth(smp, htx))
1308 return 0;
1309
1310 smp->data.type = SMP_T_STR;
1311 smp->data.u.str.area = txn->auth.pass;
1312 smp->data.u.str.data = strlen(txn->auth.pass);
1313 smp->flags = SMP_F_CONST;
1314 return 1;
1315}
1316
Willy Tarreau79e57332018-10-02 16:01:16 +02001317/* Accepts exactly 1 argument of type userlist */
1318static int smp_fetch_http_auth(const struct arg *args, struct sample *smp, const char *kw, void *private)
1319{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001320 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001321 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Willy Tarreau79e57332018-10-02 16:01:16 +02001322
1323 if (!args || args->type != ARGT_USR)
1324 return 0;
1325
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001326 if (!htx)
1327 return 0;
1328 if (!get_http_auth(smp, htx))
1329 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001330
1331 smp->data.type = SMP_T_BOOL;
1332 smp->data.u.sint = check_user(args->data.usr, smp->strm->txn->auth.user,
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001333 smp->strm->txn->auth.pass);
Willy Tarreau79e57332018-10-02 16:01:16 +02001334 return 1;
1335}
1336
1337/* Accepts exactly 1 argument of type userlist */
1338static int smp_fetch_http_auth_grp(const struct arg *args, struct sample *smp, const char *kw, void *private)
1339{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001340 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001341 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet89dc4992019-04-17 12:02:59 +02001342
Willy Tarreau79e57332018-10-02 16:01:16 +02001343 if (!args || args->type != ARGT_USR)
1344 return 0;
1345
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001346 if (!htx)
1347 return 0;
1348 if (!get_http_auth(smp, htx))
1349 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001350
Willy Tarreau79e57332018-10-02 16:01:16 +02001351 /* if the user does not belong to the userlist or has a wrong password,
1352 * report that it unconditionally does not match. Otherwise we return
1353 * a string containing the username.
1354 */
1355 if (!check_user(args->data.usr, smp->strm->txn->auth.user,
1356 smp->strm->txn->auth.pass))
1357 return 0;
1358
1359 /* pat_match_auth() will need the user list */
1360 smp->ctx.a[0] = args->data.usr;
1361
1362 smp->data.type = SMP_T_STR;
1363 smp->flags = SMP_F_CONST;
1364 smp->data.u.str.area = smp->strm->txn->auth.user;
1365 smp->data.u.str.data = strlen(smp->strm->txn->auth.user);
1366
1367 return 1;
1368}
1369
1370/* Fetch a captured HTTP request header. The index is the position of
1371 * the "capture" option in the configuration file
1372 */
1373static int smp_fetch_capture_req_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
1374{
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001375 struct proxy *fe;
Willy Tarreau79e57332018-10-02 16:01:16 +02001376 int idx;
1377
1378 if (!args || args->type != ARGT_SINT)
1379 return 0;
1380
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001381 if (!smp->strm)
1382 return 0;
1383
1384 fe = strm_fe(smp->strm);
Willy Tarreau79e57332018-10-02 16:01:16 +02001385 idx = args->data.sint;
1386
1387 if (idx > (fe->nb_req_cap - 1) || smp->strm->req_cap == NULL || smp->strm->req_cap[idx] == NULL)
1388 return 0;
1389
1390 smp->data.type = SMP_T_STR;
1391 smp->flags |= SMP_F_CONST;
1392 smp->data.u.str.area = smp->strm->req_cap[idx];
1393 smp->data.u.str.data = strlen(smp->strm->req_cap[idx]);
1394
1395 return 1;
1396}
1397
1398/* Fetch a captured HTTP response header. The index is the position of
1399 * the "capture" option in the configuration file
1400 */
1401static int smp_fetch_capture_res_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
1402{
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001403 struct proxy *fe;
Willy Tarreau79e57332018-10-02 16:01:16 +02001404 int idx;
1405
1406 if (!args || args->type != ARGT_SINT)
1407 return 0;
1408
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001409 if (!smp->strm)
1410 return 0;
1411
1412 fe = strm_fe(smp->strm);
Willy Tarreau79e57332018-10-02 16:01:16 +02001413 idx = args->data.sint;
1414
1415 if (idx > (fe->nb_rsp_cap - 1) || smp->strm->res_cap == NULL || smp->strm->res_cap[idx] == NULL)
1416 return 0;
1417
1418 smp->data.type = SMP_T_STR;
1419 smp->flags |= SMP_F_CONST;
1420 smp->data.u.str.area = smp->strm->res_cap[idx];
1421 smp->data.u.str.data = strlen(smp->strm->res_cap[idx]);
1422
1423 return 1;
1424}
1425
1426/* Extracts the METHOD in the HTTP request, the txn->uri should be filled before the call */
1427static int smp_fetch_capture_req_method(const struct arg *args, struct sample *smp, const char *kw, void *private)
1428{
1429 struct buffer *temp;
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001430 struct http_txn *txn;
Willy Tarreau79e57332018-10-02 16:01:16 +02001431 char *ptr;
1432
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001433 if (!smp->strm)
1434 return 0;
1435
1436 txn = smp->strm->txn;
Willy Tarreau79e57332018-10-02 16:01:16 +02001437 if (!txn || !txn->uri)
1438 return 0;
1439
1440 ptr = txn->uri;
1441
1442 while (*ptr != ' ' && *ptr != '\0') /* find first space */
1443 ptr++;
1444
1445 temp = get_trash_chunk();
1446 temp->area = txn->uri;
1447 temp->data = ptr - txn->uri;
1448 smp->data.u.str = *temp;
1449 smp->data.type = SMP_T_STR;
1450 smp->flags = SMP_F_CONST;
1451
1452 return 1;
1453
1454}
1455
1456/* Extracts the path in the HTTP request, the txn->uri should be filled before the call */
1457static int smp_fetch_capture_req_uri(const struct arg *args, struct sample *smp, const char *kw, void *private)
1458{
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001459 struct http_txn *txn;
Willy Tarreau79e57332018-10-02 16:01:16 +02001460 struct ist path;
1461 const char *ptr;
1462
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001463 if (!smp->strm)
1464 return 0;
1465
1466 txn = smp->strm->txn;
Willy Tarreau79e57332018-10-02 16:01:16 +02001467 if (!txn || !txn->uri)
1468 return 0;
1469
1470 ptr = txn->uri;
1471
1472 while (*ptr != ' ' && *ptr != '\0') /* find first space */
1473 ptr++;
1474
1475 if (!*ptr)
1476 return 0;
1477
Christopher Faulet78337bb2018-11-15 14:35:18 +01001478 /* skip the first space and find space after URI */
1479 path = ist2(++ptr, 0);
1480 while (*ptr != ' ' && *ptr != '\0')
1481 ptr++;
1482 path.len = ptr - path.ptr;
Willy Tarreau79e57332018-10-02 16:01:16 +02001483
Christopher Faulet78337bb2018-11-15 14:35:18 +01001484 path = http_get_path(path);
Tim Duesterhused526372020-03-05 17:56:33 +01001485 if (!isttest(path))
Willy Tarreau79e57332018-10-02 16:01:16 +02001486 return 0;
1487
1488 smp->data.u.str.area = path.ptr;
1489 smp->data.u.str.data = path.len;
1490 smp->data.type = SMP_T_STR;
1491 smp->flags = SMP_F_CONST;
1492
1493 return 1;
1494}
1495
1496/* Retrieves the HTTP version from the request (either 1.0 or 1.1) and emits it
1497 * as a string (either "HTTP/1.0" or "HTTP/1.1").
1498 */
1499static int smp_fetch_capture_req_ver(const struct arg *args, struct sample *smp, const char *kw, void *private)
1500{
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001501 struct http_txn *txn;
1502
1503 if (!smp->strm)
1504 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001505
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001506 txn = smp->strm->txn;
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001507 if (!txn || txn->req.msg_state >= HTTP_MSG_BODY)
Willy Tarreau79e57332018-10-02 16:01:16 +02001508 return 0;
1509
1510 if (txn->req.flags & HTTP_MSGF_VER_11)
1511 smp->data.u.str.area = "HTTP/1.1";
1512 else
1513 smp->data.u.str.area = "HTTP/1.0";
1514
1515 smp->data.u.str.data = 8;
1516 smp->data.type = SMP_T_STR;
1517 smp->flags = SMP_F_CONST;
1518 return 1;
1519
1520}
1521
1522/* Retrieves the HTTP version from the response (either 1.0 or 1.1) and emits it
1523 * as a string (either "HTTP/1.0" or "HTTP/1.1").
1524 */
1525static int smp_fetch_capture_res_ver(const struct arg *args, struct sample *smp, const char *kw, void *private)
1526{
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001527 struct http_txn *txn;
1528
1529 if (!smp->strm)
1530 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001531
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001532 txn = smp->strm->txn;
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001533 if (!txn || txn->rsp.msg_state >= HTTP_MSG_BODY)
Willy Tarreau79e57332018-10-02 16:01:16 +02001534 return 0;
1535
1536 if (txn->rsp.flags & HTTP_MSGF_VER_11)
1537 smp->data.u.str.area = "HTTP/1.1";
1538 else
1539 smp->data.u.str.area = "HTTP/1.0";
1540
1541 smp->data.u.str.data = 8;
1542 smp->data.type = SMP_T_STR;
1543 smp->flags = SMP_F_CONST;
1544 return 1;
1545
1546}
1547
1548/* Iterate over all cookies present in a message. The context is stored in
1549 * smp->ctx.a[0] for the in-header position, smp->ctx.a[1] for the
1550 * end-of-header-value, and smp->ctx.a[2] for the hdr_ctx. Depending on
1551 * the direction, multiple cookies may be parsed on the same line or not.
1552 * The cookie name is in args and the name length in args->data.str.len.
1553 * Accepts exactly 1 argument of type string. If the input options indicate
1554 * that no iterating is desired, then only last value is fetched if any.
1555 * The returned sample is of type CSTR. Can be used to parse cookies in other
1556 * files.
1557 */
1558static int smp_fetch_cookie(const struct arg *args, struct sample *smp, const char *kw, void *private)
1559{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001560 /* possible keywords: req.cookie / cookie / cook, res.cookie / scook / set-cookie */
1561 struct channel *chn = ((kw[0] == 'c' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +02001562 struct check *check = ((kw[0] == 's' || kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +02001563 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001564 struct http_hdr_ctx *ctx = smp->ctx.a[2];
1565 struct ist hdr;
Willy Tarreau79e57332018-10-02 16:01:16 +02001566 int occ = 0;
1567 int found = 0;
1568
1569 if (!args || args->type != ARGT_STR)
1570 return 0;
1571
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001572 if (!ctx) {
1573 /* first call */
1574 ctx = &static_http_hdr_ctx;
1575 ctx->blk = NULL;
1576 smp->ctx.a[2] = ctx;
1577 }
Willy Tarreau79e57332018-10-02 16:01:16 +02001578
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001579 if (!htx)
1580 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001581
Christopher Faulet16032ab2020-04-30 11:30:00 +02001582 hdr = (!(check || (chn && chn->flags & CF_ISRESP)) ? ist("Cookie") : ist("Set-Cookie"));
Willy Tarreau79e57332018-10-02 16:01:16 +02001583
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001584 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
1585 /* no explicit occurrence and single fetch => last cookie by default */
1586 occ = -1;
Willy Tarreau79e57332018-10-02 16:01:16 +02001587
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001588 /* OK so basically here, either we want only one value and it's the
1589 * last one, or we want to iterate over all of them and we fetch the
1590 * next one.
1591 */
Willy Tarreau79e57332018-10-02 16:01:16 +02001592
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001593 if (!(smp->flags & SMP_F_NOT_LAST)) {
1594 /* search for the header from the beginning, we must first initialize
1595 * the search parameters.
Willy Tarreau79e57332018-10-02 16:01:16 +02001596 */
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001597 smp->ctx.a[0] = NULL;
1598 ctx->blk = NULL;
Willy Tarreau79e57332018-10-02 16:01:16 +02001599 }
Willy Tarreau79e57332018-10-02 16:01:16 +02001600
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001601 smp->flags |= SMP_F_VOL_HDR;
1602 while (1) {
1603 /* Note: smp->ctx.a[0] == NULL every time we need to fetch a new header */
1604 if (!smp->ctx.a[0]) {
1605 if (!http_find_header(htx, hdr, ctx, 0))
1606 goto out;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001607
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001608 if (ctx->value.len < args->data.str.data + 1)
1609 continue;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001610
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001611 smp->ctx.a[0] = ctx->value.ptr;
1612 smp->ctx.a[1] = smp->ctx.a[0] + ctx->value.len;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001613 }
1614
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001615 smp->data.type = SMP_T_STR;
1616 smp->flags |= SMP_F_CONST;
1617 smp->ctx.a[0] = http_extract_cookie_value(smp->ctx.a[0], smp->ctx.a[1],
1618 args->data.str.area, args->data.str.data,
1619 (smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
1620 &smp->data.u.str.area,
1621 &smp->data.u.str.data);
1622 if (smp->ctx.a[0]) {
1623 found = 1;
1624 if (occ >= 0) {
1625 /* one value was returned into smp->data.u.str.{str,len} */
1626 smp->flags |= SMP_F_NOT_LAST;
1627 return 1;
Willy Tarreau79e57332018-10-02 16:01:16 +02001628 }
1629 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001630 /* if we're looking for last occurrence, let's loop */
Willy Tarreau79e57332018-10-02 16:01:16 +02001631 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001632
Willy Tarreau79e57332018-10-02 16:01:16 +02001633 /* all cookie headers and values were scanned. If we're looking for the
1634 * last occurrence, we may return it now.
1635 */
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001636 out:
Willy Tarreau79e57332018-10-02 16:01:16 +02001637 smp->flags &= ~SMP_F_NOT_LAST;
1638 return found;
1639}
1640
Christopher Fauletc1f40dd2019-05-16 10:07:30 +02001641/* Same than smp_fetch_cookie() but only relies on the sample direction to
1642 * choose the right channel. So instead of duplicating the code, we just change
1643 * the keyword and then fallback on smp_fetch_cookie().
1644 */
1645static int smp_fetch_chn_cookie(const struct arg *args, struct sample *smp, const char *kw, void *private)
1646{
1647 kw = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ ? "req.cook" : "res.cook");
1648 return smp_fetch_cookie(args, smp, kw, private);
1649}
1650
Willy Tarreau79e57332018-10-02 16:01:16 +02001651/* Iterate over all cookies present in a request to count how many occurrences
1652 * match the name in args and args->data.str.len. If <multi> is non-null, then
1653 * multiple cookies may be parsed on the same line. The returned sample is of
1654 * type UINT. Accepts exactly 1 argument of type string.
1655 */
1656static int smp_fetch_cookie_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
1657{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001658 /* possible keywords: req.cook_cnt / cook_cnt, res.cook_cnt / scook_cnt */
1659 struct channel *chn = ((kw[0] == 'c' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +02001660 struct check *check = ((kw[0] == 's' || kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +02001661 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001662 struct http_hdr_ctx ctx;
1663 struct ist hdr;
Willy Tarreau79e57332018-10-02 16:01:16 +02001664 char *val_beg, *val_end;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001665 int cnt;
Willy Tarreau79e57332018-10-02 16:01:16 +02001666
1667 if (!args || args->type != ARGT_STR)
1668 return 0;
1669
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001670 if (!htx)
1671 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001672
Christopher Faulet16032ab2020-04-30 11:30:00 +02001673 hdr = (!(check || (chn && chn->flags & CF_ISRESP)) ? ist("Cookie") : ist("Set-Cookie"));
Willy Tarreau79e57332018-10-02 16:01:16 +02001674
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001675 val_end = val_beg = NULL;
1676 ctx.blk = NULL;
1677 cnt = 0;
1678 while (1) {
1679 /* Note: val_beg == NULL every time we need to fetch a new header */
1680 if (!val_beg) {
1681 if (!http_find_header(htx, hdr, &ctx, 0))
1682 break;
Willy Tarreau79e57332018-10-02 16:01:16 +02001683
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001684 if (ctx.value.len < args->data.str.data + 1)
1685 continue;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001686
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001687 val_beg = ctx.value.ptr;
1688 val_end = val_beg + ctx.value.len;
Willy Tarreau79e57332018-10-02 16:01:16 +02001689 }
1690
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001691 smp->data.type = SMP_T_STR;
1692 smp->flags |= SMP_F_CONST;
1693 while ((val_beg = http_extract_cookie_value(val_beg, val_end,
1694 args->data.str.area, args->data.str.data,
1695 (smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
1696 &smp->data.u.str.area,
1697 &smp->data.u.str.data))) {
1698 cnt++;
Willy Tarreau79e57332018-10-02 16:01:16 +02001699 }
1700 }
1701
1702 smp->data.type = SMP_T_SINT;
1703 smp->data.u.sint = cnt;
1704 smp->flags |= SMP_F_VOL_HDR;
1705 return 1;
1706}
1707
1708/* Fetch an cookie's integer value. The integer value is returned. It
1709 * takes a mandatory argument of type string. It relies on smp_fetch_cookie().
1710 */
1711static int smp_fetch_cookie_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
1712{
1713 int ret = smp_fetch_cookie(args, smp, kw, private);
1714
1715 if (ret > 0) {
1716 smp->data.type = SMP_T_SINT;
1717 smp->data.u.sint = strl2ic(smp->data.u.str.area,
1718 smp->data.u.str.data);
1719 }
1720
1721 return ret;
1722}
1723
1724/************************************************************************/
1725/* The code below is dedicated to sample fetches */
1726/************************************************************************/
1727
1728/* This scans a URL-encoded query string. It takes an optionally wrapping
1729 * string whose first contigous chunk has its beginning in ctx->a[0] and end
1730 * in ctx->a[1], and the optional second part in (ctx->a[2]..ctx->a[3]). The
1731 * pointers are updated for next iteration before leaving.
1732 */
1733static int smp_fetch_param(char delim, const char *name, int name_len, const struct arg *args, struct sample *smp, const char *kw, void *private)
1734{
1735 const char *vstart, *vend;
1736 struct buffer *temp;
1737 const char **chunks = (const char **)smp->ctx.a;
1738
1739 if (!http_find_next_url_param(chunks, name, name_len,
1740 &vstart, &vend, delim))
1741 return 0;
1742
1743 /* Create sample. If the value is contiguous, return the pointer as CONST,
1744 * if the value is wrapped, copy-it in a buffer.
1745 */
1746 smp->data.type = SMP_T_STR;
1747 if (chunks[2] &&
1748 vstart >= chunks[0] && vstart <= chunks[1] &&
1749 vend >= chunks[2] && vend <= chunks[3]) {
1750 /* Wrapped case. */
1751 temp = get_trash_chunk();
1752 memcpy(temp->area, vstart, chunks[1] - vstart);
1753 memcpy(temp->area + ( chunks[1] - vstart ), chunks[2],
1754 vend - chunks[2]);
1755 smp->data.u.str.area = temp->area;
1756 smp->data.u.str.data = ( chunks[1] - vstart ) + ( vend - chunks[2] );
1757 } else {
1758 /* Contiguous case. */
1759 smp->data.u.str.area = (char *)vstart;
1760 smp->data.u.str.data = vend - vstart;
1761 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
1762 }
1763
1764 /* Update context, check wrapping. */
1765 chunks[0] = vend;
1766 if (chunks[2] && vend >= chunks[2] && vend <= chunks[3]) {
1767 chunks[1] = chunks[3];
1768 chunks[2] = NULL;
1769 }
1770
1771 if (chunks[0] < chunks[1])
1772 smp->flags |= SMP_F_NOT_LAST;
1773
1774 return 1;
1775}
1776
1777/* This function iterates over each parameter of the query string. It uses
1778 * ctx->a[0] and ctx->a[1] to store the beginning and end of the current
1779 * parameter. Since it uses smp_fetch_param(), ctx->a[2..3] are both NULL.
1780 * An optional parameter name is passed in args[0], otherwise any parameter is
1781 * considered. It supports an optional delimiter argument for the beginning of
1782 * the string in args[1], which defaults to "?".
1783 */
1784static int smp_fetch_url_param(const struct arg *args, struct sample *smp, const char *kw, void *private)
1785{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001786 struct channel *chn = SMP_REQ_CHN(smp);
Willy Tarreau79e57332018-10-02 16:01:16 +02001787 char delim = '?';
1788 const char *name;
1789 int name_len;
1790
1791 if (!args ||
1792 (args[0].type && args[0].type != ARGT_STR) ||
1793 (args[1].type && args[1].type != ARGT_STR))
1794 return 0;
1795
1796 name = "";
1797 name_len = 0;
1798 if (args->type == ARGT_STR) {
1799 name = args->data.str.area;
1800 name_len = args->data.str.data;
1801 }
1802
1803 if (args[1].type)
1804 delim = *args[1].data.str.area;
1805
1806 if (!smp->ctx.a[0]) { // first call, find the query string
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001807 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001808 struct htx_sl *sl;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001809
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001810 if (!htx)
1811 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001812
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001813 sl = http_get_stline(htx);
1814 smp->ctx.a[0] = http_find_param_list(HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl), delim);
1815 if (!smp->ctx.a[0])
1816 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001817
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001818 smp->ctx.a[1] = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +02001819
1820 /* Assume that the context is filled with NULL pointer
1821 * before the first call.
1822 * smp->ctx.a[2] = NULL;
1823 * smp->ctx.a[3] = NULL;
1824 */
1825 }
1826
1827 return smp_fetch_param(delim, name, name_len, args, smp, kw, private);
1828}
1829
1830/* This function iterates over each parameter of the body. This requires
1831 * that the body has been waited for using http-buffer-request. It uses
1832 * ctx->a[0] and ctx->a[1] to store the beginning and end of the first
1833 * contigous part of the body, and optionally ctx->a[2..3] to reference the
1834 * optional second part if the body wraps at the end of the buffer. An optional
1835 * parameter name is passed in args[0], otherwise any parameter is considered.
1836 */
1837static int smp_fetch_body_param(const struct arg *args, struct sample *smp, const char *kw, void *private)
1838{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001839 struct channel *chn = SMP_REQ_CHN(smp);
Willy Tarreau79e57332018-10-02 16:01:16 +02001840 const char *name;
1841 int name_len;
1842
1843 if (!args || (args[0].type && args[0].type != ARGT_STR))
1844 return 0;
1845
1846 name = "";
1847 name_len = 0;
1848 if (args[0].type == ARGT_STR) {
1849 name = args[0].data.str.area;
1850 name_len = args[0].data.str.data;
1851 }
1852
1853 if (!smp->ctx.a[0]) { // first call, find the query string
Christopher Faulete596d182020-05-05 17:46:34 +02001854 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001855 struct buffer *temp;
1856 int32_t pos;
Willy Tarreau79e57332018-10-02 16:01:16 +02001857
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001858 if (!htx)
1859 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001860
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001861 temp = get_trash_chunk();
1862 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
1863 struct htx_blk *blk = htx_get_blk(htx, pos);
1864 enum htx_blk_type type = htx_get_blk_type(blk);
Willy Tarreau79e57332018-10-02 16:01:16 +02001865
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001866 if (type == HTX_BLK_EOM || type == HTX_BLK_TLR || type == HTX_BLK_EOT)
1867 break;
1868 if (type == HTX_BLK_DATA) {
Christopher Faulet53a899b2019-10-08 16:38:42 +02001869 if (!h1_format_htx_data(htx_get_blk_value(htx, blk), temp, 0))
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001870 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001871 }
Willy Tarreau79e57332018-10-02 16:01:16 +02001872 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001873
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001874 smp->ctx.a[0] = temp->area;
1875 smp->ctx.a[1] = temp->area + temp->data;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001876
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001877 /* Assume that the context is filled with NULL pointer
1878 * before the first call.
1879 * smp->ctx.a[2] = NULL;
1880 * smp->ctx.a[3] = NULL;
1881 */
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001882
Willy Tarreau79e57332018-10-02 16:01:16 +02001883 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001884
Willy Tarreau79e57332018-10-02 16:01:16 +02001885 return smp_fetch_param('&', name, name_len, args, smp, kw, private);
1886}
1887
1888/* Return the signed integer value for the specified url parameter (see url_param
1889 * above).
1890 */
1891static int smp_fetch_url_param_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
1892{
1893 int ret = smp_fetch_url_param(args, smp, kw, private);
1894
1895 if (ret > 0) {
1896 smp->data.type = SMP_T_SINT;
1897 smp->data.u.sint = strl2ic(smp->data.u.str.area,
1898 smp->data.u.str.data);
1899 }
1900
1901 return ret;
1902}
1903
1904/* This produces a 32-bit hash of the concatenation of the first occurrence of
1905 * the Host header followed by the path component if it begins with a slash ('/').
1906 * This means that '*' will not be added, resulting in exactly the first Host
1907 * entry. If no Host header is found, then the path is used. The resulting value
1908 * is hashed using the url hash followed by a full avalanche hash and provides a
1909 * 32-bit integer value. This fetch is useful for tracking per-URL activity on
1910 * high-traffic sites without having to store whole paths.
1911 * this differs from the base32 functions in that it includes the url parameters
1912 * as well as the path
1913 */
1914static int smp_fetch_url32(const struct arg *args, struct sample *smp, const char *kw, void *private)
1915{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001916 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001917 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001918 struct http_hdr_ctx ctx;
1919 struct htx_sl *sl;
1920 struct ist path;
Willy Tarreau79e57332018-10-02 16:01:16 +02001921 unsigned int hash = 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001922
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001923 if (!htx)
1924 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001925
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001926 ctx.blk = NULL;
1927 if (http_find_header(htx, ist("Host"), &ctx, 1)) {
1928 /* OK we have the header value in ctx.value */
1929 while (ctx.value.len--)
1930 hash = *(ctx.value.ptr++) + (hash << 6) + (hash << 16) - hash;
Willy Tarreau79e57332018-10-02 16:01:16 +02001931 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001932
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001933 /* now retrieve the path */
1934 sl = http_get_stline(htx);
1935 path = http_get_path(htx_sl_req_uri(sl));
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001936 if (path.len && *(path.ptr) == '/') {
1937 while (path.len--)
1938 hash = *(path.ptr++) + (hash << 6) + (hash << 16) - hash;
Willy Tarreau79e57332018-10-02 16:01:16 +02001939 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001940
Willy Tarreau79e57332018-10-02 16:01:16 +02001941 hash = full_hash(hash);
1942
1943 smp->data.type = SMP_T_SINT;
1944 smp->data.u.sint = hash;
1945 smp->flags = SMP_F_VOL_1ST;
1946 return 1;
1947}
1948
1949/* This concatenates the source address with the 32-bit hash of the Host and
1950 * URL as returned by smp_fetch_base32(). The idea is to have per-source and
1951 * per-url counters. The result is a binary block from 8 to 20 bytes depending
1952 * on the source address length. The URL hash is stored before the address so
1953 * that in environments where IPv6 is insignificant, truncating the output to
1954 * 8 bytes would still work.
1955 */
1956static int smp_fetch_url32_src(const struct arg *args, struct sample *smp, const char *kw, void *private)
1957{
1958 struct buffer *temp;
1959 struct connection *cli_conn = objt_conn(smp->sess->origin);
1960
Willy Tarreaucd7ca792019-07-17 16:57:03 +02001961 if (!cli_conn || !conn_get_src(cli_conn))
Willy Tarreau79e57332018-10-02 16:01:16 +02001962 return 0;
1963
1964 if (!smp_fetch_url32(args, smp, kw, private))
1965 return 0;
1966
1967 temp = get_trash_chunk();
1968 *(unsigned int *) temp->area = htonl(smp->data.u.sint);
1969 temp->data += sizeof(unsigned int);
1970
Willy Tarreau9a1efe12019-07-17 17:13:50 +02001971 switch (cli_conn->src->ss_family) {
Willy Tarreau79e57332018-10-02 16:01:16 +02001972 case AF_INET:
1973 memcpy(temp->area + temp->data,
Willy Tarreau9a1efe12019-07-17 17:13:50 +02001974 &((struct sockaddr_in *)cli_conn->src)->sin_addr,
Willy Tarreau79e57332018-10-02 16:01:16 +02001975 4);
1976 temp->data += 4;
1977 break;
1978 case AF_INET6:
1979 memcpy(temp->area + temp->data,
Willy Tarreau9a1efe12019-07-17 17:13:50 +02001980 &((struct sockaddr_in6 *)cli_conn->src)->sin6_addr,
Willy Tarreau79e57332018-10-02 16:01:16 +02001981 16);
1982 temp->data += 16;
1983 break;
1984 default:
1985 return 0;
1986 }
1987
1988 smp->data.u.str = *temp;
1989 smp->data.type = SMP_T_BIN;
1990 return 1;
1991}
1992
1993/************************************************************************/
1994/* Other utility functions */
1995/************************************************************************/
1996
1997/* This function is used to validate the arguments passed to any "hdr" fetch
1998 * keyword. These keywords support an optional positive or negative occurrence
1999 * number. We must ensure that the number is greater than -MAX_HDR_HISTORY. It
2000 * is assumed that the types are already the correct ones. Returns 0 on error,
2001 * non-zero if OK. If <err> is not NULL, it will be filled with a pointer to an
2002 * error message in case of error, that the caller is responsible for freeing.
2003 * The initial location must either be freeable or NULL.
2004 * Note: this function's pointer is checked from Lua.
2005 */
2006int val_hdr(struct arg *arg, char **err_msg)
2007{
2008 if (arg && arg[1].type == ARGT_SINT && arg[1].data.sint < -MAX_HDR_HISTORY) {
2009 memprintf(err_msg, "header occurrence must be >= %d", -MAX_HDR_HISTORY);
2010 return 0;
2011 }
2012 return 1;
2013}
2014
2015/************************************************************************/
2016/* All supported sample fetch keywords must be declared here. */
2017/************************************************************************/
2018
2019/* Note: must not be declared <const> as its list will be overwritten */
2020static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
2021 { "base", smp_fetch_base, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2022 { "base32", smp_fetch_base32, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
2023 { "base32+src", smp_fetch_base32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
2024
2025 /* capture are allocated and are permanent in the stream */
2026 { "capture.req.hdr", smp_fetch_capture_req_hdr, ARG1(1,SINT), NULL, SMP_T_STR, SMP_USE_HRQHP },
2027
2028 /* retrieve these captures from the HTTP logs */
2029 { "capture.req.method", smp_fetch_capture_req_method, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
2030 { "capture.req.uri", smp_fetch_capture_req_uri, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
2031 { "capture.req.ver", smp_fetch_capture_req_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
2032
2033 { "capture.res.hdr", smp_fetch_capture_res_hdr, ARG1(1,SINT), NULL, SMP_T_STR, SMP_USE_HRSHP },
2034 { "capture.res.ver", smp_fetch_capture_res_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
2035
2036 /* cookie is valid in both directions (eg: for "stick ...") but cook*
2037 * are only here to match the ACL's name, are request-only and are used
2038 * for ACL compatibility only.
2039 */
2040 { "cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Christopher Fauletc1f40dd2019-05-16 10:07:30 +02002041 { "cookie", smp_fetch_chn_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV },
Willy Tarreau79e57332018-10-02 16:01:16 +02002042 { "cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2043 { "cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2044
2045 /* hdr is valid in both directions (eg: for "stick ...") but hdr_* are
2046 * only here to match the ACL's name, are request-only and are used for
2047 * ACL compatibility only.
2048 */
Christopher Fauletc1f40dd2019-05-16 10:07:30 +02002049 { "hdr", smp_fetch_chn_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV|SMP_USE_HRSHV },
Willy Tarreau79e57332018-10-02 16:01:16 +02002050 { "hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2051 { "hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
2052 { "hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRQHV },
2053
Christopher Fauleta4063562019-08-02 11:51:37 +02002054 { "http_auth_type", smp_fetch_http_auth_type, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2055 { "http_auth_user", smp_fetch_http_auth_user, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2056 { "http_auth_pass", smp_fetch_http_auth_pass, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau79e57332018-10-02 16:01:16 +02002057 { "http_auth", smp_fetch_http_auth, ARG1(1,USR), NULL, SMP_T_BOOL, SMP_USE_HRQHV },
2058 { "http_auth_group", smp_fetch_http_auth_grp, ARG1(1,USR), NULL, SMP_T_STR, SMP_USE_HRQHV },
2059 { "http_first_req", smp_fetch_http_first_req, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
2060 { "method", smp_fetch_meth, 0, NULL, SMP_T_METH, SMP_USE_HRQHP },
2061 { "path", smp_fetch_path, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2062 { "query", smp_fetch_query, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2063
2064 /* HTTP protocol on the request path */
2065 { "req.proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
2066 { "req_proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
2067
2068 /* HTTP version on the request path */
2069 { "req.ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2070 { "req_ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2071
2072 { "req.body", smp_fetch_body, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
2073 { "req.body_len", smp_fetch_body_len, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
2074 { "req.body_size", smp_fetch_body_size, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
2075 { "req.body_param", smp_fetch_body_param, ARG1(0,STR), NULL, SMP_T_BIN, SMP_USE_HRQHV },
2076
2077 { "req.hdrs", smp_fetch_hdrs, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
2078 { "req.hdrs_bin", smp_fetch_hdrs_bin, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
2079
2080 /* HTTP version on the response path */
2081 { "res.ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
2082 { "resp_ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
2083
Christopher Faulete596d182020-05-05 17:46:34 +02002084 { "res.body", smp_fetch_body, 0, NULL, SMP_T_BIN, SMP_USE_HRSHV },
2085 { "res.body_len", smp_fetch_body_len, 0, NULL, SMP_T_SINT, SMP_USE_HRSHV },
2086 { "res.body_size", smp_fetch_body_size, 0, NULL, SMP_T_SINT, SMP_USE_HRSHV },
2087
2088 { "res.hdrs", smp_fetch_hdrs, 0, NULL, SMP_T_BIN, SMP_USE_HRSHV },
2089 { "res.hdrs_bin", smp_fetch_hdrs_bin, 0, NULL, SMP_T_BIN, SMP_USE_HRSHV },
2090
Willy Tarreau79e57332018-10-02 16:01:16 +02002091 /* explicit req.{cook,hdr} are used to force the fetch direction to be request-only */
2092 { "req.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
2093 { "req.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2094 { "req.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2095
2096 { "req.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
2097 { "req.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2098 { "req.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
2099 { "req.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2100 { "req.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
2101 { "req.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
2102 { "req.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRQHV },
2103
2104 /* explicit req.{cook,hdr} are used to force the fetch direction to be response-only */
2105 { "res.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
2106 { "res.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2107 { "res.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2108
2109 { "res.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
2110 { "res.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2111 { "res.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
2112 { "res.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2113 { "res.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
2114 { "res.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
2115 { "res.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRSHV },
2116
2117 /* scook is valid only on the response and is used for ACL compatibility */
2118 { "scook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
2119 { "scook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2120 { "scook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2121 { "set-cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, /* deprecated */
2122
2123 /* shdr is valid only on the response and is used for ACL compatibility */
2124 { "shdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
2125 { "shdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2126 { "shdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
2127 { "shdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRSHV },
2128
2129 { "status", smp_fetch_stcode, 0, NULL, SMP_T_SINT, SMP_USE_HRSHP },
2130 { "unique-id", smp_fetch_uniqueid, 0, NULL, SMP_T_STR, SMP_SRC_L4SRV },
2131 { "url", smp_fetch_url, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2132 { "url32", smp_fetch_url32, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
2133 { "url32+src", smp_fetch_url32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
2134 { "url_ip", smp_fetch_url_ip, 0, NULL, SMP_T_IPV4, SMP_USE_HRQHV },
2135 { "url_port", smp_fetch_url_port, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
2136 { "url_param", smp_fetch_url_param, ARG2(0,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
2137 { "urlp" , smp_fetch_url_param, ARG2(0,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
2138 { "urlp_val", smp_fetch_url_param_val, ARG2(0,STR,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
Christopher Faulet16032ab2020-04-30 11:30:00 +02002139
Willy Tarreau79e57332018-10-02 16:01:16 +02002140 { /* END */ },
2141}};
2142
Willy Tarreau0108d902018-11-25 19:14:37 +01002143INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords);
Willy Tarreau79e57332018-10-02 16:01:16 +02002144
2145/*
2146 * Local variables:
2147 * c-indent-level: 8
2148 * c-basic-offset: 8
2149 * End:
2150 */