blob: 585743edf7b76c6709cf6c6ff8a937c978c79961 [file] [log] [blame]
Willy Tarreau79e57332018-10-02 16:01:16 +02001/*
2 * HTTP samples fetching
3 *
4 * Copyright 2000-2018 Willy Tarreau <w@1wt.eu>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <sys/types.h>
14
15#include <ctype.h>
16#include <string.h>
17#include <time.h>
18
Willy Tarreaub2551052020-06-09 09:07:15 +020019#include <haproxy/api.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020020#include <haproxy/arg.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020021#include <haproxy/auth.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020022#include <haproxy/base64.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020023#include <haproxy/channel.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020024#include <haproxy/chunk.h>
Willy Tarreau7ea393d2020-06-04 18:02:10 +020025#include <haproxy/connection.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020026#include <haproxy/global.h>
Willy Tarreau5413a872020-06-02 19:33:08 +020027#include <haproxy/h1.h>
Willy Tarreauc6fe8842020-06-04 09:00:02 +020028#include <haproxy/h1_htx.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020029#include <haproxy/http.h>
Willy Tarreauc2b1ff02020-06-04 21:21:03 +020030#include <haproxy/http_ana.h>
Willy Tarreau126ba3a2020-06-04 18:26:43 +020031#include <haproxy/http_fetch.h>
Willy Tarreau87735332020-06-04 09:08:41 +020032#include <haproxy/http_htx.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020033#include <haproxy/htx.h>
Willy Tarreau8efbdfb2020-06-04 11:29:21 +020034#include <haproxy/obj_type.h>
Willy Tarreaud0ef4392020-06-02 09:38:52 +020035#include <haproxy/pool.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020036#include <haproxy/sample.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020037#include <haproxy/stream.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020038#include <haproxy/tools.h>
Willy Tarreaud6788052020-05-27 15:59:00 +020039#include <haproxy/version.h>
Willy Tarreau79e57332018-10-02 16:01:16 +020040
Willy Tarreau79e57332018-10-02 16:01:16 +020041
42/* this struct is used between calls to smp_fetch_hdr() or smp_fetch_cookie() */
Christopher Fauletef453ed2018-10-24 21:39:27 +020043static THREAD_LOCAL struct http_hdr_ctx static_http_hdr_ctx;
Richard Russo458eafb2019-07-31 11:45:56 -070044/* this is used to convert raw connection buffers to htx */
45static THREAD_LOCAL struct buffer static_raw_htx_chunk;
46static THREAD_LOCAL char *static_raw_htx_buf;
Christopher Fauletef453ed2018-10-24 21:39:27 +020047
Christopher Faulet89dc4992019-04-17 12:02:59 +020048#define SMP_REQ_CHN(smp) (smp->strm ? &smp->strm->req : NULL)
49#define SMP_RES_CHN(smp) (smp->strm ? &smp->strm->res : NULL)
Willy Tarreau79e57332018-10-02 16:01:16 +020050
Richard Russo458eafb2019-07-31 11:45:56 -070051/* This function returns the static htx chunk, where raw connections get
52 * converted to HTX as needed for samplxsing.
53 */
54struct buffer *get_raw_htx_chunk(void)
55{
56 chunk_reset(&static_raw_htx_chunk);
57 return &static_raw_htx_chunk;
58}
59
60static int alloc_raw_htx_chunk_per_thread()
61{
62 static_raw_htx_buf = malloc(global.tune.bufsize);
63 if (!static_raw_htx_buf)
64 return 0;
65 chunk_init(&static_raw_htx_chunk, static_raw_htx_buf, global.tune.bufsize);
66 return 1;
67}
68
69static void free_raw_htx_chunk_per_thread()
70{
71 free(static_raw_htx_buf);
72 static_raw_htx_buf = NULL;
73}
74
75REGISTER_PER_THREAD_ALLOC(alloc_raw_htx_chunk_per_thread);
76REGISTER_PER_THREAD_FREE(free_raw_htx_chunk_per_thread);
77
Willy Tarreau79e57332018-10-02 16:01:16 +020078/*
79 * Returns the data from Authorization header. Function may be called more
80 * than once so data is stored in txn->auth_data. When no header is found
81 * or auth method is unknown auth_method is set to HTTP_AUTH_WRONG to avoid
82 * searching again for something we are unable to find anyway. However, if
83 * the result if valid, the cache is not reused because we would risk to
84 * have the credentials overwritten by another stream in parallel.
Willy Tarreaueae83722020-04-29 11:52:51 +020085 * The caller is responsible for passing a sample with a valid stream/txn,
86 * and a valid htx.
Willy Tarreau79e57332018-10-02 16:01:16 +020087 */
88
Christopher Fauletcd761952019-07-15 13:58:29 +020089static int get_http_auth(struct sample *smp, struct htx *htx)
Willy Tarreau79e57332018-10-02 16:01:16 +020090{
Christopher Faulet311c7ea2018-10-24 21:41:55 +020091 struct stream *s = smp->strm;
Willy Tarreau79e57332018-10-02 16:01:16 +020092 struct http_txn *txn = s->txn;
Christopher Faulet6d1dd462019-07-15 14:36:03 +020093 struct http_hdr_ctx ctx = { .blk = NULL };
94 struct ist hdr;
Willy Tarreau79e57332018-10-02 16:01:16 +020095 struct buffer auth_method;
Christopher Faulet6d1dd462019-07-15 14:36:03 +020096 char *p;
Willy Tarreau79e57332018-10-02 16:01:16 +020097 int len;
98
99#ifdef DEBUG_AUTH
100 printf("Auth for stream %p: %d\n", s, txn->auth.method);
101#endif
Willy Tarreau79e57332018-10-02 16:01:16 +0200102 if (txn->auth.method == HTTP_AUTH_WRONG)
103 return 0;
104
105 txn->auth.method = HTTP_AUTH_WRONG;
106
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200107 if (txn->flags & TX_USE_PX_CONN)
108 hdr = ist("Proxy-Authorization");
109 else
110 hdr = ist("Authorization");
Willy Tarreau79e57332018-10-02 16:01:16 +0200111
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200112 ctx.blk = NULL;
113 if (!http_find_header(htx, hdr, &ctx, 0))
114 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200115
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200116 p = memchr(ctx.value.ptr, ' ', ctx.value.len);
117 len = p - ctx.value.ptr;
118 if (!p || len <= 0)
119 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200120
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200121 if (chunk_initlen(&auth_method, ctx.value.ptr, 0, len) != 1)
122 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200123
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200124 chunk_initlen(&txn->auth.method_data, p + 1, 0, ctx.value.len - len - 1);
Willy Tarreau79e57332018-10-02 16:01:16 +0200125
126 if (!strncasecmp("Basic", auth_method.area, auth_method.data)) {
127 struct buffer *http_auth = get_trash_chunk();
128
129 len = base64dec(txn->auth.method_data.area,
130 txn->auth.method_data.data,
131 http_auth->area, global.tune.bufsize - 1);
132
133 if (len < 0)
134 return 0;
135
136
137 http_auth->area[len] = '\0';
138
139 p = strchr(http_auth->area, ':');
140
141 if (!p)
142 return 0;
143
144 txn->auth.user = http_auth->area;
145 *p = '\0';
146 txn->auth.pass = p+1;
147
148 txn->auth.method = HTTP_AUTH_BASIC;
149 return 1;
150 }
151
152 return 0;
153}
154
155/* This function ensures that the prerequisites for an L7 fetch are ready,
156 * which means that a request or response is ready. If some data is missing,
157 * a parsing attempt is made. This is useful in TCP-based ACLs which are able
Christopher Faulet5ec8bcb2019-04-17 12:04:12 +0200158 * to extract data from L7. If <vol> is non-null during a prefetch, another
159 * test is made to ensure the required information is not gone.
Christopher Fauletef453ed2018-10-24 21:39:27 +0200160 *
161 * The function returns :
162 * NULL with SMP_F_MAY_CHANGE in the sample flags if some data is missing to
163 * decide whether or not an HTTP message is present ;
164 * NULL if the requested data cannot be fetched or if it is certain that
Willy Tarreaueae83722020-04-29 11:52:51 +0200165 * we'll never have any HTTP message there; this includes null strm or chn.
Christopher Fauletef453ed2018-10-24 21:39:27 +0200166 * The HTX message if ready
167 */
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200168struct htx *smp_prefetch_htx(struct sample *smp, struct channel *chn, struct check *check, int vol)
Christopher Fauletef453ed2018-10-24 21:39:27 +0200169{
Christopher Fauletef453ed2018-10-24 21:39:27 +0200170 struct stream *s = smp->strm;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200171 struct http_txn *txn = NULL;
172 struct htx *htx = NULL;
Christopher Faulet89dc4992019-04-17 12:02:59 +0200173 struct http_msg *msg;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100174 struct htx_sl *sl;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200175
176 /* Note: it is possible that <s> is NULL when called before stream
177 * initialization (eg: tcp-request connection), so this function is the
178 * one responsible for guarding against this case for all HTTP users.
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200179 *
180 * In the health check context, the stream and the channel must be NULL
181 * and <check> must be set. In this case, only the input buffer,
182 * corresponding to the response, is considered. It is the caller
183 * responsibility to provide <check>.
Christopher Fauletef453ed2018-10-24 21:39:27 +0200184 */
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200185 BUG_ON(check && (s || chn));
186 if (!s || !chn) {
187 if (check) {
188 htx = htxbuf(&check->bi);
189
190 /* Analyse not yet started */
191 if (htx_is_empty(htx) || htx->first == -1)
192 return NULL;
193
194 sl = http_get_stline(htx);
195 if (vol && !sl) {
196 /* The start-line was already forwarded, it is too late to fetch anything */
197 return NULL;
198 }
199 goto end;
200 }
201
Christopher Fauletef453ed2018-10-24 21:39:27 +0200202 return NULL;
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200203 }
Christopher Fauletef453ed2018-10-24 21:39:27 +0200204
205 if (!s->txn) {
206 if (unlikely(!http_alloc_txn(s)))
207 return NULL; /* not enough memory */
208 http_init_txn(s);
209 txn = s->txn;
210 }
Christopher Faulet89dc4992019-04-17 12:02:59 +0200211 txn = s->txn;
212 msg = (!(chn->flags & CF_ISRESP) ? &txn->req : &txn->rsp);
213 smp->data.type = SMP_T_BOOL;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200214
Christopher Fauleteca88542019-04-03 10:12:42 +0200215 if (IS_HTX_STRM(s)) {
Christopher Faulet89dc4992019-04-17 12:02:59 +0200216 htx = htxbuf(&chn->buf);
Christopher Fauletef453ed2018-10-24 21:39:27 +0200217
Christopher Faulet89dc4992019-04-17 12:02:59 +0200218 if (msg->msg_state == HTTP_MSG_ERROR || (htx->flags & HTX_FL_PARSING_ERROR))
219 return NULL;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200220
Christopher Faulet89dc4992019-04-17 12:02:59 +0200221 if (msg->msg_state < HTTP_MSG_BODY) {
222 /* Analyse not yet started */
Christopher Faulet29f17582019-05-23 11:03:26 +0200223 if (htx_is_empty(htx) || htx->first == -1) {
Christopher Fauletef453ed2018-10-24 21:39:27 +0200224 /* Parsing is done by the mux, just wait */
225 smp->flags |= SMP_F_MAY_CHANGE;
226 return NULL;
227 }
228 }
Christopher Faulet297fbb42019-05-13 14:41:27 +0200229 sl = http_get_stline(htx);
Christopher Faulet5ec8bcb2019-04-17 12:04:12 +0200230 if (vol && !sl) {
Christopher Faulet89dc4992019-04-17 12:02:59 +0200231 /* The start-line was already forwarded, it is too late to fetch anything */
232 return NULL;
233 }
Christopher Fauletef453ed2018-10-24 21:39:27 +0200234 }
Christopher Fauleteca88542019-04-03 10:12:42 +0200235 else { /* RAW mode */
Christopher Faulet89dc4992019-04-17 12:02:59 +0200236 struct buffer *buf;
237 struct h1m h1m;
Christopher Faulete4ab11b2019-06-11 15:05:37 +0200238 struct http_hdr hdrs[global.tune.max_http_hdr];
Christopher Faulet89dc4992019-04-17 12:02:59 +0200239 union h1_sl h1sl;
240 unsigned int flags = HTX_FL_NONE;
241 int ret;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200242
Christopher Faulet89dc4992019-04-17 12:02:59 +0200243 /* no HTTP fetch on the response in TCP mode */
244 if (chn->flags & CF_ISRESP)
245 return NULL;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200246
Christopher Faulet89dc4992019-04-17 12:02:59 +0200247 /* Now we are working on the request only */
248 buf = &chn->buf;
249 if (b_head(buf) + b_data(buf) > b_wrap(buf))
250 b_slow_realign(buf, trash.area, 0);
Christopher Fauletef453ed2018-10-24 21:39:27 +0200251
Christopher Faulet89dc4992019-04-17 12:02:59 +0200252 h1m_init_req(&h1m);
253 ret = h1_headers_to_hdr_list(b_head(buf), b_stop(buf),
254 hdrs, sizeof(hdrs)/sizeof(hdrs[0]), &h1m, &h1sl);
255 if (ret <= 0) {
256 /* Invalid or too big*/
257 if (ret < 0 || channel_full(&s->req, global.tune.maxrewrite))
Christopher Fauletef453ed2018-10-24 21:39:27 +0200258 return NULL;
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100259
Christopher Faulet89dc4992019-04-17 12:02:59 +0200260 /* wait for a full request */
261 smp->flags |= SMP_F_MAY_CHANGE;
262 return NULL;
263 }
Christopher Fauletf1ba18d2018-11-26 21:37:08 +0100264
Christopher Faulet89dc4992019-04-17 12:02:59 +0200265 /* OK we just got a valid HTTP mesage. We have to convert it
266 * into an HTX message.
267 */
268 if (unlikely(h1sl.rq.v.len == 0)) {
269 /* try to convert HTTP/0.9 requests to HTTP/1.0 */
270 if (h1sl.rq.meth != HTTP_METH_GET || !h1sl.rq.u.len)
Christopher Fauletef453ed2018-10-24 21:39:27 +0200271 return NULL;
Christopher Faulet89dc4992019-04-17 12:02:59 +0200272 h1sl.rq.v = ist("HTTP/1.0");
Christopher Fauletef453ed2018-10-24 21:39:27 +0200273 }
Christopher Faulet89dc4992019-04-17 12:02:59 +0200274
275 /* Set HTX start-line flags */
276 if (h1m.flags & H1_MF_VER_11)
277 flags |= HTX_SL_F_VER_11;
278 if (h1m.flags & H1_MF_XFER_ENC)
279 flags |= HTX_SL_F_XFER_ENC;
280 flags |= HTX_SL_F_XFER_LEN;
281 if (h1m.flags & H1_MF_CHNK)
282 flags |= HTX_SL_F_CHNK;
283 else if (h1m.flags & H1_MF_CLEN)
284 flags |= HTX_SL_F_CLEN;
285
Richard Russo458eafb2019-07-31 11:45:56 -0700286 htx = htx_from_buf(get_raw_htx_chunk());
Christopher Faulet89dc4992019-04-17 12:02:59 +0200287 sl = htx_add_stline(htx, HTX_BLK_REQ_SL, flags, h1sl.rq.m, h1sl.rq.u, h1sl.rq.v);
288 if (!sl || !htx_add_all_headers(htx, hdrs))
Christopher Fauletef453ed2018-10-24 21:39:27 +0200289 return NULL;
Willy Tarreauce9bbf52019-05-13 08:32:31 +0200290 sl->info.req.meth = h1sl.rq.meth;
Christopher Faulet89dc4992019-04-17 12:02:59 +0200291 }
292
293 /* OK we just got a valid HTTP message. If not already done by
294 * HTTP analyzers, we have some minor preparation to perform so
295 * that further checks can rely on HTTP tests.
296 */
297 if (sl && msg->msg_state < HTTP_MSG_BODY) {
298 if (!(chn->flags & CF_ISRESP)) {
299 txn->meth = sl->info.req.meth;
300 if (txn->meth == HTTP_METH_GET || txn->meth == HTTP_METH_HEAD)
301 s->flags |= SF_REDIRECTABLE;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200302 }
Christopher Faulet89dc4992019-04-17 12:02:59 +0200303 else
304 txn->status = sl->info.res.status;
305 if (sl->flags & HTX_SL_F_VER_11)
306 msg->flags |= HTTP_MSGF_VER_11;
Christopher Fauletef453ed2018-10-24 21:39:27 +0200307 }
308
309 /* everything's OK */
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200310 end:
Christopher Fauletef453ed2018-10-24 21:39:27 +0200311 smp->data.u.sint = 1;
312 return htx;
313}
314
Willy Tarreau79e57332018-10-02 16:01:16 +0200315/* This function fetches the method of current HTTP request and stores
316 * it in the global pattern struct as a chunk. There are two possibilities :
317 * - if the method is known (not HTTP_METH_OTHER), its identifier is stored
318 * in <len> and <ptr> is NULL ;
319 * - if the method is unknown (HTTP_METH_OTHER), <ptr> points to the text and
320 * <len> to its length.
321 * This is intended to be used with pat_match_meth() only.
322 */
323static int smp_fetch_meth(const struct arg *args, struct sample *smp, const char *kw, void *private)
324{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200325 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200326 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 0);
Willy Tarreau79e57332018-10-02 16:01:16 +0200327 struct http_txn *txn;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200328 int meth;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200329
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200330 if (!htx)
331 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200332
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200333 txn = smp->strm->txn;
334 meth = txn->meth;
335 smp->data.type = SMP_T_METH;
336 smp->data.u.meth.meth = meth;
337 if (meth == HTTP_METH_OTHER) {
338 struct htx_sl *sl;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200339
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200340 if ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_RES) {
341 /* ensure the indexes are not affected */
342 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200343 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200344 sl = http_get_stline(htx);
345 smp->flags |= SMP_F_CONST;
346 smp->data.u.meth.str.area = HTX_SL_REQ_MPTR(sl);
347 smp->data.u.meth.str.data = HTX_SL_REQ_MLEN(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +0200348 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200349 smp->flags |= SMP_F_VOL_1ST;
Willy Tarreau79e57332018-10-02 16:01:16 +0200350 return 1;
351}
352
353static int smp_fetch_rqver(const struct arg *args, struct sample *smp, const char *kw, void *private)
354{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200355 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200356 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200357 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +0200358 char *ptr;
359 int len;
360
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200361 if (!htx)
362 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200363
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200364 sl = http_get_stline(htx);
365 len = HTX_SL_REQ_VLEN(sl);
366 ptr = HTX_SL_REQ_VPTR(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +0200367
368 while ((len-- > 0) && (*ptr++ != '/'));
369 if (len <= 0)
370 return 0;
371
372 smp->data.type = SMP_T_STR;
373 smp->data.u.str.area = ptr;
374 smp->data.u.str.data = len;
375
376 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
377 return 1;
378}
379
380static int smp_fetch_stver(const struct arg *args, struct sample *smp, const char *kw, void *private)
381{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200382 struct channel *chn = SMP_RES_CHN(smp);
Christopher Fauletf98e6262020-05-06 09:42:04 +0200383 struct check *check = objt_check(smp->sess->origin);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200384 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200385 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +0200386 char *ptr;
387 int len;
388
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200389 if (!htx)
390 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200391
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200392 sl = http_get_stline(htx);
393 len = HTX_SL_RES_VLEN(sl);
394 ptr = HTX_SL_RES_VPTR(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +0200395
396 while ((len-- > 0) && (*ptr++ != '/'));
397 if (len <= 0)
398 return 0;
399
400 smp->data.type = SMP_T_STR;
401 smp->data.u.str.area = ptr;
402 smp->data.u.str.data = len;
403
404 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
405 return 1;
406}
407
408/* 3. Check on Status Code. We manipulate integers here. */
409static int smp_fetch_stcode(const struct arg *args, struct sample *smp, const char *kw, void *private)
410{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200411 struct channel *chn = SMP_RES_CHN(smp);
Christopher Fauletf98e6262020-05-06 09:42:04 +0200412 struct check *check = objt_check(smp->sess->origin);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200413 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200414 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +0200415 char *ptr;
416 int len;
417
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200418 if (!htx)
419 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200420
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200421 sl = http_get_stline(htx);
422 len = HTX_SL_RES_CLEN(sl);
423 ptr = HTX_SL_RES_CPTR(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +0200424
425 smp->data.type = SMP_T_SINT;
426 smp->data.u.sint = __strl2ui(ptr, len);
427 smp->flags = SMP_F_VOL_1ST;
428 return 1;
429}
430
431static int smp_fetch_uniqueid(const struct arg *args, struct sample *smp, const char *kw, void *private)
432{
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100433 struct ist unique_id;
Tim Duesterhus2825b4b2020-02-28 15:13:34 +0100434
Willy Tarreau79e57332018-10-02 16:01:16 +0200435 if (LIST_ISEMPTY(&smp->sess->fe->format_unique_id))
436 return 0;
437
Willy Tarreaua1062a42020-04-29 11:50:38 +0200438 if (!smp->strm)
439 return 0;
440
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100441 unique_id = stream_generate_unique_id(smp->strm, &smp->sess->fe->format_unique_id);
442 if (!isttest(unique_id))
Tim Duesterhus2825b4b2020-02-28 15:13:34 +0100443 return 0;
444
Tim Duesterhusa17e6622020-03-05 20:19:02 +0100445 smp->data.u.str.area = smp->strm->unique_id.ptr;
446 smp->data.u.str.data = smp->strm->unique_id.len;
Tim Duesterhus2825b4b2020-02-28 15:13:34 +0100447 smp->data.type = SMP_T_STR;
Willy Tarreau79e57332018-10-02 16:01:16 +0200448 smp->flags = SMP_F_CONST;
449 return 1;
450}
451
452/* Returns a string block containing all headers including the
Joseph Herlant942eea32018-11-15 13:57:22 -0800453 * empty line which separes headers from the body. This is useful
454 * for some headers analysis.
Willy Tarreau79e57332018-10-02 16:01:16 +0200455 */
456static int smp_fetch_hdrs(const struct arg *args, struct sample *smp, const char *kw, void *private)
457{
Christopher Faulete596d182020-05-05 17:46:34 +0200458 /* possible keywords: req.hdrs, res.hdrs */
459 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200460 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200461 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200462 struct buffer *temp;
463 int32_t pos;
Willy Tarreau79e57332018-10-02 16:01:16 +0200464
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200465 if (!htx)
466 return 0;
467 temp = get_trash_chunk();
468 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
469 struct htx_blk *blk = htx_get_blk(htx, pos);
470 enum htx_blk_type type = htx_get_blk_type(blk);
Willy Tarreau79e57332018-10-02 16:01:16 +0200471
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200472 if (type == HTX_BLK_HDR) {
473 struct ist n = htx_get_blk_name(htx, blk);
474 struct ist v = htx_get_blk_value(htx, blk);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200475
Christopher Faulet53a899b2019-10-08 16:38:42 +0200476 if (!h1_format_htx_hdr(n, v, temp))
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200477 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200478 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200479 else if (type == HTX_BLK_EOH) {
480 if (!chunk_memcat(temp, "\r\n", 2))
481 return 0;
482 break;
483 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200484 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200485 smp->data.type = SMP_T_STR;
486 smp->data.u.str = *temp;
Willy Tarreau79e57332018-10-02 16:01:16 +0200487 return 1;
488}
489
490/* Returns the header request in a length/value encoded format.
491 * This is useful for exchanges with the SPOE.
492 *
493 * A "length value" is a multibyte code encoding numbers. It uses the
494 * SPOE format. The encoding is the following:
495 *
496 * Each couple "header name" / "header value" is composed
497 * like this:
498 * "length value" "header name bytes"
499 * "length value" "header value bytes"
500 * When the last header is reached, the header name and the header
501 * value are empty. Their length are 0
502 */
503static int smp_fetch_hdrs_bin(const struct arg *args, struct sample *smp, const char *kw, void *private)
504{
Christopher Faulete596d182020-05-05 17:46:34 +0200505 /* possible keywords: req.hdrs_bin, res.hdrs_bin */
506 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200507 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200508 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200509 struct buffer *temp;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200510 char *p, *end;
511 int32_t pos;
512 int ret;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200513
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200514 if (!htx)
515 return 0;
516 temp = get_trash_chunk();
517 p = temp->area;
518 end = temp->area + temp->size;
519 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
520 struct htx_blk *blk = htx_get_blk(htx, pos);
521 enum htx_blk_type type = htx_get_blk_type(blk);
522 struct ist n, v;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200523
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200524 if (type == HTX_BLK_HDR) {
525 n = htx_get_blk_name(htx,blk);
526 v = htx_get_blk_value(htx, blk);
Willy Tarreau79e57332018-10-02 16:01:16 +0200527
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200528 /* encode the header name. */
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200529 ret = encode_varint(n.len, &p, end);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200530 if (ret == -1)
531 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200532 if (p + n.len > end)
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200533 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200534 memcpy(p, n.ptr, n.len);
535 p += n.len;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200536
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200537 /* encode the header value. */
538 ret = encode_varint(v.len, &p, end);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200539 if (ret == -1)
540 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200541 if (p + v.len > end)
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200542 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200543 memcpy(p, v.ptr, v.len);
544 p += v.len;
Willy Tarreau79e57332018-10-02 16:01:16 +0200545
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200546 }
547 else if (type == HTX_BLK_EOH) {
548 /* encode the end of the header list with empty
549 * header name and header value.
550 */
551 ret = encode_varint(0, &p, end);
552 if (ret == -1)
553 return 0;
554 ret = encode_varint(0, &p, end);
555 if (ret == -1)
556 return 0;
557 break;
558 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200559 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200560
561 /* Initialise sample data which will be filled. */
562 smp->data.type = SMP_T_BIN;
563 smp->data.u.str.area = temp->area;
564 smp->data.u.str.data = p - temp->area;
565 smp->data.u.str.size = temp->size;
Willy Tarreau79e57332018-10-02 16:01:16 +0200566 return 1;
567}
568
569/* returns the longest available part of the body. This requires that the body
570 * has been waited for using http-buffer-request.
571 */
572static int smp_fetch_body(const struct arg *args, struct sample *smp, const char *kw, void *private)
573{
Christopher Faulete596d182020-05-05 17:46:34 +0200574 /* possible keywords: req.body, res.body */
575 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200576 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200577 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Willy Tarreau79e57332018-10-02 16:01:16 +0200578 struct buffer *temp;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200579 int32_t pos;
Willy Tarreau79e57332018-10-02 16:01:16 +0200580
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200581 if (!htx)
582 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200583
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200584 temp = get_trash_chunk();
585 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
586 struct htx_blk *blk = htx_get_blk(htx, pos);
587 enum htx_blk_type type = htx_get_blk_type(blk);
Willy Tarreau79e57332018-10-02 16:01:16 +0200588
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200589 if (type == HTX_BLK_EOM || type == HTX_BLK_TLR || type == HTX_BLK_EOT)
590 break;
591 if (type == HTX_BLK_DATA) {
Christopher Faulet53a899b2019-10-08 16:38:42 +0200592 if (!h1_format_htx_data(htx_get_blk_value(htx, blk), temp, 0))
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200593 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200594 }
Willy Tarreau79e57332018-10-02 16:01:16 +0200595 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200596
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200597 smp->data.type = SMP_T_BIN;
598 smp->data.u.str = *temp;
599 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau79e57332018-10-02 16:01:16 +0200600 return 1;
601}
602
603
604/* returns the available length of the body. This requires that the body
605 * has been waited for using http-buffer-request.
606 */
607static int smp_fetch_body_len(const struct arg *args, struct sample *smp, const char *kw, void *private)
608{
Christopher Faulete596d182020-05-05 17:46:34 +0200609 /* possible keywords: req.body_len, res.body_len */
610 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200611 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200612 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200613 int32_t pos;
614 unsigned long long len = 0;
Christopher Fauletc16317d2018-12-12 14:11:22 +0100615
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200616 if (!htx)
617 return 0;
Christopher Fauletc16317d2018-12-12 14:11:22 +0100618
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200619 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
620 struct htx_blk *blk = htx_get_blk(htx, pos);
621 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Fauletc16317d2018-12-12 14:11:22 +0100622
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200623 if (type == HTX_BLK_EOM || type == HTX_BLK_TLR || type == HTX_BLK_EOT)
624 break;
625 if (type == HTX_BLK_DATA)
626 len += htx_get_blksz(blk);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200627 }
Willy Tarreau79e57332018-10-02 16:01:16 +0200628
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200629 smp->data.type = SMP_T_SINT;
630 smp->data.u.sint = len;
631 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau79e57332018-10-02 16:01:16 +0200632 return 1;
633}
634
635
636/* returns the advertised length of the body, or the advertised size of the
637 * chunks available in the buffer. This requires that the body has been waited
638 * for using http-buffer-request.
639 */
640static int smp_fetch_body_size(const struct arg *args, struct sample *smp, const char *kw, void *private)
641{
Christopher Faulete596d182020-05-05 17:46:34 +0200642 /* possible keywords: req.body_size, res.body_size */
643 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200644 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200645 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200646 int32_t pos;
647 unsigned long long len = 0;
Christopher Faulet89dc4992019-04-17 12:02:59 +0200648
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200649 if (!htx)
650 return 0;
Christopher Fauletc16317d2018-12-12 14:11:22 +0100651
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200652 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
653 struct htx_blk *blk = htx_get_blk(htx, pos);
654 enum htx_blk_type type = htx_get_blk_type(blk);
Christopher Fauletc16317d2018-12-12 14:11:22 +0100655
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200656 if (type == HTX_BLK_EOM || type == HTX_BLK_TLR || type == HTX_BLK_EOT)
657 break;
658 if (type == HTX_BLK_DATA)
659 len += htx_get_blksz(blk);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200660 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200661 if (htx->extra != ULLONG_MAX)
662 len += htx->extra;
Willy Tarreau79e57332018-10-02 16:01:16 +0200663
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200664 smp->data.type = SMP_T_SINT;
665 smp->data.u.sint = len;
666 smp->flags = SMP_F_VOL_TEST;
Willy Tarreau79e57332018-10-02 16:01:16 +0200667 return 1;
668}
669
670
671/* 4. Check on URL/URI. A pointer to the URI is stored. */
672static int smp_fetch_url(const struct arg *args, struct sample *smp, const char *kw, void *private)
673{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200674 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200675 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200676 struct htx_sl *sl;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200677
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200678 if (!htx)
679 return 0;
680 sl = http_get_stline(htx);
681 smp->data.type = SMP_T_STR;
682 smp->data.u.str.area = HTX_SL_REQ_UPTR(sl);
683 smp->data.u.str.data = HTX_SL_REQ_ULEN(sl);
684 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau79e57332018-10-02 16:01:16 +0200685 return 1;
686}
687
688static int smp_fetch_url_ip(const struct arg *args, struct sample *smp, const char *kw, void *private)
689{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200690 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200691 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200692 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +0200693 struct sockaddr_storage addr;
694
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200695 if (!htx)
696 return 0;
697 sl = http_get_stline(htx);
698 url2sa(HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl), &addr, NULL);
Willy Tarreau79e57332018-10-02 16:01:16 +0200699
Willy Tarreau79e57332018-10-02 16:01:16 +0200700 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
701 return 0;
702
703 smp->data.type = SMP_T_IPV4;
704 smp->data.u.ipv4 = ((struct sockaddr_in *)&addr)->sin_addr;
705 smp->flags = 0;
706 return 1;
707}
708
709static int smp_fetch_url_port(const struct arg *args, struct sample *smp, const char *kw, void *private)
710{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200711 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +0200712 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200713 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +0200714 struct sockaddr_storage addr;
715
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200716 if (!htx)
717 return 0;
718 sl = http_get_stline(htx);
719 url2sa(HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl), &addr, NULL);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200720
Willy Tarreau79e57332018-10-02 16:01:16 +0200721 if (((struct sockaddr_in *)&addr)->sin_family != AF_INET)
722 return 0;
723
724 smp->data.type = SMP_T_SINT;
725 smp->data.u.sint = ntohs(((struct sockaddr_in *)&addr)->sin_port);
726 smp->flags = 0;
727 return 1;
728}
729
730/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
731 * Accepts an optional argument of type string containing the header field name,
732 * and an optional argument of type signed or unsigned integer to request an
733 * explicit occurrence of the header. Note that in the event of a missing name,
734 * headers are considered from the first one. It does not stop on commas and
735 * returns full lines instead (useful for User-Agent or Date for example).
736 */
737static int smp_fetch_fhdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
738{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200739 /* possible keywords: req.fhdr, res.fhdr */
740 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200741 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200742 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200743 struct http_hdr_ctx *ctx = smp->ctx.a[0];
744 struct ist name;
Willy Tarreau79e57332018-10-02 16:01:16 +0200745 int occ = 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200746
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200747 if (!ctx) {
748 /* first call */
749 ctx = &static_http_hdr_ctx;
750 ctx->blk = NULL;
751 smp->ctx.a[0] = ctx;
752 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200753
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200754 if (args) {
755 if (args[0].type != ARGT_STR)
Willy Tarreau79e57332018-10-02 16:01:16 +0200756 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200757 name.ptr = args[0].data.str.area;
758 name.len = args[0].data.str.data;
Willy Tarreau79e57332018-10-02 16:01:16 +0200759
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200760 if (args[1].type == ARGT_SINT)
761 occ = args[1].data.sint;
Willy Tarreau79e57332018-10-02 16:01:16 +0200762 }
763
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200764 if (!htx)
765 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200766
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200767 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
768 /* search for header from the beginning */
769 ctx->blk = NULL;
Willy Tarreau79e57332018-10-02 16:01:16 +0200770
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200771 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
772 /* no explicit occurrence and single fetch => last header by default */
773 occ = -1;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200774
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200775 if (!occ)
776 /* prepare to report multiple occurrences for ACL fetches */
777 smp->flags |= SMP_F_NOT_LAST;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200778
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200779 smp->data.type = SMP_T_STR;
780 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
781 if (http_get_htx_fhdr(htx, name, occ, ctx, &smp->data.u.str.area, &smp->data.u.str.data))
782 return 1;
Willy Tarreau79e57332018-10-02 16:01:16 +0200783 smp->flags &= ~SMP_F_NOT_LAST;
784 return 0;
785}
786
787/* 6. Check on HTTP header count. The number of occurrences is returned.
788 * Accepts exactly 1 argument of type string. It does not stop on commas and
789 * returns full lines instead (useful for User-Agent or Date for example).
790 */
791static int smp_fetch_fhdr_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
792{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200793 /* possible keywords: req.fhdr_cnt, res.fhdr_cnt */
794 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200795 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200796 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200797 struct http_hdr_ctx ctx;
798 struct ist name;
Willy Tarreau79e57332018-10-02 16:01:16 +0200799 int cnt;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200800
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200801 if (!htx)
802 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200803
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200804 if (args && args->type == ARGT_STR) {
805 name.ptr = args->data.str.area;
806 name.len = args->data.str.data;
807 } else {
808 name.ptr = NULL;
809 name.len = 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200810 }
Willy Tarreau79e57332018-10-02 16:01:16 +0200811
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200812 ctx.blk = NULL;
813 cnt = 0;
814 while (http_find_header(htx, name, &ctx, 1))
815 cnt++;
Willy Tarreau79e57332018-10-02 16:01:16 +0200816 smp->data.type = SMP_T_SINT;
817 smp->data.u.sint = cnt;
818 smp->flags = SMP_F_VOL_HDR;
819 return 1;
820}
821
822static int smp_fetch_hdr_names(const struct arg *args, struct sample *smp, const char *kw, void *private)
823{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200824 /* possible keywords: req.hdr_names, res.hdr_names */
825 struct channel *chn = ((kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200826 struct check *check = ((kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200827 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Willy Tarreau79e57332018-10-02 16:01:16 +0200828 struct buffer *temp;
829 char del = ',';
830
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200831 int32_t pos;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200832
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200833 if (!htx)
834 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200835
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200836 if (args && args->type == ARGT_STR)
837 del = *args[0].data.str.area;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200838
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200839 temp = get_trash_chunk();
840 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
841 struct htx_blk *blk = htx_get_blk(htx, pos);
842 enum htx_blk_type type = htx_get_blk_type(blk);
843 struct ist n;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200844
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200845 if (type == HTX_BLK_EOH)
846 break;
847 if (type != HTX_BLK_HDR)
848 continue;
849 n = htx_get_blk_name(htx, blk);
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200850
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200851 if (temp->data)
852 temp->area[temp->data++] = del;
853 chunk_memcat(temp, n.ptr, n.len);
Willy Tarreau79e57332018-10-02 16:01:16 +0200854 }
855
856 smp->data.type = SMP_T_STR;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200857 smp->data.u.str = *temp;
Willy Tarreau79e57332018-10-02 16:01:16 +0200858 smp->flags = SMP_F_VOL_HDR;
859 return 1;
860}
861
862/* Fetch an HTTP header. A pointer to the beginning of the value is returned.
863 * Accepts an optional argument of type string containing the header field name,
864 * and an optional argument of type signed or unsigned integer to request an
865 * explicit occurrence of the header. Note that in the event of a missing name,
866 * headers are considered from the first one.
867 */
868static int smp_fetch_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
869{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200870 /* possible keywords: req.hdr / hdr, res.hdr / shdr */
871 struct channel *chn = ((kw[0] == 'h' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200872 struct check *check = ((kw[0] == 's' || kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200873 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200874 struct http_hdr_ctx *ctx = smp->ctx.a[0];
875 struct ist name;
Willy Tarreau79e57332018-10-02 16:01:16 +0200876 int occ = 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200877
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200878 if (!ctx) {
879 /* first call */
880 ctx = &static_http_hdr_ctx;
881 ctx->blk = NULL;
882 smp->ctx.a[0] = ctx;
883 }
Willy Tarreau79e57332018-10-02 16:01:16 +0200884
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200885 if (args) {
886 if (args[0].type != ARGT_STR)
Willy Tarreau79e57332018-10-02 16:01:16 +0200887 return 0;
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200888 name.ptr = args[0].data.str.area;
889 name.len = args[0].data.str.data;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200890
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200891 if (args[1].type == ARGT_SINT)
892 occ = args[1].data.sint;
Willy Tarreau79e57332018-10-02 16:01:16 +0200893 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200894
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200895 if (!htx)
896 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200897
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200898 if (ctx && !(smp->flags & SMP_F_NOT_LAST))
899 /* search for header from the beginning */
900 ctx->blk = NULL;
Willy Tarreau79e57332018-10-02 16:01:16 +0200901
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200902 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
903 /* no explicit occurrence and single fetch => last header by default */
904 occ = -1;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200905
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200906 if (!occ)
907 /* prepare to report multiple occurrences for ACL fetches */
908 smp->flags |= SMP_F_NOT_LAST;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200909
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200910 smp->data.type = SMP_T_STR;
911 smp->flags |= SMP_F_VOL_HDR | SMP_F_CONST;
912 if (http_get_htx_hdr(htx, name, occ, ctx, &smp->data.u.str.area, &smp->data.u.str.data))
913 return 1;
Willy Tarreau79e57332018-10-02 16:01:16 +0200914
915 smp->flags &= ~SMP_F_NOT_LAST;
916 return 0;
917}
918
Christopher Fauletc1f40dd2019-05-16 10:07:30 +0200919/* Same than smp_fetch_hdr() but only relies on the sample direction to choose
920 * the right channel. So instead of duplicating the code, we just change the
921 * keyword and then fallback on smp_fetch_hdr().
922 */
923static int smp_fetch_chn_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
924{
925 kw = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ ? "req.hdr" : "res.hdr");
926 return smp_fetch_hdr(args, smp, kw, private);
927}
928
Willy Tarreau79e57332018-10-02 16:01:16 +0200929/* 6. Check on HTTP header count. The number of occurrences is returned.
930 * Accepts exactly 1 argument of type string.
931 */
932static int smp_fetch_hdr_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
933{
Christopher Faulet89dc4992019-04-17 12:02:59 +0200934 /* possible keywords: req.hdr_cnt / hdr_cnt, res.hdr_cnt / shdr_cnt */
935 struct channel *chn = ((kw[0] == 'h' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +0200936 struct check *check = ((kw[0] == 's' || kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +0200937 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200938 struct http_hdr_ctx ctx;
939 struct ist name;
Willy Tarreau79e57332018-10-02 16:01:16 +0200940 int cnt;
Christopher Faulet311c7ea2018-10-24 21:41:55 +0200941
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200942 if (!htx)
943 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200944
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200945 if (args && args->type == ARGT_STR) {
946 name.ptr = args->data.str.area;
947 name.len = args->data.str.data;
948 } else {
949 name.ptr = NULL;
950 name.len = 0;
Willy Tarreau79e57332018-10-02 16:01:16 +0200951 }
Willy Tarreau79e57332018-10-02 16:01:16 +0200952
Christopher Faulet6d1dd462019-07-15 14:36:03 +0200953 ctx.blk = NULL;
954 cnt = 0;
955 while (http_find_header(htx, name, &ctx, 0))
956 cnt++;
Willy Tarreau79e57332018-10-02 16:01:16 +0200957
958 smp->data.type = SMP_T_SINT;
959 smp->data.u.sint = cnt;
960 smp->flags = SMP_F_VOL_HDR;
961 return 1;
962}
963
964/* Fetch an HTTP header's integer value. The integer value is returned. It
965 * takes a mandatory argument of type string and an optional one of type int
966 * to designate a specific occurrence. It returns an unsigned integer, which
967 * may or may not be appropriate for everything.
968 */
969static int smp_fetch_hdr_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
970{
971 int ret = smp_fetch_hdr(args, smp, kw, private);
972
973 if (ret > 0) {
974 smp->data.type = SMP_T_SINT;
975 smp->data.u.sint = strl2ic(smp->data.u.str.area,
976 smp->data.u.str.data);
977 }
978
979 return ret;
980}
981
982/* Fetch an HTTP header's IP value. takes a mandatory argument of type string
983 * and an optional one of type int to designate a specific occurrence.
984 * It returns an IPv4 or IPv6 address.
985 */
986static int smp_fetch_hdr_ip(const struct arg *args, struct sample *smp, const char *kw, void *private)
987{
988 int ret;
989
990 while ((ret = smp_fetch_hdr(args, smp, kw, private)) > 0) {
991 if (url2ipv4((char *) smp->data.u.str.area, &smp->data.u.ipv4)) {
992 smp->data.type = SMP_T_IPV4;
993 break;
994 } else {
995 struct buffer *temp = get_trash_chunk();
996 if (smp->data.u.str.data < temp->size - 1) {
997 memcpy(temp->area, smp->data.u.str.area,
998 smp->data.u.str.data);
999 temp->area[smp->data.u.str.data] = '\0';
1000 if (inet_pton(AF_INET6, temp->area, &smp->data.u.ipv6)) {
1001 smp->data.type = SMP_T_IPV6;
1002 break;
1003 }
1004 }
1005 }
1006
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001007 /* if the header doesn't match an IP address, fetch next one */
1008 if (!(smp->flags & SMP_F_NOT_LAST))
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001009 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001010 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001011 return ret;
1012}
Willy Tarreau79e57332018-10-02 16:01:16 +02001013
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001014/* 8. Check on URI PATH. A pointer to the PATH is stored. The path starts at
1015 * the first '/' after the possible hostname, and ends before the possible '?'.
1016 */
1017static int smp_fetch_path(const struct arg *args, struct sample *smp, const char *kw, void *private)
1018{
1019 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001020 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001021 struct htx_sl *sl;
1022 struct ist path;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001023
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001024 if (!htx)
1025 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001026
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001027 sl = http_get_stline(htx);
Jerome Magnin4fb196c2020-02-21 10:49:12 +01001028 path = iststop(http_get_path(htx_sl_req_uri(sl)), '?');
Tim Duesterhused526372020-03-05 17:56:33 +01001029 if (!isttest(path))
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001030 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001031
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001032 /* OK, we got the '/' ! */
1033 smp->data.type = SMP_T_STR;
1034 smp->data.u.str.area = path.ptr;
Jerome Magnin4fb196c2020-02-21 10:49:12 +01001035 smp->data.u.str.data = path.len;
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001036 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
Willy Tarreau79e57332018-10-02 16:01:16 +02001037 return 1;
1038}
1039
1040/* This produces a concatenation of the first occurrence of the Host header
1041 * followed by the path component if it begins with a slash ('/'). This means
1042 * that '*' will not be added, resulting in exactly the first Host entry.
1043 * If no Host header is found, then the path is returned as-is. The returned
1044 * value is stored in the trash so it does not need to be marked constant.
1045 * The returned sample is of type string.
1046 */
1047static int smp_fetch_base(const struct arg *args, struct sample *smp, const char *kw, void *private)
1048{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001049 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001050 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001051 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +02001052 struct buffer *temp;
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001053 struct http_hdr_ctx ctx;
1054 struct ist path;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001055
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001056 if (!htx)
1057 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001058
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001059 ctx.blk = NULL;
1060 if (!http_find_header(htx, ist("Host"), &ctx, 0) || !ctx.value.len)
1061 return smp_fetch_path(args, smp, kw, private);
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001062
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001063 /* OK we have the header value in ctx.value */
1064 temp = get_trash_chunk();
1065 chunk_memcat(temp, ctx.value.ptr, ctx.value.len);
Willy Tarreau79e57332018-10-02 16:01:16 +02001066
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001067 /* now retrieve the path */
1068 sl = http_get_stline(htx);
1069 path = http_get_path(htx_sl_req_uri(sl));
Tim Duesterhused526372020-03-05 17:56:33 +01001070 if (isttest(path)) {
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001071 size_t len;
Willy Tarreau79e57332018-10-02 16:01:16 +02001072
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001073 for (len = 0; len < path.len && *(path.ptr + len) != '?'; len++)
1074 ;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001075
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001076 if (len && *(path.ptr) == '/')
1077 chunk_memcat(temp, path.ptr, len);
Willy Tarreau79e57332018-10-02 16:01:16 +02001078 }
1079
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001080 smp->data.type = SMP_T_STR;
1081 smp->data.u.str = *temp;
Willy Tarreau79e57332018-10-02 16:01:16 +02001082 smp->flags = SMP_F_VOL_1ST;
1083 return 1;
1084}
1085
1086/* This produces a 32-bit hash of the concatenation of the first occurrence of
1087 * the Host header followed by the path component if it begins with a slash ('/').
1088 * This means that '*' will not be added, resulting in exactly the first Host
1089 * entry. If no Host header is found, then the path is used. The resulting value
1090 * is hashed using the path hash followed by a full avalanche hash and provides a
1091 * 32-bit integer value. This fetch is useful for tracking per-path activity on
1092 * high-traffic sites without having to store whole paths.
1093 */
1094static int smp_fetch_base32(const struct arg *args, struct sample *smp, const char *kw, void *private)
1095{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001096 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001097 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001098 struct htx_sl *sl;
1099 struct http_hdr_ctx ctx;
1100 struct ist path;
Willy Tarreau79e57332018-10-02 16:01:16 +02001101 unsigned int hash = 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001102
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001103 if (!htx)
1104 return 0;
Dragan Dosen8861e1c2019-02-12 19:50:31 +01001105
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001106 ctx.blk = NULL;
1107 if (http_find_header(htx, ist("Host"), &ctx, 0)) {
1108 /* OK we have the header value in ctx.value */
1109 while (ctx.value.len--)
1110 hash = *(ctx.value.ptr++) + (hash << 6) + (hash << 16) - hash;
Willy Tarreau79e57332018-10-02 16:01:16 +02001111 }
1112
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001113 /* now retrieve the path */
1114 sl = http_get_stline(htx);
1115 path = http_get_path(htx_sl_req_uri(sl));
Tim Duesterhused526372020-03-05 17:56:33 +01001116 if (isttest(path)) {
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001117 size_t len;
Willy Tarreau79e57332018-10-02 16:01:16 +02001118
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001119 for (len = 0; len < path.len && *(path.ptr + len) != '?'; len++)
1120 ;
Willy Tarreau79e57332018-10-02 16:01:16 +02001121
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001122 if (len && *(path.ptr) == '/') {
1123 while (len--)
1124 hash = *(path.ptr++) + (hash << 6) + (hash << 16) - hash;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001125 }
Willy Tarreau79e57332018-10-02 16:01:16 +02001126 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001127
Willy Tarreau79e57332018-10-02 16:01:16 +02001128 hash = full_hash(hash);
1129
1130 smp->data.type = SMP_T_SINT;
1131 smp->data.u.sint = hash;
1132 smp->flags = SMP_F_VOL_1ST;
1133 return 1;
1134}
1135
1136/* This concatenates the source address with the 32-bit hash of the Host and
1137 * path as returned by smp_fetch_base32(). The idea is to have per-source and
1138 * per-path counters. The result is a binary block from 8 to 20 bytes depending
1139 * on the source address length. The path hash is stored before the address so
1140 * that in environments where IPv6 is insignificant, truncating the output to
1141 * 8 bytes would still work.
1142 */
1143static int smp_fetch_base32_src(const struct arg *args, struct sample *smp, const char *kw, void *private)
1144{
1145 struct buffer *temp;
1146 struct connection *cli_conn = objt_conn(smp->sess->origin);
1147
Willy Tarreaucd7ca792019-07-17 16:57:03 +02001148 if (!cli_conn || !conn_get_src(cli_conn))
Willy Tarreau79e57332018-10-02 16:01:16 +02001149 return 0;
1150
1151 if (!smp_fetch_base32(args, smp, kw, private))
1152 return 0;
1153
1154 temp = get_trash_chunk();
1155 *(unsigned int *) temp->area = htonl(smp->data.u.sint);
1156 temp->data += sizeof(unsigned int);
1157
Willy Tarreau9a1efe12019-07-17 17:13:50 +02001158 switch (cli_conn->src->ss_family) {
Willy Tarreau79e57332018-10-02 16:01:16 +02001159 case AF_INET:
1160 memcpy(temp->area + temp->data,
Willy Tarreau9a1efe12019-07-17 17:13:50 +02001161 &((struct sockaddr_in *)cli_conn->src)->sin_addr,
Willy Tarreau79e57332018-10-02 16:01:16 +02001162 4);
1163 temp->data += 4;
1164 break;
1165 case AF_INET6:
1166 memcpy(temp->area + temp->data,
Willy Tarreau9a1efe12019-07-17 17:13:50 +02001167 &((struct sockaddr_in6 *)cli_conn->src)->sin6_addr,
Willy Tarreau79e57332018-10-02 16:01:16 +02001168 16);
1169 temp->data += 16;
1170 break;
1171 default:
1172 return 0;
1173 }
1174
1175 smp->data.u.str = *temp;
1176 smp->data.type = SMP_T_BIN;
1177 return 1;
1178}
1179
1180/* Extracts the query string, which comes after the question mark '?'. If no
1181 * question mark is found, nothing is returned. Otherwise it returns a sample
1182 * of type string carrying the whole query string.
1183 */
1184static int smp_fetch_query(const struct arg *args, struct sample *smp, const char *kw, void *private)
1185{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001186 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001187 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001188 struct htx_sl *sl;
Willy Tarreau79e57332018-10-02 16:01:16 +02001189 char *ptr, *end;
1190
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001191 if (!htx)
1192 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001193
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001194 sl = http_get_stline(htx);
1195 ptr = HTX_SL_REQ_UPTR(sl);
1196 end = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +02001197
1198 /* look up the '?' */
1199 do {
1200 if (ptr == end)
1201 return 0;
1202 } while (*ptr++ != '?');
1203
1204 smp->data.type = SMP_T_STR;
1205 smp->data.u.str.area = ptr;
1206 smp->data.u.str.data = end - ptr;
1207 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
1208 return 1;
1209}
1210
1211static int smp_fetch_proto_http(const struct arg *args, struct sample *smp, const char *kw, void *private)
1212{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001213 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001214 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 0);
Willy Tarreau79e57332018-10-02 16:01:16 +02001215
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001216 if (!htx)
1217 return 0;
1218 smp->data.type = SMP_T_BOOL;
Willy Tarreau79e57332018-10-02 16:01:16 +02001219 smp->data.u.sint = 1;
1220 return 1;
1221}
1222
1223/* return a valid test if the current request is the first one on the connection */
1224static int smp_fetch_http_first_req(const struct arg *args, struct sample *smp, const char *kw, void *private)
1225{
Willy Tarreau79512b62020-04-29 11:52:13 +02001226 if (!smp->strm)
1227 return 0;
1228
Willy Tarreau79e57332018-10-02 16:01:16 +02001229 smp->data.type = SMP_T_BOOL;
1230 smp->data.u.sint = !(smp->strm->txn->flags & TX_NOT_FIRST);
1231 return 1;
1232}
1233
Christopher Fauleta4063562019-08-02 11:51:37 +02001234/* Fetch the authentication method if there is an Authorization header. It
1235 * relies on get_http_auth()
1236 */
1237static int smp_fetch_http_auth_type(const struct arg *args, struct sample *smp, const char *kw, void *private)
1238{
1239 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001240 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Fauleta4063562019-08-02 11:51:37 +02001241 struct http_txn *txn;
1242
1243 if (!htx)
1244 return 0;
1245
1246 txn = smp->strm->txn;
1247 if (!get_http_auth(smp, htx))
1248 return 0;
1249
1250 switch (txn->auth.method) {
1251 case HTTP_AUTH_BASIC:
1252 smp->data.u.str.area = "Basic";
1253 smp->data.u.str.data = 5;
1254 break;
1255 case HTTP_AUTH_DIGEST:
1256 /* Unexpected because not supported */
1257 smp->data.u.str.area = "Digest";
1258 smp->data.u.str.data = 6;
1259 break;
1260 default:
1261 return 0;
1262 }
1263
1264 smp->data.type = SMP_T_STR;
1265 smp->flags = SMP_F_CONST;
1266 return 1;
1267}
1268
1269/* Fetch the user supplied if there is an Authorization header. It relies on
1270 * get_http_auth()
1271 */
1272static int smp_fetch_http_auth_user(const struct arg *args, struct sample *smp, const char *kw, void *private)
1273{
1274 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001275 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Fauleta4063562019-08-02 11:51:37 +02001276 struct http_txn *txn;
1277
1278 if (!htx)
1279 return 0;
1280
1281 txn = smp->strm->txn;
1282 if (!get_http_auth(smp, htx))
1283 return 0;
1284
1285 smp->data.type = SMP_T_STR;
1286 smp->data.u.str.area = txn->auth.user;
1287 smp->data.u.str.data = strlen(txn->auth.user);
1288 smp->flags = SMP_F_CONST;
1289 return 1;
1290}
1291
1292/* Fetch the password supplied if there is an Authorization header. It relies on
1293 * get_http_auth()
1294 */
1295static int smp_fetch_http_auth_pass(const struct arg *args, struct sample *smp, const char *kw, void *private)
1296{
1297 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001298 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Fauleta4063562019-08-02 11:51:37 +02001299 struct http_txn *txn;
1300
1301 if (!htx)
1302 return 0;
1303
1304 txn = smp->strm->txn;
1305 if (!get_http_auth(smp, htx))
1306 return 0;
1307
1308 smp->data.type = SMP_T_STR;
1309 smp->data.u.str.area = txn->auth.pass;
1310 smp->data.u.str.data = strlen(txn->auth.pass);
1311 smp->flags = SMP_F_CONST;
1312 return 1;
1313}
1314
Willy Tarreau79e57332018-10-02 16:01:16 +02001315/* Accepts exactly 1 argument of type userlist */
1316static int smp_fetch_http_auth(const struct arg *args, struct sample *smp, const char *kw, void *private)
1317{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001318 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001319 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Willy Tarreau79e57332018-10-02 16:01:16 +02001320
1321 if (!args || args->type != ARGT_USR)
1322 return 0;
1323
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001324 if (!htx)
1325 return 0;
1326 if (!get_http_auth(smp, htx))
1327 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001328
1329 smp->data.type = SMP_T_BOOL;
1330 smp->data.u.sint = check_user(args->data.usr, smp->strm->txn->auth.user,
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001331 smp->strm->txn->auth.pass);
Willy Tarreau79e57332018-10-02 16:01:16 +02001332 return 1;
1333}
1334
1335/* Accepts exactly 1 argument of type userlist */
1336static int smp_fetch_http_auth_grp(const struct arg *args, struct sample *smp, const char *kw, void *private)
1337{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001338 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001339 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet89dc4992019-04-17 12:02:59 +02001340
Willy Tarreau79e57332018-10-02 16:01:16 +02001341 if (!args || args->type != ARGT_USR)
1342 return 0;
1343
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001344 if (!htx)
1345 return 0;
1346 if (!get_http_auth(smp, htx))
1347 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001348
Willy Tarreau79e57332018-10-02 16:01:16 +02001349 /* if the user does not belong to the userlist or has a wrong password,
1350 * report that it unconditionally does not match. Otherwise we return
1351 * a string containing the username.
1352 */
1353 if (!check_user(args->data.usr, smp->strm->txn->auth.user,
1354 smp->strm->txn->auth.pass))
1355 return 0;
1356
1357 /* pat_match_auth() will need the user list */
1358 smp->ctx.a[0] = args->data.usr;
1359
1360 smp->data.type = SMP_T_STR;
1361 smp->flags = SMP_F_CONST;
1362 smp->data.u.str.area = smp->strm->txn->auth.user;
1363 smp->data.u.str.data = strlen(smp->strm->txn->auth.user);
1364
1365 return 1;
1366}
1367
1368/* Fetch a captured HTTP request header. The index is the position of
1369 * the "capture" option in the configuration file
1370 */
1371static int smp_fetch_capture_req_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
1372{
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001373 struct proxy *fe;
Willy Tarreau79e57332018-10-02 16:01:16 +02001374 int idx;
1375
1376 if (!args || args->type != ARGT_SINT)
1377 return 0;
1378
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001379 if (!smp->strm)
1380 return 0;
1381
1382 fe = strm_fe(smp->strm);
Willy Tarreau79e57332018-10-02 16:01:16 +02001383 idx = args->data.sint;
1384
1385 if (idx > (fe->nb_req_cap - 1) || smp->strm->req_cap == NULL || smp->strm->req_cap[idx] == NULL)
1386 return 0;
1387
1388 smp->data.type = SMP_T_STR;
1389 smp->flags |= SMP_F_CONST;
1390 smp->data.u.str.area = smp->strm->req_cap[idx];
1391 smp->data.u.str.data = strlen(smp->strm->req_cap[idx]);
1392
1393 return 1;
1394}
1395
1396/* Fetch a captured HTTP response header. The index is the position of
1397 * the "capture" option in the configuration file
1398 */
1399static int smp_fetch_capture_res_hdr(const struct arg *args, struct sample *smp, const char *kw, void *private)
1400{
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001401 struct proxy *fe;
Willy Tarreau79e57332018-10-02 16:01:16 +02001402 int idx;
1403
1404 if (!args || args->type != ARGT_SINT)
1405 return 0;
1406
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001407 if (!smp->strm)
1408 return 0;
1409
1410 fe = strm_fe(smp->strm);
Willy Tarreau79e57332018-10-02 16:01:16 +02001411 idx = args->data.sint;
1412
1413 if (idx > (fe->nb_rsp_cap - 1) || smp->strm->res_cap == NULL || smp->strm->res_cap[idx] == NULL)
1414 return 0;
1415
1416 smp->data.type = SMP_T_STR;
1417 smp->flags |= SMP_F_CONST;
1418 smp->data.u.str.area = smp->strm->res_cap[idx];
1419 smp->data.u.str.data = strlen(smp->strm->res_cap[idx]);
1420
1421 return 1;
1422}
1423
1424/* Extracts the METHOD in the HTTP request, the txn->uri should be filled before the call */
1425static int smp_fetch_capture_req_method(const struct arg *args, struct sample *smp, const char *kw, void *private)
1426{
1427 struct buffer *temp;
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001428 struct http_txn *txn;
Willy Tarreau79e57332018-10-02 16:01:16 +02001429 char *ptr;
1430
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001431 if (!smp->strm)
1432 return 0;
1433
1434 txn = smp->strm->txn;
Willy Tarreau79e57332018-10-02 16:01:16 +02001435 if (!txn || !txn->uri)
1436 return 0;
1437
1438 ptr = txn->uri;
1439
1440 while (*ptr != ' ' && *ptr != '\0') /* find first space */
1441 ptr++;
1442
1443 temp = get_trash_chunk();
1444 temp->area = txn->uri;
1445 temp->data = ptr - txn->uri;
1446 smp->data.u.str = *temp;
1447 smp->data.type = SMP_T_STR;
1448 smp->flags = SMP_F_CONST;
1449
1450 return 1;
1451
1452}
1453
1454/* Extracts the path in the HTTP request, the txn->uri should be filled before the call */
1455static int smp_fetch_capture_req_uri(const struct arg *args, struct sample *smp, const char *kw, void *private)
1456{
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001457 struct http_txn *txn;
Willy Tarreau79e57332018-10-02 16:01:16 +02001458 struct ist path;
1459 const char *ptr;
1460
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001461 if (!smp->strm)
1462 return 0;
1463
1464 txn = smp->strm->txn;
Willy Tarreau79e57332018-10-02 16:01:16 +02001465 if (!txn || !txn->uri)
1466 return 0;
1467
1468 ptr = txn->uri;
1469
1470 while (*ptr != ' ' && *ptr != '\0') /* find first space */
1471 ptr++;
1472
1473 if (!*ptr)
1474 return 0;
1475
Christopher Faulet78337bb2018-11-15 14:35:18 +01001476 /* skip the first space and find space after URI */
1477 path = ist2(++ptr, 0);
1478 while (*ptr != ' ' && *ptr != '\0')
1479 ptr++;
1480 path.len = ptr - path.ptr;
Willy Tarreau79e57332018-10-02 16:01:16 +02001481
Christopher Faulet78337bb2018-11-15 14:35:18 +01001482 path = http_get_path(path);
Tim Duesterhused526372020-03-05 17:56:33 +01001483 if (!isttest(path))
Willy Tarreau79e57332018-10-02 16:01:16 +02001484 return 0;
1485
1486 smp->data.u.str.area = path.ptr;
1487 smp->data.u.str.data = path.len;
1488 smp->data.type = SMP_T_STR;
1489 smp->flags = SMP_F_CONST;
1490
1491 return 1;
1492}
1493
1494/* Retrieves the HTTP version from the request (either 1.0 or 1.1) and emits it
1495 * as a string (either "HTTP/1.0" or "HTTP/1.1").
1496 */
1497static int smp_fetch_capture_req_ver(const struct arg *args, struct sample *smp, const char *kw, void *private)
1498{
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001499 struct http_txn *txn;
1500
1501 if (!smp->strm)
1502 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001503
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001504 txn = smp->strm->txn;
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001505 if (!txn || txn->req.msg_state >= HTTP_MSG_BODY)
Willy Tarreau79e57332018-10-02 16:01:16 +02001506 return 0;
1507
1508 if (txn->req.flags & HTTP_MSGF_VER_11)
1509 smp->data.u.str.area = "HTTP/1.1";
1510 else
1511 smp->data.u.str.area = "HTTP/1.0";
1512
1513 smp->data.u.str.data = 8;
1514 smp->data.type = SMP_T_STR;
1515 smp->flags = SMP_F_CONST;
1516 return 1;
1517
1518}
1519
1520/* Retrieves the HTTP version from the response (either 1.0 or 1.1) and emits it
1521 * as a string (either "HTTP/1.0" or "HTTP/1.1").
1522 */
1523static int smp_fetch_capture_res_ver(const struct arg *args, struct sample *smp, const char *kw, void *private)
1524{
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001525 struct http_txn *txn;
1526
1527 if (!smp->strm)
1528 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001529
Willy Tarreau0898c2d2020-04-29 11:44:54 +02001530 txn = smp->strm->txn;
Christopher Faulet711ed6a2019-07-16 14:16:10 +02001531 if (!txn || txn->rsp.msg_state >= HTTP_MSG_BODY)
Willy Tarreau79e57332018-10-02 16:01:16 +02001532 return 0;
1533
1534 if (txn->rsp.flags & HTTP_MSGF_VER_11)
1535 smp->data.u.str.area = "HTTP/1.1";
1536 else
1537 smp->data.u.str.area = "HTTP/1.0";
1538
1539 smp->data.u.str.data = 8;
1540 smp->data.type = SMP_T_STR;
1541 smp->flags = SMP_F_CONST;
1542 return 1;
1543
1544}
1545
1546/* Iterate over all cookies present in a message. The context is stored in
1547 * smp->ctx.a[0] for the in-header position, smp->ctx.a[1] for the
1548 * end-of-header-value, and smp->ctx.a[2] for the hdr_ctx. Depending on
1549 * the direction, multiple cookies may be parsed on the same line or not.
1550 * The cookie name is in args and the name length in args->data.str.len.
1551 * Accepts exactly 1 argument of type string. If the input options indicate
1552 * that no iterating is desired, then only last value is fetched if any.
1553 * The returned sample is of type CSTR. Can be used to parse cookies in other
1554 * files.
1555 */
1556static int smp_fetch_cookie(const struct arg *args, struct sample *smp, const char *kw, void *private)
1557{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001558 /* possible keywords: req.cookie / cookie / cook, res.cookie / scook / set-cookie */
1559 struct channel *chn = ((kw[0] == 'c' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +02001560 struct check *check = ((kw[0] == 's' || kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +02001561 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001562 struct http_hdr_ctx *ctx = smp->ctx.a[2];
1563 struct ist hdr;
Willy Tarreau79e57332018-10-02 16:01:16 +02001564 int occ = 0;
1565 int found = 0;
1566
1567 if (!args || args->type != ARGT_STR)
1568 return 0;
1569
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001570 if (!ctx) {
1571 /* first call */
1572 ctx = &static_http_hdr_ctx;
1573 ctx->blk = NULL;
1574 smp->ctx.a[2] = ctx;
1575 }
Willy Tarreau79e57332018-10-02 16:01:16 +02001576
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001577 if (!htx)
1578 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001579
Christopher Faulet16032ab2020-04-30 11:30:00 +02001580 hdr = (!(check || (chn && chn->flags & CF_ISRESP)) ? ist("Cookie") : ist("Set-Cookie"));
Willy Tarreau79e57332018-10-02 16:01:16 +02001581
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001582 if (!occ && !(smp->opt & SMP_OPT_ITERATE))
1583 /* no explicit occurrence and single fetch => last cookie by default */
1584 occ = -1;
Willy Tarreau79e57332018-10-02 16:01:16 +02001585
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001586 /* OK so basically here, either we want only one value and it's the
1587 * last one, or we want to iterate over all of them and we fetch the
1588 * next one.
1589 */
Willy Tarreau79e57332018-10-02 16:01:16 +02001590
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001591 if (!(smp->flags & SMP_F_NOT_LAST)) {
1592 /* search for the header from the beginning, we must first initialize
1593 * the search parameters.
Willy Tarreau79e57332018-10-02 16:01:16 +02001594 */
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001595 smp->ctx.a[0] = NULL;
1596 ctx->blk = NULL;
Willy Tarreau79e57332018-10-02 16:01:16 +02001597 }
Willy Tarreau79e57332018-10-02 16:01:16 +02001598
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001599 smp->flags |= SMP_F_VOL_HDR;
1600 while (1) {
1601 /* Note: smp->ctx.a[0] == NULL every time we need to fetch a new header */
1602 if (!smp->ctx.a[0]) {
1603 if (!http_find_header(htx, hdr, ctx, 0))
1604 goto out;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001605
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001606 if (ctx->value.len < args->data.str.data + 1)
1607 continue;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001608
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001609 smp->ctx.a[0] = ctx->value.ptr;
1610 smp->ctx.a[1] = smp->ctx.a[0] + ctx->value.len;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001611 }
1612
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001613 smp->data.type = SMP_T_STR;
1614 smp->flags |= SMP_F_CONST;
1615 smp->ctx.a[0] = http_extract_cookie_value(smp->ctx.a[0], smp->ctx.a[1],
1616 args->data.str.area, args->data.str.data,
1617 (smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
1618 &smp->data.u.str.area,
1619 &smp->data.u.str.data);
1620 if (smp->ctx.a[0]) {
1621 found = 1;
1622 if (occ >= 0) {
1623 /* one value was returned into smp->data.u.str.{str,len} */
1624 smp->flags |= SMP_F_NOT_LAST;
1625 return 1;
Willy Tarreau79e57332018-10-02 16:01:16 +02001626 }
1627 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001628 /* if we're looking for last occurrence, let's loop */
Willy Tarreau79e57332018-10-02 16:01:16 +02001629 }
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001630
Willy Tarreau79e57332018-10-02 16:01:16 +02001631 /* all cookie headers and values were scanned. If we're looking for the
1632 * last occurrence, we may return it now.
1633 */
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001634 out:
Willy Tarreau79e57332018-10-02 16:01:16 +02001635 smp->flags &= ~SMP_F_NOT_LAST;
1636 return found;
1637}
1638
Christopher Fauletc1f40dd2019-05-16 10:07:30 +02001639/* Same than smp_fetch_cookie() but only relies on the sample direction to
1640 * choose the right channel. So instead of duplicating the code, we just change
1641 * the keyword and then fallback on smp_fetch_cookie().
1642 */
1643static int smp_fetch_chn_cookie(const struct arg *args, struct sample *smp, const char *kw, void *private)
1644{
1645 kw = ((smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ ? "req.cook" : "res.cook");
1646 return smp_fetch_cookie(args, smp, kw, private);
1647}
1648
Willy Tarreau79e57332018-10-02 16:01:16 +02001649/* Iterate over all cookies present in a request to count how many occurrences
1650 * match the name in args and args->data.str.len. If <multi> is non-null, then
1651 * multiple cookies may be parsed on the same line. The returned sample is of
1652 * type UINT. Accepts exactly 1 argument of type string.
1653 */
1654static int smp_fetch_cookie_cnt(const struct arg *args, struct sample *smp, const char *kw, void *private)
1655{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001656 /* possible keywords: req.cook_cnt / cook_cnt, res.cook_cnt / scook_cnt */
1657 struct channel *chn = ((kw[0] == 'c' || kw[2] == 'q') ? SMP_REQ_CHN(smp) : SMP_RES_CHN(smp));
Christopher Fauletf98e6262020-05-06 09:42:04 +02001658 struct check *check = ((kw[0] == 's' || kw[2] == 's') ? objt_check(smp->sess->origin) : NULL);
Christopher Faulet16032ab2020-04-30 11:30:00 +02001659 struct htx *htx = smp_prefetch_htx(smp, chn, check, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001660 struct http_hdr_ctx ctx;
1661 struct ist hdr;
Willy Tarreau79e57332018-10-02 16:01:16 +02001662 char *val_beg, *val_end;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001663 int cnt;
Willy Tarreau79e57332018-10-02 16:01:16 +02001664
1665 if (!args || args->type != ARGT_STR)
1666 return 0;
1667
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001668 if (!htx)
1669 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001670
Christopher Faulet16032ab2020-04-30 11:30:00 +02001671 hdr = (!(check || (chn && chn->flags & CF_ISRESP)) ? ist("Cookie") : ist("Set-Cookie"));
Willy Tarreau79e57332018-10-02 16:01:16 +02001672
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001673 val_end = val_beg = NULL;
1674 ctx.blk = NULL;
1675 cnt = 0;
1676 while (1) {
1677 /* Note: val_beg == NULL every time we need to fetch a new header */
1678 if (!val_beg) {
1679 if (!http_find_header(htx, hdr, &ctx, 0))
1680 break;
Willy Tarreau79e57332018-10-02 16:01:16 +02001681
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001682 if (ctx.value.len < args->data.str.data + 1)
1683 continue;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001684
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001685 val_beg = ctx.value.ptr;
1686 val_end = val_beg + ctx.value.len;
Willy Tarreau79e57332018-10-02 16:01:16 +02001687 }
1688
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001689 smp->data.type = SMP_T_STR;
1690 smp->flags |= SMP_F_CONST;
1691 while ((val_beg = http_extract_cookie_value(val_beg, val_end,
1692 args->data.str.area, args->data.str.data,
1693 (smp->opt & SMP_OPT_DIR) == SMP_OPT_DIR_REQ,
1694 &smp->data.u.str.area,
1695 &smp->data.u.str.data))) {
1696 cnt++;
Willy Tarreau79e57332018-10-02 16:01:16 +02001697 }
1698 }
1699
1700 smp->data.type = SMP_T_SINT;
1701 smp->data.u.sint = cnt;
1702 smp->flags |= SMP_F_VOL_HDR;
1703 return 1;
1704}
1705
1706/* Fetch an cookie's integer value. The integer value is returned. It
1707 * takes a mandatory argument of type string. It relies on smp_fetch_cookie().
1708 */
1709static int smp_fetch_cookie_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
1710{
1711 int ret = smp_fetch_cookie(args, smp, kw, private);
1712
1713 if (ret > 0) {
1714 smp->data.type = SMP_T_SINT;
1715 smp->data.u.sint = strl2ic(smp->data.u.str.area,
1716 smp->data.u.str.data);
1717 }
1718
1719 return ret;
1720}
1721
1722/************************************************************************/
1723/* The code below is dedicated to sample fetches */
1724/************************************************************************/
1725
1726/* This scans a URL-encoded query string. It takes an optionally wrapping
1727 * string whose first contigous chunk has its beginning in ctx->a[0] and end
1728 * in ctx->a[1], and the optional second part in (ctx->a[2]..ctx->a[3]). The
1729 * pointers are updated for next iteration before leaving.
1730 */
1731static int smp_fetch_param(char delim, const char *name, int name_len, const struct arg *args, struct sample *smp, const char *kw, void *private)
1732{
1733 const char *vstart, *vend;
1734 struct buffer *temp;
1735 const char **chunks = (const char **)smp->ctx.a;
1736
1737 if (!http_find_next_url_param(chunks, name, name_len,
1738 &vstart, &vend, delim))
1739 return 0;
1740
1741 /* Create sample. If the value is contiguous, return the pointer as CONST,
1742 * if the value is wrapped, copy-it in a buffer.
1743 */
1744 smp->data.type = SMP_T_STR;
1745 if (chunks[2] &&
1746 vstart >= chunks[0] && vstart <= chunks[1] &&
1747 vend >= chunks[2] && vend <= chunks[3]) {
1748 /* Wrapped case. */
1749 temp = get_trash_chunk();
1750 memcpy(temp->area, vstart, chunks[1] - vstart);
1751 memcpy(temp->area + ( chunks[1] - vstart ), chunks[2],
1752 vend - chunks[2]);
1753 smp->data.u.str.area = temp->area;
1754 smp->data.u.str.data = ( chunks[1] - vstart ) + ( vend - chunks[2] );
1755 } else {
1756 /* Contiguous case. */
1757 smp->data.u.str.area = (char *)vstart;
1758 smp->data.u.str.data = vend - vstart;
1759 smp->flags = SMP_F_VOL_1ST | SMP_F_CONST;
1760 }
1761
1762 /* Update context, check wrapping. */
1763 chunks[0] = vend;
1764 if (chunks[2] && vend >= chunks[2] && vend <= chunks[3]) {
1765 chunks[1] = chunks[3];
1766 chunks[2] = NULL;
1767 }
1768
1769 if (chunks[0] < chunks[1])
1770 smp->flags |= SMP_F_NOT_LAST;
1771
1772 return 1;
1773}
1774
1775/* This function iterates over each parameter of the query string. It uses
1776 * ctx->a[0] and ctx->a[1] to store the beginning and end of the current
1777 * parameter. Since it uses smp_fetch_param(), ctx->a[2..3] are both NULL.
1778 * An optional parameter name is passed in args[0], otherwise any parameter is
1779 * considered. It supports an optional delimiter argument for the beginning of
1780 * the string in args[1], which defaults to "?".
1781 */
1782static int smp_fetch_url_param(const struct arg *args, struct sample *smp, const char *kw, void *private)
1783{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001784 struct channel *chn = SMP_REQ_CHN(smp);
Willy Tarreau79e57332018-10-02 16:01:16 +02001785 char delim = '?';
1786 const char *name;
1787 int name_len;
1788
1789 if (!args ||
1790 (args[0].type && args[0].type != ARGT_STR) ||
1791 (args[1].type && args[1].type != ARGT_STR))
1792 return 0;
1793
1794 name = "";
1795 name_len = 0;
1796 if (args->type == ARGT_STR) {
1797 name = args->data.str.area;
1798 name_len = args->data.str.data;
1799 }
1800
1801 if (args[1].type)
1802 delim = *args[1].data.str.area;
1803
1804 if (!smp->ctx.a[0]) { // first call, find the query string
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001805 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001806 struct htx_sl *sl;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001807
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001808 if (!htx)
1809 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001810
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001811 sl = http_get_stline(htx);
1812 smp->ctx.a[0] = http_find_param_list(HTX_SL_REQ_UPTR(sl), HTX_SL_REQ_ULEN(sl), delim);
1813 if (!smp->ctx.a[0])
1814 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001815
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001816 smp->ctx.a[1] = HTX_SL_REQ_UPTR(sl) + HTX_SL_REQ_ULEN(sl);
Willy Tarreau79e57332018-10-02 16:01:16 +02001817
1818 /* Assume that the context is filled with NULL pointer
1819 * before the first call.
1820 * smp->ctx.a[2] = NULL;
1821 * smp->ctx.a[3] = NULL;
1822 */
1823 }
1824
1825 return smp_fetch_param(delim, name, name_len, args, smp, kw, private);
1826}
1827
1828/* This function iterates over each parameter of the body. This requires
1829 * that the body has been waited for using http-buffer-request. It uses
1830 * ctx->a[0] and ctx->a[1] to store the beginning and end of the first
1831 * contigous part of the body, and optionally ctx->a[2..3] to reference the
1832 * optional second part if the body wraps at the end of the buffer. An optional
1833 * parameter name is passed in args[0], otherwise any parameter is considered.
1834 */
1835static int smp_fetch_body_param(const struct arg *args, struct sample *smp, const char *kw, void *private)
1836{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001837 struct channel *chn = SMP_REQ_CHN(smp);
Willy Tarreau79e57332018-10-02 16:01:16 +02001838 const char *name;
1839 int name_len;
1840
1841 if (!args || (args[0].type && args[0].type != ARGT_STR))
1842 return 0;
1843
1844 name = "";
1845 name_len = 0;
1846 if (args[0].type == ARGT_STR) {
1847 name = args[0].data.str.area;
1848 name_len = args[0].data.str.data;
1849 }
1850
1851 if (!smp->ctx.a[0]) { // first call, find the query string
Christopher Faulete596d182020-05-05 17:46:34 +02001852 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001853 struct buffer *temp;
1854 int32_t pos;
Willy Tarreau79e57332018-10-02 16:01:16 +02001855
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001856 if (!htx)
1857 return 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001858
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001859 temp = get_trash_chunk();
1860 for (pos = htx_get_first(htx); pos != -1; pos = htx_get_next(htx, pos)) {
1861 struct htx_blk *blk = htx_get_blk(htx, pos);
1862 enum htx_blk_type type = htx_get_blk_type(blk);
Willy Tarreau79e57332018-10-02 16:01:16 +02001863
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001864 if (type == HTX_BLK_EOM || type == HTX_BLK_TLR || type == HTX_BLK_EOT)
1865 break;
1866 if (type == HTX_BLK_DATA) {
Christopher Faulet53a899b2019-10-08 16:38:42 +02001867 if (!h1_format_htx_data(htx_get_blk_value(htx, blk), temp, 0))
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001868 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001869 }
Willy Tarreau79e57332018-10-02 16:01:16 +02001870 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001871
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001872 smp->ctx.a[0] = temp->area;
1873 smp->ctx.a[1] = temp->area + temp->data;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001874
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001875 /* Assume that the context is filled with NULL pointer
1876 * before the first call.
1877 * smp->ctx.a[2] = NULL;
1878 * smp->ctx.a[3] = NULL;
1879 */
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001880
Willy Tarreau79e57332018-10-02 16:01:16 +02001881 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001882
Willy Tarreau79e57332018-10-02 16:01:16 +02001883 return smp_fetch_param('&', name, name_len, args, smp, kw, private);
1884}
1885
1886/* Return the signed integer value for the specified url parameter (see url_param
1887 * above).
1888 */
1889static int smp_fetch_url_param_val(const struct arg *args, struct sample *smp, const char *kw, void *private)
1890{
1891 int ret = smp_fetch_url_param(args, smp, kw, private);
1892
1893 if (ret > 0) {
1894 smp->data.type = SMP_T_SINT;
1895 smp->data.u.sint = strl2ic(smp->data.u.str.area,
1896 smp->data.u.str.data);
1897 }
1898
1899 return ret;
1900}
1901
1902/* This produces a 32-bit hash of the concatenation of the first occurrence of
1903 * the Host header followed by the path component if it begins with a slash ('/').
1904 * This means that '*' will not be added, resulting in exactly the first Host
1905 * entry. If no Host header is found, then the path is used. The resulting value
1906 * is hashed using the url hash followed by a full avalanche hash and provides a
1907 * 32-bit integer value. This fetch is useful for tracking per-URL activity on
1908 * high-traffic sites without having to store whole paths.
1909 * this differs from the base32 functions in that it includes the url parameters
1910 * as well as the path
1911 */
1912static int smp_fetch_url32(const struct arg *args, struct sample *smp, const char *kw, void *private)
1913{
Christopher Faulet89dc4992019-04-17 12:02:59 +02001914 struct channel *chn = SMP_REQ_CHN(smp);
Christopher Faulet778f5ed2020-04-29 15:51:55 +02001915 struct htx *htx = smp_prefetch_htx(smp, chn, NULL, 1);
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001916 struct http_hdr_ctx ctx;
1917 struct htx_sl *sl;
1918 struct ist path;
Willy Tarreau79e57332018-10-02 16:01:16 +02001919 unsigned int hash = 0;
Willy Tarreau79e57332018-10-02 16:01:16 +02001920
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001921 if (!htx)
1922 return 0;
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001923
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001924 ctx.blk = NULL;
1925 if (http_find_header(htx, ist("Host"), &ctx, 1)) {
1926 /* OK we have the header value in ctx.value */
1927 while (ctx.value.len--)
1928 hash = *(ctx.value.ptr++) + (hash << 6) + (hash << 16) - hash;
Willy Tarreau79e57332018-10-02 16:01:16 +02001929 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001930
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001931 /* now retrieve the path */
1932 sl = http_get_stline(htx);
1933 path = http_get_path(htx_sl_req_uri(sl));
Christopher Faulet6d1dd462019-07-15 14:36:03 +02001934 if (path.len && *(path.ptr) == '/') {
1935 while (path.len--)
1936 hash = *(path.ptr++) + (hash << 6) + (hash << 16) - hash;
Willy Tarreau79e57332018-10-02 16:01:16 +02001937 }
Christopher Faulet311c7ea2018-10-24 21:41:55 +02001938
Willy Tarreau79e57332018-10-02 16:01:16 +02001939 hash = full_hash(hash);
1940
1941 smp->data.type = SMP_T_SINT;
1942 smp->data.u.sint = hash;
1943 smp->flags = SMP_F_VOL_1ST;
1944 return 1;
1945}
1946
1947/* This concatenates the source address with the 32-bit hash of the Host and
1948 * URL as returned by smp_fetch_base32(). The idea is to have per-source and
1949 * per-url counters. The result is a binary block from 8 to 20 bytes depending
1950 * on the source address length. The URL hash is stored before the address so
1951 * that in environments where IPv6 is insignificant, truncating the output to
1952 * 8 bytes would still work.
1953 */
1954static int smp_fetch_url32_src(const struct arg *args, struct sample *smp, const char *kw, void *private)
1955{
1956 struct buffer *temp;
1957 struct connection *cli_conn = objt_conn(smp->sess->origin);
1958
Willy Tarreaucd7ca792019-07-17 16:57:03 +02001959 if (!cli_conn || !conn_get_src(cli_conn))
Willy Tarreau79e57332018-10-02 16:01:16 +02001960 return 0;
1961
1962 if (!smp_fetch_url32(args, smp, kw, private))
1963 return 0;
1964
1965 temp = get_trash_chunk();
1966 *(unsigned int *) temp->area = htonl(smp->data.u.sint);
1967 temp->data += sizeof(unsigned int);
1968
Willy Tarreau9a1efe12019-07-17 17:13:50 +02001969 switch (cli_conn->src->ss_family) {
Willy Tarreau79e57332018-10-02 16:01:16 +02001970 case AF_INET:
1971 memcpy(temp->area + temp->data,
Willy Tarreau9a1efe12019-07-17 17:13:50 +02001972 &((struct sockaddr_in *)cli_conn->src)->sin_addr,
Willy Tarreau79e57332018-10-02 16:01:16 +02001973 4);
1974 temp->data += 4;
1975 break;
1976 case AF_INET6:
1977 memcpy(temp->area + temp->data,
Willy Tarreau9a1efe12019-07-17 17:13:50 +02001978 &((struct sockaddr_in6 *)cli_conn->src)->sin6_addr,
Willy Tarreau79e57332018-10-02 16:01:16 +02001979 16);
1980 temp->data += 16;
1981 break;
1982 default:
1983 return 0;
1984 }
1985
1986 smp->data.u.str = *temp;
1987 smp->data.type = SMP_T_BIN;
1988 return 1;
1989}
1990
1991/************************************************************************/
1992/* Other utility functions */
1993/************************************************************************/
1994
1995/* This function is used to validate the arguments passed to any "hdr" fetch
1996 * keyword. These keywords support an optional positive or negative occurrence
1997 * number. We must ensure that the number is greater than -MAX_HDR_HISTORY. It
1998 * is assumed that the types are already the correct ones. Returns 0 on error,
1999 * non-zero if OK. If <err> is not NULL, it will be filled with a pointer to an
2000 * error message in case of error, that the caller is responsible for freeing.
2001 * The initial location must either be freeable or NULL.
2002 * Note: this function's pointer is checked from Lua.
2003 */
2004int val_hdr(struct arg *arg, char **err_msg)
2005{
2006 if (arg && arg[1].type == ARGT_SINT && arg[1].data.sint < -MAX_HDR_HISTORY) {
2007 memprintf(err_msg, "header occurrence must be >= %d", -MAX_HDR_HISTORY);
2008 return 0;
2009 }
2010 return 1;
2011}
2012
2013/************************************************************************/
2014/* All supported sample fetch keywords must be declared here. */
2015/************************************************************************/
2016
2017/* Note: must not be declared <const> as its list will be overwritten */
2018static struct sample_fetch_kw_list sample_fetch_keywords = {ILH, {
2019 { "base", smp_fetch_base, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2020 { "base32", smp_fetch_base32, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
2021 { "base32+src", smp_fetch_base32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
2022
2023 /* capture are allocated and are permanent in the stream */
2024 { "capture.req.hdr", smp_fetch_capture_req_hdr, ARG1(1,SINT), NULL, SMP_T_STR, SMP_USE_HRQHP },
2025
2026 /* retrieve these captures from the HTTP logs */
2027 { "capture.req.method", smp_fetch_capture_req_method, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
2028 { "capture.req.uri", smp_fetch_capture_req_uri, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
2029 { "capture.req.ver", smp_fetch_capture_req_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
2030
2031 { "capture.res.hdr", smp_fetch_capture_res_hdr, ARG1(1,SINT), NULL, SMP_T_STR, SMP_USE_HRSHP },
2032 { "capture.res.ver", smp_fetch_capture_res_ver, 0, NULL, SMP_T_STR, SMP_USE_HRQHP },
2033
2034 /* cookie is valid in both directions (eg: for "stick ...") but cook*
2035 * are only here to match the ACL's name, are request-only and are used
2036 * for ACL compatibility only.
2037 */
2038 { "cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
Christopher Fauletc1f40dd2019-05-16 10:07:30 +02002039 { "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 +02002040 { "cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2041 { "cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2042
2043 /* hdr is valid in both directions (eg: for "stick ...") but hdr_* are
2044 * only here to match the ACL's name, are request-only and are used for
2045 * ACL compatibility only.
2046 */
Christopher Fauletc1f40dd2019-05-16 10:07:30 +02002047 { "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 +02002048 { "hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2049 { "hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
2050 { "hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRQHV },
2051
Christopher Fauleta4063562019-08-02 11:51:37 +02002052 { "http_auth_type", smp_fetch_http_auth_type, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2053 { "http_auth_user", smp_fetch_http_auth_user, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2054 { "http_auth_pass", smp_fetch_http_auth_pass, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
Willy Tarreau79e57332018-10-02 16:01:16 +02002055 { "http_auth", smp_fetch_http_auth, ARG1(1,USR), NULL, SMP_T_BOOL, SMP_USE_HRQHV },
2056 { "http_auth_group", smp_fetch_http_auth_grp, ARG1(1,USR), NULL, SMP_T_STR, SMP_USE_HRQHV },
2057 { "http_first_req", smp_fetch_http_first_req, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
2058 { "method", smp_fetch_meth, 0, NULL, SMP_T_METH, SMP_USE_HRQHP },
2059 { "path", smp_fetch_path, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2060 { "query", smp_fetch_query, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2061
2062 /* HTTP protocol on the request path */
2063 { "req.proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
2064 { "req_proto_http", smp_fetch_proto_http, 0, NULL, SMP_T_BOOL, SMP_USE_HRQHP },
2065
2066 /* HTTP version on the request path */
2067 { "req.ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2068 { "req_ver", smp_fetch_rqver, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2069
2070 { "req.body", smp_fetch_body, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
2071 { "req.body_len", smp_fetch_body_len, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
2072 { "req.body_size", smp_fetch_body_size, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
2073 { "req.body_param", smp_fetch_body_param, ARG1(0,STR), NULL, SMP_T_BIN, SMP_USE_HRQHV },
2074
2075 { "req.hdrs", smp_fetch_hdrs, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
2076 { "req.hdrs_bin", smp_fetch_hdrs_bin, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
2077
2078 /* HTTP version on the response path */
2079 { "res.ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
2080 { "resp_ver", smp_fetch_stver, 0, NULL, SMP_T_STR, SMP_USE_HRSHV },
2081
Christopher Faulete596d182020-05-05 17:46:34 +02002082 { "res.body", smp_fetch_body, 0, NULL, SMP_T_BIN, SMP_USE_HRSHV },
2083 { "res.body_len", smp_fetch_body_len, 0, NULL, SMP_T_SINT, SMP_USE_HRSHV },
2084 { "res.body_size", smp_fetch_body_size, 0, NULL, SMP_T_SINT, SMP_USE_HRSHV },
2085
2086 { "res.hdrs", smp_fetch_hdrs, 0, NULL, SMP_T_BIN, SMP_USE_HRSHV },
2087 { "res.hdrs_bin", smp_fetch_hdrs_bin, 0, NULL, SMP_T_BIN, SMP_USE_HRSHV },
2088
Willy Tarreau79e57332018-10-02 16:01:16 +02002089 /* explicit req.{cook,hdr} are used to force the fetch direction to be request-only */
2090 { "req.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
2091 { "req.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2092 { "req.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2093
2094 { "req.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
2095 { "req.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2096 { "req.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRQHV },
2097 { "req.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRQHV },
2098 { "req.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRQHV },
2099 { "req.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
2100 { "req.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRQHV },
2101
2102 /* explicit req.{cook,hdr} are used to force the fetch direction to be response-only */
2103 { "res.cook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
2104 { "res.cook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2105 { "res.cook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2106
2107 { "res.fhdr", smp_fetch_fhdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
2108 { "res.fhdr_cnt", smp_fetch_fhdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2109 { "res.hdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
2110 { "res.hdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2111 { "res.hdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
2112 { "res.hdr_names", smp_fetch_hdr_names, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
2113 { "res.hdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRSHV },
2114
2115 /* scook is valid only on the response and is used for ACL compatibility */
2116 { "scook", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV },
2117 { "scook_cnt", smp_fetch_cookie_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2118 { "scook_val", smp_fetch_cookie_val, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2119 { "set-cookie", smp_fetch_cookie, ARG1(0,STR), NULL, SMP_T_STR, SMP_USE_HRSHV }, /* deprecated */
2120
2121 /* shdr is valid only on the response and is used for ACL compatibility */
2122 { "shdr", smp_fetch_hdr, ARG2(0,STR,SINT), val_hdr, SMP_T_STR, SMP_USE_HRSHV },
2123 { "shdr_cnt", smp_fetch_hdr_cnt, ARG1(0,STR), NULL, SMP_T_SINT, SMP_USE_HRSHV },
2124 { "shdr_ip", smp_fetch_hdr_ip, ARG2(0,STR,SINT), val_hdr, SMP_T_IPV4, SMP_USE_HRSHV },
2125 { "shdr_val", smp_fetch_hdr_val, ARG2(0,STR,SINT), val_hdr, SMP_T_SINT, SMP_USE_HRSHV },
2126
2127 { "status", smp_fetch_stcode, 0, NULL, SMP_T_SINT, SMP_USE_HRSHP },
2128 { "unique-id", smp_fetch_uniqueid, 0, NULL, SMP_T_STR, SMP_SRC_L4SRV },
2129 { "url", smp_fetch_url, 0, NULL, SMP_T_STR, SMP_USE_HRQHV },
2130 { "url32", smp_fetch_url32, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
2131 { "url32+src", smp_fetch_url32_src, 0, NULL, SMP_T_BIN, SMP_USE_HRQHV },
2132 { "url_ip", smp_fetch_url_ip, 0, NULL, SMP_T_IPV4, SMP_USE_HRQHV },
2133 { "url_port", smp_fetch_url_port, 0, NULL, SMP_T_SINT, SMP_USE_HRQHV },
2134 { "url_param", smp_fetch_url_param, ARG2(0,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
2135 { "urlp" , smp_fetch_url_param, ARG2(0,STR,STR), NULL, SMP_T_STR, SMP_USE_HRQHV },
2136 { "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 +02002137
Willy Tarreau79e57332018-10-02 16:01:16 +02002138 { /* END */ },
2139}};
2140
Willy Tarreau0108d902018-11-25 19:14:37 +01002141INITCALL1(STG_REGISTER, sample_register_fetches, &sample_fetch_keywords);
Willy Tarreau79e57332018-10-02 16:01:16 +02002142
2143/*
2144 * Local variables:
2145 * c-indent-level: 8
2146 * c-basic-offset: 8
2147 * End:
2148 */