blob: f6a948dca67ffc2228479829e7d6749c58b74304 [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
19#include <common/base64.h>
20#include <common/chunk.h>
21#include <common/compat.h>
22#include <common/config.h>
23#include <common/debug.h>
Willy Tarreauafba57a2018-12-11 13:44:24 +010024#include <common/h1.h>
Willy Tarreau79e57332018-10-02 16:01:16 +020025#include <common/http.h>
Willy Tarreaub96b77e2018-12-11 10:22:41 +010026#include <common/htx.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010027#include <common/initcall.h>
Willy Tarreau79e57332018-10-02 16:01:16 +020028#include <common/memory.h>
29#include <common/standard.h>
30#include <common/version.h>
31
32#include <types/global.h>
33
34#include <proto/arg.h>
35#include <proto/auth.h>
Christopher Fauleteb2754b2019-07-16 14:49:01 +020036#include <proto/channel.h>
Willy Tarreau9a1efe12019-07-17 17:13:50 +020037#include <proto/connection.h>
Willy Tarreau79e57332018-10-02 16:01:16 +020038#include <proto/http_fetch.h>
Christopher Faulet53a899b2019-10-08 16:38:42 +020039#include <proto/h1_htx.h>
Christopher Fauletef453ed2018-10-24 21:39:27 +020040#include <proto/http_htx.h>
Willy Tarreau79e57332018-10-02 16:01:16 +020041#include <proto/log.h>
42#include <proto/obj_type.h>
Christopher Fauletfc9cfe42019-07-16 14:54:53 +020043#include <proto/http_ana.h>
Willy Tarreau79e57332018-10-02 16:01:16 +020044#include <proto/sample.h>
45#include <proto/stream.h>
46
47
48/* this struct is used between calls to smp_fetch_hdr() or smp_fetch_cookie() */
Christopher Fauletef453ed2018-10-24 21:39:27 +020049static THREAD_LOCAL struct http_hdr_ctx static_http_hdr_ctx;
Richard Russo458eafb2019-07-31 11:45:56 -070050/* this is used to convert raw connection buffers to htx */
51static THREAD_LOCAL struct buffer static_raw_htx_chunk;
52static THREAD_LOCAL char *static_raw_htx_buf;
Christopher Fauletef453ed2018-10-24 21:39:27 +020053
Christopher Faulet89dc4992019-04-17 12:02:59 +020054#define SMP_REQ_CHN(smp) (smp->strm ? &smp->strm->req : NULL)
55#define SMP_RES_CHN(smp) (smp->strm ? &smp->strm->res : NULL)
Willy Tarreau79e57332018-10-02 16:01:16 +020056
Richard Russo458eafb2019-07-31 11:45:56 -070057/* This function returns the static htx chunk, where raw connections get
58 * converted to HTX as needed for samplxsing.
59 */
60struct buffer *get_raw_htx_chunk(void)
61{
62 chunk_reset(&static_raw_htx_chunk);
63 return &static_raw_htx_chunk;
64}
65
66static int alloc_raw_htx_chunk_per_thread()
67{
68 static_raw_htx_buf = malloc(global.tune.bufsize);
69 if (!static_raw_htx_buf)
70 return 0;
71 chunk_init(&static_raw_htx_chunk, static_raw_htx_buf, global.tune.bufsize);
72 return 1;
73}
74
75static void free_raw_htx_chunk_per_thread()
76{
77 free(static_raw_htx_buf);
78 static_raw_htx_buf = NULL;
79}
80
81REGISTER_PER_THREAD_ALLOC(alloc_raw_htx_chunk_per_thread);
82REGISTER_PER_THREAD_FREE(free_raw_htx_chunk_per_thread);
83
Willy Tarreau79e57332018-10-02 16:01:16 +020084/*
85 * Returns the data from Authorization header. Function may be called more
86 * than once so data is stored in txn->auth_data. When no header is found
87 * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid
88 * searching again for something we are unable to find anyway. However, if
89 * the result if valid, the cache is not reused because we would risk to
90 * have the credentials overwritten by another stream in parallel.
Willy Tarreaueae83722020-04-29 11:52:51 +020091 * The caller is responsible for passing a sample with a valid stream/txn,
92 * and a valid htx.
Willy Tarreau79e57332018-10-02 16:01:16 +020093 */
94
Christopher Fauletcd761952019-07-15 13:58:29 +020095static int get_http_auth(struct sample *smp, struct htx *htx)
Willy Tarreau79e57332018-10-02 16:01:16 +020096{
Christopher Faulet311c7ea2018-10-24 21:41:55 +020097 struct stream *s = smp->strm;
Willy Tarreau79e57332018-10-02 16:01:16 +020098 struct http_txn *txn = s->txn;
Christopher Faulet6d1dd462019-07-15 14:36:03 +020099 struct http_hdr_ctx ctx = { .blk = NULL };
100 struct ist hdr;
Willy Tarreau79e57332018-10-02 16:01:16 +0200101 struct buffer auth_method;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200102 char *p;
Willy Tarreau79e57332018-10-02 16:01:16 +0200103 int len;
104
105#ifdef DEBUG_AUTH
106 printf("Auth for stream %p: %d\n", s, txn->auth.method);
107#endif
Willy Tarreau79e57332018-10-02 16:01:16 +0200108 if (txn->auth.method == HTTP_AUTH_WRONG)
109 return 0;
110
111 txn->auth.method = HTTP_AUTH_WRONG;
112
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200113 if (txn->flags & TX_USE_PX_CONN)
114 hdr = ist("Proxy-Authorization");
115 else
116 hdr = ist("Authorization");
Willy Tarreau79e57332018-10-02 16:01:16 +0200117
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200118 ctx.blk = NULL;
119 if (!http_find_header(htx, hdr, &ctx, 0))
120 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200121
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200122 p = memchr(ctx.value.ptr, ' ', ctx.value.len);
123 len = p - ctx.value.ptr;
124 if (!p || len <= 0)
125 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200126
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200127 if (chunk_initlen(&auth_method, ctx.value.ptr, 0, len) != 1)
128 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200129
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200130 chunk_initlen(&txn->auth.method_data, p + 1, 0, ctx.value.len - len - 1);
Willy Tarreau79e57332018-10-02 16:01:16 +0200131
132 if (!strncasecmp("Basic", auth_method.area, auth_method.data)) {
133 struct buffer *http_auth = get_trash_chunk();
134
135 len = base64dec(txn->auth.method_data.area,
136 txn->auth.method_data.data,
137 http_auth->area, global.tune.bufsize - 1);
138
139 if (len < 0)
140 return 0;
141
142
143 http_auth->area[len] = '\0';
144
145 p = strchr(http_auth->area, ':');
146
147 if (!p)
148 return 0;
149
150 txn->auth.user = http_auth->area;
151 *p = '\0';
152 txn->auth.pass = p+1;
153
154 txn->auth.method = HTTP_AUTH_BASIC;
155 return 1;
156 }
157
158 return 0;
159}
160
161/* This function ensures that the prerequisites for an L7 fetch are ready,
162 * which means that a request or response is ready. If some data is missing,
163 * a parsing attempt is made. This is useful in TCP-based ACLs which are able
Christopher Faulet5ec8bcb2019-04-17 12:04:12 +0200164 * to extract data from L7. If <vol> is non-null during a prefetch, another
165 * test is made to ensure the required information is not gone.
Christopher Fauletef453ed2018-10-24 21:39:27 +0200166 *
167 * The function returns :
168 * NULL with SMP_F_MAY_CHANGE in the sample flags if some data is missing to
169 * decide whether or not an HTTP message is present ;
170 * NULL if the requested data cannot be fetched or if it is certain that
Willy Tarreaueae83722020-04-29 11:52:51 +0200171 * we'll never have any HTTP message there; this includes null strm or chn.
Christopher Fauletef453ed2018-10-24 21:39:27 +0200172 * The HTX message if ready
173 */
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200174struct htx *smp_prefetch_htx(struct sample *smp, struct channel *chn, struct check *check, int vol)
Christopher Fauletef453ed2018-10-24 21:39:27 +0200175{
Christopher Fauletef453ed2018-10-24 21:39:27 +0200176 struct stream *s = smp->strm;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200177 struct http_txn *txn = NULL;
178 struct htx *htx = NULL;
Christopher Faulet89dc4992019-04-17 12:02:59 +0200179 struct http_msg *msg;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100180 struct htx_sl *sl;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200181
182 /* Note: it is possible that <s> is NULL when called before stream
183 * initialization (eg: tcp-request connection), so this function is the
184 * one responsible for guarding against this case for all HTTP users.
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200185 *
186 * In the health check context, the stream and the channel must be NULL
187 * and <check> must be set. In this case, only the input buffer,
188 * corresponding to the response, is considered. It is the caller
189 * responsibility to provide <check>.
Christopher Fauletef453ed2018-10-24 21:39:27 +0200190 */
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200191 BUG_ON(check && (s || chn));
192 if (!s || !chn) {
193 if (check) {
194 htx = htxbuf(&check->bi);
195
196 /* Analyse not yet started */
197 if (htx_is_empty(htx) || htx->first == -1)
198 return NULL;
199
200 sl = http_get_stline(htx);
201 if (vol && !sl) {
202 /* The start-line was already forwarded, it is too late to fetch anything */
203 return NULL;
204 }
205 goto end;
206 }
207
Christopher Fauletef453ed2018-10-24 21:39:27 +0200208 return NULL;
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200209 }
Christopher Fauletef453ed2018-10-24 21:39:27 +0200210
211 if (!s->txn) {
212 if (unlikely(!http_alloc_txn(s)))
213 return NULL; /* not enough memory */
214 http_init_txn(s);
215 txn = s->txn;
216 }
Christopher Faulet89dc4992019-04-17 12:02:59 +0200217 txn = s->txn;
218 msg = (!(chn->flags & CF_ISRESP) ? &txn->req : &txn->rsp);
219 smp->data.type = SMP_T_BOOL;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200220
Christopher Fauleteca88542019-04-03 10:12:42 +0200221 if (IS_HTX_STRM(s)) {
Christopher Faulet89dc4992019-04-17 12:02:59 +0200222 htx = htxbuf(&chn->buf);
Christopher Fauletef453ed2018-10-24 21:39:27 +0200223
Christopher Faulet89dc4992019-04-17 12:02:59 +0200224 if (msg->msg_state == HTTP_MSG_ERROR || (htx->flags & HTX_FL_PARSING_ERROR))
225 return NULL;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200226
Christopher Faulet89dc4992019-04-17 12:02:59 +0200227 if (msg->msg_state < HTTP_MSG_BODY) {
228 /* Analyse not yet started */
Christopher Faulet29f17582019-05-23 11:03:26 +0200229 if (htx_is_empty(htx) || htx->first == -1) {
Christopher Fauletef453ed2018-10-24 21:39:27 +0200230 /* Parsing is done by the mux, just wait */
231 smp->flags |= SMP_F_MAY_CHANGE;
232 return NULL;
233 }
234 }
Christopher Faulet297fbb42019-05-13 14:41:27 +0200235 sl = http_get_stline(htx);
Christopher Faulet5ec8bcb2019-04-17 12:04:12 +0200236 if (vol && !sl) {
Christopher Faulet89dc4992019-04-17 12:02:59 +0200237 /* The start-line was already forwarded, it is too late to fetch anything */
238 return NULL;
239 }
Christopher Fauletef453ed2018-10-24 21:39:27 +0200240 }
Christopher Fauleteca88542019-04-03 10:12:42 +0200241 else { /* RAW mode */
Christopher Faulet89dc4992019-04-17 12:02:59 +0200242 struct buffer *buf;
243 struct h1m h1m;
Christopher Faulete4ab11b2019-06-11 15:05:37 +0200244 struct http_hdr hdrs[global.tune.max_http_hdr];
Christopher Faulet89dc4992019-04-17 12:02:59 +0200245 union h1_sl h1sl;
246 unsigned int flags = HTX_FL_NONE;
247 int ret;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200248
Christopher Faulet89dc4992019-04-17 12:02:59 +0200249 /* no HTTP fetch on the response in TCP mode */
250 if (chn->flags & CF_ISRESP)
251 return NULL;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200252
Christopher Faulet89dc4992019-04-17 12:02:59 +0200253 /* Now we are working on the request only */
254 buf = &chn->buf;
255 if (b_head(buf) + b_data(buf) > b_wrap(buf))
256 b_slow_realign(buf, trash.area, 0);
Christopher Fauletef453ed2018-10-24 21:39:27 +0200257
Christopher Faulet89dc4992019-04-17 12:02:59 +0200258 h1m_init_req(&h1m);
259 ret = h1_headers_to_hdr_list(b_head(buf), b_stop(buf),
260 hdrs, sizeof(hdrs)/sizeof(hdrs[0]), &h1m, &h1sl);
261 if (ret <= 0) {
262 /* Invalid or too big*/
263 if (ret < 0 || channel_full(&s->req, global.tune.maxrewrite))
Christopher Fauletef453ed2018-10-24 21:39:27 +0200264 return NULL;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100265
Christopher Faulet89dc4992019-04-17 12:02:59 +0200266 /* wait for a full request */
267 smp->flags |= SMP_F_MAY_CHANGE;
268 return NULL;
269 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100270
Christopher Faulet89dc4992019-04-17 12:02:59 +0200271 /* OK we just got a valid HTTP mesage. We have to convert it
272 * into an HTX message.
273 */
274 if (unlikely(h1sl.rq.v.len == 0)) {
275 /* try to convert HTTP/0.9 requests to HTTP/1.0 */
276 if (h1sl.rq.meth != HTTP_METH_GET || !h1sl.rq.u.len)
Christopher Fauletef453ed2018-10-24 21:39:27 +0200277 return NULL;
Christopher Faulet89dc4992019-04-17 12:02:59 +0200278 h1sl.rq.v = ist("HTTP/1.0");
Christopher Fauletef453ed2018-10-24 21:39:27 +0200279 }
Christopher Faulet89dc4992019-04-17 12:02:59 +0200280
281 /* Set HTX start-line flags */
282 if (h1m.flags & H1_MF_VER_11)
283 flags |= HTX_SL_F_VER_11;
284 if (h1m.flags & H1_MF_XFER_ENC)
285 flags |= HTX_SL_F_XFER_ENC;
286 flags |= HTX_SL_F_XFER_LEN;
287 if (h1m.flags & H1_MF_CHNK)
288 flags |= HTX_SL_F_CHNK;
289 else if (h1m.flags & H1_MF_CLEN)
290 flags |= HTX_SL_F_CLEN;
291
Richard Russo458eafb2019-07-31 11:45:56 -0700292 htx = htx_from_buf(get_raw_htx_chunk());
Christopher Faulet89dc4992019-04-17 12:02:59 +0200293 sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, h1sl.rq.m, h1sl.rq.u, h1sl.rq.v);
294 if (!sl || !htx_add_all_headers(htx, hdrs))
Christopher Fauletef453ed2018-10-24 21:39:27 +0200295 return NULL;
Willy Tarreauce9bbf52019-05-13 08:32:31 +0200296 sl->info.req.meth = h1sl.rq.meth;
Christopher Faulet89dc4992019-04-17 12:02:59 +0200297 }
298
299 /* OK we just got a valid HTTP message. If not already done by
300 * HTTP analyzers, we have some minor preparation to perform so
301 * that further checks can rely on HTTP tests.
302 */
303 if (sl && msg->msg_state < HTTP_MSG_BODY) {
304 if (!(chn->flags & CF_ISRESP)) {
305 txn->meth = sl->info.req.meth;
306 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
307 s->flags |= SF_REDIRECTABLE;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200308 }
Christopher Faulet89dc4992019-04-17 12:02:59 +0200309 else
310 txn->status = sl->info.res.status;
311 if (sl->flags & HTX_SL_F_VER_11)
312 msg->flags |= HTTP_MSGF_VER_11;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200313 }
314
315 /* everything's OK */
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200316 end:
Christopher Fauletef453ed2018-10-24 21:39:27 +0200317 smp->data.u.sint = 1;
318 return htx;
319}
320
Willy Tarreau79e57332018-10-02 16:01:16 +0200321/* This function fetches the method of current HTTP request and stores
322 * it in the global pattern struct as a chunk. There are two possibilities :
323 * - if the method is known (not HTTP_METH_OTHER), its identifier is stored
324 * in <len> and <ptr> is NULL ;
325 * - if the method is unknown (HTTP_METH_OTHER), <ptr> points to the text and
326 * <len> to its length.
327 * This is intended to be used with pat_match_meth() only.
328 */
329static int smp_fetch_meth(const struct arg *args, struct sample *smp, const char *kw, void *private)
330{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200331 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200332 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 0);
Willy Tarreau79e57332018-10-02 16:01:16 +0200333 struct http_txn *txn;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200334 int meth;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200335
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200336 if (!htx)
337 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200338
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200339 txn = smp->strm->txn;
340 meth = txn->meth;
341 smp->data.type = SMP_T_METH;
342 smp->data.u.meth.meth = meth;
343 if (meth == HTTP_METH_OTHER) {
344 struct htx_sl *sl;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200345
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200346 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) {
347 /* ensure the indexes are not affected */
348 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200349 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200350 sl = http_get_stline(htx);
351 smp->flags |= SMP_F_CONST;
352 smp->data.u.meth.str.area = HTX_SL_REQ_MPTR(sl);
353 smp->data.u.meth.str.data = HTX_SL_REQ_MLEN(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +0200354 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200355 smp->flags |= SMP_F_VOL_1ST;
Willy Tarreau79e57332018-10-02 16:01:16 +0200356 return 1;
357}
358
359static int smp_fetch_rqver(const struct arg *args, struct sample *smp, const char *kw, void *private)
360{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200361 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200362 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200363 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +0200364 char *ptr;
365 int len;
366
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200367 if (!htx)
368 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200369
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200370 sl = http_get_stline(htx);
371 len = HTX_SL_REQ_VLEN(sl);
372 ptr = HTX_SL_REQ_VPTR(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +0200373
374 while ((len-- > 0) && (*ptr++ != '/'));
375 if (len <= 0)
376 return 0;
377
378 smp->data.type = SMP_T_STR;
379 smp->data.u.str.area = ptr;
380 smp->data.u.str.data = len;
381
382 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
383 return 1;
384}
385
386static int smp_fetch_stver(const struct arg *args, struct sample *smp, const char *kw, void *private)
387{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200388 struct channel *chn = SMP_RES_CHN(smp);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200389 struct check *check = ((kw[0] == 'c' && smp->sess) ? objt_check(smp->sess->origin) : NULL);
390 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200391 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +0200392 char *ptr;
393 int len;
394
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200395 if (!htx)
396 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200397
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200398 sl = http_get_stline(htx);
399 len = HTX_SL_RES_VLEN(sl);
400 ptr = HTX_SL_RES_VPTR(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +0200401
402 while ((len-- > 0) && (*ptr++ != '/'));
403 if (len <= 0)
404 return 0;
405
406 smp->data.type = SMP_T_STR;
407 smp->data.u.str.area = ptr;
408 smp->data.u.str.data = len;
409
410 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
411 return 1;
412}
413
414/* 3. Check on Status Code. We manipulate integers here. */
415static int smp_fetch_stcode(const struct arg *args, struct sample *smp, const char *kw, void *private)
416{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200417 struct channel *chn = SMP_RES_CHN(smp);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200418 struct check *check = ((kw[0] == 'c' && smp->sess) ? objt_check(smp->sess->origin) : NULL);
419 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200420 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +0200421 char *ptr;
422 int len;
423
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200424 if (!htx)
425 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200426
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200427 sl = http_get_stline(htx);
428 len = HTX_SL_RES_CLEN(sl);
429 ptr = HTX_SL_RES_CPTR(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +0200430
431 smp->data.type = SMP_T_SINT;
432 smp->data.u.sint = __strl2ui(ptr, len);
433 smp->flags = SMP_F_VOL_1ST;
434 return 1;
435}
436
437static int smp_fetch_uniqueid(const struct arg *args, struct sample *smp, const char *kw, void *private)
438{
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100439 struct ist unique_id;
Tim Duesterhus2825b4b2020-02-28 15:13:34 +0100440
Willy Tarreau79e57332018-10-02 16:01:16 +0200441 if (LIST_ISEMPTY(&smp->sess->fe->format_unique_id))
442 return 0;
443
Willy Tarreaua1062a42020-04-29 11:50:38 +0200444 if (!smp->strm)
445 return 0;
446
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100447 unique_id = stream_generate_unique_id(smp->strm, &smp->sess->fe->format_unique_id);
448 if (!isttest(unique_id))
Tim Duesterhus2825b4b2020-02-28 15:13:34 +0100449 return 0;
450
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100451 smp->data.u.str.area = smp->strm->unique_id.ptr;
452 smp->data.u.str.data = smp->strm->unique_id.len;
Tim Duesterhus2825b4b2020-02-28 15:13:34 +0100453 smp->data.type = SMP_T_STR;
Willy Tarreau79e57332018-10-02 16:01:16 +0200454 smp->flags = SMP_F_CONST;
455 return 1;
456}
457
458/* Returns a string block containing all headers including the
Joseph Herlant942eea32018-11-15 13:57:22 -0800459 * empty line which separes headers from the body. This is useful
460 * for some headers analysis.
Willy Tarreau79e57332018-10-02 16:01:16 +0200461 */
462static int smp_fetch_hdrs(const struct arg *args, struct sample *smp, const char *kw, void *private)
463{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200464 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200465 struct check *check = ((kw[0] == 'c' && smp->sess) ? objt_check(smp->sess->origin) : NULL);
466 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200467 struct buffer *temp;
468 int32_t pos;
Willy Tarreau79e57332018-10-02 16:01:16 +0200469
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200470 if (!htx)
471 return 0;
472 temp = get_trash_chunk();
473 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
474 struct htx_blk *blk = htx_get_blk(htx, pos);
475 enum htx_blk_type type = htx_get_blk_type(blk);
Willy Tarreau79e57332018-10-02 16:01:16 +0200476
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200477 if (type == HTX_BLK_HDR) {
478 struct ist n = htx_get_blk_name(htx, blk);
479 struct ist v = htx_get_blk_value(htx, blk);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200480
Christopher Faulet53a899b2019-10-08 16:38:42 +0200481 if (!h1_format_htx_hdr(n, v, temp))
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200482 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200483 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200484 else if (type == HTX_BLK_EOH) {
485 if (!chunk_memcat(temp, "\r\n", 2))
486 return 0;
487 break;
488 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200489 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200490 smp->data.type = SMP_T_STR;
491 smp->data.u.str = *temp;
Willy Tarreau79e57332018-10-02 16:01:16 +0200492 return 1;
493}
494
495/* Returns the header request in a length/value encoded format.
496 * This is useful for exchanges with the SPOE.
497 *
498 * A "length value" is a multibyte code encoding numbers. It uses the
499 * SPOE format. The encoding is the following:
500 *
501 * Each couple "header name" / "header value" is composed
502 * like this:
503 * "length value" "header name bytes"
504 * "length value" "header value bytes"
505 * When the last header is reached, the header name and the header
506 * value are empty. Their length are 0
507 */
508static int smp_fetch_hdrs_bin(const struct arg *args, struct sample *smp, const char *kw, void *private)
509{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200510 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200511 struct check *check = ((kw[0] == 'c' && smp->sess) ? objt_check(smp->sess->origin) : NULL);
512 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200513 struct buffer *temp;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200514 char *p, *end;
515 int32_t pos;
516 int ret;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200517
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200518 if (!htx)
519 return 0;
520 temp = get_trash_chunk();
521 p = temp->area;
522 end = temp->area + temp->size;
523 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
524 struct htx_blk *blk = htx_get_blk(htx, pos);
525 enum htx_blk_type type = htx_get_blk_type(blk);
526 struct ist n, v;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200527
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200528 if (type == HTX_BLK_HDR) {
529 n = htx_get_blk_name(htx,blk);
530 v = htx_get_blk_value(htx, blk);
Willy Tarreau79e57332018-10-02 16:01:16 +0200531
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200532 /* encode the header name. */
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200533 ret = encode_varint(n.len, &p, end);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200534 if (ret == -1)
535 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200536 if (p + n.len > end)
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200537 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200538 memcpy(p, n.ptr, n.len);
539 p += n.len;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200540
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200541 /* encode the header value. */
542 ret = encode_varint(v.len, &p, end);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200543 if (ret == -1)
544 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200545 if (p + v.len > end)
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200546 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200547 memcpy(p, v.ptr, v.len);
548 p += v.len;
Willy Tarreau79e57332018-10-02 16:01:16 +0200549
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200550 }
551 else if (type == HTX_BLK_EOH) {
552 /* encode the end of the header list with empty
553 * header name and header value.
554 */
555 ret = encode_varint(0, &p, end);
556 if (ret == -1)
557 return 0;
558 ret = encode_varint(0, &p, end);
559 if (ret == -1)
560 return 0;
561 break;
562 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200563 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200564
565 /* Initialise sample data which will be filled. */
566 smp->data.type = SMP_T_BIN;
567 smp->data.u.str.area = temp->area;
568 smp->data.u.str.data = p - temp->area;
569 smp->data.u.str.size = temp->size;
Willy Tarreau79e57332018-10-02 16:01:16 +0200570 return 1;
571}
572
573/* returns the longest available part of the body. This requires that the body
574 * has been waited for using http-buffer-request.
575 */
576static int smp_fetch_body(const struct arg *args, struct sample *smp, const char *kw, void *private)
577{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200578 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200579 struct check *check = ((kw[0] == 'c' && smp->sess) ? objt_check(smp->sess->origin) : NULL);
580 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Willy Tarreau79e57332018-10-02 16:01:16 +0200581 struct buffer *temp;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200582 int32_t pos;
Willy Tarreau79e57332018-10-02 16:01:16 +0200583
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200584 if (!htx)
585 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200586
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200587 temp = get_trash_chunk();
588 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
589 struct htx_blk *blk = htx_get_blk(htx, pos);
590 enum htx_blk_type type = htx_get_blk_type(blk);
Willy Tarreau79e57332018-10-02 16:01:16 +0200591
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200592 if (type == HTX_BLK_EOM || type == HTX_BLK_TLR || type == HTX_BLK_EOT)
593 break;
594 if (type == HTX_BLK_DATA) {
Christopher Faulet53a899b2019-10-08 16:38:42 +0200595 if (!h1_format_htx_data(htx_get_blk_value(htx, blk), temp, 0))
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200596 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200597 }
Willy Tarreau79e57332018-10-02 16:01:16 +0200598 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200599
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200600 smp->data.type = SMP_T_BIN;
601 smp->data.u.str = *temp;
602 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau79e57332018-10-02 16:01:16 +0200603 return 1;
604}
605
606
607/* returns the available length of the body. This requires that the body
608 * has been waited for using http-buffer-request.
609 */
610static int smp_fetch_body_len(const struct arg *args, struct sample *smp, const char *kw, void *private)
611{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200612 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200613 struct check *check = ((kw[0] == 'c' && smp->sess) ? objt_check(smp->sess->origin) : NULL);
614 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 Faulet89dc4992019-04-17 12:02:59 +0200644 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200645 struct check *check = ((kw[0] == 'c' && smp->sess) ? objt_check(smp->sess->origin) : NULL);
646 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200647 int32_t pos;
648 unsigned long long len = 0;
Christopher Faulet89dc4992019-04-17 12:02:59 +0200649
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200650 if (!htx)
651 return 0;
Christopher Fauletc16317d2018-12-12 14:11:22 +0100652
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200653 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
654 struct htx_blk *blk = htx_get_blk(htx, pos);
655 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Fauletc16317d2018-12-12 14:11:22 +0100656
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200657 if (type == HTX_BLK_EOM || type == HTX_BLK_TLR || type == HTX_BLK_EOT)
658 break;
659 if (type == HTX_BLK_DATA)
660 len += htx_get_blksz(blk);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200661 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200662 if (htx->extra != ULLONG_MAX)
663 len += htx->extra;
Willy Tarreau79e57332018-10-02 16:01:16 +0200664
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200665 smp->data.type = SMP_T_SINT;
666 smp->data.u.sint = len;
667 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau79e57332018-10-02 16:01:16 +0200668 return 1;
669}
670
671
672/* 4. Check on URL/URI. A pointer to the URI is stored. */
673static int smp_fetch_url(const struct arg *args, struct sample *smp, const char *kw, void *private)
674{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200675 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200676 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200677 struct htx_sl *sl;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200678
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200679 if (!htx)
680 return 0;
681 sl = http_get_stline(htx);
682 smp->data.type = SMP_T_STR;
683 smp->data.u.str.area = HTX_SL_REQ_UPTR(sl);
684 smp->data.u.str.data = HTX_SL_REQ_ULEN(sl);
685 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau79e57332018-10-02 16:01:16 +0200686 return 1;
687}
688
689static int smp_fetch_url_ip(const struct arg *args, struct sample *smp, const char *kw, void *private)
690{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200691 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200692 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200693 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +0200694 struct sockaddr_storage addr;
695
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200696 if (!htx)
697 return 0;
698 sl = http_get_stline(htx);
699 url2sa(HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl), &addr, NULL);
Willy Tarreau79e57332018-10-02 16:01:16 +0200700
Willy Tarreau79e57332018-10-02 16:01:16 +0200701 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
702 return 0;
703
704 smp->data.type = SMP_T_IPV4;
705 smp->data.u.ipv4 = ((struct sockaddr_in *)&addr)->sin_addr;
706 smp->flags = 0;
707 return 1;
708}
709
710static int smp_fetch_url_port(const struct arg *args, struct sample *smp, const char *kw, void *private)
711{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200712 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200713 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200714 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +0200715 struct sockaddr_storage addr;
716
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200717 if (!htx)
718 return 0;
719 sl = http_get_stline(htx);
720 url2sa(HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl), &addr, NULL);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200721
Willy Tarreau79e57332018-10-02 16:01:16 +0200722 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
723 return 0;
724
725 smp->data.type = SMP_T_SINT;
726 smp->data.u.sint = ntohs(((struct sockaddr_in *)&addr)->sin_port);
727 smp->flags = 0;
728 return 1;
729}
730
731/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
732 * Accepts an optional argument of type string containing the header field name,
733 * and an optional argument of type signed or unsigned integer to request an
734 * explicit occurrence of the header. Note that in the event of a missing name,
735 * headers are considered from the first one. It does not stop on commas and
736 * returns full lines instead (useful for User-Agent or Date for example).
737 */
738static int smp_fetch_fhdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
739{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200740 /* possible keywords: req.fhdr, res.fhdr */
741 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Faulet16032ab2020-04-30 11:30:00 +0200742 struct check *check = ((kw[0] == 'c' && smp->sess) ? objt_check(smp->sess->origin) : NULL);
743 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200744 struct http_hdr_ctx *ctx = smp->ctx.a[0];
745 struct ist name;
Willy Tarreau79e57332018-10-02 16:01:16 +0200746 int occ = 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200747
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200748 if (!ctx) {
749 /* first call */
750 ctx = &static_http_hdr_ctx;
751 ctx->blk = NULL;
752 smp->ctx.a[0] = ctx;
753 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200754
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200755 if (args) {
756 if (args[0].type != ARGT_STR)
Willy Tarreau79e57332018-10-02 16:01:16 +0200757 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200758 name.ptr = args[0].data.str.area;
759 name.len = args[0].data.str.data;
Willy Tarreau79e57332018-10-02 16:01:16 +0200760
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200761 if (args[1].type == ARGT_SINT)
762 occ = args[1].data.sint;
Willy Tarreau79e57332018-10-02 16:01:16 +0200763 }
764
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200765 if (!htx)
766 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200767
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200768 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
769 /* search for header from the beginning */
770 ctx->blk = NULL;
Willy Tarreau79e57332018-10-02 16:01:16 +0200771
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200772 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
773 /* no explicit occurrence and single fetch => last header by default */
774 occ = -1;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200775
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200776 if (!occ)
777 /* prepare to report multiple occurrences for ACL fetches */
778 smp->flags |= SMP_F_NOT_LAST;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200779
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200780 smp->data.type = SMP_T_STR;
781 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
782 if (http_get_htx_fhdr(htx, name, occ, ctx, &smp->data.u.str.area, &smp->data.u.str.data))
783 return 1;
Willy Tarreau79e57332018-10-02 16:01:16 +0200784 smp->flags &= ~SMP_F_NOT_LAST;
785 return 0;
786}
787
788/* 6. Check on HTTP header count. The number of occurrences is returned.
789 * Accepts exactly 1 argument of type string. It does not stop on commas and
790 * returns full lines instead (useful for User-Agent or Date for example).
791 */
792static int smp_fetch_fhdr_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
793{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200794 /* possible keywords: req.fhdr_cnt, res.fhdr_cnt */
795 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Faulet16032ab2020-04-30 11:30:00 +0200796 struct check *check = ((kw[0] == 'c' && smp->sess) ? objt_check(smp->sess->origin) : NULL);
797 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200798 struct http_hdr_ctx ctx;
799 struct ist name;
Willy Tarreau79e57332018-10-02 16:01:16 +0200800 int cnt;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200801
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200802 if (!htx)
803 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200804
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200805 if (args && args->type == ARGT_STR) {
806 name.ptr = args->data.str.area;
807 name.len = args->data.str.data;
808 } else {
809 name.ptr = NULL;
810 name.len = 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200811 }
Willy Tarreau79e57332018-10-02 16:01:16 +0200812
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200813 ctx.blk = NULL;
814 cnt = 0;
815 while (http_find_header(htx, name, &ctx, 1))
816 cnt++;
Willy Tarreau79e57332018-10-02 16:01:16 +0200817 smp->data.type = SMP_T_SINT;
818 smp->data.u.sint = cnt;
819 smp->flags = SMP_F_VOL_HDR;
820 return 1;
821}
822
823static int smp_fetch_hdr_names(const struct arg *args, struct sample *smp, const char *kw, void *private)
824{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200825 /* possible keywords: req.hdr_names, res.hdr_names */
826 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Faulet16032ab2020-04-30 11:30:00 +0200827 struct check *check = ((kw[0] == 'c' && smp->sess) ? objt_check(smp->sess->origin) : NULL);
828 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Willy Tarreau79e57332018-10-02 16:01:16 +0200829 struct buffer *temp;
830 char del = ',';
831
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200832 int32_t pos;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200833
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200834 if (!htx)
835 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200836
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200837 if (args && args->type == ARGT_STR)
838 del = *args[0].data.str.area;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200839
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200840 temp = get_trash_chunk();
841 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
842 struct htx_blk *blk = htx_get_blk(htx, pos);
843 enum htx_blk_type type = htx_get_blk_type(blk);
844 struct ist n;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200845
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200846 if (type == HTX_BLK_EOH)
847 break;
848 if (type != HTX_BLK_HDR)
849 continue;
850 n = htx_get_blk_name(htx, blk);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200851
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200852 if (temp->data)
853 temp->area[temp->data++] = del;
854 chunk_memcat(temp, n.ptr, n.len);
Willy Tarreau79e57332018-10-02 16:01:16 +0200855 }
856
857 smp->data.type = SMP_T_STR;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200858 smp->data.u.str = *temp;
Willy Tarreau79e57332018-10-02 16:01:16 +0200859 smp->flags = SMP_F_VOL_HDR;
860 return 1;
861}
862
863/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
864 * Accepts an optional argument of type string containing the header field name,
865 * and an optional argument of type signed or unsigned integer to request an
866 * explicit occurrence of the header. Note that in the event of a missing name,
867 * headers are considered from the first one.
868 */
869static int smp_fetch_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
870{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200871 /* possible keywords: req.hdr / hdr, res.hdr / shdr */
872 struct channel *chn = ((kw[0] == 'h' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Faulet16032ab2020-04-30 11:30:00 +0200873 struct check *check = ((kw[0] == 'c' && smp->sess) ? objt_check(smp->sess->origin) : NULL);
874 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200875 struct http_hdr_ctx *ctx = smp->ctx.a[0];
876 struct ist name;
Willy Tarreau79e57332018-10-02 16:01:16 +0200877 int occ = 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200878
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200879 if (!ctx) {
880 /* first call */
881 ctx = &static_http_hdr_ctx;
882 ctx->blk = NULL;
883 smp->ctx.a[0] = ctx;
884 }
Willy Tarreau79e57332018-10-02 16:01:16 +0200885
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200886 if (args) {
887 if (args[0].type != ARGT_STR)
Willy Tarreau79e57332018-10-02 16:01:16 +0200888 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200889 name.ptr = args[0].data.str.area;
890 name.len = args[0].data.str.data;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200891
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200892 if (args[1].type == ARGT_SINT)
893 occ = args[1].data.sint;
Willy Tarreau79e57332018-10-02 16:01:16 +0200894 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200895
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200896 if (!htx)
897 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200898
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200899 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
900 /* search for header from the beginning */
901 ctx->blk = NULL;
Willy Tarreau79e57332018-10-02 16:01:16 +0200902
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200903 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
904 /* no explicit occurrence and single fetch => last header by default */
905 occ = -1;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200906
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200907 if (!occ)
908 /* prepare to report multiple occurrences for ACL fetches */
909 smp->flags |= SMP_F_NOT_LAST;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200910
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200911 smp->data.type = SMP_T_STR;
912 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
913 if (http_get_htx_hdr(htx, name, occ, ctx, &smp->data.u.str.area, &smp->data.u.str.data))
914 return 1;
Willy Tarreau79e57332018-10-02 16:01:16 +0200915
916 smp->flags &= ~SMP_F_NOT_LAST;
917 return 0;
918}
919
Christopher Fauletc1f40dd2019-05-16 10:07:30 +0200920/* Same than smp_fetch_hdr() but only relies on the sample direction to choose
921 * the right channel. So instead of duplicating the code, we just change the
922 * keyword and then fallback on smp_fetch_hdr().
923 */
924static int smp_fetch_chn_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
925{
926 kw = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ ? "req.hdr" : "res.hdr");
927 return smp_fetch_hdr(args, smp, kw, private);
928}
929
Willy Tarreau79e57332018-10-02 16:01:16 +0200930/* 6. Check on HTTP header count. The number of occurrences is returned.
931 * Accepts exactly 1 argument of type string.
932 */
933static int smp_fetch_hdr_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
934{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200935 /* possible keywords: req.hdr_cnt / hdr_cnt, res.hdr_cnt / shdr_cnt */
936 struct channel *chn = ((kw[0] == 'h' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Faulet16032ab2020-04-30 11:30:00 +0200937 struct check *check = ((kw[0] == 'c' && smp->sess) ? objt_check(smp->sess->origin) : NULL);
938 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200939 struct http_hdr_ctx ctx;
940 struct ist name;
Willy Tarreau79e57332018-10-02 16:01:16 +0200941 int cnt;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200942
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200943 if (!htx)
944 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200945
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200946 if (args && args->type == ARGT_STR) {
947 name.ptr = args->data.str.area;
948 name.len = args->data.str.data;
949 } else {
950 name.ptr = NULL;
951 name.len = 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200952 }
Willy Tarreau79e57332018-10-02 16:01:16 +0200953
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200954 ctx.blk = NULL;
955 cnt = 0;
956 while (http_find_header(htx, name, &ctx, 0))
957 cnt++;
Willy Tarreau79e57332018-10-02 16:01:16 +0200958
959 smp->data.type = SMP_T_SINT;
960 smp->data.u.sint = cnt;
961 smp->flags = SMP_F_VOL_HDR;
962 return 1;
963}
964
965/* Fetch an HTTP header's integer value. The integer value is returned. It
966 * takes a mandatory argument of type string and an optional one of type int
967 * to designate a specific occurrence. It returns an unsigned integer, which
968 * may or may not be appropriate for everything.
969 */
970static int smp_fetch_hdr_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
971{
972 int ret = smp_fetch_hdr(args, smp, kw, private);
973
974 if (ret > 0) {
975 smp->data.type = SMP_T_SINT;
976 smp->data.u.sint = strl2ic(smp->data.u.str.area,
977 smp->data.u.str.data);
978 }
979
980 return ret;
981}
982
983/* Fetch an HTTP header's IP value. takes a mandatory argument of type string
984 * and an optional one of type int to designate a specific occurrence.
985 * It returns an IPv4 or IPv6 address.
986 */
987static int smp_fetch_hdr_ip(const struct arg *args, struct sample *smp, const char *kw, void *private)
988{
989 int ret;
990
991 while ((ret = smp_fetch_hdr(args, smp, kw, private)) > 0) {
992 if (url2ipv4((char *) smp->data.u.str.area, &smp->data.u.ipv4)) {
993 smp->data.type = SMP_T_IPV4;
994 break;
995 } else {
996 struct buffer *temp = get_trash_chunk();
997 if (smp->data.u.str.data < temp->size - 1) {
998 memcpy(temp->area, smp->data.u.str.area,
999 smp->data.u.str.data);
1000 temp->area[smp->data.u.str.data] = '\0';
1001 if (inet_pton(AF_INET6, temp->area, &smp->data.u.ipv6)) {
1002 smp->data.type = SMP_T_IPV6;
1003 break;
1004 }
1005 }
1006 }
1007
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001008 /* if the header doesn't match an IP address, fetch next one */
1009 if (!(smp->flags & SMP_F_NOT_LAST))
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001010 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001011 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001012 return ret;
1013}
Willy Tarreau79e57332018-10-02 16:01:16 +02001014
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001015/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
1016 * the first '/' after the possible hostname, and ends before the possible '?'.
1017 */
1018static int smp_fetch_path(const struct arg *args, struct sample *smp, const char *kw, void *private)
1019{
1020 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001021 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001022 struct htx_sl *sl;
1023 struct ist path;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001024
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001025 if (!htx)
1026 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001027
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001028 sl = http_get_stline(htx);
Jerome Magnin4fb196c2020-02-21 10:49:12 +01001029 path = iststop(http_get_path(htx_sl_req_uri(sl)), '?');
Tim Duesterhused526372020-03-05 17:56:33 +01001030 if (!isttest(path))
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001031 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001032
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001033 /* OK, we got the '/' ! */
1034 smp->data.type = SMP_T_STR;
1035 smp->data.u.str.area = path.ptr;
Jerome Magnin4fb196c2020-02-21 10:49:12 +01001036 smp->data.u.str.data = path.len;
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001037 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau79e57332018-10-02 16:01:16 +02001038 return 1;
1039}
1040
1041/* This produces a concatenation of the first occurrence of the Host header
1042 * followed by the path component if it begins with a slash ('/'). This means
1043 * that '*' will not be added, resulting in exactly the first Host entry.
1044 * If no Host header is found, then the path is returned as-is. The returned
1045 * value is stored in the trash so it does not need to be marked constant.
1046 * The returned sample is of type string.
1047 */
1048static int smp_fetch_base(const struct arg *args, struct sample *smp, const char *kw, void *private)
1049{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001050 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001051 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001052 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +02001053 struct buffer *temp;
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001054 struct http_hdr_ctx ctx;
1055 struct ist path;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001056
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001057 if (!htx)
1058 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001059
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001060 ctx.blk = NULL;
1061 if (!http_find_header(htx, ist("Host"), &ctx, 0) || !ctx.value.len)
1062 return smp_fetch_path(args, smp, kw, private);
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001063
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001064 /* OK we have the header value in ctx.value */
1065 temp = get_trash_chunk();
1066 chunk_memcat(temp, ctx.value.ptr, ctx.value.len);
Willy Tarreau79e57332018-10-02 16:01:16 +02001067
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001068 /* now retrieve the path */
1069 sl = http_get_stline(htx);
1070 path = http_get_path(htx_sl_req_uri(sl));
Tim Duesterhused526372020-03-05 17:56:33 +01001071 if (isttest(path)) {
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001072 size_t len;
Willy Tarreau79e57332018-10-02 16:01:16 +02001073
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001074 for (len = 0; len < path.len && *(path.ptr + len) != '?'; len++)
1075 ;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001076
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001077 if (len && *(path.ptr) == '/')
1078 chunk_memcat(temp, path.ptr, len);
Willy Tarreau79e57332018-10-02 16:01:16 +02001079 }
1080
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001081 smp->data.type = SMP_T_STR;
1082 smp->data.u.str = *temp;
Willy Tarreau79e57332018-10-02 16:01:16 +02001083 smp->flags = SMP_F_VOL_1ST;
1084 return 1;
1085}
1086
1087/* This produces a 32-bit hash of the concatenation of the first occurrence of
1088 * the Host header followed by the path component if it begins with a slash ('/').
1089 * This means that '*' will not be added, resulting in exactly the first Host
1090 * entry. If no Host header is found, then the path is used. The resulting value
1091 * is hashed using the path hash followed by a full avalanche hash and provides a
1092 * 32-bit integer value. This fetch is useful for tracking per-path activity on
1093 * high-traffic sites without having to store whole paths.
1094 */
1095static int smp_fetch_base32(const struct arg *args, struct sample *smp, const char *kw, void *private)
1096{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001097 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001098 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001099 struct htx_sl *sl;
1100 struct http_hdr_ctx ctx;
1101 struct ist path;
Willy Tarreau79e57332018-10-02 16:01:16 +02001102 unsigned int hash = 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001103
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001104 if (!htx)
1105 return 0;
Dragan Dosen8861e1c2019-02-12 19:50:31 +01001106
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001107 ctx.blk = NULL;
1108 if (http_find_header(htx, ist("Host"), &ctx, 0)) {
1109 /* OK we have the header value in ctx.value */
1110 while (ctx.value.len--)
1111 hash = *(ctx.value.ptr++) + (hash << 6) + (hash << 16) - hash;
Willy Tarreau79e57332018-10-02 16:01:16 +02001112 }
1113
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001114 /* now retrieve the path */
1115 sl = http_get_stline(htx);
1116 path = http_get_path(htx_sl_req_uri(sl));
Tim Duesterhused526372020-03-05 17:56:33 +01001117 if (isttest(path)) {
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001118 size_t len;
Willy Tarreau79e57332018-10-02 16:01:16 +02001119
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001120 for (len = 0; len < path.len && *(path.ptr + len) != '?'; len++)
1121 ;
Willy Tarreau79e57332018-10-02 16:01:16 +02001122
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001123 if (len && *(path.ptr) == '/') {
1124 while (len--)
1125 hash = *(path.ptr++) + (hash << 6) + (hash << 16) - hash;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001126 }
Willy Tarreau79e57332018-10-02 16:01:16 +02001127 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001128
Willy Tarreau79e57332018-10-02 16:01:16 +02001129 hash = full_hash(hash);
1130
1131 smp->data.type = SMP_T_SINT;
1132 smp->data.u.sint = hash;
1133 smp->flags = SMP_F_VOL_1ST;
1134 return 1;
1135}
1136
1137/* This concatenates the source address with the 32-bit hash of the Host and
1138 * path as returned by smp_fetch_base32(). The idea is to have per-source and
1139 * per-path counters. The result is a binary block from 8 to 20 bytes depending
1140 * on the source address length. The path hash is stored before the address so
1141 * that in environments where IPv6 is insignificant, truncating the output to
1142 * 8 bytes would still work.
1143 */
1144static int smp_fetch_base32_src(const struct arg *args, struct sample *smp, const char *kw, void *private)
1145{
1146 struct buffer *temp;
1147 struct connection *cli_conn = objt_conn(smp->sess->origin);
1148
Willy Tarreaucd7ca792019-07-17 16:57:03 +02001149 if (!cli_conn || !conn_get_src(cli_conn))
Willy Tarreau79e57332018-10-02 16:01:16 +02001150 return 0;
1151
1152 if (!smp_fetch_base32(args, smp, kw, private))
1153 return 0;
1154
1155 temp = get_trash_chunk();
1156 *(unsigned int *) temp->area = htonl(smp->data.u.sint);
1157 temp->data += sizeof(unsigned int);
1158
Willy Tarreau9a1efe12019-07-17 17:13:50 +02001159 switch (cli_conn->src->ss_family) {
Willy Tarreau79e57332018-10-02 16:01:16 +02001160 case AF_INET:
1161 memcpy(temp->area + temp->data,
Willy Tarreau9a1efe12019-07-17 17:13:50 +02001162 &((struct sockaddr_in *)cli_conn->src)->sin_addr,
Willy Tarreau79e57332018-10-02 16:01:16 +02001163 4);
1164 temp->data += 4;
1165 break;
1166 case AF_INET6:
1167 memcpy(temp->area + temp->data,
Willy Tarreau9a1efe12019-07-17 17:13:50 +02001168 &((struct sockaddr_in6 *)cli_conn->src)->sin6_addr,
Willy Tarreau79e57332018-10-02 16:01:16 +02001169 16);
1170 temp->data += 16;
1171 break;
1172 default:
1173 return 0;
1174 }
1175
1176 smp->data.u.str = *temp;
1177 smp->data.type = SMP_T_BIN;
1178 return 1;
1179}
1180
1181/* Extracts the query string, which comes after the question mark '?'. If no
1182 * question mark is found, nothing is returned. Otherwise it returns a sample
1183 * of type string carrying the whole query string.
1184 */
1185static int smp_fetch_query(const struct arg *args, struct sample *smp, const char *kw, void *private)
1186{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001187 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001188 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001189 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +02001190 char *ptr, *end;
1191
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001192 if (!htx)
1193 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001194
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001195 sl = http_get_stline(htx);
1196 ptr = HTX_SL_REQ_UPTR(sl);
1197 end = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +02001198
1199 /* look up the '?' */
1200 do {
1201 if (ptr == end)
1202 return 0;
1203 } while (*ptr++ != '?');
1204
1205 smp->data.type = SMP_T_STR;
1206 smp->data.u.str.area = ptr;
1207 smp->data.u.str.data = end - ptr;
1208 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
1209 return 1;
1210}
1211
1212static int smp_fetch_proto_http(const struct arg *args, struct sample *smp, const char *kw, void *private)
1213{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001214 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001215 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 0);
Willy Tarreau79e57332018-10-02 16:01:16 +02001216
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001217 if (!htx)
1218 return 0;
1219 smp->data.type = SMP_T_BOOL;
Willy Tarreau79e57332018-10-02 16:01:16 +02001220 smp->data.u.sint = 1;
1221 return 1;
1222}
1223
1224/* return a valid test if the current request is the first one on the connection */
1225static int smp_fetch_http_first_req(const struct arg *args, struct sample *smp, const char *kw, void *private)
1226{
Willy Tarreau79512b62020-04-29 11:52:13 +02001227 if (!smp->strm)
1228 return 0;
1229
Willy Tarreau79e57332018-10-02 16:01:16 +02001230 smp->data.type = SMP_T_BOOL;
1231 smp->data.u.sint = !(smp->strm->txn->flags & TX_NOT_FIRST);
1232 return 1;
1233}
1234
Christopher Fauleta4063562019-08-02 11:51:37 +02001235/* Fetch the authentication method if there is an Authorization header. It
1236 * relies on get_http_auth()
1237 */
1238static int smp_fetch_http_auth_type(const struct arg *args, struct sample *smp, const char *kw, void *private)
1239{
1240 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001241 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Fauleta4063562019-08-02 11:51:37 +02001242 struct http_txn *txn;
1243
1244 if (!htx)
1245 return 0;
1246
1247 txn = smp->strm->txn;
1248 if (!get_http_auth(smp, htx))
1249 return 0;
1250
1251 switch (txn->auth.method) {
1252 case HTTP_AUTH_BASIC:
1253 smp->data.u.str.area = "Basic";
1254 smp->data.u.str.data = 5;
1255 break;
1256 case HTTP_AUTH_DIGEST:
1257 /* Unexpected because not supported */
1258 smp->data.u.str.area = "Digest";
1259 smp->data.u.str.data = 6;
1260 break;
1261 default:
1262 return 0;
1263 }
1264
1265 smp->data.type = SMP_T_STR;
1266 smp->flags = SMP_F_CONST;
1267 return 1;
1268}
1269
1270/* Fetch the user supplied if there is an Authorization header. It relies on
1271 * get_http_auth()
1272 */
1273static int smp_fetch_http_auth_user(const struct arg *args, struct sample *smp, const char *kw, void *private)
1274{
1275 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001276 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Fauleta4063562019-08-02 11:51:37 +02001277 struct http_txn *txn;
1278
1279 if (!htx)
1280 return 0;
1281
1282 txn = smp->strm->txn;
1283 if (!get_http_auth(smp, htx))
1284 return 0;
1285
1286 smp->data.type = SMP_T_STR;
1287 smp->data.u.str.area = txn->auth.user;
1288 smp->data.u.str.data = strlen(txn->auth.user);
1289 smp->flags = SMP_F_CONST;
1290 return 1;
1291}
1292
1293/* Fetch the password supplied if there is an Authorization header. It relies on
1294 * get_http_auth()
1295 */
1296static int smp_fetch_http_auth_pass(const struct arg *args, struct sample *smp, const char *kw, void *private)
1297{
1298 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001299 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Fauleta4063562019-08-02 11:51:37 +02001300 struct http_txn *txn;
1301
1302 if (!htx)
1303 return 0;
1304
1305 txn = smp->strm->txn;
1306 if (!get_http_auth(smp, htx))
1307 return 0;
1308
1309 smp->data.type = SMP_T_STR;
1310 smp->data.u.str.area = txn->auth.pass;
1311 smp->data.u.str.data = strlen(txn->auth.pass);
1312 smp->flags = SMP_F_CONST;
1313 return 1;
1314}
1315
Willy Tarreau79e57332018-10-02 16:01:16 +02001316/* Accepts exactly 1 argument of type userlist */
1317static int smp_fetch_http_auth(const struct arg *args, struct sample *smp, const char *kw, void *private)
1318{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001319 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001320 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Willy Tarreau79e57332018-10-02 16:01:16 +02001321
1322 if (!args || args->type != ARGT_USR)
1323 return 0;
1324
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001325 if (!htx)
1326 return 0;
1327 if (!get_http_auth(smp, htx))
1328 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001329
1330 smp->data.type = SMP_T_BOOL;
1331 smp->data.u.sint = check_user(args->data.usr, smp->strm->txn->auth.user,
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001332 smp->strm->txn->auth.pass);
Willy Tarreau79e57332018-10-02 16:01:16 +02001333 return 1;
1334}
1335
1336/* Accepts exactly 1 argument of type userlist */
1337static int smp_fetch_http_auth_grp(const struct arg *args, struct sample *smp, const char *kw, void *private)
1338{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001339 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001340 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet89dc4992019-04-17 12:02:59 +02001341
Willy Tarreau79e57332018-10-02 16:01:16 +02001342 if (!args || args->type != ARGT_USR)
1343 return 0;
1344
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001345 if (!htx)
1346 return 0;
1347 if (!get_http_auth(smp, htx))
1348 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001349
Willy Tarreau79e57332018-10-02 16:01:16 +02001350 /* if the user does not belong to the userlist or has a wrong password,
1351 * report that it unconditionally does not match. Otherwise we return
1352 * a string containing the username.
1353 */
1354 if (!check_user(args->data.usr, smp->strm->txn->auth.user,
1355 smp->strm->txn->auth.pass))
1356 return 0;
1357
1358 /* pat_match_auth() will need the user list */
1359 smp->ctx.a[0] = args->data.usr;
1360
1361 smp->data.type = SMP_T_STR;
1362 smp->flags = SMP_F_CONST;
1363 smp->data.u.str.area = smp->strm->txn->auth.user;
1364 smp->data.u.str.data = strlen(smp->strm->txn->auth.user);
1365
1366 return 1;
1367}
1368
1369/* Fetch a captured HTTP request header. The index is the position of
1370 * the "capture" option in the configuration file
1371 */
1372static int smp_fetch_capture_req_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
1373{
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001374 struct proxy *fe;
Willy Tarreau79e57332018-10-02 16:01:16 +02001375 int idx;
1376
1377 if (!args || args->type != ARGT_SINT)
1378 return 0;
1379
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001380 if (!smp->strm)
1381 return 0;
1382
1383 fe = strm_fe(smp->strm);
Willy Tarreau79e57332018-10-02 16:01:16 +02001384 idx = args->data.sint;
1385
1386 if (idx > (fe->nb_req_cap - 1) || smp->strm->req_cap == NULL || smp->strm->req_cap[idx] == NULL)
1387 return 0;
1388
1389 smp->data.type = SMP_T_STR;
1390 smp->flags |= SMP_F_CONST;
1391 smp->data.u.str.area = smp->strm->req_cap[idx];
1392 smp->data.u.str.data = strlen(smp->strm->req_cap[idx]);
1393
1394 return 1;
1395}
1396
1397/* Fetch a captured HTTP response header. The index is the position of
1398 * the "capture" option in the configuration file
1399 */
1400static int smp_fetch_capture_res_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
1401{
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001402 struct proxy *fe;
Willy Tarreau79e57332018-10-02 16:01:16 +02001403 int idx;
1404
1405 if (!args || args->type != ARGT_SINT)
1406 return 0;
1407
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001408 if (!smp->strm)
1409 return 0;
1410
1411 fe = strm_fe(smp->strm);
Willy Tarreau79e57332018-10-02 16:01:16 +02001412 idx = args->data.sint;
1413
1414 if (idx > (fe->nb_rsp_cap - 1) || smp->strm->res_cap == NULL || smp->strm->res_cap[idx] == NULL)
1415 return 0;
1416
1417 smp->data.type = SMP_T_STR;
1418 smp->flags |= SMP_F_CONST;
1419 smp->data.u.str.area = smp->strm->res_cap[idx];
1420 smp->data.u.str.data = strlen(smp->strm->res_cap[idx]);
1421
1422 return 1;
1423}
1424
1425/* Extracts the METHOD in the HTTP request, the txn->uri should be filled before the call */
1426static int smp_fetch_capture_req_method(const struct arg *args, struct sample *smp, const char *kw, void *private)
1427{
1428 struct buffer *temp;
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001429 struct http_txn *txn;
Willy Tarreau79e57332018-10-02 16:01:16 +02001430 char *ptr;
1431
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001432 if (!smp->strm)
1433 return 0;
1434
1435 txn = smp->strm->txn;
Willy Tarreau79e57332018-10-02 16:01:16 +02001436 if (!txn || !txn->uri)
1437 return 0;
1438
1439 ptr = txn->uri;
1440
1441 while (*ptr != ' ' && *ptr != '\0') /* find first space */
1442 ptr++;
1443
1444 temp = get_trash_chunk();
1445 temp->area = txn->uri;
1446 temp->data = ptr - txn->uri;
1447 smp->data.u.str = *temp;
1448 smp->data.type = SMP_T_STR;
1449 smp->flags = SMP_F_CONST;
1450
1451 return 1;
1452
1453}
1454
1455/* Extracts the path in the HTTP request, the txn->uri should be filled before the call */
1456static int smp_fetch_capture_req_uri(const struct arg *args, struct sample *smp, const char *kw, void *private)
1457{
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001458 struct http_txn *txn;
Willy Tarreau79e57332018-10-02 16:01:16 +02001459 struct ist path;
1460 const char *ptr;
1461
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001462 if (!smp->strm)
1463 return 0;
1464
1465 txn = smp->strm->txn;
Willy Tarreau79e57332018-10-02 16:01:16 +02001466 if (!txn || !txn->uri)
1467 return 0;
1468
1469 ptr = txn->uri;
1470
1471 while (*ptr != ' ' && *ptr != '\0') /* find first space */
1472 ptr++;
1473
1474 if (!*ptr)
1475 return 0;
1476
Christopher Faulet78337bb2018-11-15 14:35:18 +01001477 /* skip the first space and find space after URI */
1478 path = ist2(++ptr, 0);
1479 while (*ptr != ' ' && *ptr != '\0')
1480 ptr++;
1481 path.len = ptr - path.ptr;
Willy Tarreau79e57332018-10-02 16:01:16 +02001482
Christopher Faulet78337bb2018-11-15 14:35:18 +01001483 path = http_get_path(path);
Tim Duesterhused526372020-03-05 17:56:33 +01001484 if (!isttest(path))
Willy Tarreau79e57332018-10-02 16:01:16 +02001485 return 0;
1486
1487 smp->data.u.str.area = path.ptr;
1488 smp->data.u.str.data = path.len;
1489 smp->data.type = SMP_T_STR;
1490 smp->flags = SMP_F_CONST;
1491
1492 return 1;
1493}
1494
1495/* Retrieves the HTTP version from the request (either 1.0 or 1.1) and emits it
1496 * as a string (either "HTTP/1.0" or "HTTP/1.1").
1497 */
1498static int smp_fetch_capture_req_ver(const struct arg *args, struct sample *smp, const char *kw, void *private)
1499{
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001500 struct http_txn *txn;
1501
1502 if (!smp->strm)
1503 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001504
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001505 txn = smp->strm->txn;
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001506 if (!txn || txn->req.msg_state >= HTTP_MSG_BODY)
Willy Tarreau79e57332018-10-02 16:01:16 +02001507 return 0;
1508
1509 if (txn->req.flags & HTTP_MSGF_VER_11)
1510 smp->data.u.str.area = "HTTP/1.1";
1511 else
1512 smp->data.u.str.area = "HTTP/1.0";
1513
1514 smp->data.u.str.data = 8;
1515 smp->data.type = SMP_T_STR;
1516 smp->flags = SMP_F_CONST;
1517 return 1;
1518
1519}
1520
1521/* Retrieves the HTTP version from the response (either 1.0 or 1.1) and emits it
1522 * as a string (either "HTTP/1.0" or "HTTP/1.1").
1523 */
1524static int smp_fetch_capture_res_ver(const struct arg *args, struct sample *smp, const char *kw, void *private)
1525{
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001526 struct http_txn *txn;
1527
1528 if (!smp->strm)
1529 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001530
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001531 txn = smp->strm->txn;
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001532 if (!txn || txn->rsp.msg_state >= HTTP_MSG_BODY)
Willy Tarreau79e57332018-10-02 16:01:16 +02001533 return 0;
1534
1535 if (txn->rsp.flags & HTTP_MSGF_VER_11)
1536 smp->data.u.str.area = "HTTP/1.1";
1537 else
1538 smp->data.u.str.area = "HTTP/1.0";
1539
1540 smp->data.u.str.data = 8;
1541 smp->data.type = SMP_T_STR;
1542 smp->flags = SMP_F_CONST;
1543 return 1;
1544
1545}
1546
1547/* Iterate over all cookies present in a message. The context is stored in
1548 * smp->ctx.a[0] for the in-header position, smp->ctx.a[1] for the
1549 * end-of-header-value, and smp->ctx.a[2] for the hdr_ctx. Depending on
1550 * the direction, multiple cookies may be parsed on the same line or not.
1551 * The cookie name is in args and the name length in args->data.str.len.
1552 * Accepts exactly 1 argument of type string. If the input options indicate
1553 * that no iterating is desired, then only last value is fetched if any.
1554 * The returned sample is of type CSTR. Can be used to parse cookies in other
1555 * files.
1556 */
1557static int smp_fetch_cookie(const struct arg *args, struct sample *smp, const char *kw, void *private)
1558{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001559 /* possible keywords: req.cookie / cookie / cook, res.cookie / scook / set-cookie */
1560 struct channel *chn = ((kw[0] == 'c' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Faulet16032ab2020-04-30 11:30:00 +02001561 struct check *check = ((kw[0] == 'c' && smp->sess) ? objt_check(smp->sess->origin) : NULL);
1562 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001563 struct http_hdr_ctx *ctx = smp->ctx.a[2];
1564 struct ist hdr;
Willy Tarreau79e57332018-10-02 16:01:16 +02001565 int occ = 0;
1566 int found = 0;
1567
1568 if (!args || args->type != ARGT_STR)
1569 return 0;
1570
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001571 if (!ctx) {
1572 /* first call */
1573 ctx = &static_http_hdr_ctx;
1574 ctx->blk = NULL;
1575 smp->ctx.a[2] = ctx;
1576 }
Willy Tarreau79e57332018-10-02 16:01:16 +02001577
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001578 if (!htx)
1579 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001580
Christopher Faulet16032ab2020-04-30 11:30:00 +02001581 hdr = (!(check || (chn && chn->flags & CF_ISRESP)) ? ist("Cookie") : ist("Set-Cookie"));
Willy Tarreau79e57332018-10-02 16:01:16 +02001582
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001583 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
1584 /* no explicit occurrence and single fetch => last cookie by default */
1585 occ = -1;
Willy Tarreau79e57332018-10-02 16:01:16 +02001586
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001587 /* OK so basically here, either we want only one value and it's the
1588 * last one, or we want to iterate over all of them and we fetch the
1589 * next one.
1590 */
Willy Tarreau79e57332018-10-02 16:01:16 +02001591
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001592 if (!(smp->flags & SMP_F_NOT_LAST)) {
1593 /* search for the header from the beginning, we must first initialize
1594 * the search parameters.
Willy Tarreau79e57332018-10-02 16:01:16 +02001595 */
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001596 smp->ctx.a[0] = NULL;
1597 ctx->blk = NULL;
Willy Tarreau79e57332018-10-02 16:01:16 +02001598 }
Willy Tarreau79e57332018-10-02 16:01:16 +02001599
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001600 smp->flags |= SMP_F_VOL_HDR;
1601 while (1) {
1602 /* Note: smp->ctx.a[0] == NULL every time we need to fetch a new header */
1603 if (!smp->ctx.a[0]) {
1604 if (!http_find_header(htx, hdr, ctx, 0))
1605 goto out;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001606
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001607 if (ctx->value.len < args->data.str.data + 1)
1608 continue;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001609
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001610 smp->ctx.a[0] = ctx->value.ptr;
1611 smp->ctx.a[1] = smp->ctx.a[0] + ctx->value.len;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001612 }
1613
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001614 smp->data.type = SMP_T_STR;
1615 smp->flags |= SMP_F_CONST;
1616 smp->ctx.a[0] = http_extract_cookie_value(smp->ctx.a[0], smp->ctx.a[1],
1617 args->data.str.area, args->data.str.data,
1618 (smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
1619 &smp->data.u.str.area,
1620 &smp->data.u.str.data);
1621 if (smp->ctx.a[0]) {
1622 found = 1;
1623 if (occ >= 0) {
1624 /* one value was returned into smp->data.u.str.{str,len} */
1625 smp->flags |= SMP_F_NOT_LAST;
1626 return 1;
Willy Tarreau79e57332018-10-02 16:01:16 +02001627 }
1628 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001629 /* if we're looking for last occurrence, let's loop */
Willy Tarreau79e57332018-10-02 16:01:16 +02001630 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001631
Willy Tarreau79e57332018-10-02 16:01:16 +02001632 /* all cookie headers and values were scanned. If we're looking for the
1633 * last occurrence, we may return it now.
1634 */
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001635 out:
Willy Tarreau79e57332018-10-02 16:01:16 +02001636 smp->flags &= ~SMP_F_NOT_LAST;
1637 return found;
1638}
1639
Christopher Fauletc1f40dd2019-05-16 10:07:30 +02001640/* Same than smp_fetch_cookie() but only relies on the sample direction to
1641 * choose the right channel. So instead of duplicating the code, we just change
1642 * the keyword and then fallback on smp_fetch_cookie().
1643 */
1644static int smp_fetch_chn_cookie(const struct arg *args, struct sample *smp, const char *kw, void *private)
1645{
1646 kw = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ ? "req.cook" : "res.cook");
1647 return smp_fetch_cookie(args, smp, kw, private);
1648}
1649
Willy Tarreau79e57332018-10-02 16:01:16 +02001650/* Iterate over all cookies present in a request to count how many occurrences
1651 * match the name in args and args->data.str.len. If <multi> is non-null, then
1652 * multiple cookies may be parsed on the same line. The returned sample is of
1653 * type UINT. Accepts exactly 1 argument of type string.
1654 */
1655static int smp_fetch_cookie_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
1656{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001657 /* possible keywords: req.cook_cnt / cook_cnt, res.cook_cnt / scook_cnt */
1658 struct channel *chn = ((kw[0] == 'c' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Faulet16032ab2020-04-30 11:30:00 +02001659 struct check *check = ((kw[0] == 'c' && smp->sess) ? objt_check(smp->sess->origin) : NULL);
1660 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001661 struct http_hdr_ctx ctx;
1662 struct ist hdr;
Willy Tarreau79e57332018-10-02 16:01:16 +02001663 char *val_beg, *val_end;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001664 int cnt;
Willy Tarreau79e57332018-10-02 16:01:16 +02001665
1666 if (!args || args->type != ARGT_STR)
1667 return 0;
1668
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001669 if (!htx)
1670 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001671
Christopher Faulet16032ab2020-04-30 11:30:00 +02001672 hdr = (!(check || (chn && chn->flags & CF_ISRESP)) ? ist("Cookie") : ist("Set-Cookie"));
Willy Tarreau79e57332018-10-02 16:01:16 +02001673
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001674 val_end = val_beg = NULL;
1675 ctx.blk = NULL;
1676 cnt = 0;
1677 while (1) {
1678 /* Note: val_beg == NULL every time we need to fetch a new header */
1679 if (!val_beg) {
1680 if (!http_find_header(htx, hdr, &ctx, 0))
1681 break;
Willy Tarreau79e57332018-10-02 16:01:16 +02001682
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001683 if (ctx.value.len < args->data.str.data + 1)
1684 continue;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001685
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001686 val_beg = ctx.value.ptr;
1687 val_end = val_beg + ctx.value.len;
Willy Tarreau79e57332018-10-02 16:01:16 +02001688 }
1689
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001690 smp->data.type = SMP_T_STR;
1691 smp->flags |= SMP_F_CONST;
1692 while ((val_beg = http_extract_cookie_value(val_beg, val_end,
1693 args->data.str.area, args->data.str.data,
1694 (smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
1695 &smp->data.u.str.area,
1696 &smp->data.u.str.data))) {
1697 cnt++;
Willy Tarreau79e57332018-10-02 16:01:16 +02001698 }
1699 }
1700
1701 smp->data.type = SMP_T_SINT;
1702 smp->data.u.sint = cnt;
1703 smp->flags |= SMP_F_VOL_HDR;
1704 return 1;
1705}
1706
1707/* Fetch an cookie's integer value. The integer value is returned. It
1708 * takes a mandatory argument of type string. It relies on smp_fetch_cookie().
1709 */
1710static int smp_fetch_cookie_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
1711{
1712 int ret = smp_fetch_cookie(args, smp, kw, private);
1713
1714 if (ret > 0) {
1715 smp->data.type = SMP_T_SINT;
1716 smp->data.u.sint = strl2ic(smp->data.u.str.area,
1717 smp->data.u.str.data);
1718 }
1719
1720 return ret;
1721}
1722
1723/************************************************************************/
1724/* The code below is dedicated to sample fetches */
1725/************************************************************************/
1726
1727/* This scans a URL-encoded query string. It takes an optionally wrapping
1728 * string whose first contigous chunk has its beginning in ctx->a[0] and end
1729 * in ctx->a[1], and the optional second part in (ctx->a[2]..ctx->a[3]). The
1730 * pointers are updated for next iteration before leaving.
1731 */
1732static int smp_fetch_param(char delim, const char *name, int name_len, const struct arg *args, struct sample *smp, const char *kw, void *private)
1733{
1734 const char *vstart, *vend;
1735 struct buffer *temp;
1736 const char **chunks = (const char **)smp->ctx.a;
1737
1738 if (!http_find_next_url_param(chunks, name, name_len,
1739 &vstart, &vend, delim))
1740 return 0;
1741
1742 /* Create sample. If the value is contiguous, return the pointer as CONST,
1743 * if the value is wrapped, copy-it in a buffer.
1744 */
1745 smp->data.type = SMP_T_STR;
1746 if (chunks[2] &&
1747 vstart >= chunks[0] && vstart <= chunks[1] &&
1748 vend >= chunks[2] && vend <= chunks[3]) {
1749 /* Wrapped case. */
1750 temp = get_trash_chunk();
1751 memcpy(temp->area, vstart, chunks[1] - vstart);
1752 memcpy(temp->area + ( chunks[1] - vstart ), chunks[2],
1753 vend - chunks[2]);
1754 smp->data.u.str.area = temp->area;
1755 smp->data.u.str.data = ( chunks[1] - vstart ) + ( vend - chunks[2] );
1756 } else {
1757 /* Contiguous case. */
1758 smp->data.u.str.area = (char *)vstart;
1759 smp->data.u.str.data = vend - vstart;
1760 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
1761 }
1762
1763 /* Update context, check wrapping. */
1764 chunks[0] = vend;
1765 if (chunks[2] && vend >= chunks[2] && vend <= chunks[3]) {
1766 chunks[1] = chunks[3];
1767 chunks[2] = NULL;
1768 }
1769
1770 if (chunks[0] < chunks[1])
1771 smp->flags |= SMP_F_NOT_LAST;
1772
1773 return 1;
1774}
1775
1776/* This function iterates over each parameter of the query string. It uses
1777 * ctx->a[0] and ctx->a[1] to store the beginning and end of the current
1778 * parameter. Since it uses smp_fetch_param(), ctx->a[2..3] are both NULL.
1779 * An optional parameter name is passed in args[0], otherwise any parameter is
1780 * considered. It supports an optional delimiter argument for the beginning of
1781 * the string in args[1], which defaults to "?".
1782 */
1783static int smp_fetch_url_param(const struct arg *args, struct sample *smp, const char *kw, void *private)
1784{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001785 struct channel *chn = SMP_REQ_CHN(smp);
Willy Tarreau79e57332018-10-02 16:01:16 +02001786 char delim = '?';
1787 const char *name;
1788 int name_len;
1789
1790 if (!args ||
1791 (args[0].type && args[0].type != ARGT_STR) ||
1792 (args[1].type && args[1].type != ARGT_STR))
1793 return 0;
1794
1795 name = "";
1796 name_len = 0;
1797 if (args->type == ARGT_STR) {
1798 name = args->data.str.area;
1799 name_len = args->data.str.data;
1800 }
1801
1802 if (args[1].type)
1803 delim = *args[1].data.str.area;
1804
1805 if (!smp->ctx.a[0]) { // first call, find the query string
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001806 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001807 struct htx_sl *sl;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001808
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001809 if (!htx)
1810 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001811
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001812 sl = http_get_stline(htx);
1813 smp->ctx.a[0] = http_find_param_list(HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl), delim);
1814 if (!smp->ctx.a[0])
1815 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001816
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001817 smp->ctx.a[1] = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +02001818
1819 /* Assume that the context is filled with NULL pointer
1820 * before the first call.
1821 * smp->ctx.a[2] = NULL;
1822 * smp->ctx.a[3] = NULL;
1823 */
1824 }
1825
1826 return smp_fetch_param(delim, name, name_len, args, smp, kw, private);
1827}
1828
1829/* This function iterates over each parameter of the body. This requires
1830 * that the body has been waited for using http-buffer-request. It uses
1831 * ctx->a[0] and ctx->a[1] to store the beginning and end of the first
1832 * contigous part of the body, and optionally ctx->a[2..3] to reference the
1833 * optional second part if the body wraps at the end of the buffer. An optional
1834 * parameter name is passed in args[0], otherwise any parameter is considered.
1835 */
1836static int smp_fetch_body_param(const struct arg *args, struct sample *smp, const char *kw, void *private)
1837{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001838 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet16032ab2020-04-30 11:30:00 +02001839 struct check *check = ((kw[0] == 'c' && smp->sess) ? objt_check(smp->sess->origin) : NULL);
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 Faulet16032ab2020-04-30 11:30:00 +02001854 struct htx *htx = smp_prefetch_htx(smp, chn, check, 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
2084 /* explicit req.{cook,hdr} are used to force the fetch direction to be request-only */
2085 { "req.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
2086 { "req.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2087 { "req.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2088
2089 { "req.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
2090 { "req.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2091 { "req.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
2092 { "req.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2093 { "req.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
2094 { "req.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
2095 { "req.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRQHV },
2096
2097 /* explicit req.{cook,hdr} are used to force the fetch direction to be response-only */
2098 { "res.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
2099 { "res.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2100 { "res.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2101
2102 { "res.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
2103 { "res.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2104 { "res.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
2105 { "res.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2106 { "res.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
2107 { "res.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
2108 { "res.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRSHV },
2109
2110 /* scook is valid only on the response and is used for ACL compatibility */
2111 { "scook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
2112 { "scook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2113 { "scook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2114 { "set-cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, /* deprecated */
2115
2116 /* shdr is valid only on the response and is used for ACL compatibility */
2117 { "shdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
2118 { "shdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2119 { "shdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
2120 { "shdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRSHV },
2121
2122 { "status", smp_fetch_stcode, 0, NULL, SMP_T_SINT, SMP_USE_HRSHP },
2123 { "unique-id", smp_fetch_uniqueid, 0, NULL, SMP_T_STR, SMP_SRC_L4SRV },
2124 { "url", smp_fetch_url, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2125 { "url32", smp_fetch_url32, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
2126 { "url32+src", smp_fetch_url32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
2127 { "url_ip", smp_fetch_url_ip, 0, NULL, SMP_T_IPV4, SMP_USE_HRQHV },
2128 { "url_port", smp_fetch_url_port, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
2129 { "url_param", smp_fetch_url_param, ARG2(0,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
2130 { "urlp" , smp_fetch_url_param, ARG2(0,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
2131 { "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 +02002132
2133
2134 { "check.ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_INTRN },
2135 { "check.status", smp_fetch_stcode, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
2136 { "check.hdrs", smp_fetch_hdrs, 0, NULL, SMP_T_BIN, SMP_USE_INTRN },
2137 { "check.hdrs_bin", smp_fetch_hdrs_bin, 0, NULL, SMP_T_BIN, SMP_USE_INTRN },
2138 { "check.body", smp_fetch_body, 0, NULL, SMP_T_BIN, SMP_USE_INTRN },
2139 { "check.body_len", smp_fetch_body_len, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
2140 { "check.body_size", smp_fetch_body_size, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
2141 { "check.body_param", smp_fetch_body_param, ARG1(0,STR), NULL, SMP_T_BIN, SMP_USE_INTRN },
2142 { "check.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_INTRN },
2143 { "check.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_INTRN },
2144 { "check.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_INTRN },
2145 { "check.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_INTRN },
2146 { "check.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_INTRN },
2147 { "check.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_INTRN },
2148 { "check.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_INTRN },
2149 { "check.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_INTRN },
2150 { "check.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_INTRN },
2151 { "check.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_INTRN },
Willy Tarreau79e57332018-10-02 16:01:16 +02002152 { /* END */ },
2153}};
2154
Willy Tarreau0108d902018-11-25 19:14:37 +01002155INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords);
Willy Tarreau79e57332018-10-02 16:01:16 +02002156
2157/*
2158 * Local variables:
2159 * c-indent-level: 8
2160 * c-basic-offset: 8
2161 * End:
2162 */