blob: 5abf4712aa3c91c1709f870559207980cd19c4f5 [file] [log] [blame]
Emeric Brun107ca302010-01-04 16:16:05 +01001/*
Willy Tarreaucd3b0942012-04-27 21:52:18 +02002 * Sample management functions.
Emeric Brun107ca302010-01-04 16:16:05 +01003 *
4 * Copyright 2009-2010 EXCELIANCE, Emeric Brun <ebrun@exceliance.fr>
Willy Tarreaucd3b0942012-04-27 21:52:18 +02005 * Copyright (C) 2012 Willy Tarreau <w@1wt.eu>
Emeric Brun107ca302010-01-04 16:16:05 +01006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
Thierry FOURNIER317e1c42014-08-12 10:20:47 +020014#include <ctype.h>
Emeric Brun107ca302010-01-04 16:16:05 +010015#include <string.h>
16#include <arpa/inet.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020017#include <stdio.h>
Emeric Brun107ca302010-01-04 16:16:05 +010018
Alex51c8ad42021-04-15 16:45:15 +020019#include <import/mjson.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020020#include <import/sha1.h>
Willy Tarreau7e2c6472012-10-29 20:44:36 +010021
Willy Tarreaub2551052020-06-09 09:07:15 +020022#include <haproxy/api.h>
23#include <haproxy/arg.h>
Willy Tarreauac13aea2020-06-04 10:36:03 +020024#include <haproxy/auth.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020025#include <haproxy/base64.h>
Willy Tarreau16f958c2020-06-03 08:44:35 +020026#include <haproxy/buf.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020027#include <haproxy/chunk.h>
Willy Tarreau55542642021-10-08 09:33:24 +020028#include <haproxy/clock.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020029#include <haproxy/errors.h>
Baptiste Assmanne138dda2020-10-22 15:39:03 +020030#include <haproxy/fix.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020031#include <haproxy/global.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020032#include <haproxy/hash.h>
Willy Tarreaucd72d8c2020-06-02 19:11:26 +020033#include <haproxy/http.h>
Baptiste Assmanne138dda2020-10-22 15:39:03 +020034#include <haproxy/istbuf.h>
Baptiste Assmanne279ca62020-10-27 18:10:06 +010035#include <haproxy/mqtt.h>
Willy Tarreau6131d6a2020-06-02 16:48:09 +020036#include <haproxy/net_helper.h>
Willy Tarreaub23e5952020-06-04 16:06:59 +020037#include <haproxy/protobuf.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020038#include <haproxy/proxy.h>
Willy Tarreau7cd8b6e2020-06-02 17:32:26 +020039#include <haproxy/regex.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020040#include <haproxy/sample.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020041#include <haproxy/sink.h>
42#include <haproxy/stick_table.h>
Willy Tarreau48fbcae2020-06-03 18:09:46 +020043#include <haproxy/tools.h>
Willy Tarreau8c42b8a2020-06-04 19:27:34 +020044#include <haproxy/uri_auth-t.h>
Willy Tarreaua1718922020-06-04 16:25:31 +020045#include <haproxy/vars.h>
Tim Duesterhusd5fc8fc2021-09-11 17:51:13 +020046#include <haproxy/xxhash.h>
Remi Tricot-Le Breton0a72f5e2021-10-01 15:36:57 +020047#include <haproxy/jwt.h>
Thierry FOURNIER01e09742016-12-26 11:46:11 +010048
Willy Tarreau1cf8f082014-02-07 12:14:54 +010049/* sample type names */
50const char *smp_to_type[SMP_TYPES] = {
Thierry FOURNIER9c627e82015-06-03 20:12:35 +020051 [SMP_T_ANY] = "any",
Willy Tarreau1cf8f082014-02-07 12:14:54 +010052 [SMP_T_BOOL] = "bool",
Willy Tarreau1cf8f082014-02-07 12:14:54 +010053 [SMP_T_SINT] = "sint",
54 [SMP_T_ADDR] = "addr",
55 [SMP_T_IPV4] = "ipv4",
56 [SMP_T_IPV6] = "ipv6",
57 [SMP_T_STR] = "str",
58 [SMP_T_BIN] = "bin",
Thierry FOURNIER4c2479e2015-06-03 20:12:04 +020059 [SMP_T_METH] = "meth",
Willy Tarreau1cf8f082014-02-07 12:14:54 +010060};
61
Willy Tarreau12785782012-04-27 21:37:17 +020062/* static sample used in sample_process() when <p> is NULL */
Emeric Brune5c918b2017-06-14 14:15:36 +020063static THREAD_LOCAL struct sample temp_smp;
Emeric Brun107ca302010-01-04 16:16:05 +010064
Willy Tarreau12785782012-04-27 21:37:17 +020065/* list head of all known sample fetch keywords */
66static struct sample_fetch_kw_list sample_fetches = {
67 .list = LIST_HEAD_INIT(sample_fetches.list)
Emeric Brun107ca302010-01-04 16:16:05 +010068};
69
Willy Tarreau12785782012-04-27 21:37:17 +020070/* list head of all known sample format conversion keywords */
71static struct sample_conv_kw_list sample_convs = {
72 .list = LIST_HEAD_INIT(sample_convs.list)
Emeric Brun107ca302010-01-04 16:16:05 +010073};
74
Willy Tarreau80aca902013-01-07 15:42:20 +010075const unsigned int fetch_cap[SMP_SRC_ENTRIES] = {
Willy Tarreaube2159b2021-03-26 11:56:11 +010076 [SMP_SRC_CONST] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
77 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
78 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
79 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
80 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
81 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +010082 SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL_CFG_PARSER |
83 SMP_VAL_CLI_PARSER ),
Willy Tarreaube2159b2021-03-26 11:56:11 +010084
Willy Tarreau80aca902013-01-07 15:42:20 +010085 [SMP_SRC_INTRN] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
86 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
87 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
88 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
89 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
90 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +010091 SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ |
92 SMP_VAL_CLI_PARSER ),
Willy Tarreau80aca902013-01-07 15:42:20 +010093
94 [SMP_SRC_LISTN] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
95 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
96 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
97 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
98 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
99 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100100 SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ |
101 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100102
103 [SMP_SRC_FTEND] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
104 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
105 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
106 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
107 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
108 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100109 SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ |
110 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100111
112 [SMP_SRC_L4CLI] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
113 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
114 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
115 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
116 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
117 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100118 SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ |
119 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100120
121 [SMP_SRC_L5CLI] = (SMP_VAL___________ | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
122 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
123 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
124 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
125 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
126 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100127 SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ |
128 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100129
130 [SMP_SRC_TRACK] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
131 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
132 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
133 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
134 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
135 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100136 SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ |
137 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100138
139 [SMP_SRC_L6REQ] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_FE_REQ_CNT |
140 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
141 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
142 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL___________ |
143 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
144 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100145 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
146 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100147
148 [SMP_SRC_HRQHV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_FE_REQ_CNT |
149 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
150 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
151 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL___________ |
152 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
153 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100154 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
155 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100156
157 [SMP_SRC_HRQHP] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_FE_REQ_CNT |
158 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
159 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
160 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
161 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
162 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100163 SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ |
164 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100165
166 [SMP_SRC_HRQBO] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
167 SMP_VAL___________ | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
168 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
169 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL___________ |
170 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
171 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100172 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
173 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100174
175 [SMP_SRC_BKEND] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
176 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
177 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
178 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
179 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
180 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100181 SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ |
182 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100183
184 [SMP_SRC_SERVR] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
185 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
186 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
187 SMP_VAL___________ | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
188 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
189 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100190 SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ |
191 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100192
193 [SMP_SRC_L4SRV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
194 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
195 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
196 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT |
197 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
198 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100199 SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ |
200 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100201
202 [SMP_SRC_L5SRV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
203 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
204 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
205 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT |
206 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
207 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100208 SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ |
209 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100210
211 [SMP_SRC_L6RES] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
212 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
213 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
214 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT |
215 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
216 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100217 SMP_VAL___________ | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ |
218 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100219
220 [SMP_SRC_HRSHV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
221 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
222 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
223 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT |
224 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
225 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100226 SMP_VAL___________ | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ |
227 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100228
229 [SMP_SRC_HRSHP] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
230 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
231 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
232 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT |
233 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
234 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100235 SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ |
236 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100237
238 [SMP_SRC_HRSBO] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
239 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
240 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
241 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
242 SMP_VAL___________ | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
243 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100244 SMP_VAL___________ | SMP_VAL_BE_CHK_RUL | SMP_VAL___________ |
245 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100246
247 [SMP_SRC_RQFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
248 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
249 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
250 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
251 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
252 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100253 SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ |
254 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100255
256 [SMP_SRC_RSFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
257 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
258 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
259 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
260 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
261 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100262 SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ |
263 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100264
265 [SMP_SRC_TXFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
266 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
267 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
268 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
269 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
270 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100271 SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ |
272 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100273
274 [SMP_SRC_SSFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
275 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
276 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
277 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
278 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
279 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
Willy Tarreaudb5e0db2021-03-26 15:29:35 +0100280 SMP_VAL_FE_LOG_END | SMP_VAL___________ | SMP_VAL___________ |
281 SMP_VAL___________ ),
Willy Tarreau80aca902013-01-07 15:42:20 +0100282};
283
284static const char *fetch_src_names[SMP_SRC_ENTRIES] = {
285 [SMP_SRC_INTRN] = "internal state",
286 [SMP_SRC_LISTN] = "listener",
287 [SMP_SRC_FTEND] = "frontend",
288 [SMP_SRC_L4CLI] = "client address",
289 [SMP_SRC_L5CLI] = "client-side connection",
290 [SMP_SRC_TRACK] = "track counters",
291 [SMP_SRC_L6REQ] = "request buffer",
292 [SMP_SRC_HRQHV] = "HTTP request headers",
293 [SMP_SRC_HRQHP] = "HTTP request",
294 [SMP_SRC_HRQBO] = "HTTP request body",
295 [SMP_SRC_BKEND] = "backend",
296 [SMP_SRC_SERVR] = "server",
297 [SMP_SRC_L4SRV] = "server address",
298 [SMP_SRC_L5SRV] = "server-side connection",
299 [SMP_SRC_L6RES] = "response buffer",
300 [SMP_SRC_HRSHV] = "HTTP response headers",
301 [SMP_SRC_HRSHP] = "HTTP response",
302 [SMP_SRC_HRSBO] = "HTTP response body",
303 [SMP_SRC_RQFIN] = "request buffer statistics",
304 [SMP_SRC_RSFIN] = "response buffer statistics",
305 [SMP_SRC_TXFIN] = "transaction statistics",
306 [SMP_SRC_SSFIN] = "session statistics",
307};
308
Willy Tarreaubf8e2512013-03-25 14:52:41 +0100309static const char *fetch_ckp_names[SMP_CKP_ENTRIES] = {
310 [SMP_CKP_FE_CON_ACC] = "frontend tcp-request connection rule",
311 [SMP_CKP_FE_SES_ACC] = "frontend tcp-request session rule",
312 [SMP_CKP_FE_REQ_CNT] = "frontend tcp-request content rule",
313 [SMP_CKP_FE_HRQ_HDR] = "frontend http-request header rule",
314 [SMP_CKP_FE_HRQ_BDY] = "frontend http-request body rule",
315 [SMP_CKP_FE_SET_BCK] = "frontend use-backend rule",
316 [SMP_CKP_BE_REQ_CNT] = "backend tcp-request content rule",
317 [SMP_CKP_BE_HRQ_HDR] = "backend http-request header rule",
318 [SMP_CKP_BE_HRQ_BDY] = "backend http-request body rule",
319 [SMP_CKP_BE_SET_SRV] = "backend use-server, balance or stick-match rule",
320 [SMP_CKP_BE_SRV_CON] = "server source selection",
321 [SMP_CKP_BE_RES_CNT] = "backend tcp-response content rule",
322 [SMP_CKP_BE_HRS_HDR] = "backend http-response header rule",
323 [SMP_CKP_BE_HRS_BDY] = "backend http-response body rule",
324 [SMP_CKP_BE_STO_RUL] = "backend stick-store rule",
325 [SMP_CKP_FE_RES_CNT] = "frontend tcp-response content rule",
326 [SMP_CKP_FE_HRS_HDR] = "frontend http-response header rule",
327 [SMP_CKP_FE_HRS_BDY] = "frontend http-response body rule",
328 [SMP_CKP_FE_LOG_END] = "logs",
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100329 [SMP_CKP_BE_CHK_RUL] = "backend tcp-check rule",
Willy Tarreaubf8e2512013-03-25 14:52:41 +0100330};
331
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100332/* This function returns the type of the data returned by the sample_expr.
333 * It assumes that the <expr> and all of its converters are properly
334 * initialized.
335 */
336inline
337int smp_expr_output_type(struct sample_expr *expr)
338{
339 struct sample_conv_expr *smp_expr;
340
341 if (!LIST_ISEMPTY(&expr->conv_exprs)) {
342 smp_expr = LIST_PREV(&expr->conv_exprs, struct sample_conv_expr *, list);
343 return smp_expr->conv->out_type;
344 }
345 return expr->fetch->out_type;
346}
347
348
Willy Tarreau80aca902013-01-07 15:42:20 +0100349/* fill the trash with a comma-delimited list of source names for the <use> bit
350 * field which must be composed of a non-null set of SMP_USE_* flags. The return
351 * value is the pointer to the string in the trash buffer.
352 */
353const char *sample_src_names(unsigned int use)
354{
355 int bit;
356
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200357 trash.data = 0;
358 trash.area[0] = '\0';
Willy Tarreau80aca902013-01-07 15:42:20 +0100359 for (bit = 0; bit < SMP_SRC_ENTRIES; bit++) {
360 if (!(use & ~((1 << bit) - 1)))
361 break; /* no more bits */
362
363 if (!(use & (1 << bit)))
364 continue; /* bit not set */
365
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200366 trash.data += snprintf(trash.area + trash.data,
367 trash.size - trash.data, "%s%s",
368 (use & ((1 << bit) - 1)) ? "," : "",
369 fetch_src_names[bit]);
Willy Tarreau80aca902013-01-07 15:42:20 +0100370 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200371 return trash.area;
Willy Tarreau80aca902013-01-07 15:42:20 +0100372}
373
Willy Tarreaubf8e2512013-03-25 14:52:41 +0100374/* return a pointer to the correct sample checkpoint name, or "unknown" when
375 * the flags are invalid. Only the lowest bit is used, higher bits are ignored
376 * if set.
377 */
378const char *sample_ckp_names(unsigned int use)
379{
380 int bit;
381
382 for (bit = 0; bit < SMP_CKP_ENTRIES; bit++)
383 if (use & (1 << bit))
384 return fetch_ckp_names[bit];
385 return "unknown sample check place, please report this bug";
386}
387
Emeric Brun107ca302010-01-04 16:16:05 +0100388/*
Willy Tarreau80aca902013-01-07 15:42:20 +0100389 * Registers the sample fetch keyword list <kwl> as a list of valid keywords
390 * for next parsing sessions. The fetch keywords capabilities are also computed
391 * from their ->use field.
Emeric Brun107ca302010-01-04 16:16:05 +0100392 */
Willy Tarreau80aca902013-01-07 15:42:20 +0100393void sample_register_fetches(struct sample_fetch_kw_list *kwl)
Emeric Brun107ca302010-01-04 16:16:05 +0100394{
Willy Tarreau80aca902013-01-07 15:42:20 +0100395 struct sample_fetch *sf;
396 int bit;
397
398 for (sf = kwl->kw; sf->kw != NULL; sf++) {
399 for (bit = 0; bit < SMP_SRC_ENTRIES; bit++)
400 if (sf->use & (1 << bit))
401 sf->val |= fetch_cap[bit];
402 }
Willy Tarreau2b718102021-04-21 07:32:39 +0200403 LIST_APPEND(&sample_fetches.list, &kwl->list);
Emeric Brun107ca302010-01-04 16:16:05 +0100404}
405
406/*
Willy Tarreau12785782012-04-27 21:37:17 +0200407 * Registers the sample format coverstion keyword list <pckl> as a list of valid keywords for next
Emeric Brun107ca302010-01-04 16:16:05 +0100408 * parsing sessions.
409 */
Willy Tarreau12785782012-04-27 21:37:17 +0200410void sample_register_convs(struct sample_conv_kw_list *pckl)
Emeric Brun107ca302010-01-04 16:16:05 +0100411{
Willy Tarreau2b718102021-04-21 07:32:39 +0200412 LIST_APPEND(&sample_convs.list, &pckl->list);
Emeric Brun107ca302010-01-04 16:16:05 +0100413}
414
415/*
Willy Tarreau12785782012-04-27 21:37:17 +0200416 * Returns the pointer on sample fetch keyword structure identified by
Emeric Brun107ca302010-01-04 16:16:05 +0100417 * string of <len> in buffer <kw>.
418 *
419 */
Willy Tarreau12785782012-04-27 21:37:17 +0200420struct sample_fetch *find_sample_fetch(const char *kw, int len)
Emeric Brun107ca302010-01-04 16:16:05 +0100421{
422 int index;
Willy Tarreau12785782012-04-27 21:37:17 +0200423 struct sample_fetch_kw_list *kwl;
Emeric Brun107ca302010-01-04 16:16:05 +0100424
Willy Tarreau12785782012-04-27 21:37:17 +0200425 list_for_each_entry(kwl, &sample_fetches.list, list) {
Emeric Brun107ca302010-01-04 16:16:05 +0100426 for (index = 0; kwl->kw[index].kw != NULL; index++) {
427 if (strncmp(kwl->kw[index].kw, kw, len) == 0 &&
428 kwl->kw[index].kw[len] == '\0')
429 return &kwl->kw[index];
430 }
431 }
432 return NULL;
433}
434
Tim Duesterhusc555ee02018-01-25 16:24:44 +0100435/* This function browses the list of available sample fetches. <current> is
Thierry FOURNIER4d9a1d12014-12-08 14:49:19 +0100436 * the last used sample fetch. If it is the first call, it must set to NULL.
Tim Duesterhusc555ee02018-01-25 16:24:44 +0100437 * <idx> is the index of the next sample fetch entry. It is used as private
438 * value. It is useless to initiate it.
Thierry FOURNIER4d9a1d12014-12-08 14:49:19 +0100439 *
Tim Duesterhusc555ee02018-01-25 16:24:44 +0100440 * It returns always the new fetch_sample entry, and NULL when the end of
Thierry FOURNIER4d9a1d12014-12-08 14:49:19 +0100441 * the list is reached.
442 */
443struct sample_fetch *sample_fetch_getnext(struct sample_fetch *current, int *idx)
444{
445 struct sample_fetch_kw_list *kwl;
446 struct sample_fetch *base;
447
448 if (!current) {
449 /* Get first kwl entry. */
450 kwl = LIST_NEXT(&sample_fetches.list, struct sample_fetch_kw_list *, list);
451 (*idx) = 0;
452 } else {
453 /* Get kwl corresponding to the curret entry. */
454 base = current + 1 - (*idx);
455 kwl = container_of(base, struct sample_fetch_kw_list, kw);
456 }
457
458 while (1) {
459
460 /* Check if kwl is the last entry. */
461 if (&kwl->list == &sample_fetches.list)
462 return NULL;
463
464 /* idx contain the next keyword. If it is available, return it. */
465 if (kwl->kw[*idx].kw) {
466 (*idx)++;
467 return &kwl->kw[(*idx)-1];
468 }
469
470 /* get next entry in the main list, and return NULL if the end is reached. */
471 kwl = LIST_NEXT(&kwl->list, struct sample_fetch_kw_list *, list);
472
473 /* Set index to 0, ans do one other loop. */
474 (*idx) = 0;
475 }
476}
477
Thierry FOURNIER8fd13762015-03-10 23:56:48 +0100478/* This function browses the list of available converters. <current> is
479 * the last used converter. If it is the first call, it must set to NULL.
480 * <idx> is the index of the next converter entry. It is used as private
481 * value. It is useless to initiate it.
482 *
483 * It returns always the next sample_conv entry, and NULL when the end of
484 * the list is reached.
485 */
486struct sample_conv *sample_conv_getnext(struct sample_conv *current, int *idx)
487{
488 struct sample_conv_kw_list *kwl;
489 struct sample_conv *base;
490
491 if (!current) {
492 /* Get first kwl entry. */
493 kwl = LIST_NEXT(&sample_convs.list, struct sample_conv_kw_list *, list);
494 (*idx) = 0;
495 } else {
496 /* Get kwl corresponding to the curret entry. */
497 base = current + 1 - (*idx);
498 kwl = container_of(base, struct sample_conv_kw_list, kw);
499 }
500
501 while (1) {
502 /* Check if kwl is the last entry. */
503 if (&kwl->list == &sample_convs.list)
504 return NULL;
505
506 /* idx contain the next keyword. If it is available, return it. */
507 if (kwl->kw[*idx].kw) {
508 (*idx)++;
509 return &kwl->kw[(*idx)-1];
510 }
511
512 /* get next entry in the main list, and return NULL if the end is reached. */
513 kwl = LIST_NEXT(&kwl->list, struct sample_conv_kw_list *, list);
514
515 /* Set index to 0, ans do one other loop. */
516 (*idx) = 0;
517 }
518}
519
Emeric Brun107ca302010-01-04 16:16:05 +0100520/*
Willy Tarreau12785782012-04-27 21:37:17 +0200521 * Returns the pointer on sample format conversion keyword structure identified by
Emeric Brun107ca302010-01-04 16:16:05 +0100522 * string of <len> in buffer <kw>.
523 *
524 */
Willy Tarreau12785782012-04-27 21:37:17 +0200525struct sample_conv *find_sample_conv(const char *kw, int len)
Emeric Brun107ca302010-01-04 16:16:05 +0100526{
527 int index;
Willy Tarreau12785782012-04-27 21:37:17 +0200528 struct sample_conv_kw_list *kwl;
Emeric Brun107ca302010-01-04 16:16:05 +0100529
Willy Tarreau12785782012-04-27 21:37:17 +0200530 list_for_each_entry(kwl, &sample_convs.list, list) {
Emeric Brun107ca302010-01-04 16:16:05 +0100531 for (index = 0; kwl->kw[index].kw != NULL; index++) {
532 if (strncmp(kwl->kw[index].kw, kw, len) == 0 &&
533 kwl->kw[index].kw[len] == '\0')
534 return &kwl->kw[index];
535 }
536 }
537 return NULL;
538}
539
Emeric Brun107ca302010-01-04 16:16:05 +0100540/******************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +0200541/* Sample casts functions */
Emeric Brun107ca302010-01-04 16:16:05 +0100542/******************************************************************/
543
Willy Tarreau342acb42012-04-23 22:03:39 +0200544static int c_ip2int(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100545{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200546 smp->data.u.sint = ntohl(smp->data.u.ipv4.s_addr);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200547 smp->data.type = SMP_T_SINT;
Emeric Brun107ca302010-01-04 16:16:05 +0100548 return 1;
549}
550
Willy Tarreau342acb42012-04-23 22:03:39 +0200551static int c_ip2str(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100552{
Willy Tarreau83061a82018-07-13 11:56:34 +0200553 struct buffer *trash = get_trash_chunk();
Emeric Brun107ca302010-01-04 16:16:05 +0100554
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200555 if (!inet_ntop(AF_INET, (void *)&smp->data.u.ipv4, trash->area, trash->size))
Emeric Brun107ca302010-01-04 16:16:05 +0100556 return 0;
557
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200558 trash->data = strlen(trash->area);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200559 smp->data.u.str = *trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200560 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100561 smp->flags &= ~SMP_F_CONST;
Emeric Brun107ca302010-01-04 16:16:05 +0100562
563 return 1;
564}
565
Willy Tarreau342acb42012-04-23 22:03:39 +0200566static int c_ip2ipv6(struct sample *smp)
David du Colombier4f92d322011-03-24 11:09:31 +0100567{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200568 v4tov6(&smp->data.u.ipv6, &smp->data.u.ipv4);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200569 smp->data.type = SMP_T_IPV6;
David du Colombier4f92d322011-03-24 11:09:31 +0100570 return 1;
571}
572
Thierry FOURNIERcc4d1712015-07-24 09:04:56 +0200573static int c_ipv62ip(struct sample *smp)
574{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200575 if (!v6tov4(&smp->data.u.ipv4, &smp->data.u.ipv6))
Thierry FOURNIERcc4d1712015-07-24 09:04:56 +0200576 return 0;
Tim Duesterhusbf5ce022018-01-25 16:24:46 +0100577 smp->data.type = SMP_T_IPV4;
Thierry FOURNIERcc4d1712015-07-24 09:04:56 +0200578 return 1;
579}
580
Willy Tarreau342acb42012-04-23 22:03:39 +0200581static int c_ipv62str(struct sample *smp)
David du Colombier4f92d322011-03-24 11:09:31 +0100582{
Willy Tarreau83061a82018-07-13 11:56:34 +0200583 struct buffer *trash = get_trash_chunk();
David du Colombier4f92d322011-03-24 11:09:31 +0100584
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200585 if (!inet_ntop(AF_INET6, (void *)&smp->data.u.ipv6, trash->area, trash->size))
David du Colombier4f92d322011-03-24 11:09:31 +0100586 return 0;
587
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200588 trash->data = strlen(trash->area);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200589 smp->data.u.str = *trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200590 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100591 smp->flags &= ~SMP_F_CONST;
David du Colombier4f92d322011-03-24 11:09:31 +0100592 return 1;
593}
594
595/*
Willy Tarreau342acb42012-04-23 22:03:39 +0200596static int c_ipv62ip(struct sample *smp)
David du Colombier4f92d322011-03-24 11:09:31 +0100597{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200598 return v6tov4(&smp->data.u.ipv4, &smp->data.u.ipv6);
David du Colombier4f92d322011-03-24 11:09:31 +0100599}
600*/
601
Willy Tarreau342acb42012-04-23 22:03:39 +0200602static int c_int2ip(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100603{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200604 smp->data.u.ipv4.s_addr = htonl((unsigned int)smp->data.u.sint);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200605 smp->data.type = SMP_T_IPV4;
Emeric Brun107ca302010-01-04 16:16:05 +0100606 return 1;
607}
608
Thierry FOURNIERcc4d1712015-07-24 09:04:56 +0200609static int c_int2ipv6(struct sample *smp)
610{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200611 smp->data.u.ipv4.s_addr = htonl((unsigned int)smp->data.u.sint);
612 v4tov6(&smp->data.u.ipv6, &smp->data.u.ipv4);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200613 smp->data.type = SMP_T_IPV6;
Thierry FOURNIERcc4d1712015-07-24 09:04:56 +0200614 return 1;
615}
616
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100617static int c_str2addr(struct sample *smp)
618{
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200619 if (!buf2ip(smp->data.u.str.area, smp->data.u.str.data, &smp->data.u.ipv4)) {
620 if (!buf2ip6(smp->data.u.str.area, smp->data.u.str.data, &smp->data.u.ipv6))
Thierry FOURNIERfd139902013-12-11 12:38:57 +0100621 return 0;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200622 smp->data.type = SMP_T_IPV6;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100623 smp->flags &= ~SMP_F_CONST;
Thierry FOURNIERfd139902013-12-11 12:38:57 +0100624 return 1;
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100625 }
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200626 smp->data.type = SMP_T_IPV4;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100627 smp->flags &= ~SMP_F_CONST;
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100628 return 1;
629}
630
Willy Tarreau342acb42012-04-23 22:03:39 +0200631static int c_str2ip(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100632{
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200633 if (!buf2ip(smp->data.u.str.area, smp->data.u.str.data, &smp->data.u.ipv4))
Emeric Brun107ca302010-01-04 16:16:05 +0100634 return 0;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200635 smp->data.type = SMP_T_IPV4;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100636 smp->flags &= ~SMP_F_CONST;
Emeric Brun107ca302010-01-04 16:16:05 +0100637 return 1;
638}
639
Willy Tarreau342acb42012-04-23 22:03:39 +0200640static int c_str2ipv6(struct sample *smp)
David du Colombier4f92d322011-03-24 11:09:31 +0100641{
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200642 if (!buf2ip6(smp->data.u.str.area, smp->data.u.str.data, &smp->data.u.ipv6))
Thierry FOURNIERfd139902013-12-11 12:38:57 +0100643 return 0;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200644 smp->data.type = SMP_T_IPV6;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100645 smp->flags &= ~SMP_F_CONST;
Thierry FOURNIERfd139902013-12-11 12:38:57 +0100646 return 1;
David du Colombier4f92d322011-03-24 11:09:31 +0100647}
648
Emeric Brun4b9e8022014-11-03 18:17:10 +0100649/*
650 * The NULL char always enforces the end of string if it is met.
651 * Data is never changed, so we can ignore the CONST case
Thierry FOURNIERe87cac12014-03-12 15:07:59 +0100652 */
Emeric Brun8ac33d92012-10-17 13:36:06 +0200653static int c_bin2str(struct sample *smp)
654{
Emeric Brun4b9e8022014-11-03 18:17:10 +0100655 int i;
Emeric Brun8ac33d92012-10-17 13:36:06 +0200656
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200657 for (i = 0; i < smp->data.u.str.data; i++) {
658 if (!smp->data.u.str.area[i]) {
659 smp->data.u.str.data = i;
Thierry FOURNIERe87cac12014-03-12 15:07:59 +0100660 break;
Emeric Brun4b9e8022014-11-03 18:17:10 +0100661 }
Emeric Brun8ac33d92012-10-17 13:36:06 +0200662 }
Christopher Faulet472ad512020-04-30 09:57:40 +0200663 smp->data.type = SMP_T_STR;
Emeric Brun8ac33d92012-10-17 13:36:06 +0200664 return 1;
665}
666
Willy Tarreau342acb42012-04-23 22:03:39 +0200667static int c_int2str(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100668{
Willy Tarreau83061a82018-07-13 11:56:34 +0200669 struct buffer *trash = get_trash_chunk();
Emeric Brun107ca302010-01-04 16:16:05 +0100670 char *pos;
671
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200672 pos = lltoa_r(smp->data.u.sint, trash->area, trash->size);
Emeric Brun107ca302010-01-04 16:16:05 +0100673 if (!pos)
674 return 0;
675
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200676 trash->size = trash->size - (pos - trash->area);
677 trash->area = pos;
678 trash->data = strlen(pos);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200679 smp->data.u.str = *trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200680 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100681 smp->flags &= ~SMP_F_CONST;
Emeric Brun107ca302010-01-04 16:16:05 +0100682 return 1;
683}
684
Joseph Herlant757f5ad2018-11-15 12:14:56 -0800685/* This function unconditionally duplicates data and removes the "const" flag.
Willy Tarreauad635822016-08-08 19:21:09 +0200686 * For strings and binary blocks, it also provides a known allocated size with
687 * a length that is capped to the size, and ensures a trailing zero is always
688 * appended for strings. This is necessary for some operations which may
689 * require to extend the length. It returns 0 if it fails, 1 on success.
690 */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100691int smp_dup(struct sample *smp)
Emeric Brun485479d2010-09-23 18:02:19 +0200692{
Willy Tarreau83061a82018-07-13 11:56:34 +0200693 struct buffer *trash;
Emeric Brun485479d2010-09-23 18:02:19 +0200694
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200695 switch (smp->data.type) {
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100696 case SMP_T_BOOL:
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100697 case SMP_T_SINT:
698 case SMP_T_ADDR:
699 case SMP_T_IPV4:
700 case SMP_T_IPV6:
701 /* These type are not const. */
702 break;
Willy Tarreauad635822016-08-08 19:21:09 +0200703
Christopher Fauletec100512017-07-24 15:38:41 +0200704 case SMP_T_METH:
705 if (smp->data.u.meth.meth != HTTP_METH_OTHER)
706 break;
707 /* Fall through */
708
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100709 case SMP_T_STR:
Willy Tarreauad635822016-08-08 19:21:09 +0200710 trash = get_trash_chunk();
Olivier Houchard4468f1c2018-12-07 15:23:41 +0100711 trash->data = smp->data.type == SMP_T_STR ?
712 smp->data.u.str.data : smp->data.u.meth.str.data;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200713 if (trash->data > trash->size - 1)
714 trash->data = trash->size - 1;
Willy Tarreauad635822016-08-08 19:21:09 +0200715
Olivier Houchard4468f1c2018-12-07 15:23:41 +0100716 memcpy(trash->area, smp->data.type == SMP_T_STR ?
717 smp->data.u.str.area : smp->data.u.meth.str.area,
718 trash->data);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200719 trash->area[trash->data] = 0;
Willy Tarreauad635822016-08-08 19:21:09 +0200720 smp->data.u.str = *trash;
721 break;
722
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100723 case SMP_T_BIN:
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100724 trash = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200725 trash->data = smp->data.u.str.data;
726 if (trash->data > trash->size)
727 trash->data = trash->size;
Willy Tarreauad635822016-08-08 19:21:09 +0200728
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200729 memcpy(trash->area, smp->data.u.str.area, trash->data);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200730 smp->data.u.str = *trash;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100731 break;
Christopher Fauletec100512017-07-24 15:38:41 +0200732
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100733 default:
734 /* Other cases are unexpected. */
735 return 0;
736 }
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100737
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100738 /* remove const flag */
739 smp->flags &= ~SMP_F_CONST;
Emeric Brun485479d2010-09-23 18:02:19 +0200740 return 1;
741}
742
Thierry FOURNIER0e9af552013-12-14 14:55:04 +0100743int c_none(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100744{
745 return 1;
746}
747
Willy Tarreau342acb42012-04-23 22:03:39 +0200748static int c_str2int(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100749{
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200750 const char *str;
751 const char *end;
Emeric Brun107ca302010-01-04 16:16:05 +0100752
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200753 if (smp->data.u.str.data == 0)
Thierry FOURNIER60bb0202014-01-27 18:20:48 +0100754 return 0;
755
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200756 str = smp->data.u.str.area;
757 end = smp->data.u.str.area + smp->data.u.str.data;
Emeric Brun107ca302010-01-04 16:16:05 +0100758
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200759 smp->data.u.sint = read_int64(&str, end);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200760 smp->data.type = SMP_T_SINT;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100761 smp->flags &= ~SMP_F_CONST;
Emeric Brun107ca302010-01-04 16:16:05 +0100762 return 1;
763}
764
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100765static int c_str2meth(struct sample *smp)
766{
767 enum http_meth_t meth;
768 int len;
769
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200770 meth = find_http_meth(smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100771 if (meth == HTTP_METH_OTHER) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200772 len = smp->data.u.str.data;
773 smp->data.u.meth.str.area = smp->data.u.str.area;
774 smp->data.u.meth.str.data = len;
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100775 }
776 else
777 smp->flags &= ~SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200778 smp->data.u.meth.meth = meth;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200779 smp->data.type = SMP_T_METH;
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100780 return 1;
781}
782
783static int c_meth2str(struct sample *smp)
784{
785 int len;
786 enum http_meth_t meth;
787
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200788 if (smp->data.u.meth.meth == HTTP_METH_OTHER) {
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100789 /* The method is unknown. Copy the original pointer. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200790 len = smp->data.u.meth.str.data;
791 smp->data.u.str.area = smp->data.u.meth.str.area;
792 smp->data.u.str.data = len;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200793 smp->data.type = SMP_T_STR;
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100794 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200795 else if (smp->data.u.meth.meth < HTTP_METH_OTHER) {
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100796 /* The method is known, copy the pointer containing the string. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200797 meth = smp->data.u.meth.meth;
Willy Tarreau35b51c62018-09-10 15:38:55 +0200798 smp->data.u.str.area = http_known_methods[meth].ptr;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200799 smp->data.u.str.data = http_known_methods[meth].len;
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100800 smp->flags |= SMP_F_CONST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200801 smp->data.type = SMP_T_STR;
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100802 }
803 else {
804 /* Unknown method */
805 return 0;
806 }
807 return 1;
808}
809
Willy Tarreau9700e5c2014-07-15 21:03:26 +0200810static int c_addr2bin(struct sample *smp)
811{
Willy Tarreau83061a82018-07-13 11:56:34 +0200812 struct buffer *chk = get_trash_chunk();
Willy Tarreau9700e5c2014-07-15 21:03:26 +0200813
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200814 if (smp->data.type == SMP_T_IPV4) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200815 chk->data = 4;
816 memcpy(chk->area, &smp->data.u.ipv4, chk->data);
Willy Tarreau9700e5c2014-07-15 21:03:26 +0200817 }
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200818 else if (smp->data.type == SMP_T_IPV6) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200819 chk->data = 16;
820 memcpy(chk->area, &smp->data.u.ipv6, chk->data);
Willy Tarreau9700e5c2014-07-15 21:03:26 +0200821 }
822 else
823 return 0;
824
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200825 smp->data.u.str = *chk;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200826 smp->data.type = SMP_T_BIN;
Willy Tarreau9700e5c2014-07-15 21:03:26 +0200827 return 1;
828}
829
Willy Tarreaubbfd1a22014-07-15 21:19:08 +0200830static int c_int2bin(struct sample *smp)
831{
Willy Tarreau83061a82018-07-13 11:56:34 +0200832 struct buffer *chk = get_trash_chunk();
Willy Tarreaubbfd1a22014-07-15 21:19:08 +0200833
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200834 *(unsigned long long int *) chk->area = my_htonll(smp->data.u.sint);
835 chk->data = 8;
Willy Tarreaubbfd1a22014-07-15 21:19:08 +0200836
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200837 smp->data.u.str = *chk;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200838 smp->data.type = SMP_T_BIN;
Willy Tarreaubbfd1a22014-07-15 21:19:08 +0200839 return 1;
840}
841
Willy Tarreau9700e5c2014-07-15 21:03:26 +0200842
Emeric Brun107ca302010-01-04 16:16:05 +0100843/*****************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +0200844/* Sample casts matrix: */
845/* sample_casts[from type][to type] */
846/* NULL pointer used for impossible sample casts */
Emeric Brun107ca302010-01-04 16:16:05 +0100847/*****************************************************************/
Emeric Brun107ca302010-01-04 16:16:05 +0100848
Thierry FOURNIER8af6ff12013-11-21 10:53:12 +0100849sample_cast_fct sample_casts[SMP_TYPES][SMP_TYPES] = {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200850/* to: ANY BOOL SINT ADDR IPV4 IPV6 STR BIN METH */
851/* from: ANY */ { c_none, c_none, c_none, c_none, c_none, c_none, c_none, c_none, c_none, },
852/* BOOL */ { c_none, c_none, c_none, NULL, NULL, NULL, c_int2str, NULL, NULL, },
Thierry FOURNIERcc4d1712015-07-24 09:04:56 +0200853/* SINT */ { c_none, c_none, c_none, c_int2ip, c_int2ip, c_int2ipv6, c_int2str, c_int2bin, NULL, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200854/* ADDR */ { c_none, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, },
855/* IPV4 */ { c_none, NULL, c_ip2int, c_none, c_none, c_ip2ipv6, c_ip2str, c_addr2bin, NULL, },
Thierry FOURNIERcc4d1712015-07-24 09:04:56 +0200856/* IPV6 */ { c_none, NULL, NULL, c_none, c_ipv62ip,c_none, c_ipv62str, c_addr2bin, NULL, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200857/* STR */ { c_none, c_str2int, c_str2int, c_str2addr, c_str2ip, c_str2ipv6, c_none, c_none, c_str2meth, },
858/* BIN */ { c_none, NULL, NULL, NULL, NULL, NULL, c_bin2str, c_none, c_str2meth, },
859/* METH */ { c_none, NULL, NULL, NULL, NULL, NULL, c_meth2str, c_meth2str, c_none, }
Willy Tarreauf0b38bf2010-06-06 13:22:23 +0200860};
Emeric Brun107ca302010-01-04 16:16:05 +0100861
Emeric Brun107ca302010-01-04 16:16:05 +0100862/*
Willy Tarreau12785782012-04-27 21:37:17 +0200863 * Parse a sample expression configuration:
Emeric Brun107ca302010-01-04 16:16:05 +0100864 * fetch keyword followed by format conversion keywords.
Willy Tarreau12785782012-04-27 21:37:17 +0200865 * Returns a pointer on allocated sample expression structure.
Christopher Faulet35926a12021-09-30 08:48:56 +0200866 * <al> is an arg_list serving as a list head to report missing dependencies.
867 * It may be NULL if such dependencies are not allowed. Otherwise, the caller
868 * must have set al->ctx if al is set.
Willy Tarreaue3b57bf2020-02-14 16:50:14 +0100869 * If <endptr> is non-nul, it will be set to the first unparsed character
870 * (which may be the final '\0') on success. If it is nul, the expression
871 * must be properly terminated by a '\0' otherwise an error is reported.
Emeric Brun107ca302010-01-04 16:16:05 +0100872 */
Willy Tarreaue3b57bf2020-02-14 16:50:14 +0100873struct sample_expr *sample_parse_expr(char **str, int *idx, const char *file, int line, char **err_msg, struct arg_list *al, char **endptr)
Emeric Brun107ca302010-01-04 16:16:05 +0100874{
Willy Tarreau833cc792013-07-24 15:34:19 +0200875 const char *begw; /* beginning of word */
876 const char *endw; /* end of word */
877 const char *endt; /* end of term */
Remi Tricot-Le Breton22e0d9b2021-01-12 14:55:12 +0100878 struct sample_expr *expr = NULL;
Willy Tarreau12785782012-04-27 21:37:17 +0200879 struct sample_fetch *fetch;
880 struct sample_conv *conv;
Emeric Brun107ca302010-01-04 16:16:05 +0100881 unsigned long prev_type;
Willy Tarreau833cc792013-07-24 15:34:19 +0200882 char *fkw = NULL;
883 char *ckw = NULL;
Willy Tarreau689a1df2013-12-13 00:40:11 +0100884 int err_arg;
Emeric Brun107ca302010-01-04 16:16:05 +0100885
Willy Tarreau833cc792013-07-24 15:34:19 +0200886 begw = str[*idx];
Willy Tarreaued2c6622020-02-14 18:27:10 +0100887 for (endw = begw; is_idchar(*endw); endw++)
888 ;
Willy Tarreau833cc792013-07-24 15:34:19 +0200889
890 if (endw == begw) {
Willy Tarreau975c1782013-12-12 23:16:54 +0100891 memprintf(err_msg, "missing fetch method");
Emeric Brun107ca302010-01-04 16:16:05 +0100892 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200893 }
Emeric Brun107ca302010-01-04 16:16:05 +0100894
Willy Tarreau833cc792013-07-24 15:34:19 +0200895 /* keep a copy of the current fetch keyword for error reporting */
896 fkw = my_strndup(begw, endw - begw);
Emeric Brun107ca302010-01-04 16:16:05 +0100897
Willy Tarreau833cc792013-07-24 15:34:19 +0200898 fetch = find_sample_fetch(begw, endw - begw);
899 if (!fetch) {
Willy Tarreau975c1782013-12-12 23:16:54 +0100900 memprintf(err_msg, "unknown fetch method '%s'", fkw);
Emeric Brun107ca302010-01-04 16:16:05 +0100901 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200902 }
Emeric Brun107ca302010-01-04 16:16:05 +0100903
Willy Tarreau833cc792013-07-24 15:34:19 +0200904 /* At this point, we have :
905 * - begw : beginning of the keyword
Willy Tarreau689a1df2013-12-13 00:40:11 +0100906 * - endw : end of the keyword, first character not part of keyword
Willy Tarreau833cc792013-07-24 15:34:19 +0200907 */
908
909 if (fetch->out_type >= SMP_TYPES) {
Willy Tarreau975c1782013-12-12 23:16:54 +0100910 memprintf(err_msg, "returns type of fetch method '%s' is unknown", fkw);
Emeric Brun107ca302010-01-04 16:16:05 +0100911 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200912 }
Emeric Brun107ca302010-01-04 16:16:05 +0100913 prev_type = fetch->out_type;
Willy Tarreau833cc792013-07-24 15:34:19 +0200914
Vincent Bernat02779b62016-04-03 13:48:43 +0200915 expr = calloc(1, sizeof(*expr));
Emeric Brun485479d2010-09-23 18:02:19 +0200916 if (!expr)
917 goto out_error;
Emeric Brun107ca302010-01-04 16:16:05 +0100918
919 LIST_INIT(&(expr->conv_exprs));
920 expr->fetch = fetch;
Willy Tarreau2e845be2012-10-19 19:49:09 +0200921 expr->arg_p = empty_arg_list;
Emeric Brun107ca302010-01-04 16:16:05 +0100922
Willy Tarreau689a1df2013-12-13 00:40:11 +0100923 /* Note that we call the argument parser even with an empty string,
924 * this allows it to automatically create entries for mandatory
925 * implicit arguments (eg: local proxy name).
926 */
Christopher Faulet35926a12021-09-30 08:48:56 +0200927 if (al) {
928 al->kw = expr->fetch->kw;
929 al->conv = NULL;
930 }
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100931 if (make_arg_list(endw, -1, fetch->arg_mask, &expr->arg_p, err_msg, &endt, &err_arg, al) < 0) {
Willy Tarreau689a1df2013-12-13 00:40:11 +0100932 memprintf(err_msg, "fetch method '%s' : %s", fkw, *err_msg);
933 goto out_error;
934 }
Willy Tarreau2e845be2012-10-19 19:49:09 +0200935
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100936 /* now endt is our first char not part of the arg list, typically the
937 * comma after the sample fetch name or after the closing parenthesis,
938 * or the NUL char.
939 */
940
Willy Tarreau689a1df2013-12-13 00:40:11 +0100941 if (!expr->arg_p) {
942 expr->arg_p = empty_arg_list;
Emeric Brun485479d2010-09-23 18:02:19 +0200943 }
Willy Tarreau689a1df2013-12-13 00:40:11 +0100944 else if (fetch->val_args && !fetch->val_args(expr->arg_p, err_msg)) {
945 memprintf(err_msg, "invalid args in fetch method '%s' : %s", fkw, *err_msg);
Emeric Brun485479d2010-09-23 18:02:19 +0200946 goto out_error;
Emeric Brun107ca302010-01-04 16:16:05 +0100947 }
948
Willy Tarreau833cc792013-07-24 15:34:19 +0200949 /* Now process the converters if any. We have two supported syntaxes
950 * for the converters, which can be combined :
951 * - comma-delimited list of converters just after the keyword and args ;
952 * - one converter per keyword
953 * The combination allows to have each keyword being a comma-delimited
954 * series of converters.
955 *
956 * We want to process the former first, then the latter. For this we start
957 * from the beginning of the supposed place in the exiting conv chain, which
958 * starts at the last comma (endt).
959 */
960
961 while (1) {
Willy Tarreau12785782012-04-27 21:37:17 +0200962 struct sample_conv_expr *conv_expr;
Willy Tarreau46dfd782019-12-17 10:25:29 +0100963 int err_arg;
964 int argcnt;
Emeric Brun107ca302010-01-04 16:16:05 +0100965
Willy Tarreau833cc792013-07-24 15:34:19 +0200966 if (*endt && *endt != ',') {
Willy Tarreaue3b57bf2020-02-14 16:50:14 +0100967 if (endptr) {
968 /* end found, let's stop here */
969 break;
970 }
Willy Tarreau833cc792013-07-24 15:34:19 +0200971 if (ckw)
Willy Tarreau97108e02016-11-25 07:33:24 +0100972 memprintf(err_msg, "missing comma after converter '%s'", ckw);
Willy Tarreau833cc792013-07-24 15:34:19 +0200973 else
Willy Tarreau975c1782013-12-12 23:16:54 +0100974 memprintf(err_msg, "missing comma after fetch keyword '%s'", fkw);
Emeric Brun107ca302010-01-04 16:16:05 +0100975 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200976 }
Emeric Brun107ca302010-01-04 16:16:05 +0100977
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100978 /* FIXME: how long should we support such idiocies ? Maybe we
979 * should already warn ?
980 */
Willy Tarreau833cc792013-07-24 15:34:19 +0200981 while (*endt == ',') /* then trailing commas */
982 endt++;
983
Willy Tarreau97108e02016-11-25 07:33:24 +0100984 begw = endt; /* start of converter */
Willy Tarreau833cc792013-07-24 15:34:19 +0200985
986 if (!*begw) {
987 /* none ? skip to next string */
988 (*idx)++;
989 begw = str[*idx];
990 if (!begw || !*begw)
991 break;
992 }
993
Willy Tarreaued2c6622020-02-14 18:27:10 +0100994 for (endw = begw; is_idchar(*endw); endw++)
995 ;
Willy Tarreau833cc792013-07-24 15:34:19 +0200996
997 free(ckw);
998 ckw = my_strndup(begw, endw - begw);
999
1000 conv = find_sample_conv(begw, endw - begw);
1001 if (!conv) {
1002 /* we found an isolated keyword that we don't know, it's not ours */
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001003 if (begw == str[*idx]) {
1004 endt = begw;
Willy Tarreau833cc792013-07-24 15:34:19 +02001005 break;
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001006 }
Willy Tarreau97108e02016-11-25 07:33:24 +01001007 memprintf(err_msg, "unknown converter '%s'", ckw);
Willy Tarreau833cc792013-07-24 15:34:19 +02001008 goto out_error;
1009 }
Emeric Brun107ca302010-01-04 16:16:05 +01001010
Willy Tarreau833cc792013-07-24 15:34:19 +02001011 if (conv->in_type >= SMP_TYPES || conv->out_type >= SMP_TYPES) {
Willy Tarreau97108e02016-11-25 07:33:24 +01001012 memprintf(err_msg, "returns type of converter '%s' is unknown", ckw);
Emeric Brun107ca302010-01-04 16:16:05 +01001013 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +02001014 }
Emeric Brun107ca302010-01-04 16:16:05 +01001015
1016 /* If impossible type conversion */
Willy Tarreau12785782012-04-27 21:37:17 +02001017 if (!sample_casts[prev_type][conv->in_type]) {
Willy Tarreau97108e02016-11-25 07:33:24 +01001018 memprintf(err_msg, "converter '%s' cannot be applied", ckw);
Emeric Brun107ca302010-01-04 16:16:05 +01001019 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +02001020 }
Emeric Brun107ca302010-01-04 16:16:05 +01001021
1022 prev_type = conv->out_type;
Vincent Bernat02779b62016-04-03 13:48:43 +02001023 conv_expr = calloc(1, sizeof(*conv_expr));
Emeric Brun485479d2010-09-23 18:02:19 +02001024 if (!conv_expr)
1025 goto out_error;
Emeric Brun107ca302010-01-04 16:16:05 +01001026
Willy Tarreau2b718102021-04-21 07:32:39 +02001027 LIST_APPEND(&(expr->conv_exprs), &(conv_expr->list));
Emeric Brun107ca302010-01-04 16:16:05 +01001028 conv_expr->conv = conv;
1029
Christopher Faulet35926a12021-09-30 08:48:56 +02001030 if (al) {
1031 al->kw = expr->fetch->kw;
1032 al->conv = conv_expr->conv->kw;
1033 }
Willy Tarreau80b53ff2020-02-14 08:40:37 +01001034 argcnt = make_arg_list(endw, -1, conv->arg_mask, &conv_expr->arg_p, err_msg, &endt, &err_arg, al);
Willy Tarreau46dfd782019-12-17 10:25:29 +01001035 if (argcnt < 0) {
1036 memprintf(err_msg, "invalid arg %d in converter '%s' : %s", err_arg+1, ckw, *err_msg);
1037 goto out_error;
1038 }
Willy Tarreau9e92d322010-01-26 17:58:06 +01001039
Willy Tarreau46dfd782019-12-17 10:25:29 +01001040 if (argcnt && !conv->arg_mask) {
1041 memprintf(err_msg, "converter '%s' does not support any args", ckw);
1042 goto out_error;
1043 }
Willy Tarreau21d68a62012-04-20 15:52:36 +02001044
Willy Tarreau46dfd782019-12-17 10:25:29 +01001045 if (!conv_expr->arg_p)
1046 conv_expr->arg_p = empty_arg_list;
Willy Tarreau2e845be2012-10-19 19:49:09 +02001047
Willy Tarreau46dfd782019-12-17 10:25:29 +01001048 if (conv->val_args && !conv->val_args(conv_expr->arg_p, conv, file, line, err_msg)) {
1049 memprintf(err_msg, "invalid args in converter '%s' : %s", ckw, *err_msg);
Emeric Brun485479d2010-09-23 18:02:19 +02001050 goto out_error;
Emeric Brun107ca302010-01-04 16:16:05 +01001051 }
1052 }
Emeric Brun485479d2010-09-23 18:02:19 +02001053
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001054 if (endptr) {
1055 /* end found, let's stop here */
1056 *endptr = (char *)endt;
1057 }
1058
Willy Tarreau833cc792013-07-24 15:34:19 +02001059 out:
1060 free(fkw);
1061 free(ckw);
Emeric Brun107ca302010-01-04 16:16:05 +01001062 return expr;
1063
1064out_error:
Remi Tricot-Le Breton22e0d9b2021-01-12 14:55:12 +01001065 release_sample_expr(expr);
Willy Tarreau833cc792013-07-24 15:34:19 +02001066 expr = NULL;
1067 goto out;
Emeric Brun107ca302010-01-04 16:16:05 +01001068}
1069
1070/*
Willy Tarreau12785782012-04-27 21:37:17 +02001071 * Process a fetch + format conversion of defined by the sample expression <expr>
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001072 * on request or response considering the <opt> parameter.
Willy Tarreau12785782012-04-27 21:37:17 +02001073 * Returns a pointer on a typed sample structure containing the result or NULL if
1074 * sample is not found or when format conversion failed.
Emeric Brun107ca302010-01-04 16:16:05 +01001075 * If <p> is not null, function returns results in structure pointed by <p>.
Willy Tarreau12785782012-04-27 21:37:17 +02001076 * If <p> is null, functions returns a pointer on a static sample structure.
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001077 *
1078 * Note: the fetch functions are required to properly set the return type. The
1079 * conversion functions must do so too. However the cast functions do not need
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05001080 * to since they're made to cast multiple types according to what is required.
Willy Tarreau6bcb0a82014-07-30 08:56:35 +02001081 *
1082 * The caller may indicate in <opt> if it considers the result final or not.
1083 * The caller needs to check the SMP_F_MAY_CHANGE flag in p->flags to verify
1084 * if the result is stable or not, according to the following table :
1085 *
1086 * return MAY_CHANGE FINAL Meaning for the sample
1087 * NULL 0 * Not present and will never be (eg: header)
1088 * NULL 1 0 Not present yet, could change (eg: POST param)
1089 * NULL 1 1 Not present yet, will not change anymore
1090 * smp 0 * Present and will not change (eg: header)
1091 * smp 1 0 Present, may change (eg: request length)
1092 * smp 1 1 Present, last known value (eg: request length)
Emeric Brun107ca302010-01-04 16:16:05 +01001093 */
Willy Tarreau192252e2015-04-04 01:47:55 +02001094struct sample *sample_process(struct proxy *px, struct session *sess,
1095 struct stream *strm, unsigned int opt,
Willy Tarreau12785782012-04-27 21:37:17 +02001096 struct sample_expr *expr, struct sample *p)
Emeric Brun107ca302010-01-04 16:16:05 +01001097{
Willy Tarreau12785782012-04-27 21:37:17 +02001098 struct sample_conv_expr *conv_expr;
Emeric Brun107ca302010-01-04 16:16:05 +01001099
Willy Tarreau18387e22013-07-25 12:02:38 +02001100 if (p == NULL) {
Willy Tarreaub4a88f02012-04-23 21:35:11 +02001101 p = &temp_smp;
Willy Tarreau6c616e02014-06-25 16:56:41 +02001102 memset(p, 0, sizeof(*p));
Willy Tarreau18387e22013-07-25 12:02:38 +02001103 }
Emeric Brun107ca302010-01-04 16:16:05 +01001104
Willy Tarreau1777ea62016-03-10 16:15:46 +01001105 smp_set_owner(p, px, sess, strm, opt);
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001106 if (!expr->fetch->process(expr->arg_p, p, expr->fetch->kw, expr->fetch->private))
Emeric Brun107ca302010-01-04 16:16:05 +01001107 return NULL;
1108
Emeric Brun107ca302010-01-04 16:16:05 +01001109 list_for_each_entry(conv_expr, &expr->conv_exprs, list) {
Willy Tarreau12e50112012-04-25 17:21:49 +02001110 /* we want to ensure that p->type can be casted into
1111 * conv_expr->conv->in_type. We have 3 possibilities :
1112 * - NULL => not castable.
1113 * - c_none => nothing to do (let's optimize it)
1114 * - other => apply cast and prepare to fail
1115 */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001116 if (!sample_casts[p->data.type][conv_expr->conv->in_type])
Willy Tarreau12e50112012-04-25 17:21:49 +02001117 return NULL;
1118
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001119 if (sample_casts[p->data.type][conv_expr->conv->in_type] != c_none &&
1120 !sample_casts[p->data.type][conv_expr->conv->in_type](p))
Emeric Brun107ca302010-01-04 16:16:05 +01001121 return NULL;
1122
Willy Tarreau12e50112012-04-25 17:21:49 +02001123 /* OK cast succeeded */
1124
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001125 if (!conv_expr->conv->process(conv_expr->arg_p, p, conv_expr->conv->private))
Emeric Brun107ca302010-01-04 16:16:05 +01001126 return NULL;
Emeric Brun107ca302010-01-04 16:16:05 +01001127 }
1128 return p;
1129}
1130
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001131/*
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001132 * Resolve all remaining arguments in proxy <p>. Returns the number of
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001133 * errors or 0 if everything is fine. If at least one error is met, it will
1134 * be appended to *err. If *err==NULL it will be allocated first.
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001135 */
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001136int smp_resolve_args(struct proxy *p, char **err)
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001137{
1138 struct arg_list *cur, *bak;
1139 const char *ctx, *where;
1140 const char *conv_ctx, *conv_pre, *conv_pos;
1141 struct userlist *ul;
Willy Tarreau46947782015-01-19 19:00:58 +01001142 struct my_regex *reg;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001143 struct arg *arg;
1144 int cfgerr = 0;
Willy Tarreau46947782015-01-19 19:00:58 +01001145 int rflags;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001146
1147 list_for_each_entry_safe(cur, bak, &p->conf.args.list, list) {
1148 struct proxy *px;
1149 struct server *srv;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001150 struct stktable *t;
1151 char *pname, *sname, *stktname;
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001152 char *err2;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001153
1154 arg = cur->arg;
1155
1156 /* prepare output messages */
1157 conv_pre = conv_pos = conv_ctx = "";
1158 if (cur->conv) {
1159 conv_ctx = cur->conv;
1160 conv_pre = "conversion keyword '";
1161 conv_pos = "' for ";
1162 }
1163
1164 where = "in";
1165 ctx = "sample fetch keyword";
1166 switch (cur->ctx) {
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001167 case ARGC_STK: where = "in stick rule in"; break;
1168 case ARGC_TRK: where = "in tracking rule in"; break;
1169 case ARGC_LOG: where = "in log-format string in"; break;
1170 case ARGC_LOGSD: where = "in log-format-sd string in"; break;
Willy Tarreau57467b82021-09-02 19:43:20 +02001171 case ARGC_HRQ: where = "in http-request expression in"; break;
1172 case ARGC_HRS: where = "in http-response response in"; break;
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001173 case ARGC_UIF: where = "in unique-id-format string in"; break;
1174 case ARGC_RDR: where = "in redirect format string in"; break;
1175 case ARGC_CAP: where = "in capture rule in"; break;
1176 case ARGC_ACL: ctx = "ACL keyword"; break;
1177 case ARGC_SRV: where = "in server directive in"; break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001178 case ARGC_SPOE: where = "in spoe-message directive in"; break;
Christopher Faulet3b967c12020-05-15 15:47:44 +02001179 case ARGC_HERR: where = "in http-error directive in"; break;
Miroslav Zagorac7f8314c2020-12-09 16:31:48 +01001180 case ARGC_OT: where = "in ot-scope directive in"; break;
Willy Tarreau57467b82021-09-02 19:43:20 +02001181 case ARGC_TCO: where = "in tcp-request connection expression in"; break;
1182 case ARGC_TSE: where = "in tcp-request session expression in"; break;
1183 case ARGC_TRQ: where = "in tcp-request content expression in"; break;
1184 case ARGC_TRS: where = "in tcp-response content expression in"; break;
1185 case ARGC_TCK: where = "in tcp-check expression in"; break;
1186 case ARGC_CFG: where = "in configuration expression in"; break;
1187 case ARGC_CLI: where = "in CLI expression in"; break;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001188 }
1189
1190 /* set a few default settings */
1191 px = p;
1192 pname = p->id;
1193
1194 switch (arg->type) {
1195 case ARGT_SRV:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001196 if (!arg->data.str.data) {
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001197 memprintf(err, "%sparsing [%s:%d]: missing server name in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1198 *err ? *err : "", cur->file, cur->line,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001199 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001200 cfgerr++;
1201 continue;
1202 }
1203
1204 /* we support two formats : "bck/srv" and "srv" */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001205 sname = strrchr(arg->data.str.area, '/');
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001206
1207 if (sname) {
1208 *sname++ = '\0';
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001209 pname = arg->data.str.area;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001210
Willy Tarreau9e0bb102015-05-26 11:24:42 +02001211 px = proxy_be_by_name(pname);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001212 if (!px) {
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001213 memprintf(err, "%sparsing [%s:%d]: unable to find proxy '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1214 *err ? *err : "", cur->file, cur->line, pname,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001215 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001216 cfgerr++;
1217 break;
1218 }
1219 }
Christopher Faulet37a9e212021-10-12 18:48:05 +02001220 else {
1221 if (px->cap & PR_CAP_DEF) {
1222 memprintf(err, "%sparsing [%s:%d]: backend name must be set in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1223 *err ? *err : "", cur->file, cur->line,
1224 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
1225 cfgerr++;
1226 break;
1227 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001228 sname = arg->data.str.area;
Christopher Faulet37a9e212021-10-12 18:48:05 +02001229 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001230
1231 srv = findserver(px, sname);
1232 if (!srv) {
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001233 memprintf(err, "%sparsing [%s:%d]: unable to find server '%s' in proxy '%s', referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1234 *err ? *err : "", cur->file, cur->line, sname, pname,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001235 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001236 cfgerr++;
1237 break;
1238 }
1239
Amaury Denoyelle06269612021-08-23 14:05:07 +02001240 srv->flags |= SRV_F_NON_PURGEABLE;
1241
Christopher Faulet6ad7df42020-08-07 11:45:18 +02001242 chunk_destroy(&arg->data.str);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001243 arg->unresolved = 0;
1244 arg->data.srv = srv;
1245 break;
1246
1247 case ARGT_FE:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001248 if (arg->data.str.data) {
1249 pname = arg->data.str.area;
Willy Tarreau9e0bb102015-05-26 11:24:42 +02001250 px = proxy_fe_by_name(pname);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001251 }
1252
1253 if (!px) {
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001254 memprintf(err, "%sparsing [%s:%d]: unable to find frontend '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1255 *err ? *err : "", cur->file, cur->line, pname,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001256 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001257 cfgerr++;
1258 break;
1259 }
1260
1261 if (!(px->cap & PR_CAP_FE)) {
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001262 memprintf(err, "%sparsing [%s:%d]: proxy '%s', referenced in arg %d of %s%s%s%s '%s' %s proxy '%s', has not frontend capability.\n",
1263 *err ? *err : "", cur->file, cur->line, pname,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001264 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001265 cfgerr++;
1266 break;
1267 }
1268
Christopher Faulet6ad7df42020-08-07 11:45:18 +02001269 chunk_destroy(&arg->data.str);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001270 arg->unresolved = 0;
1271 arg->data.prx = px;
1272 break;
1273
1274 case ARGT_BE:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001275 if (arg->data.str.data) {
1276 pname = arg->data.str.area;
Willy Tarreau9e0bb102015-05-26 11:24:42 +02001277 px = proxy_be_by_name(pname);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001278 }
1279
1280 if (!px) {
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001281 memprintf(err, "%sparsing [%s:%d]: unable to find backend '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1282 *err ? *err : "", cur->file, cur->line, pname,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001283 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001284 cfgerr++;
1285 break;
1286 }
1287
1288 if (!(px->cap & PR_CAP_BE)) {
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001289 memprintf(err, "%sparsing [%s:%d]: proxy '%s', referenced in arg %d of %s%s%s%s '%s' %s proxy '%s', has not backend capability.\n",
1290 *err ? *err : "", cur->file, cur->line, pname,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001291 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001292 cfgerr++;
1293 break;
1294 }
1295
Christopher Faulet6ad7df42020-08-07 11:45:18 +02001296 chunk_destroy(&arg->data.str);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001297 arg->unresolved = 0;
1298 arg->data.prx = px;
1299 break;
1300
1301 case ARGT_TAB:
Frédéric Lécaille9417f452019-06-20 09:31:04 +02001302 if (arg->data.str.data)
1303 stktname = arg->data.str.area;
Christopher Faulet37a9e212021-10-12 18:48:05 +02001304 else {
1305 if (px->cap & PR_CAP_DEF) {
1306 memprintf(err, "%sparsing [%s:%d]: table name must be set in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1307 *err ? *err : "", cur->file, cur->line,
1308 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
1309 cfgerr++;
1310 break;
1311 }
Frédéric Lécaille9417f452019-06-20 09:31:04 +02001312 stktname = px->id;
Christopher Faulet37a9e212021-10-12 18:48:05 +02001313 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001314
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001315 t = stktable_find_by_name(stktname);
1316 if (!t) {
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001317 memprintf(err, "%sparsing [%s:%d]: unable to find table '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1318 *err ? *err : "", cur->file, cur->line, stktname,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001319 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001320 cfgerr++;
1321 break;
1322 }
1323
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001324 if (!t->size) {
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001325 memprintf(err, "%sparsing [%s:%d]: no table in proxy '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1326 *err ? *err : "", cur->file, cur->line, stktname,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001327 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001328 cfgerr++;
1329 break;
1330 }
1331
Frédéric Lécaillebe367932019-08-07 09:28:39 +02001332 if (!in_proxies_list(t->proxies_list, p)) {
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01001333 p->next_stkt_ref = t->proxies_list;
1334 t->proxies_list = p;
1335 }
1336
Christopher Faulet6ad7df42020-08-07 11:45:18 +02001337 chunk_destroy(&arg->data.str);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001338 arg->unresolved = 0;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001339 arg->data.t = t;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001340 break;
1341
1342 case ARGT_USR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001343 if (!arg->data.str.data) {
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001344 memprintf(err, "%sparsing [%s:%d]: missing userlist name in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1345 *err ? *err : "", cur->file, cur->line,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001346 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001347 cfgerr++;
1348 break;
1349 }
1350
1351 if (p->uri_auth && p->uri_auth->userlist &&
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001352 strcmp(p->uri_auth->userlist->name, arg->data.str.area) == 0)
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001353 ul = p->uri_auth->userlist;
1354 else
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001355 ul = auth_find_userlist(arg->data.str.area);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001356
1357 if (!ul) {
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001358 memprintf(err, "%sparsing [%s:%d]: unable to find userlist '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1359 *err ? *err : "", cur->file, cur->line,
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001360 arg->data.str.area,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001361 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001362 cfgerr++;
1363 break;
1364 }
1365
Christopher Faulet6ad7df42020-08-07 11:45:18 +02001366 chunk_destroy(&arg->data.str);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001367 arg->unresolved = 0;
1368 arg->data.usr = ul;
1369 break;
Willy Tarreau46947782015-01-19 19:00:58 +01001370
1371 case ARGT_REG:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001372 if (!arg->data.str.data) {
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001373 memprintf(err, "%sparsing [%s:%d]: missing regex in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1374 *err ? *err : "", cur->file, cur->line,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001375 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreau46947782015-01-19 19:00:58 +01001376 cfgerr++;
1377 continue;
1378 }
1379
Willy Tarreau46947782015-01-19 19:00:58 +01001380 rflags = 0;
1381 rflags |= (arg->type_flags & ARGF_REG_ICASE) ? REG_ICASE : 0;
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001382 err2 = NULL;
Willy Tarreau46947782015-01-19 19:00:58 +01001383
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001384 if (!(reg = regex_comp(arg->data.str.area, !(rflags & REG_ICASE), 1 /* capture substr */, &err2))) {
1385 memprintf(err, "%sparsing [%s:%d]: error in regex '%s' in arg %d of %s%s%s%s '%s' %s proxy '%s' : %s.\n",
1386 *err ? *err : "", cur->file, cur->line,
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001387 arg->data.str.area,
Willy Tarreau77e6a4e2021-03-26 16:11:55 +01001388 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id, err2);
Willy Tarreau46947782015-01-19 19:00:58 +01001389 cfgerr++;
1390 continue;
1391 }
1392
Christopher Faulet6ad7df42020-08-07 11:45:18 +02001393 chunk_destroy(&arg->data.str);
Willy Tarreau46947782015-01-19 19:00:58 +01001394 arg->unresolved = 0;
1395 arg->data.reg = reg;
1396 break;
1397
1398
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001399 }
1400
Willy Tarreau2b718102021-04-21 07:32:39 +02001401 LIST_DELETE(&cur->list);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001402 free(cur);
1403 } /* end of args processing */
1404
1405 return cfgerr;
1406}
1407
1408/*
Willy Tarreau5b4bf702014-06-13 16:04:35 +02001409 * Process a fetch + format conversion as defined by the sample expression
1410 * <expr> on request or response considering the <opt> parameter. The output is
Adis Nezirovic79beb242015-07-06 15:41:02 +02001411 * not explicitly set to <smp_type>, but shall be compatible with it as
1412 * specified by 'sample_casts' table. If a stable sample can be fetched, or an
1413 * unstable one when <opt> contains SMP_OPT_FINAL, the sample is converted and
Willy Tarreau5b4bf702014-06-13 16:04:35 +02001414 * returned without the SMP_F_MAY_CHANGE flag. If an unstable sample is found
1415 * and <opt> does not contain SMP_OPT_FINAL, then the sample is returned as-is
1416 * with its SMP_F_MAY_CHANGE flag so that the caller can check it and decide to
1417 * take actions (eg: wait longer). If a sample could not be found or could not
Willy Tarreau6bcb0a82014-07-30 08:56:35 +02001418 * be converted, NULL is returned. The caller MUST NOT use the sample if the
1419 * SMP_F_MAY_CHANGE flag is present, as it is used only as a hint that there is
1420 * still hope to get it after waiting longer, and is not converted to string.
1421 * The possible output combinations are the following :
1422 *
1423 * return MAY_CHANGE FINAL Meaning for the sample
1424 * NULL * * Not present and will never be (eg: header)
1425 * smp 0 * Final value converted (eg: header)
1426 * smp 1 0 Not present yet, may appear later (eg: header)
1427 * smp 1 1 never happens (either flag is cleared on output)
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001428 */
Adis Nezirovic79beb242015-07-06 15:41:02 +02001429struct sample *sample_fetch_as_type(struct proxy *px, struct session *sess,
Willy Tarreau192252e2015-04-04 01:47:55 +02001430 struct stream *strm, unsigned int opt,
Adis Nezirovic79beb242015-07-06 15:41:02 +02001431 struct sample_expr *expr, int smp_type)
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001432{
Willy Tarreau5b4bf702014-06-13 16:04:35 +02001433 struct sample *smp = &temp_smp;
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001434
Willy Tarreau6c616e02014-06-25 16:56:41 +02001435 memset(smp, 0, sizeof(*smp));
1436
Willy Tarreau192252e2015-04-04 01:47:55 +02001437 if (!sample_process(px, sess, strm, opt, expr, smp)) {
Willy Tarreau5b4bf702014-06-13 16:04:35 +02001438 if ((smp->flags & SMP_F_MAY_CHANGE) && !(opt & SMP_OPT_FINAL))
1439 return smp;
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001440 return NULL;
Willy Tarreau5b4bf702014-06-13 16:04:35 +02001441 }
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001442
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001443 if (!sample_casts[smp->data.type][smp_type])
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001444 return NULL;
1445
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001446 if (!sample_casts[smp->data.type][smp_type](smp))
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001447 return NULL;
1448
Willy Tarreau5b4bf702014-06-13 16:04:35 +02001449 smp->flags &= ~SMP_F_MAY_CHANGE;
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001450 return smp;
1451}
1452
Christopher Faulet476e5d02016-10-26 11:34:47 +02001453static void release_sample_arg(struct arg *p)
1454{
1455 struct arg *p_back = p;
1456
1457 if (!p)
1458 return;
1459
1460 while (p->type != ARGT_STOP) {
1461 if (p->type == ARGT_STR || p->unresolved) {
Christopher Faulet6ad7df42020-08-07 11:45:18 +02001462 chunk_destroy(&p->data.str);
Christopher Faulet476e5d02016-10-26 11:34:47 +02001463 p->unresolved = 0;
1464 }
1465 else if (p->type == ARGT_REG) {
Dragan Dosen26743032019-04-30 15:54:36 +02001466 regex_free(p->data.reg);
1467 p->data.reg = NULL;
Christopher Faulet476e5d02016-10-26 11:34:47 +02001468 }
1469 p++;
1470 }
1471
1472 if (p_back != empty_arg_list)
1473 free(p_back);
1474}
1475
1476void release_sample_expr(struct sample_expr *expr)
1477{
1478 struct sample_conv_expr *conv_expr, *conv_exprb;
1479
1480 if (!expr)
1481 return;
1482
Tim Duesterhus867cd982020-07-04 11:49:39 +02001483 list_for_each_entry_safe(conv_expr, conv_exprb, &expr->conv_exprs, list) {
Willy Tarreau2b718102021-04-21 07:32:39 +02001484 LIST_DELETE(&conv_expr->list);
Christopher Faulet476e5d02016-10-26 11:34:47 +02001485 release_sample_arg(conv_expr->arg_p);
Tim Duesterhus867cd982020-07-04 11:49:39 +02001486 free(conv_expr);
1487 }
1488
Christopher Faulet476e5d02016-10-26 11:34:47 +02001489 release_sample_arg(expr->arg_p);
1490 free(expr);
1491}
1492
Emeric Brun107ca302010-01-04 16:16:05 +01001493/*****************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +02001494/* Sample format convert functions */
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001495/* These functions set the data type on return. */
Emeric Brun107ca302010-01-04 16:16:05 +01001496/*****************************************************************/
1497
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001498static int sample_conv_debug(const struct arg *arg_p, struct sample *smp, void *private)
1499{
1500 int i;
1501 struct sample tmp;
Willy Tarreau0851fd52019-12-17 10:07:25 +01001502 struct buffer *buf;
1503 struct sink *sink;
1504 struct ist line;
1505 char *pfx;
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001506
Willy Tarreau0851fd52019-12-17 10:07:25 +01001507 buf = alloc_trash_chunk();
1508 if (!buf)
1509 goto end;
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001510
Christopher Fauletb45bf8e2020-08-07 14:00:23 +02001511 sink = (struct sink *)arg_p[1].data.ptr;
Willy Tarreau0851fd52019-12-17 10:07:25 +01001512 BUG_ON(!sink);
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001513
Willy Tarreau0851fd52019-12-17 10:07:25 +01001514 pfx = arg_p[0].data.str.area;
1515 BUG_ON(!pfx);
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001516
Willy Tarreau0851fd52019-12-17 10:07:25 +01001517 chunk_printf(buf, "[debug] %s: type=%s ", pfx, smp_to_type[smp->data.type]);
1518 if (!sample_casts[smp->data.type][SMP_T_STR])
1519 goto nocast;
1520
1521 /* Copy sample fetch. This puts the sample as const, the
1522 * cast will copy data if a transformation is required.
1523 */
1524 memcpy(&tmp, smp, sizeof(struct sample));
1525 tmp.flags = SMP_F_CONST;
1526
1527 if (!sample_casts[smp->data.type][SMP_T_STR](&tmp))
1528 goto nocast;
1529
1530 /* Display the displayable chars*. */
1531 b_putchr(buf, '<');
1532 for (i = 0; i < tmp.data.u.str.data; i++) {
Willy Tarreau90807112020-02-25 08:16:33 +01001533 if (isprint((unsigned char)tmp.data.u.str.area[i]))
Willy Tarreau0851fd52019-12-17 10:07:25 +01001534 b_putchr(buf, tmp.data.u.str.area[i]);
1535 else
1536 b_putchr(buf, '.');
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001537 }
Willy Tarreau0851fd52019-12-17 10:07:25 +01001538 b_putchr(buf, '>');
1539
1540 done:
1541 line = ist2(buf->area, buf->data);
Emeric Brun54648852020-07-06 15:54:06 +02001542 sink_write(sink, &line, 1, 0, 0, NULL);
Willy Tarreau0851fd52019-12-17 10:07:25 +01001543 end:
1544 free_trash_chunk(buf);
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001545 return 1;
Willy Tarreau0851fd52019-12-17 10:07:25 +01001546 nocast:
1547 chunk_appendf(buf, "(undisplayable)");
1548 goto done;
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001549}
Willy Tarreau0851fd52019-12-17 10:07:25 +01001550
1551// This function checks the "debug" converter's arguments.
1552static int smp_check_debug(struct arg *args, struct sample_conv *conv,
1553 const char *file, int line, char **err)
1554{
1555 const char *name = "buf0";
1556 struct sink *sink = NULL;
1557
1558 if (args[0].type != ARGT_STR) {
1559 /* optional prefix */
1560 args[0].data.str.area = "";
1561 args[0].data.str.data = 0;
1562 }
1563
1564 if (args[1].type == ARGT_STR)
1565 name = args[1].data.str.area;
1566
1567 sink = sink_find(name);
1568 if (!sink) {
1569 memprintf(err, "No such sink '%s'", name);
1570 return 0;
1571 }
1572
Christopher Faulet6ad7df42020-08-07 11:45:18 +02001573 chunk_destroy(&args[1].data.str);
Christopher Fauletb45bf8e2020-08-07 14:00:23 +02001574 args[1].type = ARGT_PTR;
1575 args[1].data.ptr = sink;
Willy Tarreau0851fd52019-12-17 10:07:25 +01001576 return 1;
1577}
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001578
Holger Just1bfc24b2017-05-06 00:56:53 +02001579static int sample_conv_base642bin(const struct arg *arg_p, struct sample *smp, void *private)
1580{
Willy Tarreau83061a82018-07-13 11:56:34 +02001581 struct buffer *trash = get_trash_chunk();
Holger Just1bfc24b2017-05-06 00:56:53 +02001582 int bin_len;
1583
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001584 trash->data = 0;
1585 bin_len = base64dec(smp->data.u.str.area, smp->data.u.str.data,
1586 trash->area, trash->size);
Holger Just1bfc24b2017-05-06 00:56:53 +02001587 if (bin_len < 0)
1588 return 0;
1589
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001590 trash->data = bin_len;
Holger Just1bfc24b2017-05-06 00:56:53 +02001591 smp->data.u.str = *trash;
1592 smp->data.type = SMP_T_BIN;
1593 smp->flags &= ~SMP_F_CONST;
1594 return 1;
1595}
1596
Moemen MHEDHBI92f7d432021-04-01 20:53:59 +02001597static int sample_conv_base64url2bin(const struct arg *arg_p, struct sample *smp, void *private)
1598{
1599 struct buffer *trash = get_trash_chunk();
1600 int bin_len;
1601
1602 trash->data = 0;
1603 bin_len = base64urldec(smp->data.u.str.area, smp->data.u.str.data,
1604 trash->area, trash->size);
1605 if (bin_len < 0)
1606 return 0;
1607
1608 trash->data = bin_len;
1609 smp->data.u.str = *trash;
1610 smp->data.type = SMP_T_BIN;
1611 smp->flags &= ~SMP_F_CONST;
1612 return 1;
1613}
1614
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001615static int sample_conv_bin2base64(const struct arg *arg_p, struct sample *smp, void *private)
Emeric Brun53d1a982014-04-30 18:21:37 +02001616{
Willy Tarreau83061a82018-07-13 11:56:34 +02001617 struct buffer *trash = get_trash_chunk();
Emeric Brun53d1a982014-04-30 18:21:37 +02001618 int b64_len;
1619
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001620 trash->data = 0;
1621 b64_len = a2base64(smp->data.u.str.area, smp->data.u.str.data,
1622 trash->area, trash->size);
Emeric Brun53d1a982014-04-30 18:21:37 +02001623 if (b64_len < 0)
1624 return 0;
1625
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001626 trash->data = b64_len;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001627 smp->data.u.str = *trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001628 smp->data.type = SMP_T_STR;
Emeric Brun53d1a982014-04-30 18:21:37 +02001629 smp->flags &= ~SMP_F_CONST;
1630 return 1;
1631}
1632
Moemen MHEDHBI92f7d432021-04-01 20:53:59 +02001633static int sample_conv_bin2base64url(const struct arg *arg_p, struct sample *smp, void *private)
1634{
1635 struct buffer *trash = get_trash_chunk();
1636 int b64_len;
1637
1638 trash->data = 0;
1639 b64_len = a2base64url(smp->data.u.str.area, smp->data.u.str.data,
1640 trash->area, trash->size);
1641 if (b64_len < 0)
1642 return 0;
1643
1644 trash->data = b64_len;
1645 smp->data.u.str = *trash;
1646 smp->data.type = SMP_T_STR;
1647 smp->flags &= ~SMP_F_CONST;
1648 return 1;
1649}
1650
Willy Tarreau168e8de2021-10-06 15:29:00 +02001651/* This function returns a sample struct filled with the conversion of variable
1652 * <var> to sample type <type> (SMP_T_*), via a cast to the target type. If the
1653 * variable cannot be retrieved or casted, 0 is returned, otherwise 1.
1654 *
1655 * Keep in mind that the sample content may be written to a pre-allocated
1656 * trash chunk as returned by get_trash_chunk().
1657 */
1658int sample_conv_var2smp(const struct var_desc *var, struct sample *smp, int type)
1659{
1660 if (!vars_get_by_desc(var, smp, NULL))
1661 return 0;
1662 if (!sample_casts[smp->data.type][type])
1663 return 0;
1664 if (!sample_casts[smp->data.type][type](smp))
1665 return 0;
1666 return 1;
1667}
1668
Dragan Dosen6e5a9ca2017-10-24 09:18:23 +02001669static int sample_conv_sha1(const struct arg *arg_p, struct sample *smp, void *private)
1670{
1671 blk_SHA_CTX ctx;
Willy Tarreau83061a82018-07-13 11:56:34 +02001672 struct buffer *trash = get_trash_chunk();
Dragan Dosen6e5a9ca2017-10-24 09:18:23 +02001673
1674 memset(&ctx, 0, sizeof(ctx));
1675
1676 blk_SHA1_Init(&ctx);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001677 blk_SHA1_Update(&ctx, smp->data.u.str.area, smp->data.u.str.data);
1678 blk_SHA1_Final((unsigned char *) trash->area, &ctx);
Dragan Dosen6e5a9ca2017-10-24 09:18:23 +02001679
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001680 trash->data = 20;
Dragan Dosen6e5a9ca2017-10-24 09:18:23 +02001681 smp->data.u.str = *trash;
1682 smp->data.type = SMP_T_BIN;
1683 smp->flags &= ~SMP_F_CONST;
1684 return 1;
1685}
1686
Dragan Dosen9e8db132021-02-22 10:03:53 +01001687/* This function returns a sample struct filled with an <arg> content.
1688 * If the <arg> contains a string, it is returned in the sample flagged as
1689 * SMP_F_CONST. If the <arg> contains a variable descriptor, the sample is
1690 * filled with the content of the variable by using vars_get_by_desc().
1691 *
1692 * Keep in mind that the sample content may be written to a pre-allocated
1693 * trash chunk as returned by get_trash_chunk().
1694 *
1695 * This function returns 0 if an error occurs, otherwise it returns 1.
1696 */
Willy Tarreau4034e2c2021-10-06 15:20:18 +02001697int sample_conv_var2smp_str(const struct arg *arg, struct sample *smp)
Patrick Ganstererb399bfb2018-06-17 11:21:11 +02001698{
1699 switch (arg->type) {
1700 case ARGT_STR:
1701 smp->data.type = SMP_T_STR;
1702 smp->data.u.str = arg->data.str;
Dragan Dosen9e8db132021-02-22 10:03:53 +01001703 smp->flags = SMP_F_CONST;
Patrick Ganstererb399bfb2018-06-17 11:21:11 +02001704 return 1;
1705 case ARGT_VAR:
Willy Tarreau2476ff12021-10-06 15:30:52 +02001706 return sample_conv_var2smp(&arg->data.var, smp, SMP_T_STR);
Patrick Ganstererb399bfb2018-06-17 11:21:11 +02001707 default:
1708 return 0;
1709 }
1710}
1711
Marcin Deranek40ca09c2021-07-13 14:05:24 +02001712static int sample_conv_be2dec_check(struct arg *args, struct sample_conv *conv,
1713 const char *file, int line, char **err)
1714{
1715 if (args[1].data.sint <= 0 || args[1].data.sint > sizeof(unsigned long long)) {
Willy Tarreauc5d0fc92021-09-15 10:30:40 +02001716 memprintf(err, "chunk_size out of [1..%u] range (%lld)", (uint)sizeof(unsigned long long), args[1].data.sint);
Marcin Deranek40ca09c2021-07-13 14:05:24 +02001717 return 0;
1718 }
1719
1720 if (args[2].data.sint != 0 && args[2].data.sint != 1) {
1721 memprintf(err, "Unsupported truncate value (%lld)", args[2].data.sint);
1722 return 0;
1723 }
1724
1725 return 1;
1726}
1727
1728/* Converts big-endian binary input sample to a string containing an unsigned
1729 * integer number per <chunk_size> input bytes separated with <separator>.
1730 * Optional <truncate> flag indicates if input is truncated at <chunk_size>
1731 * boundaries.
1732 * Arguments: separator (string), chunk_size (integer), truncate (0,1)
1733 */
1734static int sample_conv_be2dec(const struct arg *args, struct sample *smp, void *private)
1735{
1736 struct buffer *trash = get_trash_chunk();
1737 const int last = args[2].data.sint ? smp->data.u.str.data - args[1].data.sint + 1 : smp->data.u.str.data;
1738 int max_size = trash->size - 2;
1739 int i;
1740 int start;
1741 int ptr = 0;
1742 unsigned long long number;
1743 char *pos;
1744
1745 trash->data = 0;
1746
1747 while (ptr < last && trash->data <= max_size) {
1748 start = trash->data;
1749 if (ptr) {
1750 /* Add separator */
1751 memcpy(trash->area + trash->data, args[0].data.str.area, args[0].data.str.data);
1752 trash->data += args[0].data.str.data;
1753 }
1754 else
1755 max_size -= args[0].data.str.data;
1756
1757 /* Add integer */
1758 for (number = 0, i = 0; i < args[1].data.sint && ptr < smp->data.u.str.data; i++)
1759 number = (number << 8) + (unsigned char)smp->data.u.str.area[ptr++];
1760
1761 pos = ulltoa(number, trash->area + trash->data, trash->size - trash->data);
1762 if (pos)
1763 trash->data = pos - trash->area;
1764 else {
1765 trash->data = start;
1766 break;
1767 }
1768 }
1769
1770 smp->data.u.str = *trash;
1771 smp->data.type = SMP_T_STR;
1772 smp->flags &= ~SMP_F_CONST;
1773 return 1;
1774}
1775
Marcin Deranekda0264a2021-07-13 14:08:56 +02001776static int sample_conv_be2hex_check(struct arg *args, struct sample_conv *conv,
1777 const char *file, int line, char **err)
1778{
1779 if (args[1].data.sint <= 0 && (args[0].data.str.data > 0 || args[2].data.sint != 0)) {
1780 memprintf(err, "chunk_size needs to be positive (%lld)", args[1].data.sint);
1781 return 0;
1782 }
1783
1784 if (args[2].data.sint != 0 && args[2].data.sint != 1) {
1785 memprintf(err, "Unsupported truncate value (%lld)", args[2].data.sint);
1786 return 0;
1787 }
1788
1789 return 1;
1790}
1791
1792/* Converts big-endian binary input sample to a hex string containing two hex
1793 * digits per input byte. <separator> is put every <chunk_size> binary input
1794 * bytes if specified. Optional <truncate> flag indicates if input is truncated
1795 * at <chunk_size> boundaries.
1796 * Arguments: separator (string), chunk_size (integer), truncate (0,1)
1797 */
1798static int sample_conv_be2hex(const struct arg *args, struct sample *smp, void *private)
1799{
1800 struct buffer *trash = get_trash_chunk();
1801 int chunk_size = args[1].data.sint;
1802 const int last = args[2].data.sint ? smp->data.u.str.data - chunk_size + 1 : smp->data.u.str.data;
1803 int i;
1804 int max_size;
1805 int ptr = 0;
1806 unsigned char c;
1807
1808 trash->data = 0;
1809 if (args[0].data.str.data == 0 && args[2].data.sint == 0)
1810 chunk_size = smp->data.u.str.data;
1811 max_size = trash->size - 2 * chunk_size;
1812
1813 while (ptr < last && trash->data <= max_size) {
1814 if (ptr) {
1815 /* Add separator */
1816 memcpy(trash->area + trash->data, args[0].data.str.area, args[0].data.str.data);
1817 trash->data += args[0].data.str.data;
1818 }
1819 else
1820 max_size -= args[0].data.str.data;
1821
1822 /* Add hex */
1823 for (i = 0; i < chunk_size && ptr < smp->data.u.str.data; i++) {
1824 c = smp->data.u.str.area[ptr++];
1825 trash->area[trash->data++] = hextab[(c >> 4) & 0xF];
1826 trash->area[trash->data++] = hextab[c & 0xF];
1827 }
1828 }
1829
1830 smp->data.u.str = *trash;
1831 smp->data.type = SMP_T_STR;
1832 smp->flags &= ~SMP_F_CONST;
1833 return 1;
1834}
1835
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001836static int sample_conv_bin2hex(const struct arg *arg_p, struct sample *smp, void *private)
Thierry FOURNIER2f49d6d2014-03-12 15:01:52 +01001837{
Willy Tarreau83061a82018-07-13 11:56:34 +02001838 struct buffer *trash = get_trash_chunk();
Thierry FOURNIER2f49d6d2014-03-12 15:01:52 +01001839 unsigned char c;
1840 int ptr = 0;
1841
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001842 trash->data = 0;
1843 while (ptr < smp->data.u.str.data && trash->data <= trash->size - 2) {
1844 c = smp->data.u.str.area[ptr++];
1845 trash->area[trash->data++] = hextab[(c >> 4) & 0xF];
1846 trash->area[trash->data++] = hextab[c & 0xF];
Thierry FOURNIER2f49d6d2014-03-12 15:01:52 +01001847 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001848 smp->data.u.str = *trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001849 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01001850 smp->flags &= ~SMP_F_CONST;
Thierry FOURNIER2f49d6d2014-03-12 15:01:52 +01001851 return 1;
1852}
1853
Dragan Dosen3f957b22017-10-24 09:27:34 +02001854static int sample_conv_hex2int(const struct arg *arg_p, struct sample *smp, void *private)
1855{
1856 long long int n = 0;
1857 int i, c;
1858
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001859 for (i = 0; i < smp->data.u.str.data; i++) {
1860 if ((c = hex2i(smp->data.u.str.area[i])) < 0)
Dragan Dosen3f957b22017-10-24 09:27:34 +02001861 return 0;
1862 n = (n << 4) + c;
1863 }
1864
1865 smp->data.u.sint = n;
1866 smp->data.type = SMP_T_SINT;
1867 smp->flags &= ~SMP_F_CONST;
1868 return 1;
1869}
1870
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02001871/* hashes the binary input into a 32-bit unsigned int */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001872static int sample_conv_djb2(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02001873{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001874 smp->data.u.sint = hash_djb2(smp->data.u.str.area,
1875 smp->data.u.str.data);
Christopher Faulete6e7a582021-01-29 11:29:28 +01001876 if (arg_p->data.sint)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001877 smp->data.u.sint = full_hash(smp->data.u.sint);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001878 smp->data.type = SMP_T_SINT;
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02001879 return 1;
1880}
1881
Willy Tarreau60a2ee72017-12-15 07:13:48 +01001882static int sample_conv_length(const struct arg *arg_p, struct sample *smp, void *private)
Etienne Carriereed0d24e2017-12-13 13:41:34 +01001883{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001884 int i = smp->data.u.str.data;
Etienne Carriereed0d24e2017-12-13 13:41:34 +01001885 smp->data.u.sint = i;
1886 smp->data.type = SMP_T_SINT;
1887 return 1;
1888}
1889
1890
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001891static int sample_conv_str2lower(const struct arg *arg_p, struct sample *smp, void *private)
Emeric Brun107ca302010-01-04 16:16:05 +01001892{
1893 int i;
1894
Willy Tarreauf0645dc2016-08-09 14:29:38 +02001895 if (!smp_make_rw(smp))
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01001896 return 0;
1897
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001898 for (i = 0; i < smp->data.u.str.data; i++) {
1899 if ((smp->data.u.str.area[i] >= 'A') && (smp->data.u.str.area[i] <= 'Z'))
1900 smp->data.u.str.area[i] += 'a' - 'A';
Emeric Brun107ca302010-01-04 16:16:05 +01001901 }
1902 return 1;
1903}
1904
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001905static int sample_conv_str2upper(const struct arg *arg_p, struct sample *smp, void *private)
Emeric Brun107ca302010-01-04 16:16:05 +01001906{
1907 int i;
1908
Willy Tarreauf0645dc2016-08-09 14:29:38 +02001909 if (!smp_make_rw(smp))
Emeric Brun485479d2010-09-23 18:02:19 +02001910 return 0;
1911
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001912 for (i = 0; i < smp->data.u.str.data; i++) {
1913 if ((smp->data.u.str.area[i] >= 'a') && (smp->data.u.str.area[i] <= 'z'))
1914 smp->data.u.str.area[i] += 'A' - 'a';
Emeric Brun107ca302010-01-04 16:16:05 +01001915 }
1916 return 1;
1917}
1918
Tim Duesterhus1478aa72018-01-25 16:24:51 +01001919/* takes the IPv4 mask in args[0] and an optional IPv6 mask in args[1] */
1920static int sample_conv_ipmask(const struct arg *args, struct sample *smp, void *private)
Willy Tarreaud31d6eb2010-01-26 18:01:41 +01001921{
Tim Duesterhus1478aa72018-01-25 16:24:51 +01001922 /* Attempt to convert to IPv4 to apply the correct mask. */
1923 c_ipv62ip(smp);
1924
1925 if (smp->data.type == SMP_T_IPV4) {
1926 smp->data.u.ipv4.s_addr &= args[0].data.ipv4.s_addr;
1927 smp->data.type = SMP_T_IPV4;
1928 }
1929 else if (smp->data.type == SMP_T_IPV6) {
1930 /* IPv6 cannot be converted without an IPv6 mask. */
1931 if (args[1].type != ARGT_IPV6)
1932 return 0;
1933
Willy Tarreaua8b7ecd2020-02-25 09:43:22 +01001934 write_u64(&smp->data.u.ipv6.s6_addr[0],
1935 read_u64(&smp->data.u.ipv6.s6_addr[0]) & read_u64(&args[1].data.ipv6.s6_addr[0]));
1936 write_u64(&smp->data.u.ipv6.s6_addr[8],
1937 read_u64(&smp->data.u.ipv6.s6_addr[8]) & read_u64(&args[1].data.ipv6.s6_addr[8]));
Tim Duesterhus1478aa72018-01-25 16:24:51 +01001938 smp->data.type = SMP_T_IPV6;
1939 }
1940
Willy Tarreaud31d6eb2010-01-26 18:01:41 +01001941 return 1;
1942}
1943
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001944/* takes an UINT value on input supposed to represent the time since EPOCH,
1945 * adds an optional offset found in args[1] and emits a string representing
1946 * the local time in the format specified in args[1] using strftime().
1947 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001948static int sample_conv_ltime(const struct arg *args, struct sample *smp, void *private)
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001949{
Willy Tarreau83061a82018-07-13 11:56:34 +02001950 struct buffer *temp;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001951 /* With high numbers, the date returned can be negative, the 55 bits mask prevent this. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001952 time_t curr_date = smp->data.u.sint & 0x007fffffffffffffLL;
Tim Duesterhus1f269c12021-08-28 23:57:01 +02001953 struct tm tm;
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001954
1955 /* add offset */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001956 if (args[1].type == ARGT_SINT)
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001957 curr_date += args[1].data.sint;
1958
Tim Duesterhus1f269c12021-08-28 23:57:01 +02001959 get_localtime(curr_date, &tm);
1960
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001961 temp = get_trash_chunk();
Tim Duesterhus1f269c12021-08-28 23:57:01 +02001962 temp->data = strftime(temp->area, temp->size, args[0].data.str.area, &tm);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001963 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001964 smp->data.type = SMP_T_STR;
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001965 return 1;
1966}
1967
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02001968/* hashes the binary input into a 32-bit unsigned int */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001969static int sample_conv_sdbm(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02001970{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001971 smp->data.u.sint = hash_sdbm(smp->data.u.str.area,
1972 smp->data.u.str.data);
Christopher Faulete6e7a582021-01-29 11:29:28 +01001973 if (arg_p->data.sint)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001974 smp->data.u.sint = full_hash(smp->data.u.sint);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001975 smp->data.type = SMP_T_SINT;
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02001976 return 1;
1977}
1978
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001979/* takes an UINT value on input supposed to represent the time since EPOCH,
1980 * adds an optional offset found in args[1] and emits a string representing
1981 * the UTC date in the format specified in args[1] using strftime().
1982 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001983static int sample_conv_utime(const struct arg *args, struct sample *smp, void *private)
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001984{
Willy Tarreau83061a82018-07-13 11:56:34 +02001985 struct buffer *temp;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001986 /* With high numbers, the date returned can be negative, the 55 bits mask prevent this. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001987 time_t curr_date = smp->data.u.sint & 0x007fffffffffffffLL;
Tim Duesterhus1f269c12021-08-28 23:57:01 +02001988 struct tm tm;
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001989
1990 /* add offset */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001991 if (args[1].type == ARGT_SINT)
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001992 curr_date += args[1].data.sint;
1993
Tim Duesterhus1f269c12021-08-28 23:57:01 +02001994 get_gmtime(curr_date, &tm);
1995
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001996 temp = get_trash_chunk();
Tim Duesterhus1f269c12021-08-28 23:57:01 +02001997 temp->data = strftime(temp->area, temp->size, args[0].data.str.area, &tm);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001998 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001999 smp->data.type = SMP_T_STR;
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02002000 return 1;
2001}
2002
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02002003/* hashes the binary input into a 32-bit unsigned int */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002004static int sample_conv_wt6(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02002005{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002006 smp->data.u.sint = hash_wt6(smp->data.u.str.area,
2007 smp->data.u.str.data);
Christopher Faulete6e7a582021-01-29 11:29:28 +01002008 if (arg_p->data.sint)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002009 smp->data.u.sint = full_hash(smp->data.u.sint);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002010 smp->data.type = SMP_T_SINT;
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02002011 return 1;
2012}
2013
Thierry FOURNIER01e09742016-12-26 11:46:11 +01002014/* hashes the binary input into a 32-bit unsigned int using xxh.
2015 * The seed of the hash defaults to 0 but can be changd in argument 1.
2016 */
2017static int sample_conv_xxh32(const struct arg *arg_p, struct sample *smp, void *private)
2018{
2019 unsigned int seed;
2020
Christopher Faulete6e7a582021-01-29 11:29:28 +01002021 if (arg_p->data.sint)
Thierry FOURNIER01e09742016-12-26 11:46:11 +01002022 seed = arg_p->data.sint;
2023 else
2024 seed = 0;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002025 smp->data.u.sint = XXH32(smp->data.u.str.area, smp->data.u.str.data,
2026 seed);
Thierry FOURNIER01e09742016-12-26 11:46:11 +01002027 smp->data.type = SMP_T_SINT;
2028 return 1;
2029}
2030
2031/* hashes the binary input into a 64-bit unsigned int using xxh.
2032 * In fact, the function returns a 64 bit unsigned, but the sample
2033 * storage of haproxy only proposes 64-bits signed, so the value is
2034 * cast as signed. This cast doesn't impact the hash repartition.
2035 * The seed of the hash defaults to 0 but can be changd in argument 1.
2036 */
2037static int sample_conv_xxh64(const struct arg *arg_p, struct sample *smp, void *private)
2038{
2039 unsigned long long int seed;
2040
Christopher Faulete6e7a582021-01-29 11:29:28 +01002041 if (arg_p->data.sint)
Thierry FOURNIER01e09742016-12-26 11:46:11 +01002042 seed = (unsigned long long int)arg_p->data.sint;
2043 else
2044 seed = 0;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002045 smp->data.u.sint = (long long int)XXH64(smp->data.u.str.area,
2046 smp->data.u.str.data, seed);
Thierry FOURNIER01e09742016-12-26 11:46:11 +01002047 smp->data.type = SMP_T_SINT;
2048 return 1;
2049}
2050
Dragan Dosen04bf0cc2020-12-22 21:44:33 +01002051static int sample_conv_xxh3(const struct arg *arg_p, struct sample *smp, void *private)
2052{
2053 unsigned long long int seed;
2054
Christopher Faulete6e7a582021-01-29 11:29:28 +01002055 if (arg_p->data.sint)
Dragan Dosen04bf0cc2020-12-22 21:44:33 +01002056 seed = (unsigned long long int)arg_p->data.sint;
2057 else
2058 seed = 0;
2059 smp->data.u.sint = (long long int)XXH3(smp->data.u.str.area,
2060 smp->data.u.str.data, seed);
2061 smp->data.type = SMP_T_SINT;
2062 return 1;
2063}
2064
Willy Tarreau80599772015-01-20 19:35:24 +01002065/* hashes the binary input into a 32-bit unsigned int */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002066static int sample_conv_crc32(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau80599772015-01-20 19:35:24 +01002067{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002068 smp->data.u.sint = hash_crc32(smp->data.u.str.area,
2069 smp->data.u.str.data);
Christopher Faulete6e7a582021-01-29 11:29:28 +01002070 if (arg_p->data.sint)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002071 smp->data.u.sint = full_hash(smp->data.u.sint);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002072 smp->data.type = SMP_T_SINT;
Willy Tarreau80599772015-01-20 19:35:24 +01002073 return 1;
2074}
2075
Emmanuel Hocdet50791a72018-03-21 11:19:01 +01002076/* hashes the binary input into crc32c (RFC4960, Appendix B [8].) */
2077static int sample_conv_crc32c(const struct arg *arg_p, struct sample *smp, void *private)
2078{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002079 smp->data.u.sint = hash_crc32c(smp->data.u.str.area,
2080 smp->data.u.str.data);
Christopher Faulete6e7a582021-01-29 11:29:28 +01002081 if (arg_p->data.sint)
Emmanuel Hocdet50791a72018-03-21 11:19:01 +01002082 smp->data.u.sint = full_hash(smp->data.u.sint);
2083 smp->data.type = SMP_T_SINT;
2084 return 1;
2085}
2086
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002087/* This function escape special json characters. The returned string can be
2088 * safely set between two '"' and used as json string. The json string is
2089 * defined like this:
2090 *
2091 * any Unicode character except '"' or '\' or control character
2092 * \", \\, \/, \b, \f, \n, \r, \t, \u + four-hex-digits
2093 *
2094 * The enum input_type contain all the allowed mode for decoding the input
2095 * string.
2096 */
2097enum input_type {
2098 IT_ASCII = 0,
2099 IT_UTF8,
2100 IT_UTF8S,
2101 IT_UTF8P,
2102 IT_UTF8PS,
2103};
William Dauchy5417e892021-01-08 21:57:41 +01002104
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002105static int sample_conv_json_check(struct arg *arg, struct sample_conv *conv,
2106 const char *file, int line, char **err)
2107{
Christopher Faulet95917132020-08-05 23:07:07 +02002108 enum input_type type;
2109
Christopher Faulet95917132020-08-05 23:07:07 +02002110 if (strcmp(arg->data.str.area, "") == 0)
2111 type = IT_ASCII;
2112 else if (strcmp(arg->data.str.area, "ascii") == 0)
2113 type = IT_ASCII;
2114 else if (strcmp(arg->data.str.area, "utf8") == 0)
2115 type = IT_UTF8;
2116 else if (strcmp(arg->data.str.area, "utf8s") == 0)
2117 type = IT_UTF8S;
2118 else if (strcmp(arg->data.str.area, "utf8p") == 0)
2119 type = IT_UTF8P;
2120 else if (strcmp(arg->data.str.area, "utf8ps") == 0)
2121 type = IT_UTF8PS;
2122 else {
2123 memprintf(err, "Unexpected input code type. "
2124 "Allowed value are 'ascii', 'utf8', 'utf8s', 'utf8p' and 'utf8ps'");
2125 return 0;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002126 }
2127
Christopher Faulet6ad7df42020-08-07 11:45:18 +02002128 chunk_destroy(&arg->data.str);
Christopher Faulet95917132020-08-05 23:07:07 +02002129 arg->type = ARGT_SINT;
2130 arg->data.sint = type;
2131 return 1;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002132}
2133
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002134static int sample_conv_json(const struct arg *arg_p, struct sample *smp, void *private)
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002135{
Willy Tarreau83061a82018-07-13 11:56:34 +02002136 struct buffer *temp;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002137 char _str[7]; /* \u + 4 hex digit + null char for sprintf. */
2138 const char *str;
2139 int len;
2140 enum input_type input_type = IT_ASCII;
2141 unsigned int c;
2142 unsigned int ret;
2143 char *p;
2144
Christopher Faulete6e7a582021-01-29 11:29:28 +01002145 input_type = arg_p->data.sint;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002146
2147 temp = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002148 temp->data = 0;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002149
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002150 p = smp->data.u.str.area;
2151 while (p < smp->data.u.str.area + smp->data.u.str.data) {
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002152
2153 if (input_type == IT_ASCII) {
2154 /* Read input as ASCII. */
2155 c = *(unsigned char *)p;
2156 p++;
2157 }
2158 else {
2159 /* Read input as UTF8. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002160 ret = utf8_next(p,
2161 smp->data.u.str.data - ( p - smp->data.u.str.area),
2162 &c);
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002163 p += utf8_return_length(ret);
2164
2165 if (input_type == IT_UTF8 && utf8_return_code(ret) != UTF8_CODE_OK)
2166 return 0;
2167 if (input_type == IT_UTF8S && utf8_return_code(ret) != UTF8_CODE_OK)
2168 continue;
2169 if (input_type == IT_UTF8P && utf8_return_code(ret) & (UTF8_CODE_INVRANGE|UTF8_CODE_BADSEQ))
2170 return 0;
2171 if (input_type == IT_UTF8PS && utf8_return_code(ret) & (UTF8_CODE_INVRANGE|UTF8_CODE_BADSEQ))
2172 continue;
2173
2174 /* Check too big values. */
2175 if ((unsigned int)c > 0xffff) {
2176 if (input_type == IT_UTF8 || input_type == IT_UTF8P)
2177 return 0;
2178 continue;
2179 }
2180 }
2181
2182 /* Convert character. */
2183 if (c == '"') {
2184 len = 2;
2185 str = "\\\"";
2186 }
2187 else if (c == '\\') {
2188 len = 2;
2189 str = "\\\\";
2190 }
2191 else if (c == '/') {
2192 len = 2;
2193 str = "\\/";
2194 }
2195 else if (c == '\b') {
2196 len = 2;
2197 str = "\\b";
2198 }
2199 else if (c == '\f') {
2200 len = 2;
2201 str = "\\f";
2202 }
2203 else if (c == '\r') {
2204 len = 2;
2205 str = "\\r";
2206 }
2207 else if (c == '\n') {
2208 len = 2;
2209 str = "\\n";
2210 }
2211 else if (c == '\t') {
2212 len = 2;
2213 str = "\\t";
2214 }
Willy Tarreau90807112020-02-25 08:16:33 +01002215 else if (c > 0xff || !isprint((unsigned char)c)) {
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002216 /* isprint generate a segfault if c is too big. The man says that
2217 * c must have the value of an unsigned char or EOF.
2218 */
2219 len = 6;
2220 _str[0] = '\\';
2221 _str[1] = 'u';
2222 snprintf(&_str[2], 5, "%04x", (unsigned short)c);
2223 str = _str;
2224 }
2225 else {
2226 len = 1;
Willy Tarreau5715da22020-02-25 08:37:37 +01002227 _str[0] = c;
2228 str = _str;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002229 }
2230
2231 /* Check length */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002232 if (temp->data + len > temp->size)
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002233 return 0;
2234
2235 /* Copy string. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002236 memcpy(temp->area + temp->data, str, len);
2237 temp->data += len;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002238 }
2239
2240 smp->flags &= ~SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002241 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002242 smp->data.type = SMP_T_STR;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002243
2244 return 1;
2245}
2246
Emeric Brun54c4ac82014-11-03 15:32:43 +01002247/* This sample function is designed to extract some bytes from an input buffer.
2248 * First arg is the offset.
2249 * Optional second arg is the length to truncate */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002250static int sample_conv_bytes(const struct arg *arg_p, struct sample *smp, void *private)
Emeric Brun54c4ac82014-11-03 15:32:43 +01002251{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002252 if (smp->data.u.str.data <= arg_p[0].data.sint) {
2253 smp->data.u.str.data = 0;
Emeric Brun54c4ac82014-11-03 15:32:43 +01002254 return 1;
2255 }
2256
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002257 if (smp->data.u.str.size)
2258 smp->data.u.str.size -= arg_p[0].data.sint;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002259 smp->data.u.str.data -= arg_p[0].data.sint;
2260 smp->data.u.str.area += arg_p[0].data.sint;
Emeric Brun54c4ac82014-11-03 15:32:43 +01002261
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002262 if ((arg_p[1].type == ARGT_SINT) && (arg_p[1].data.sint < smp->data.u.str.data))
2263 smp->data.u.str.data = arg_p[1].data.sint;
Emeric Brun54c4ac82014-11-03 15:32:43 +01002264
2265 return 1;
2266}
2267
Emeric Brunf399b0d2014-11-03 17:07:03 +01002268static int sample_conv_field_check(struct arg *args, struct sample_conv *conv,
2269 const char *file, int line, char **err)
2270{
2271 struct arg *arg = args;
2272
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02002273 if (arg->type != ARGT_SINT) {
Emeric Brunf399b0d2014-11-03 17:07:03 +01002274 memprintf(err, "Unexpected arg type");
2275 return 0;
2276 }
2277
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02002278 if (!arg->data.sint) {
Emeric Brunf399b0d2014-11-03 17:07:03 +01002279 memprintf(err, "Unexpected value 0 for index");
2280 return 0;
2281 }
2282
2283 arg++;
2284
2285 if (arg->type != ARGT_STR) {
2286 memprintf(err, "Unexpected arg type");
2287 return 0;
2288 }
2289
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002290 if (!arg->data.str.data) {
Emeric Brunf399b0d2014-11-03 17:07:03 +01002291 memprintf(err, "Empty separators list");
2292 return 0;
2293 }
2294
2295 return 1;
2296}
2297
2298/* This sample function is designed to a return selected part of a string (field).
2299 * First arg is the index of the field (start at 1)
2300 * Second arg is a char list of separators (type string)
2301 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002302static int sample_conv_field(const struct arg *arg_p, struct sample *smp, void *private)
Emeric Brunf399b0d2014-11-03 17:07:03 +01002303{
Marcin Deranek9631a282018-04-16 14:30:46 +02002304 int field;
Emeric Brunf399b0d2014-11-03 17:07:03 +01002305 char *start, *end;
2306 int i;
Marcin Deranek9631a282018-04-16 14:30:46 +02002307 int count = (arg_p[2].type == ARGT_SINT) ? arg_p[2].data.sint : 1;
Emeric Brunf399b0d2014-11-03 17:07:03 +01002308
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02002309 if (!arg_p[0].data.sint)
Emeric Brunf399b0d2014-11-03 17:07:03 +01002310 return 0;
2311
Marcin Deranek9631a282018-04-16 14:30:46 +02002312 if (arg_p[0].data.sint < 0) {
2313 field = -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002314 end = start = smp->data.u.str.area + smp->data.u.str.data;
2315 while (start > smp->data.u.str.area) {
2316 for (i = 0 ; i < arg_p[1].data.str.data; i++) {
2317 if (*(start-1) == arg_p[1].data.str.area[i]) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002318 if (field == arg_p[0].data.sint) {
2319 if (count == 1)
2320 goto found;
2321 else if (count > 1)
2322 count--;
2323 } else {
2324 end = start-1;
2325 field--;
2326 }
2327 break;
2328 }
Emeric Brunf399b0d2014-11-03 17:07:03 +01002329 }
Marcin Deranek9631a282018-04-16 14:30:46 +02002330 start--;
Emeric Brunf399b0d2014-11-03 17:07:03 +01002331 }
Marcin Deranek9631a282018-04-16 14:30:46 +02002332 } else {
2333 field = 1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002334 end = start = smp->data.u.str.area;
2335 while (end - smp->data.u.str.area < smp->data.u.str.data) {
2336 for (i = 0 ; i < arg_p[1].data.str.data; i++) {
2337 if (*end == arg_p[1].data.str.area[i]) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002338 if (field == arg_p[0].data.sint) {
2339 if (count == 1)
2340 goto found;
2341 else if (count > 1)
2342 count--;
2343 } else {
2344 start = end+1;
2345 field++;
2346 }
2347 break;
2348 }
2349 }
2350 end++;
2351 }
Emeric Brunf399b0d2014-11-03 17:07:03 +01002352 }
2353
2354 /* Field not found */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02002355 if (field != arg_p[0].data.sint) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002356 smp->data.u.str.data = 0;
Tim Duesterhus4381d262019-10-16 15:11:15 +02002357 return 0;
Emeric Brunf399b0d2014-11-03 17:07:03 +01002358 }
2359found:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002360 smp->data.u.str.data = end - start;
Emeric Brunf399b0d2014-11-03 17:07:03 +01002361 /* If ret string is len 0, no need to
2362 change pointers or to update size */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002363 if (!smp->data.u.str.data)
Emeric Brunf399b0d2014-11-03 17:07:03 +01002364 return 1;
2365
Emeric Brunf399b0d2014-11-03 17:07:03 +01002366 /* Compute remaining size if needed
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002367 Note: smp->data.u.str.size cannot be set to 0 */
2368 if (smp->data.u.str.size)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002369 smp->data.u.str.size -= start - smp->data.u.str.area;
Emeric Brunf399b0d2014-11-03 17:07:03 +01002370
Thayne McCombsb2843052021-04-11 23:26:59 -06002371 smp->data.u.str.area = start;
2372
Emeric Brunf399b0d2014-11-03 17:07:03 +01002373 return 1;
2374}
2375
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002376/* This sample function is designed to return a word from a string.
2377 * First arg is the index of the word (start at 1)
2378 * Second arg is a char list of words separators (type string)
2379 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002380static int sample_conv_word(const struct arg *arg_p, struct sample *smp, void *private)
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002381{
Marcin Deranek9631a282018-04-16 14:30:46 +02002382 int word;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002383 char *start, *end;
2384 int i, issep, inword;
Marcin Deranek9631a282018-04-16 14:30:46 +02002385 int count = (arg_p[2].type == ARGT_SINT) ? arg_p[2].data.sint : 1;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002386
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02002387 if (!arg_p[0].data.sint)
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002388 return 0;
2389
2390 word = 0;
2391 inword = 0;
Marcin Deranek9631a282018-04-16 14:30:46 +02002392 if (arg_p[0].data.sint < 0) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002393 end = start = smp->data.u.str.area + smp->data.u.str.data;
2394 while (start > smp->data.u.str.area) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002395 issep = 0;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002396 for (i = 0 ; i < arg_p[1].data.str.data; i++) {
2397 if (*(start-1) == arg_p[1].data.str.area[i]) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002398 issep = 1;
2399 break;
2400 }
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002401 }
Marcin Deranek9631a282018-04-16 14:30:46 +02002402 if (!inword) {
2403 if (!issep) {
2404 if (word != arg_p[0].data.sint) {
2405 word--;
2406 end = start;
2407 }
2408 inword = 1;
2409 }
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002410 }
Marcin Deranek9631a282018-04-16 14:30:46 +02002411 else if (issep) {
Willy Tarreau9eb2a4a2018-04-19 10:33:28 +02002412 if (word == arg_p[0].data.sint) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002413 if (count == 1)
2414 goto found;
2415 else if (count > 1)
2416 count--;
Willy Tarreau9eb2a4a2018-04-19 10:33:28 +02002417 }
Marcin Deranek9631a282018-04-16 14:30:46 +02002418 inword = 0;
2419 }
2420 start--;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002421 }
Marcin Deranek9631a282018-04-16 14:30:46 +02002422 } else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002423 end = start = smp->data.u.str.area;
2424 while (end - smp->data.u.str.area < smp->data.u.str.data) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002425 issep = 0;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002426 for (i = 0 ; i < arg_p[1].data.str.data; i++) {
2427 if (*end == arg_p[1].data.str.area[i]) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002428 issep = 1;
2429 break;
2430 }
2431 }
2432 if (!inword) {
2433 if (!issep) {
2434 if (word != arg_p[0].data.sint) {
2435 word++;
2436 start = end;
2437 }
2438 inword = 1;
2439 }
2440 }
2441 else if (issep) {
Willy Tarreau9eb2a4a2018-04-19 10:33:28 +02002442 if (word == arg_p[0].data.sint) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002443 if (count == 1)
2444 goto found;
2445 else if (count > 1)
2446 count--;
Willy Tarreau9eb2a4a2018-04-19 10:33:28 +02002447 }
Marcin Deranek9631a282018-04-16 14:30:46 +02002448 inword = 0;
2449 }
2450 end++;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002451 }
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002452 }
2453
2454 /* Field not found */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02002455 if (word != arg_p[0].data.sint) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002456 smp->data.u.str.data = 0;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002457 return 1;
2458 }
2459found:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002460 smp->data.u.str.data = end - start;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002461 /* If ret string is len 0, no need to
2462 change pointers or to update size */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002463 if (!smp->data.u.str.data)
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002464 return 1;
2465
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002466 smp->data.u.str.area = start;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002467
2468 /* Compute remaining size if needed
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002469 Note: smp->data.u.str.size cannot be set to 0 */
2470 if (smp->data.u.str.size)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002471 smp->data.u.str.size -= start - smp->data.u.str.area;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002472
2473 return 1;
2474}
2475
Willy Tarreau7eda8492015-01-20 19:47:06 +01002476static int sample_conv_regsub_check(struct arg *args, struct sample_conv *conv,
2477 const char *file, int line, char **err)
2478{
2479 struct arg *arg = args;
2480 char *p;
2481 int len;
2482
2483 /* arg0 is a regex, it uses type_flag for ICASE and global match */
2484 arg[0].type_flags = 0;
2485
2486 if (arg[2].type != ARGT_STR)
2487 return 1;
2488
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002489 p = arg[2].data.str.area;
2490 len = arg[2].data.str.data;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002491 while (len) {
2492 if (*p == 'i') {
2493 arg[0].type_flags |= ARGF_REG_ICASE;
2494 }
2495 else if (*p == 'g') {
2496 arg[0].type_flags |= ARGF_REG_GLOB;
2497 }
2498 else {
2499 memprintf(err, "invalid regex flag '%c', only 'i' and 'g' are supported", *p);
2500 return 0;
2501 }
2502 p++;
2503 len--;
2504 }
2505 return 1;
2506}
2507
2508/* This sample function is designed to do the equivalent of s/match/replace/ on
2509 * the input string. It applies a regex and restarts from the last matched
2510 * location until nothing matches anymore. First arg is the regex to apply to
2511 * the input string, second arg is the replacement expression.
2512 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002513static int sample_conv_regsub(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau7eda8492015-01-20 19:47:06 +01002514{
2515 char *start, *end;
2516 struct my_regex *reg = arg_p[0].data.reg;
2517 regmatch_t pmatch[MAX_MATCH];
Willy Tarreau83061a82018-07-13 11:56:34 +02002518 struct buffer *trash = get_trash_chunk();
Jerome Magnin07e1e3c2020-02-16 19:20:19 +01002519 struct buffer *output;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002520 int flag, max;
2521 int found;
2522
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002523 start = smp->data.u.str.area;
2524 end = start + smp->data.u.str.data;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002525
2526 flag = 0;
2527 while (1) {
2528 /* check for last round which is used to copy remaining parts
2529 * when not running in global replacement mode.
2530 */
2531 found = 0;
2532 if ((arg_p[0].type_flags & ARGF_REG_GLOB) || !(flag & REG_NOTBOL)) {
2533 /* Note: we can have start == end on empty strings or at the end */
2534 found = regex_exec_match2(reg, start, end - start, MAX_MATCH, pmatch, flag);
2535 }
2536
2537 if (!found)
2538 pmatch[0].rm_so = end - start;
2539
2540 /* copy the heading non-matching part (which may also be the tail if nothing matches) */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002541 max = trash->size - trash->data;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002542 if (max && pmatch[0].rm_so > 0) {
2543 if (max > pmatch[0].rm_so)
2544 max = pmatch[0].rm_so;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002545 memcpy(trash->area + trash->data, start, max);
2546 trash->data += max;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002547 }
2548
2549 if (!found)
2550 break;
2551
Jerome Magnin07e1e3c2020-02-16 19:20:19 +01002552 output = alloc_trash_chunk();
Willy Tarreau23997da2020-02-18 14:27:44 +01002553 if (!output)
2554 break;
2555
Jerome Magnin07e1e3c2020-02-16 19:20:19 +01002556 output->data = exp_replace(output->area, output->size, start, arg_p[1].data.str.area, pmatch);
2557
Willy Tarreau7eda8492015-01-20 19:47:06 +01002558 /* replace the matching part */
Jerome Magnin07e1e3c2020-02-16 19:20:19 +01002559 max = output->size - output->data;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002560 if (max) {
Jerome Magnin07e1e3c2020-02-16 19:20:19 +01002561 if (max > output->data)
2562 max = output->data;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002563 memcpy(trash->area + trash->data,
Jerome Magnin07e1e3c2020-02-16 19:20:19 +01002564 output->area, max);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002565 trash->data += max;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002566 }
2567
Jerome Magnin07e1e3c2020-02-16 19:20:19 +01002568 free_trash_chunk(output);
2569
Willy Tarreau7eda8492015-01-20 19:47:06 +01002570 /* stop here if we're done with this string */
2571 if (start >= end)
2572 break;
2573
2574 /* We have a special case for matches of length 0 (eg: "x*y*").
2575 * These ones are considered to match in front of a character,
2576 * so we have to copy that character and skip to the next one.
2577 */
2578 if (!pmatch[0].rm_eo) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002579 if (trash->data < trash->size)
2580 trash->area[trash->data++] = start[pmatch[0].rm_eo];
Willy Tarreau7eda8492015-01-20 19:47:06 +01002581 pmatch[0].rm_eo++;
2582 }
2583
2584 start += pmatch[0].rm_eo;
2585 flag |= REG_NOTBOL;
2586 }
2587
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002588 smp->data.u.str = *trash;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002589 return 1;
2590}
2591
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002592/* This function check an operator entry. It expects a string.
2593 * The string can be an integer or a variable name.
2594 */
2595static int check_operator(struct arg *args, struct sample_conv *conv,
2596 const char *file, int line, char **err)
2597{
2598 const char *str;
2599 const char *end;
Christopher Faulet95917132020-08-05 23:07:07 +02002600 long long int i;
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002601
2602 /* Try to decode a variable. */
2603 if (vars_check_arg(&args[0], NULL))
2604 return 1;
2605
2606 /* Try to convert an integer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002607 str = args[0].data.str.area;
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002608 end = str + strlen(str);
Christopher Faulet95917132020-08-05 23:07:07 +02002609 i = read_int64(&str, end);
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002610 if (*str != '\0') {
2611 memprintf(err, "expects an integer or a variable name");
2612 return 0;
2613 }
Christopher Faulet95917132020-08-05 23:07:07 +02002614
Christopher Faulet6ad7df42020-08-07 11:45:18 +02002615 chunk_destroy(&args[0].data.str);
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002616 args[0].type = ARGT_SINT;
Christopher Faulet95917132020-08-05 23:07:07 +02002617 args[0].data.sint = i;
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002618 return 1;
2619}
2620
Willy Tarreau6204cd92016-03-10 16:33:04 +01002621/* This function returns a sample struct filled with an arg content.
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002622 * If the arg contain an integer, the integer is returned in the
2623 * sample. If the arg contains a variable descriptor, it returns the
2624 * variable value.
2625 *
2626 * This function returns 0 if an error occurs, otherwise it returns 1.
2627 */
Willy Tarreaud9be5992021-10-06 15:19:05 +02002628int sample_conv_var2smp_sint(const struct arg *arg, struct sample *smp)
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002629{
2630 switch (arg->type) {
2631 case ARGT_SINT:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002632 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002633 smp->data.u.sint = arg->data.sint;
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002634 return 1;
2635 case ARGT_VAR:
Willy Tarreau2476ff12021-10-06 15:30:52 +02002636 return sample_conv_var2smp(&arg->data.var, smp, SMP_T_SINT);
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002637 default:
2638 return 0;
2639 }
2640}
2641
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002642/* Takes a SINT on input, applies a binary twos complement and returns the SINT
Willy Tarreau97707872015-01-27 15:12:13 +01002643 * result.
2644 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002645static int sample_conv_binary_cpl(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002646{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002647 smp->data.u.sint = ~smp->data.u.sint;
Willy Tarreau97707872015-01-27 15:12:13 +01002648 return 1;
2649}
2650
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002651/* Takes a SINT on input, applies a binary "and" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002652 * arg_p or in the variable described in arg_p, and returns the SINT result.
Willy Tarreau97707872015-01-27 15:12:13 +01002653 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002654static int sample_conv_binary_and(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002655{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002656 struct sample tmp;
2657
Willy Tarreau7560dd42016-03-10 16:28:58 +01002658 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreaud9be5992021-10-06 15:19:05 +02002659 if (!sample_conv_var2smp_sint(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002660 return 0;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002661 smp->data.u.sint &= tmp.data.u.sint;
Willy Tarreau97707872015-01-27 15:12:13 +01002662 return 1;
2663}
2664
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002665/* Takes a SINT on input, applies a binary "or" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002666 * arg_p or in the variable described in arg_p, and returns the SINT result.
Willy Tarreau97707872015-01-27 15:12:13 +01002667 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002668static int sample_conv_binary_or(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002669{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002670 struct sample tmp;
2671
Willy Tarreau7560dd42016-03-10 16:28:58 +01002672 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreaud9be5992021-10-06 15:19:05 +02002673 if (!sample_conv_var2smp_sint(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002674 return 0;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002675 smp->data.u.sint |= tmp.data.u.sint;
Willy Tarreau97707872015-01-27 15:12:13 +01002676 return 1;
2677}
2678
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002679/* Takes a SINT on input, applies a binary "xor" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002680 * arg_p or in the variable described in arg_p, and returns the SINT result.
Willy Tarreau97707872015-01-27 15:12:13 +01002681 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002682static int sample_conv_binary_xor(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002683{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002684 struct sample tmp;
2685
Willy Tarreau7560dd42016-03-10 16:28:58 +01002686 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreaud9be5992021-10-06 15:19:05 +02002687 if (!sample_conv_var2smp_sint(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002688 return 0;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002689 smp->data.u.sint ^= tmp.data.u.sint;
Willy Tarreau97707872015-01-27 15:12:13 +01002690 return 1;
2691}
2692
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002693static inline long long int arith_add(long long int a, long long int b)
2694{
2695 /* Prevent overflow and makes capped calculus.
2696 * We must ensure that the check calculus doesn't
2697 * exceed the signed 64 bits limits.
2698 *
2699 * +----------+----------+
2700 * | a<0 | a>=0 |
2701 * +------+----------+----------+
2702 * | b<0 | MIN-a>b | no check |
2703 * +------+----------+----------+
2704 * | b>=0 | no check | MAX-a<b |
2705 * +------+----------+----------+
2706 */
2707 if ((a ^ b) >= 0) {
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002708 /* signs are different. */
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002709 if (a < 0) {
2710 if (LLONG_MIN - a > b)
2711 return LLONG_MIN;
2712 }
2713 if (LLONG_MAX - a < b)
2714 return LLONG_MAX;
2715 }
2716 return a + b;
2717}
2718
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002719/* Takes a SINT on input, applies an arithmetic "add" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002720 * arg_p or in the variable described in arg_p, and returns the SINT result.
Willy Tarreau97707872015-01-27 15:12:13 +01002721 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002722static int sample_conv_arith_add(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002723{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002724 struct sample tmp;
2725
Willy Tarreau7560dd42016-03-10 16:28:58 +01002726 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreaud9be5992021-10-06 15:19:05 +02002727 if (!sample_conv_var2smp_sint(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002728 return 0;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002729 smp->data.u.sint = arith_add(smp->data.u.sint, tmp.data.u.sint);
Willy Tarreau97707872015-01-27 15:12:13 +01002730 return 1;
2731}
2732
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002733/* Takes a SINT on input, applies an arithmetic "sub" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002734 * arg_p or in the variable described in arg_p, and returns the SINT result.
Willy Tarreau97707872015-01-27 15:12:13 +01002735 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002736static int sample_conv_arith_sub(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002737 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002738{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002739 struct sample tmp;
2740
Willy Tarreau7560dd42016-03-10 16:28:58 +01002741 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreaud9be5992021-10-06 15:19:05 +02002742 if (!sample_conv_var2smp_sint(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002743 return 0;
2744
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002745 /* We cannot represent -LLONG_MIN because abs(LLONG_MIN) is greater
2746 * than abs(LLONG_MAX). So, the following code use LLONG_MAX in place
2747 * of -LLONG_MIN and correct the result.
2748 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002749 if (tmp.data.u.sint == LLONG_MIN) {
2750 smp->data.u.sint = arith_add(smp->data.u.sint, LLONG_MAX);
2751 if (smp->data.u.sint < LLONG_MAX)
2752 smp->data.u.sint++;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002753 return 1;
2754 }
2755
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002756 /* standard subtraction: we use the "add" function and negate
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002757 * the second operand.
2758 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002759 smp->data.u.sint = arith_add(smp->data.u.sint, -tmp.data.u.sint);
Willy Tarreau97707872015-01-27 15:12:13 +01002760 return 1;
2761}
2762
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002763/* Takes a SINT on input, applies an arithmetic "mul" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002764 * arg_p or in the variable described in arg_p, and returns the SINT result.
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002765 * If the result makes an overflow, then the largest possible quantity is
2766 * returned.
Willy Tarreau97707872015-01-27 15:12:13 +01002767 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002768static int sample_conv_arith_mul(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002769 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002770{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002771 struct sample tmp;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002772 long long int c;
2773
Willy Tarreau7560dd42016-03-10 16:28:58 +01002774 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreaud9be5992021-10-06 15:19:05 +02002775 if (!sample_conv_var2smp_sint(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002776 return 0;
2777
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002778 /* prevent divide by 0 during the check */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002779 if (!smp->data.u.sint || !tmp.data.u.sint) {
2780 smp->data.u.sint = 0;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002781 return 1;
2782 }
2783
2784 /* The multiply between LLONG_MIN and -1 returns a
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002785 * "floating point exception".
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002786 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002787 if (smp->data.u.sint == LLONG_MIN && tmp.data.u.sint == -1) {
2788 smp->data.u.sint = LLONG_MAX;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002789 return 1;
2790 }
2791
2792 /* execute standard multiplication. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002793 c = smp->data.u.sint * tmp.data.u.sint;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002794
2795 /* check for overflow and makes capped multiply. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002796 if (smp->data.u.sint != c / tmp.data.u.sint) {
2797 if ((smp->data.u.sint < 0) == (tmp.data.u.sint < 0)) {
2798 smp->data.u.sint = LLONG_MAX;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002799 return 1;
2800 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002801 smp->data.u.sint = LLONG_MIN;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002802 return 1;
2803 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002804 smp->data.u.sint = c;
Willy Tarreau97707872015-01-27 15:12:13 +01002805 return 1;
2806}
2807
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002808/* Takes a SINT on input, applies an arithmetic "div" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002809 * arg_p or in the variable described in arg_p, and returns the SINT result.
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002810 * If arg_p makes the result overflow, then the largest possible quantity is
2811 * returned.
Willy Tarreau97707872015-01-27 15:12:13 +01002812 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002813static int sample_conv_arith_div(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002814 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002815{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002816 struct sample tmp;
2817
Willy Tarreau7560dd42016-03-10 16:28:58 +01002818 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreaud9be5992021-10-06 15:19:05 +02002819 if (!sample_conv_var2smp_sint(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002820 return 0;
2821
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002822 if (tmp.data.u.sint) {
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002823 /* The divide between LLONG_MIN and -1 returns a
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002824 * "floating point exception".
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002825 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002826 if (smp->data.u.sint == LLONG_MIN && tmp.data.u.sint == -1) {
2827 smp->data.u.sint = LLONG_MAX;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002828 return 1;
2829 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002830 smp->data.u.sint /= tmp.data.u.sint;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002831 return 1;
2832 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002833 smp->data.u.sint = LLONG_MAX;
Willy Tarreau97707872015-01-27 15:12:13 +01002834 return 1;
2835}
2836
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002837/* Takes a SINT on input, applies an arithmetic "mod" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002838 * arg_p or in the variable described in arg_p, and returns the SINT result.
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002839 * If arg_p makes the result overflow, then 0 is returned.
Willy Tarreau97707872015-01-27 15:12:13 +01002840 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002841static int sample_conv_arith_mod(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002842 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002843{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002844 struct sample tmp;
2845
Willy Tarreau7560dd42016-03-10 16:28:58 +01002846 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreaud9be5992021-10-06 15:19:05 +02002847 if (!sample_conv_var2smp_sint(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002848 return 0;
2849
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002850 if (tmp.data.u.sint) {
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002851 /* The divide between LLONG_MIN and -1 returns a
Ilya Shipitsin46a030c2020-07-05 16:36:08 +05002852 * "floating point exception".
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002853 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002854 if (smp->data.u.sint == LLONG_MIN && tmp.data.u.sint == -1) {
2855 smp->data.u.sint = 0;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002856 return 1;
2857 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002858 smp->data.u.sint %= tmp.data.u.sint;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002859 return 1;
2860 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002861 smp->data.u.sint = 0;
Willy Tarreau97707872015-01-27 15:12:13 +01002862 return 1;
2863}
2864
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002865/* Takes an SINT on input, applies an arithmetic "neg" and returns the SINT
Willy Tarreau97707872015-01-27 15:12:13 +01002866 * result.
2867 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002868static int sample_conv_arith_neg(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002869 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002870{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002871 if (smp->data.u.sint == LLONG_MIN)
2872 smp->data.u.sint = LLONG_MAX;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002873 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002874 smp->data.u.sint = -smp->data.u.sint;
Willy Tarreau97707872015-01-27 15:12:13 +01002875 return 1;
2876}
2877
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002878/* Takes a SINT on input, returns true is the value is non-null, otherwise
Willy Tarreau97707872015-01-27 15:12:13 +01002879 * false. The output is a BOOL.
2880 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002881static int sample_conv_arith_bool(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002882 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002883{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002884 smp->data.u.sint = !!smp->data.u.sint;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002885 smp->data.type = SMP_T_BOOL;
Willy Tarreau97707872015-01-27 15:12:13 +01002886 return 1;
2887}
2888
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002889/* Takes a SINT on input, returns false is the value is non-null, otherwise
Willy Tarreau97707872015-01-27 15:12:13 +01002890 * truee. The output is a BOOL.
2891 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002892static int sample_conv_arith_not(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002893 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002894{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002895 smp->data.u.sint = !smp->data.u.sint;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002896 smp->data.type = SMP_T_BOOL;
Willy Tarreau97707872015-01-27 15:12:13 +01002897 return 1;
2898}
2899
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002900/* Takes a SINT on input, returns true is the value is odd, otherwise false.
Willy Tarreau97707872015-01-27 15:12:13 +01002901 * The output is a BOOL.
2902 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002903static int sample_conv_arith_odd(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002904 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002905{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002906 smp->data.u.sint = smp->data.u.sint & 1;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002907 smp->data.type = SMP_T_BOOL;
Willy Tarreau97707872015-01-27 15:12:13 +01002908 return 1;
2909}
2910
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002911/* Takes a SINT on input, returns true is the value is even, otherwise false.
Willy Tarreau97707872015-01-27 15:12:13 +01002912 * The output is a BOOL.
2913 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002914static int sample_conv_arith_even(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002915 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002916{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002917 smp->data.u.sint = !(smp->data.u.sint & 1);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002918 smp->data.type = SMP_T_BOOL;
Willy Tarreau97707872015-01-27 15:12:13 +01002919 return 1;
2920}
2921
Willy Tarreau280f42b2018-02-19 15:34:12 +01002922/* appends an optional const string, an optional variable contents and another
2923 * optional const string to an existing string.
2924 */
2925static int sample_conv_concat(const struct arg *arg_p, struct sample *smp, void *private)
2926{
Willy Tarreau83061a82018-07-13 11:56:34 +02002927 struct buffer *trash;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002928 struct sample tmp;
2929 int max;
2930
Willy Tarreau591fc3a2021-01-08 16:08:43 +01002931 trash = alloc_trash_chunk();
William Dauchye9970102021-01-11 11:05:58 +01002932 if (!trash)
2933 return 0;
2934
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002935 trash->data = smp->data.u.str.data;
2936 if (trash->data > trash->size - 1)
2937 trash->data = trash->size - 1;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002938
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002939 memcpy(trash->area, smp->data.u.str.area, trash->data);
2940 trash->area[trash->data] = 0;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002941
2942 /* append first string */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002943 max = arg_p[0].data.str.data;
2944 if (max > trash->size - 1 - trash->data)
2945 max = trash->size - 1 - trash->data;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002946
2947 if (max) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002948 memcpy(trash->area + trash->data, arg_p[0].data.str.area, max);
2949 trash->data += max;
2950 trash->area[trash->data] = 0;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002951 }
2952
2953 /* append second string (variable) if it's found and we can turn it
2954 * into a string.
2955 */
2956 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreaue352b9d2021-09-03 11:52:38 +02002957 if (arg_p[1].type == ARGT_VAR && vars_get_by_desc(&arg_p[1].data.var, &tmp, NULL) &&
Willy Tarreau280f42b2018-02-19 15:34:12 +01002958 (sample_casts[tmp.data.type][SMP_T_STR] == c_none ||
2959 sample_casts[tmp.data.type][SMP_T_STR](&tmp))) {
2960
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002961 max = tmp.data.u.str.data;
2962 if (max > trash->size - 1 - trash->data)
2963 max = trash->size - 1 - trash->data;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002964
2965 if (max) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002966 memcpy(trash->area + trash->data, tmp.data.u.str.area,
2967 max);
2968 trash->data += max;
2969 trash->area[trash->data] = 0;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002970 }
2971 }
2972
2973 /* append third string */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002974 max = arg_p[2].data.str.data;
2975 if (max > trash->size - 1 - trash->data)
2976 max = trash->size - 1 - trash->data;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002977
2978 if (max) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002979 memcpy(trash->area + trash->data, arg_p[2].data.str.area, max);
2980 trash->data += max;
2981 trash->area[trash->data] = 0;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002982 }
2983
2984 smp->data.u.str = *trash;
2985 smp->data.type = SMP_T_STR;
Willy Tarreau591fc3a2021-01-08 16:08:43 +01002986 smp_dup(smp);
2987 free_trash_chunk(trash);
Willy Tarreau280f42b2018-02-19 15:34:12 +01002988 return 1;
2989}
2990
2991/* This function checks the "concat" converter's arguments and extracts the
2992 * variable name and its scope.
2993 */
2994static int smp_check_concat(struct arg *args, struct sample_conv *conv,
2995 const char *file, int line, char **err)
2996{
2997 /* Try to decode a variable. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002998 if (args[1].data.str.data > 0 && !vars_check_arg(&args[1], NULL)) {
2999 memprintf(err, "failed to register variable name '%s'",
3000 args[1].data.str.area);
Willy Tarreau280f42b2018-02-19 15:34:12 +01003001 return 0;
3002 }
3003 return 1;
3004}
3005
Tim Duesterhusf38175c2020-06-09 11:48:42 +02003006/* Compares string with a variable containing a string. Return value
Tim Duesterhusca097c12018-04-27 21:18:45 +02003007 * is compatible with strcmp(3)'s return value.
3008 */
3009static int sample_conv_strcmp(const struct arg *arg_p, struct sample *smp, void *private)
3010{
3011 struct sample tmp;
3012 int max, result;
3013
3014 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
3015 if (arg_p[0].type != ARGT_VAR)
3016 return 0;
Willy Tarreau2476ff12021-10-06 15:30:52 +02003017
3018 if (!sample_conv_var2smp(&arg_p[0].data.var, &tmp, SMP_T_STR))
Tim Duesterhusca097c12018-04-27 21:18:45 +02003019 return 0;
3020
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003021 max = MIN(smp->data.u.str.data, tmp.data.u.str.data);
3022 result = strncmp(smp->data.u.str.area, tmp.data.u.str.area, max);
Tim Duesterhusca097c12018-04-27 21:18:45 +02003023 if (result == 0) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003024 if (smp->data.u.str.data != tmp.data.u.str.data) {
3025 if (smp->data.u.str.data < tmp.data.u.str.data) {
Tim Duesterhusca097c12018-04-27 21:18:45 +02003026 result = -1;
3027 }
3028 else {
3029 result = 1;
3030 }
3031 }
3032 }
3033
3034 smp->data.u.sint = result;
3035 smp->data.type = SMP_T_SINT;
3036 return 1;
3037}
3038
Tim Duesterhus3943e4f2020-09-11 14:25:23 +02003039/* Takes a boolean as input. Returns the first argument if that boolean is true and
3040 * the second argument otherwise.
3041 */
3042static int sample_conv_iif(const struct arg *arg_p, struct sample *smp, void *private)
3043{
3044 smp->data.type = SMP_T_STR;
3045 smp->flags |= SMP_F_CONST;
3046
3047 if (smp->data.u.sint) {
3048 smp->data.u.str.data = arg_p[0].data.str.data;
3049 smp->data.u.str.area = arg_p[0].data.str.area;
3050 }
3051 else {
3052 smp->data.u.str.data = arg_p[1].data.str.data;
3053 smp->data.u.str.area = arg_p[1].data.str.area;
3054 }
3055
3056 return 1;
3057}
3058
Frédéric Lécaille50290fb2019-02-27 14:34:51 +01003059#define GRPC_MSG_COMPRESS_FLAG_SZ 1 /* 1 byte */
3060#define GRPC_MSG_LENGTH_SZ 4 /* 4 bytes */
3061#define GRPC_MSG_HEADER_SZ (GRPC_MSG_COMPRESS_FLAG_SZ + GRPC_MSG_LENGTH_SZ)
3062
3063/*
3064 * Extract the field value of an input binary sample. Takes a mandatory argument:
3065 * the protocol buffers field identifier (dotted notation) internally represented
3066 * as an array of unsigned integers and its size.
3067 * Return 1 if the field was found, 0 if not.
3068 */
3069static int sample_conv_ungrpc(const struct arg *arg_p, struct sample *smp, void *private)
3070{
3071 unsigned char *pos;
3072 size_t grpc_left;
Frédéric Lécaille50290fb2019-02-27 14:34:51 +01003073
3074 pos = (unsigned char *)smp->data.u.str.area;
Frédéric Lécaille50290fb2019-02-27 14:34:51 +01003075 grpc_left = smp->data.u.str.data;
3076
Frédéric Lécaille7c93e882019-03-04 07:33:41 +01003077 while (grpc_left > GRPC_MSG_HEADER_SZ) {
Frédéric Lécaille50290fb2019-02-27 14:34:51 +01003078 size_t grpc_msg_len, left;
Frédéric Lécaille50290fb2019-02-27 14:34:51 +01003079
3080 grpc_msg_len = left = ntohl(*(uint32_t *)(pos + GRPC_MSG_COMPRESS_FLAG_SZ));
3081
3082 pos += GRPC_MSG_HEADER_SZ;
3083 grpc_left -= GRPC_MSG_HEADER_SZ;
3084
3085 if (grpc_left < left)
3086 return 0;
3087
Frédéric Lécaille5f33f852019-03-06 08:03:44 +01003088 if (protobuf_field_lookup(arg_p, smp, &pos, &left))
3089 return 1;
Frédéric Lécaille50290fb2019-02-27 14:34:51 +01003090
Frédéric Lécaille50290fb2019-02-27 14:34:51 +01003091 grpc_left -= grpc_msg_len;
3092 }
3093
3094 return 0;
3095}
3096
Frédéric Lécaillebfe61382019-03-06 14:34:36 +01003097static int sample_conv_protobuf(const struct arg *arg_p, struct sample *smp, void *private)
3098{
3099 unsigned char *pos;
3100 size_t left;
3101
3102 pos = (unsigned char *)smp->data.u.str.area;
3103 left = smp->data.u.str.data;
3104
3105 return protobuf_field_lookup(arg_p, smp, &pos, &left);
3106}
3107
3108static int sample_conv_protobuf_check(struct arg *args, struct sample_conv *conv,
3109 const char *file, int line, char **err)
Frédéric Lécaille756d97f2019-03-04 19:03:48 +01003110{
3111 if (!args[1].type) {
3112 args[1].type = ARGT_SINT;
3113 args[1].data.sint = PBUF_T_BINARY;
3114 }
3115 else {
3116 int pbuf_type;
3117
3118 pbuf_type = protobuf_type(args[1].data.str.area);
3119 if (pbuf_type == -1) {
3120 memprintf(err, "Wrong protocol buffer type '%s'", args[1].data.str.area);
3121 return 0;
3122 }
3123
Christopher Faulet6ad7df42020-08-07 11:45:18 +02003124 chunk_destroy(&args[1].data.str);
Frédéric Lécaille756d97f2019-03-04 19:03:48 +01003125 args[1].type = ARGT_SINT;
3126 args[1].data.sint = pbuf_type;
3127 }
3128
3129 return 1;
3130}
3131
Baptiste Assmanne138dda2020-10-22 15:39:03 +02003132/*
3133 * Extract the tag value of an input binary sample. Takes a mandatory argument:
3134 * the FIX protocol tag identifier.
3135 * Return 1 if the tag was found, 0 if not.
3136 */
3137static int sample_conv_fix_tag_value(const struct arg *arg_p, struct sample *smp, void *private)
3138{
3139 struct ist value;
3140
3141 smp->flags &= ~SMP_F_MAY_CHANGE;
3142 value = fix_tag_value(ist2(smp->data.u.str.area, smp->data.u.str.data),
3143 arg_p[0].data.sint);
3144 if (!istlen(value)) {
Christopher Fauleta5aa0822021-10-13 17:58:53 +02003145 if (isttest(value)) {
Baptiste Assmanne138dda2020-10-22 15:39:03 +02003146 /* value != IST_NULL, need more data */
3147 smp->flags |= SMP_F_MAY_CHANGE;
3148 }
3149 return 0;
3150 }
3151
3152 smp->data.u.str = ist2buf(value);
3153 smp->flags |= SMP_F_CONST;
3154
3155 return 1;
3156}
3157
3158/* This function checks the "fix_tag_value" converter configuration.
3159 * It expects a "known" (by HAProxy) tag name or ID.
3160 * Tag string names are converted to their ID counterpart because this is the
3161 * format they are sent over the wire.
3162 */
3163static int sample_conv_fix_value_check(struct arg *args, struct sample_conv *conv,
3164 const char *file, int line, char **err)
3165{
3166 struct ist str;
3167 unsigned int tag;
3168
3169 str = ist2(args[0].data.str.area, args[0].data.str.data);
3170 tag = fix_tagid(str);
3171 if (!tag) {
3172 memprintf(err, "Unknown FIX tag name '%s'", args[0].data.str.area);
3173 return 0;
3174 }
3175
3176 chunk_destroy(&args[0].data.str);
3177 args[0].type = ARGT_SINT;
3178 args[0].data.sint = tag;
3179
3180 return 1;
3181}
3182
3183/*
3184 * Checks that a buffer contains a valid FIX message
3185 *
3186 * Return 1 if the check could be run, 0 if not.
Ilya Shipitsinf38a0182020-12-21 01:16:17 +05003187 * The result of the analyse itself is stored in <smp> as a boolean
Baptiste Assmanne138dda2020-10-22 15:39:03 +02003188 */
3189static int sample_conv_fix_is_valid(const struct arg *arg_p, struct sample *smp, void *private)
3190{
3191 struct ist msg;
3192
3193 msg = ist2(smp->data.u.str.area, smp->data.u.str.data);
3194
3195 smp->flags &= ~SMP_F_MAY_CHANGE;
3196 switch (fix_validate_message(msg)) {
3197 case FIX_VALID_MESSAGE:
3198 smp->data.type = SMP_T_BOOL;
3199 smp->data.u.sint = 1;
3200 return 1;
3201 case FIX_NEED_MORE_DATA:
3202 smp->flags |= SMP_F_MAY_CHANGE;
3203 return 0;
3204 case FIX_INVALID_MESSAGE:
3205 smp->data.type = SMP_T_BOOL;
3206 smp->data.u.sint = 0;
3207 return 1;
3208 }
3209 return 0;
3210}
3211
Baptiste Assmanne279ca62020-10-27 18:10:06 +01003212/*
3213 * Extract the field value of an input binary sample containing an MQTT packet.
3214 * Takes 2 mandatory arguments:
3215 * - packet type
3216 * - field name
3217 *
3218 * return 1 if the field was found, 0 if not.
3219 */
3220static int sample_conv_mqtt_field_value(const struct arg *arg_p, struct sample *smp, void *private)
3221{
3222 struct ist pkt, value;
3223 int type, fieldname_id;
3224
3225 pkt = ist2(smp->data.u.str.area, smp->data.u.str.data);
3226 type = arg_p[0].data.sint;
3227 fieldname_id = arg_p[1].data.sint;
3228
3229 smp->flags &= ~SMP_F_MAY_CHANGE;
3230 value = mqtt_field_value(pkt, type, fieldname_id);
3231 if (!istlen(value)) {
3232 if (isttest(value)) {
3233 /* value != IST_NULL, need more data */
3234 smp->flags |= SMP_F_MAY_CHANGE;
3235 }
3236 return 0;
3237 }
3238
3239 smp->data.u.str = ist2buf(value);
3240 smp->flags |= SMP_F_CONST;
3241 return 1;
3242}
3243
3244/*
3245 * this function checks the "mqtt_field_value" converter configuration.
3246 * It expects a known packet type name or ID and a field name, in this order
3247 *
Ilya Shipitsinf38a0182020-12-21 01:16:17 +05003248 * Args[0] will be turned into a MQTT_CPT_* value for direct matching when parsing
Baptiste Assmanne279ca62020-10-27 18:10:06 +01003249 * a packet.
3250 */
3251static int sample_conv_mqtt_field_value_check(struct arg *args, struct sample_conv *conv,
3252 const char *file, int line, char **err)
3253{
3254 int type, fieldname_id;
3255
3256 /* check the MQTT packet type is valid */
3257 type = mqtt_typeid(ist2(args[0].data.str.area, args[0].data.str.data));
3258 if (type == MQTT_CPT_INVALID) {
3259 memprintf(err, "Unknown MQTT type '%s'", args[0].data.str.area);
3260 return 0;
3261 }
3262
3263 /* check the field name belongs to the MQTT packet type */
3264 fieldname_id = mqtt_check_type_fieldname(type, ist2(args[1].data.str.area, args[1].data.str.data));
3265 if (fieldname_id == MQTT_FN_INVALID) {
3266 memprintf(err, "Unknown MQTT field name '%s' for packet type '%s'", args[1].data.str.area,
3267 args[0].data.str.area);
3268 return 0;
3269 }
3270
3271 /* save numeric counterparts of type and field name */
3272 chunk_destroy(&args[0].data.str);
3273 chunk_destroy(&args[1].data.str);
3274 args[0].type = ARGT_SINT;
3275 args[0].data.sint = type;
3276 args[1].type = ARGT_SINT;
3277 args[1].data.sint = fieldname_id;
3278
3279 return 1;
3280}
3281
3282/*
3283 * Checks that <smp> contains a valid MQTT message
3284 *
3285 * The function returns 1 if the check was run to its end, 0 otherwise.
3286 * The result of the analyse itself is stored in <smp> as a boolean.
3287 */
3288static int sample_conv_mqtt_is_valid(const struct arg *arg_p, struct sample *smp, void *private)
3289{
3290 struct ist msg;
3291
3292 msg = ist2(smp->data.u.str.area, smp->data.u.str.data);
3293
3294 smp->flags &= ~SMP_F_MAY_CHANGE;
3295 switch (mqtt_validate_message(msg, NULL)) {
3296 case FIX_VALID_MESSAGE:
3297 smp->data.type = SMP_T_BOOL;
3298 smp->data.u.sint = 1;
3299 return 1;
3300 case FIX_NEED_MORE_DATA:
3301 smp->flags |= SMP_F_MAY_CHANGE;
3302 return 0;
3303 case FIX_INVALID_MESSAGE:
3304 smp->data.type = SMP_T_BOOL;
3305 smp->data.u.sint = 0;
3306 return 1;
3307 }
3308 return 0;
3309}
3310
Tim Duesterhusca097c12018-04-27 21:18:45 +02003311/* This function checks the "strcmp" converter's arguments and extracts the
3312 * variable name and its scope.
3313 */
3314static int smp_check_strcmp(struct arg *args, struct sample_conv *conv,
3315 const char *file, int line, char **err)
3316{
Willy Tarreaua1169b62021-05-08 06:50:28 +02003317 if (!args[0].data.str.data) {
3318 memprintf(err, "missing variable name");
3319 return 0;
3320 }
3321
Tim Duesterhusca097c12018-04-27 21:18:45 +02003322 /* Try to decode a variable. */
3323 if (vars_check_arg(&args[0], NULL))
3324 return 1;
3325
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003326 memprintf(err, "failed to register variable name '%s'",
3327 args[0].data.str.area);
Tim Duesterhusca097c12018-04-27 21:18:45 +02003328 return 0;
3329}
Tim Duesterhusf38175c2020-06-09 11:48:42 +02003330
Christopher Faulet4ccc12f2020-04-01 09:08:32 +02003331/**/
3332static int sample_conv_htonl(const struct arg *arg_p, struct sample *smp, void *private)
3333{
3334 struct buffer *tmp;
3335 uint32_t n;
3336
3337 n = htonl((uint32_t)smp->data.u.sint);
3338 tmp = get_trash_chunk();
3339
3340 memcpy(b_head(tmp), &n, 4);
3341 b_add(tmp, 4);
3342
3343 smp->data.u.str = *tmp;
3344 smp->data.type = SMP_T_BIN;
3345 return 1;
3346}
3347
Christopher Fauletea159d62020-04-01 16:21:44 +02003348/**/
3349static int sample_conv_cut_crlf(const struct arg *arg_p, struct sample *smp, void *private)
3350{
3351 char *p;
3352 size_t l;
3353
3354 p = smp->data.u.str.area;
3355 for (l = 0; l < smp->data.u.str.data; l++) {
3356 if (*(p+l) == '\r' || *(p+l) == '\n')
3357 break;
3358 }
3359 smp->data.u.str.data = l;
3360 return 1;
3361}
3362
Christopher Faulet51fc9d12020-04-01 17:24:41 +02003363/**/
3364static int sample_conv_ltrim(const struct arg *arg_p, struct sample *smp, void *private)
3365{
3366 char *delimiters, *p;
3367 size_t dlen, l;
3368
3369 delimiters = arg_p[0].data.str.area;
3370 dlen = arg_p[0].data.str.data;
3371
3372 l = smp->data.u.str.data;
3373 p = smp->data.u.str.area;
3374 while (l && memchr(delimiters, *p, dlen) != NULL) {
3375 p++;
3376 l--;
3377 }
3378
3379 smp->data.u.str.area = p;
3380 smp->data.u.str.data = l;
3381 return 1;
3382}
3383
Christopher Faulet568415a2020-04-01 17:24:47 +02003384/**/
3385static int sample_conv_rtrim(const struct arg *arg_p, struct sample *smp, void *private)
3386{
3387 char *delimiters, *p;
3388 size_t dlen, l;
3389
3390 delimiters = arg_p[0].data.str.area;
3391 dlen = arg_p[0].data.str.data;
3392
3393 l = smp->data.u.str.data;
3394 p = smp->data.u.str.area + l - 1;
3395 while (l && memchr(delimiters, *p, dlen) != NULL) {
3396 p--;
3397 l--;
3398 }
3399
3400 smp->data.u.str.data = l;
3401 return 1;
3402}
3403
Alex51c8ad42021-04-15 16:45:15 +02003404/* This function checks the "json_query" converter's arguments. */
3405static int sample_check_json_query(struct arg *arg, struct sample_conv *conv,
3406 const char *file, int line, char **err)
3407{
3408 if (arg[0].data.str.data == 0) {
3409 memprintf(err, "json_path must not be empty");
3410 return 0;
3411 }
3412
3413 if (arg[1].data.str.data != 0) {
3414 if (strcmp(arg[1].data.str.area, "int") != 0) {
3415 memprintf(err, "output_type only supports \"int\" as argument");
3416 return 0;
3417 } else {
3418 arg[1].type = ARGT_SINT;
3419 arg[1].data.sint = 0;
3420 }
3421 }
3422 return 1;
3423}
3424
3425/* Limit JSON integer values to the range [-(2**53)+1, (2**53)-1] as per
3426 * the recommendation for interoperable integers in section 6 of RFC 7159.
3427 */
3428#define JSON_INT_MAX ((1LL << 53) - 1)
3429#define JSON_INT_MIN (-JSON_INT_MAX)
3430
3431/* This sample function get the value from a given json string.
3432 * The mjson library is used to parse the JSON struct
3433 */
3434static int sample_conv_json_query(const struct arg *args, struct sample *smp, void *private)
3435{
3436 struct buffer *trash = get_trash_chunk();
Tim Duesterhus4809c8c2021-04-15 18:08:48 +02003437 const char *token; /* holds the temporary string from mjson_find */
3438 int token_size; /* holds the length of <token> */
Alex51c8ad42021-04-15 16:45:15 +02003439
Tim Duesterhus4809c8c2021-04-15 18:08:48 +02003440 enum mjson_tok token_type;
Alex51c8ad42021-04-15 16:45:15 +02003441
Tim Duesterhus4809c8c2021-04-15 18:08:48 +02003442 token_type = mjson_find(smp->data.u.str.area, smp->data.u.str.data, args[0].data.str.area, &token, &token_size);
3443
3444 switch (token_type) {
Alex51c8ad42021-04-15 16:45:15 +02003445 case MJSON_TOK_NUMBER:
3446 if (args[1].type == ARGT_SINT) {
Willy Tarreaufb601952021-05-14 08:51:53 +02003447 smp->data.u.sint = strtoll(token, NULL, 0);
Alex51c8ad42021-04-15 16:45:15 +02003448
3449 if (smp->data.u.sint < JSON_INT_MIN || smp->data.u.sint > JSON_INT_MAX)
3450 return 0;
3451
3452 smp->data.type = SMP_T_SINT;
Tim Duesterhus3b9cdf12021-04-15 18:40:06 +02003453
3454 return 1;
Alex51c8ad42021-04-15 16:45:15 +02003455 } else {
3456 double double_val;
Tim Duesterhus4809c8c2021-04-15 18:08:48 +02003457
Tim Duesterhus3b9cdf12021-04-15 18:40:06 +02003458 if (mjson_get_number(smp->data.u.str.area, smp->data.u.str.data, args[0].data.str.area, &double_val) == 0)
Alex51c8ad42021-04-15 16:45:15 +02003459 return 0;
Tim Duesterhus3b9cdf12021-04-15 18:40:06 +02003460
3461 trash->data = snprintf(trash->area,trash->size,"%g",double_val);
3462 smp->data.u.str = *trash;
3463 smp->data.type = SMP_T_STR;
3464
3465 return 1;
Alex51c8ad42021-04-15 16:45:15 +02003466 }
Alex51c8ad42021-04-15 16:45:15 +02003467 case MJSON_TOK_TRUE:
3468 smp->data.type = SMP_T_BOOL;
3469 smp->data.u.sint = 1;
Tim Duesterhus3b9cdf12021-04-15 18:40:06 +02003470
3471 return 1;
Alex51c8ad42021-04-15 16:45:15 +02003472 case MJSON_TOK_FALSE:
3473 smp->data.type = SMP_T_BOOL;
3474 smp->data.u.sint = 0;
Tim Duesterhus3b9cdf12021-04-15 18:40:06 +02003475
3476 return 1;
Tim Duesterhus4809c8c2021-04-15 18:08:48 +02003477 case MJSON_TOK_STRING: {
3478 int len;
3479
3480 len = mjson_get_string(smp->data.u.str.area, smp->data.u.str.data, args[0].data.str.area, trash->area, trash->size);
3481
3482 if (len == -1) {
Alex51c8ad42021-04-15 16:45:15 +02003483 /* invalid string */
3484 return 0;
Alex51c8ad42021-04-15 16:45:15 +02003485 }
Tim Duesterhus3b9cdf12021-04-15 18:40:06 +02003486
3487 trash->data = len;
3488 smp->data.u.str = *trash;
3489 smp->data.type = SMP_T_STR;
3490
3491 return 1;
Tim Duesterhus4809c8c2021-04-15 18:08:48 +02003492 }
Tim Duesterhus8f3bc8f2021-04-15 18:14:32 +02003493 case MJSON_TOK_NULL:
3494 case MJSON_TOK_ARRAY:
3495 case MJSON_TOK_OBJECT:
3496 /* We cannot handle these. */
3497 return 0;
3498 case MJSON_TOK_INVALID:
3499 /* Nothing matches the query. */
3500 return 0;
3501 case MJSON_TOK_KEY:
3502 /* This is not a valid return value according to the
3503 * mjson documentation, but we handle it to benefit
3504 * from '-Wswitch'.
3505 */
Alex51c8ad42021-04-15 16:45:15 +02003506 return 0;
3507 }
Tim Duesterhus3b9cdf12021-04-15 18:40:06 +02003508
3509 my_unreachable();
3510 return 0;
Alex51c8ad42021-04-15 16:45:15 +02003511}
3512
Remi Tricot-Le Breton0a72f5e2021-10-01 15:36:57 +02003513#ifdef USE_OPENSSL
Remi Tricot-Le Breton130e1422021-10-01 15:36:58 +02003514static int sample_conv_jwt_verify_check(struct arg *args, struct sample_conv *conv,
3515 const char *file, int line, char **err)
3516{
3517 vars_check_arg(&args[0], NULL);
3518 vars_check_arg(&args[1], NULL);
3519
3520 if (args[0].type == ARGT_STR) {
3521 enum jwt_alg alg = jwt_parse_alg(args[0].data.str.area, args[0].data.str.data);
3522
3523 switch(alg) {
3524 case JWT_ALG_DEFAULT:
Tim Duesterhusab896ee2021-10-29 18:06:55 +02003525 memprintf(err, "unknown JWT algorithm: %s", args[0].data.str.area);
3526 return 0;
Remi Tricot-Le Breton130e1422021-10-01 15:36:58 +02003527
3528 case JWS_ALG_PS256:
3529 case JWS_ALG_PS384:
3530 case JWS_ALG_PS512:
3531 memprintf(err, "RSASSA-PSS JWS signing not managed yet");
Tim Duesterhusab896ee2021-10-29 18:06:55 +02003532 return 0;
Remi Tricot-Le Breton130e1422021-10-01 15:36:58 +02003533
3534 default:
3535 break;
3536 }
3537 }
3538
3539 if (args[1].type == ARGT_STR) {
3540 jwt_tree_load_cert(args[1].data.str.area, args[1].data.str.data, err);
3541 }
3542
3543 return 1;
3544}
3545
3546/* Check that a JWT's signature is correct */
3547static int sample_conv_jwt_verify(const struct arg *args, struct sample *smp, void *private)
3548{
3549 struct sample alg_smp, key_smp;
3550
3551 smp->data.type = SMP_T_SINT;
3552 smp->data.u.sint = 0;
3553
3554 smp_set_owner(&alg_smp, smp->px, smp->sess, smp->strm, smp->opt);
3555 smp_set_owner(&key_smp, smp->px, smp->sess, smp->strm, smp->opt);
3556 if (!sample_conv_var2smp_str(&args[0], &alg_smp))
3557 return 0;
3558 if (!sample_conv_var2smp_str(&args[1], &key_smp))
3559 return 0;
3560
3561 smp->data.u.sint = jwt_verify(&smp->data.u.str, &alg_smp.data.u.str,
3562 &key_smp.data.u.str);
3563
3564 return 1;
3565}
3566
3567
Remi Tricot-Le Breton0a72f5e2021-10-01 15:36:57 +02003568/*
3569 * Returns the decoded header or payload of a JWT if no parameter is given, or
3570 * the value of the specified field of the corresponding JWT subpart if a
3571 * parameter is given.
3572 */
3573static int sample_conv_jwt_member_query(const struct arg *args, struct sample *smp,
3574 void *private, enum jwt_elt member)
3575{
3576 struct jwt_item items[JWT_ELT_MAX] = { { 0 } };
3577 unsigned int item_num = member + 1; /* We don't need to tokenize the full token */
3578 struct buffer *decoded_header = get_trash_chunk();
3579 int retval = 0;
Willy Tarreaue20e0262021-10-15 12:10:24 +02003580 int ret;
Remi Tricot-Le Breton0a72f5e2021-10-01 15:36:57 +02003581
3582 jwt_tokenize(&smp->data.u.str, items, &item_num);
3583
3584 if (item_num < member + 1)
3585 goto end;
3586
3587 decoded_header = alloc_trash_chunk();
3588 if (!decoded_header)
3589 goto end;
3590
Willy Tarreaue20e0262021-10-15 12:10:24 +02003591 ret = base64urldec(items[member].start, items[member].length,
3592 decoded_header->area, decoded_header->size);
3593 if (ret == -1)
Remi Tricot-Le Breton0a72f5e2021-10-01 15:36:57 +02003594 goto end;
3595
Willy Tarreaue20e0262021-10-15 12:10:24 +02003596 decoded_header->data = ret;
Remi Tricot-Le Breton0a72f5e2021-10-01 15:36:57 +02003597 if (args[0].type != ARGT_STR) {
3598 smp->data.u.str = *decoded_header;
3599 smp->data.type = SMP_T_STR;
3600 goto end;
3601 }
3602
3603 /* We look for a specific field of the header or payload part of the JWT */
3604 smp->data.u.str = *decoded_header;
3605
3606 retval = sample_conv_json_query(args, smp, private);
3607
3608end:
3609 return retval;
3610}
3611
3612/* This function checks the "jwt_header_query" and "jwt_payload_query" converters' arguments.
3613 * It is based on the "json_query" converter's check with the only difference
3614 * being that the jwt converters can take 0 parameters as well.
3615 */
3616static int sample_conv_jwt_query_check(struct arg *arg, struct sample_conv *conv,
3617 const char *file, int line, char **err)
3618{
3619 if (arg[1].data.str.data != 0) {
3620 if (strcmp(arg[1].data.str.area, "int") != 0) {
3621 memprintf(err, "output_type only supports \"int\" as argument");
3622 return 0;
3623 } else {
3624 arg[1].type = ARGT_SINT;
3625 arg[1].data.sint = 0;
3626 }
3627 }
3628 return 1;
3629}
3630
3631/*
3632 * If no parameter is given, return the decoded header part of a JWT (the first
3633 * base64 encoded part, corresponding to the JOSE header).
3634 * If a parameter is given, this converter acts as a "json_query" on this
3635 * decoded JSON.
3636 */
3637static int sample_conv_jwt_header_query(const struct arg *args, struct sample *smp, void *private)
3638{
3639 return sample_conv_jwt_member_query(args, smp, private, JWT_ELT_JOSE);
3640}
3641
3642/*
3643 * If no parameter is given, return the decoded payload part of a JWT (the
3644 * second base64 encoded part, which contains all the claims). If a parameter
3645 * is given, this converter acts as a "json_query" on this decoded JSON.
3646 */
3647static int sample_conv_jwt_payload_query(const struct arg *args, struct sample *smp, void *private)
3648{
3649 return sample_conv_jwt_member_query(args, smp, private, JWT_ELT_CLAIMS);
3650}
3651
3652#endif /* USE_OPENSSL */
Alex51c8ad42021-04-15 16:45:15 +02003653
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003654/************************************************************************/
3655/* All supported sample fetch functions must be declared here */
3656/************************************************************************/
3657
3658/* force TRUE to be returned at the fetch level */
3659static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003660smp_fetch_true(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003661{
Willy Tarreau280f42b2018-02-19 15:34:12 +01003662 if (!smp_make_rw(smp))
3663 return 0;
3664
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003665 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003666 smp->data.u.sint = 1;
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003667 return 1;
3668}
3669
3670/* force FALSE to be returned at the fetch level */
3671static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003672smp_fetch_false(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003673{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003674 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003675 smp->data.u.sint = 0;
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003676 return 1;
3677}
3678
3679/* retrieve environment variable $1 as a string */
3680static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003681smp_fetch_env(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003682{
3683 char *env;
3684
Christopher Faulete6e7a582021-01-29 11:29:28 +01003685 if (args[0].type != ARGT_STR)
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003686 return 0;
3687
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003688 env = getenv(args[0].data.str.area);
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003689 if (!env)
3690 return 0;
3691
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003692 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01003693 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003694 smp->data.u.str.area = env;
3695 smp->data.u.str.data = strlen(env);
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003696 return 1;
3697}
3698
Damien Claisseae6f1252019-10-30 15:57:28 +00003699/* Validates the data unit argument passed to "date" fetch. Argument 1 support an
3700 * optional string representing the unit of the result: "s" for seconds, "ms" for
3701 * milliseconds and "us" for microseconds.
3702 * Returns 0 on error and non-zero if OK.
3703 */
3704int smp_check_date_unit(struct arg *args, char **err)
3705{
3706 if (args[1].type == ARGT_STR) {
Christopher Faulet95917132020-08-05 23:07:07 +02003707 long long int unit;
3708
Damien Claisseae6f1252019-10-30 15:57:28 +00003709 if (strcmp(args[1].data.str.area, "s") == 0) {
Christopher Faulet95917132020-08-05 23:07:07 +02003710 unit = TIME_UNIT_S;
Damien Claisseae6f1252019-10-30 15:57:28 +00003711 }
3712 else if (strcmp(args[1].data.str.area, "ms") == 0) {
Christopher Faulet95917132020-08-05 23:07:07 +02003713 unit = TIME_UNIT_MS;
Damien Claisseae6f1252019-10-30 15:57:28 +00003714 }
3715 else if (strcmp(args[1].data.str.area, "us") == 0) {
Christopher Faulet95917132020-08-05 23:07:07 +02003716 unit = TIME_UNIT_US;
Damien Claisseae6f1252019-10-30 15:57:28 +00003717 }
3718 else {
3719 memprintf(err, "expects 's', 'ms' or 'us', got '%s'",
3720 args[1].data.str.area);
3721 return 0;
3722 }
Christopher Faulet95917132020-08-05 23:07:07 +02003723
Christopher Faulet6ad7df42020-08-07 11:45:18 +02003724 chunk_destroy(&args[1].data.str);
Damien Claisseae6f1252019-10-30 15:57:28 +00003725 args[1].type = ARGT_SINT;
Christopher Faulet95917132020-08-05 23:07:07 +02003726 args[1].data.sint = unit;
Damien Claisseae6f1252019-10-30 15:57:28 +00003727 }
3728 else if (args[1].type != ARGT_STOP) {
3729 memprintf(err, "Unexpected arg type");
3730 return 0;
3731 }
3732
3733 return 1;
3734}
3735
3736/* retrieve the current local date in epoch time, converts it to milliseconds
3737 * or microseconds if asked to in optional args[1] unit param, and applies an
3738 * optional args[0] offset.
Willy Tarreau6236d3a2013-07-25 14:28:25 +02003739 */
3740static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003741smp_fetch_date(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau6236d3a2013-07-25 14:28:25 +02003742{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003743 smp->data.u.sint = date.tv_sec;
Willy Tarreau6236d3a2013-07-25 14:28:25 +02003744
Damien Claisseae6f1252019-10-30 15:57:28 +00003745 /* report in milliseconds */
Christopher Faulete6e7a582021-01-29 11:29:28 +01003746 if (args[1].type == ARGT_SINT && args[1].data.sint == TIME_UNIT_MS) {
Damien Claisseae6f1252019-10-30 15:57:28 +00003747 smp->data.u.sint *= 1000;
3748 smp->data.u.sint += date.tv_usec / 1000;
3749 }
3750 /* report in microseconds */
Christopher Faulete6e7a582021-01-29 11:29:28 +01003751 else if (args[1].type == ARGT_SINT && args[1].data.sint == TIME_UNIT_US) {
Damien Claisseae6f1252019-10-30 15:57:28 +00003752 smp->data.u.sint *= 1000000;
3753 smp->data.u.sint += date.tv_usec;
3754 }
3755
Willy Tarreau6236d3a2013-07-25 14:28:25 +02003756 /* add offset */
Christopher Faulete6e7a582021-01-29 11:29:28 +01003757 if (args[0].type == ARGT_SINT)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003758 smp->data.u.sint += args[0].data.sint;
Willy Tarreau6236d3a2013-07-25 14:28:25 +02003759
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003760 smp->data.type = SMP_T_SINT;
Willy Tarreau6236d3a2013-07-25 14:28:25 +02003761 smp->flags |= SMP_F_VOL_TEST | SMP_F_MAY_CHANGE;
3762 return 1;
3763}
3764
Etienne Carrierea792a0a2018-01-17 13:43:24 +01003765/* retrieve the current microsecond part of the date */
3766static int
3767smp_fetch_date_us(const struct arg *args, struct sample *smp, const char *kw, void *private)
3768{
3769 smp->data.u.sint = date.tv_usec;
3770 smp->data.type = SMP_T_SINT;
3771 smp->flags |= SMP_F_VOL_TEST | SMP_F_MAY_CHANGE;
3772 return 1;
3773}
3774
3775
Nenad Merdanovic807a6e72017-03-12 22:00:00 +01003776/* returns the hostname */
3777static int
3778smp_fetch_hostname(const struct arg *args, struct sample *smp, const char *kw, void *private)
3779{
3780 smp->data.type = SMP_T_STR;
3781 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003782 smp->data.u.str.area = hostname;
3783 smp->data.u.str.data = strlen(hostname);
Nenad Merdanovic807a6e72017-03-12 22:00:00 +01003784 return 1;
3785}
3786
Willy Tarreau0f30d262014-11-24 16:02:05 +01003787/* returns the number of processes */
3788static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003789smp_fetch_nbproc(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0f30d262014-11-24 16:02:05 +01003790{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003791 smp->data.type = SMP_T_SINT;
Willy Tarreau91358592021-06-15 08:08:04 +02003792 smp->data.u.sint = 1;
Willy Tarreau0f30d262014-11-24 16:02:05 +01003793 return 1;
3794}
3795
3796/* returns the number of the current process (between 1 and nbproc */
3797static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003798smp_fetch_proc(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0f30d262014-11-24 16:02:05 +01003799{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003800 smp->data.type = SMP_T_SINT;
Willy Tarreaue8422bf2021-06-15 09:08:18 +02003801 smp->data.u.sint = 1;
Willy Tarreau0f30d262014-11-24 16:02:05 +01003802 return 1;
3803}
3804
Christopher Faulet34adb2a2017-11-21 21:45:38 +01003805/* returns the number of the current thread (between 1 and nbthread */
3806static int
3807smp_fetch_thread(const struct arg *args, struct sample *smp, const char *kw, void *private)
3808{
3809 smp->data.type = SMP_T_SINT;
3810 smp->data.u.sint = tid;
3811 return 1;
3812}
3813
Willy Tarreau84310e22014-02-14 11:59:04 +01003814/* generate a random 32-bit integer for whatever purpose, with an optional
3815 * range specified in argument.
3816 */
3817static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003818smp_fetch_rand(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau84310e22014-02-14 11:59:04 +01003819{
Willy Tarreauaa8bbc12020-03-08 18:01:10 +01003820 smp->data.u.sint = ha_random32();
Willy Tarreau84310e22014-02-14 11:59:04 +01003821
3822 /* reduce if needed. Don't do a modulo, use all bits! */
Christopher Faulete6e7a582021-01-29 11:29:28 +01003823 if (args[0].type == ARGT_SINT)
Willy Tarreauaa8bbc12020-03-08 18:01:10 +01003824 smp->data.u.sint = ((u64)smp->data.u.sint * (u64)args[0].data.sint) >> 32;
Willy Tarreau84310e22014-02-14 11:59:04 +01003825
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003826 smp->data.type = SMP_T_SINT;
Willy Tarreau84310e22014-02-14 11:59:04 +01003827 smp->flags |= SMP_F_VOL_TEST | SMP_F_MAY_CHANGE;
3828 return 1;
3829}
3830
Willy Tarreau0f30d262014-11-24 16:02:05 +01003831/* returns true if the current process is stopping */
3832static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003833smp_fetch_stopping(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0f30d262014-11-24 16:02:05 +01003834{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003835 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003836 smp->data.u.sint = stopping;
Willy Tarreau0f30d262014-11-24 16:02:05 +01003837 return 1;
3838}
3839
Willy Tarreau70fe9442018-11-22 16:07:39 +01003840/* returns the number of calls of the current stream's process_stream() */
3841static int
3842smp_fetch_cpu_calls(const struct arg *args, struct sample *smp, const char *kw, void *private)
3843{
Willy Tarreaue0dd2102020-04-29 11:59:02 +02003844 if (!smp->strm)
3845 return 0;
3846
Willy Tarreau70fe9442018-11-22 16:07:39 +01003847 smp->data.type = SMP_T_SINT;
3848 smp->data.u.sint = smp->strm->task->calls;
3849 return 1;
3850}
3851
3852/* returns the average number of nanoseconds spent processing the stream per call */
3853static int
3854smp_fetch_cpu_ns_avg(const struct arg *args, struct sample *smp, const char *kw, void *private)
3855{
Willy Tarreaue0dd2102020-04-29 11:59:02 +02003856 if (!smp->strm)
3857 return 0;
3858
Willy Tarreau70fe9442018-11-22 16:07:39 +01003859 smp->data.type = SMP_T_SINT;
3860 smp->data.u.sint = smp->strm->task->calls ? smp->strm->task->cpu_time / smp->strm->task->calls : 0;
3861 return 1;
3862}
3863
3864/* returns the total number of nanoseconds spent processing the stream */
3865static int
3866smp_fetch_cpu_ns_tot(const struct arg *args, struct sample *smp, const char *kw, void *private)
3867{
Willy Tarreaue0dd2102020-04-29 11:59:02 +02003868 if (!smp->strm)
3869 return 0;
3870
Willy Tarreau70fe9442018-11-22 16:07:39 +01003871 smp->data.type = SMP_T_SINT;
3872 smp->data.u.sint = smp->strm->task->cpu_time;
3873 return 1;
3874}
3875
3876/* returns the average number of nanoseconds per call spent waiting for other tasks to be processed */
3877static int
3878smp_fetch_lat_ns_avg(const struct arg *args, struct sample *smp, const char *kw, void *private)
3879{
Willy Tarreaue0dd2102020-04-29 11:59:02 +02003880 if (!smp->strm)
3881 return 0;
3882
Willy Tarreau70fe9442018-11-22 16:07:39 +01003883 smp->data.type = SMP_T_SINT;
3884 smp->data.u.sint = smp->strm->task->calls ? smp->strm->task->lat_time / smp->strm->task->calls : 0;
3885 return 1;
3886}
3887
3888/* returns the total number of nanoseconds per call spent waiting for other tasks to be processed */
3889static int
3890smp_fetch_lat_ns_tot(const struct arg *args, struct sample *smp, const char *kw, void *private)
3891{
Willy Tarreaue0dd2102020-04-29 11:59:02 +02003892 if (!smp->strm)
3893 return 0;
3894
Willy Tarreau70fe9442018-11-22 16:07:39 +01003895 smp->data.type = SMP_T_SINT;
3896 smp->data.u.sint = smp->strm->task->lat_time;
3897 return 1;
3898}
3899
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003900static int smp_fetch_const_str(const struct arg *args, struct sample *smp, const char *kw, void *private)
3901{
3902 smp->flags |= SMP_F_CONST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003903 smp->data.type = SMP_T_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003904 smp->data.u.str.area = args[0].data.str.area;
3905 smp->data.u.str.data = args[0].data.str.data;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003906 return 1;
3907}
3908
3909static int smp_check_const_bool(struct arg *args, char **err)
3910{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003911 if (strcasecmp(args[0].data.str.area, "true") == 0 ||
3912 strcasecmp(args[0].data.str.area, "1") == 0) {
Christopher Faulet6ad7df42020-08-07 11:45:18 +02003913 chunk_destroy(&args[0].data.str);
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02003914 args[0].type = ARGT_SINT;
3915 args[0].data.sint = 1;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003916 return 1;
3917 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003918 if (strcasecmp(args[0].data.str.area, "false") == 0 ||
3919 strcasecmp(args[0].data.str.area, "0") == 0) {
Christopher Faulet6ad7df42020-08-07 11:45:18 +02003920 chunk_destroy(&args[0].data.str);
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02003921 args[0].type = ARGT_SINT;
3922 args[0].data.sint = 0;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003923 return 1;
3924 }
3925 memprintf(err, "Expects 'true', 'false', '0' or '1'");
3926 return 0;
3927}
3928
3929static int smp_fetch_const_bool(const struct arg *args, struct sample *smp, const char *kw, void *private)
3930{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003931 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003932 smp->data.u.sint = args[0].data.sint;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003933 return 1;
3934}
3935
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02003936static int smp_fetch_const_int(const struct arg *args, struct sample *smp, const char *kw, void *private)
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003937{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003938 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003939 smp->data.u.sint = args[0].data.sint;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003940 return 1;
3941}
3942
3943static int smp_fetch_const_ipv4(const struct arg *args, struct sample *smp, const char *kw, void *private)
3944{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003945 smp->data.type = SMP_T_IPV4;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003946 smp->data.u.ipv4 = args[0].data.ipv4;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003947 return 1;
3948}
3949
3950static int smp_fetch_const_ipv6(const struct arg *args, struct sample *smp, const char *kw, void *private)
3951{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003952 smp->data.type = SMP_T_IPV6;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003953 smp->data.u.ipv6 = args[0].data.ipv6;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003954 return 1;
3955}
3956
3957static int smp_check_const_bin(struct arg *args, char **err)
3958{
David Carlier64a16ab2016-04-08 10:37:02 +01003959 char *binstr = NULL;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003960 int binstrlen;
3961
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003962 if (!parse_binary(args[0].data.str.area, &binstr, &binstrlen, err))
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003963 return 0;
Christopher Faulet6ad7df42020-08-07 11:45:18 +02003964 chunk_destroy(&args[0].data.str);
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003965 args[0].type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003966 args[0].data.str.area = binstr;
3967 args[0].data.str.data = binstrlen;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003968 return 1;
3969}
3970
3971static int smp_fetch_const_bin(const struct arg *args, struct sample *smp, const char *kw, void *private)
3972{
3973 smp->flags |= SMP_F_CONST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003974 smp->data.type = SMP_T_BIN;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003975 smp->data.u.str.area = args[0].data.str.area;
3976 smp->data.u.str.data = args[0].data.str.data;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003977 return 1;
3978}
3979
3980static int smp_check_const_meth(struct arg *args, char **err)
3981{
3982 enum http_meth_t meth;
3983 int i;
3984
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003985 meth = find_http_meth(args[0].data.str.area, args[0].data.str.data);
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003986 if (meth != HTTP_METH_OTHER) {
Christopher Faulet6ad7df42020-08-07 11:45:18 +02003987 chunk_destroy(&args[0].data.str);
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02003988 args[0].type = ARGT_SINT;
3989 args[0].data.sint = meth;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003990 } else {
Ilya Shipitsin6b79f382020-07-23 00:32:55 +05003991 /* Check method avalaibility. A method is a token defined as :
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003992 * tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" / "+" / "-" / "." /
3993 * "^" / "_" / "`" / "|" / "~" / DIGIT / ALPHA
3994 * token = 1*tchar
3995 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003996 for (i = 0; i < args[0].data.str.data; i++) {
3997 if (!HTTP_IS_TOKEN(args[0].data.str.area[i])) {
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003998 memprintf(err, "expects valid method.");
3999 return 0;
4000 }
4001 }
4002 }
4003 return 1;
4004}
4005
4006static int smp_fetch_const_meth(const struct arg *args, struct sample *smp, const char *kw, void *private)
4007{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02004008 smp->data.type = SMP_T_METH;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02004009 if (args[0].type == ARGT_SINT) {
Thierry FOURNIERcc103292015-06-06 19:30:17 +02004010 smp->flags &= ~SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02004011 smp->data.u.meth.meth = args[0].data.sint;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004012 smp->data.u.meth.str.area = "";
4013 smp->data.u.meth.str.data = 0;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02004014 } else {
4015 smp->flags |= SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02004016 smp->data.u.meth.meth = HTTP_METH_OTHER;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02004017 smp->data.u.meth.str.area = args[0].data.str.area;
4018 smp->data.u.meth.str.data = args[0].data.str.data;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02004019 }
4020 return 1;
4021}
4022
Luca Schimweg8a694b82019-09-10 15:42:52 +02004023// This function checks the "uuid" sample's arguments.
4024// Function won't get called when no parameter is specified (maybe a bug?)
4025static int smp_check_uuid(struct arg *args, char **err)
4026{
4027 if (!args[0].type) {
4028 args[0].type = ARGT_SINT;
4029 args[0].data.sint = 4;
4030 }
4031 else if (args[0].data.sint != 4) {
4032 memprintf(err, "Unsupported UUID version: '%lld'", args[0].data.sint);
4033 return 0;
4034 }
4035
4036 return 1;
4037}
4038
4039// Generate a RFC4122 UUID (default is v4 = fully random)
4040static int smp_fetch_uuid(const struct arg *args, struct sample *smp, const char *kw, void *private)
4041{
4042 if (args[0].data.sint == 4 || !args[0].type) {
Willy Tarreauee3bcdd2020-03-08 17:48:17 +01004043 ha_generate_uuid(&trash);
Luca Schimweg8a694b82019-09-10 15:42:52 +02004044 smp->data.type = SMP_T_STR;
4045 smp->flags = SMP_F_VOL_TEST | SMP_F_MAY_CHANGE;
4046 smp->data.u.str = trash;
4047 return 1;
4048 }
4049
4050 // more implementations of other uuid formats possible here
4051 return 0;
4052}
4053
Willy Tarreau5b8ad222013-07-25 12:17:57 +02004054/* Note: must not be declared <const> as its list will be overwritten.
4055 * Note: fetches that may return multiple types must be declared as the lowest
4056 * common denominator, the type that can be casted into all other ones. For
4057 * instance IPv4/IPv6 must be declared IPv4.
4058 */
4059static struct sample_fetch_kw_list smp_kws = {ILH, {
Willy Tarreau0209c972021-03-26 12:03:11 +01004060 { "always_false", smp_fetch_false, 0, NULL, SMP_T_BOOL, SMP_USE_CONST },
4061 { "always_true", smp_fetch_true, 0, NULL, SMP_T_BOOL, SMP_USE_CONST },
4062 { "env", smp_fetch_env, ARG1(1,STR), NULL, SMP_T_STR, SMP_USE_CONST },
4063 { "date", smp_fetch_date, ARG2(0,SINT,STR), smp_check_date_unit, SMP_T_SINT, SMP_USE_CONST },
4064 { "date_us", smp_fetch_date_us, 0, NULL, SMP_T_SINT, SMP_USE_CONST },
4065 { "hostname", smp_fetch_hostname, 0, NULL, SMP_T_STR, SMP_USE_CONST },
4066 { "nbproc", smp_fetch_nbproc,0, NULL, SMP_T_SINT, SMP_USE_CONST },
4067 { "proc", smp_fetch_proc, 0, NULL, SMP_T_SINT, SMP_USE_CONST },
4068 { "thread", smp_fetch_thread, 0, NULL, SMP_T_SINT, SMP_USE_CONST },
4069 { "rand", smp_fetch_rand, ARG1(0,SINT), NULL, SMP_T_SINT, SMP_USE_CONST },
Willy Tarreau0f30d262014-11-24 16:02:05 +01004070 { "stopping", smp_fetch_stopping, 0, NULL, SMP_T_BOOL, SMP_USE_INTRN },
Willy Tarreau0209c972021-03-26 12:03:11 +01004071 { "uuid", smp_fetch_uuid, ARG1(0, SINT), smp_check_uuid, SMP_T_STR, SMP_USE_CONST },
Willy Tarreau70fe9442018-11-22 16:07:39 +01004072
4073 { "cpu_calls", smp_fetch_cpu_calls, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
4074 { "cpu_ns_avg", smp_fetch_cpu_ns_avg, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
4075 { "cpu_ns_tot", smp_fetch_cpu_ns_tot, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
4076 { "lat_ns_avg", smp_fetch_lat_ns_avg, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
4077 { "lat_ns_tot", smp_fetch_lat_ns_tot, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
Thierry FOURNIERcc103292015-06-06 19:30:17 +02004078
Willy Tarreau0209c972021-03-26 12:03:11 +01004079 { "str", smp_fetch_const_str, ARG1(1,STR), NULL , SMP_T_STR, SMP_USE_CONST },
4080 { "bool", smp_fetch_const_bool, ARG1(1,STR), smp_check_const_bool, SMP_T_BOOL, SMP_USE_CONST },
4081 { "int", smp_fetch_const_int, ARG1(1,SINT), NULL , SMP_T_SINT, SMP_USE_CONST },
4082 { "ipv4", smp_fetch_const_ipv4, ARG1(1,IPV4), NULL , SMP_T_IPV4, SMP_USE_CONST },
4083 { "ipv6", smp_fetch_const_ipv6, ARG1(1,IPV6), NULL , SMP_T_IPV6, SMP_USE_CONST },
4084 { "bin", smp_fetch_const_bin, ARG1(1,STR), smp_check_const_bin , SMP_T_BIN, SMP_USE_CONST },
4085 { "meth", smp_fetch_const_meth, ARG1(1,STR), smp_check_const_meth, SMP_T_METH, SMP_USE_CONST },
Thierry FOURNIERcc103292015-06-06 19:30:17 +02004086
Willy Tarreau5b8ad222013-07-25 12:17:57 +02004087 { /* END */ },
4088}};
4089
Willy Tarreau0108d902018-11-25 19:14:37 +01004090INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
4091
Emeric Brun107ca302010-01-04 16:16:05 +01004092/* Note: must not be declared <const> as its list will be overwritten */
Willy Tarreaudc13c112013-06-21 23:16:39 +02004093static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Moemen MHEDHBI848216f2021-04-02 01:05:07 +02004094 { "debug", sample_conv_debug, ARG2(0,STR,STR), smp_check_debug, SMP_T_ANY, SMP_T_ANY },
4095 { "b64dec", sample_conv_base642bin, 0, NULL, SMP_T_STR, SMP_T_BIN },
4096 { "base64", sample_conv_bin2base64, 0, NULL, SMP_T_BIN, SMP_T_STR },
4097 { "ub64enc", sample_conv_bin2base64url,0, NULL, SMP_T_BIN, SMP_T_STR },
4098 { "ub64dec", sample_conv_base64url2bin,0, NULL, SMP_T_STR, SMP_T_BIN },
4099 { "upper", sample_conv_str2upper, 0, NULL, SMP_T_STR, SMP_T_STR },
4100 { "lower", sample_conv_str2lower, 0, NULL, SMP_T_STR, SMP_T_STR },
4101 { "length", sample_conv_length, 0, NULL, SMP_T_STR, SMP_T_SINT },
Marcin Deranek40ca09c2021-07-13 14:05:24 +02004102 { "be2dec", sample_conv_be2dec, ARG3(1,STR,SINT,SINT), sample_conv_be2dec_check, SMP_T_BIN, SMP_T_STR },
Marcin Deranekda0264a2021-07-13 14:08:56 +02004103 { "be2hex", sample_conv_be2hex, ARG3(1,STR,SINT,SINT), sample_conv_be2hex_check, SMP_T_BIN, SMP_T_STR },
Moemen MHEDHBI848216f2021-04-02 01:05:07 +02004104 { "hex", sample_conv_bin2hex, 0, NULL, SMP_T_BIN, SMP_T_STR },
4105 { "hex2i", sample_conv_hex2int, 0, NULL, SMP_T_STR, SMP_T_SINT },
4106 { "ipmask", sample_conv_ipmask, ARG2(1,MSK4,MSK6), NULL, SMP_T_ADDR, SMP_T_IPV4 },
4107 { "ltime", sample_conv_ltime, ARG2(1,STR,SINT), NULL, SMP_T_SINT, SMP_T_STR },
4108 { "utime", sample_conv_utime, ARG2(1,STR,SINT), NULL, SMP_T_SINT, SMP_T_STR },
4109 { "crc32", sample_conv_crc32, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT },
4110 { "crc32c", sample_conv_crc32c, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT },
4111 { "djb2", sample_conv_djb2, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT },
4112 { "sdbm", sample_conv_sdbm, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT },
4113 { "wt6", sample_conv_wt6, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT },
4114 { "xxh3", sample_conv_xxh3, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT },
4115 { "xxh32", sample_conv_xxh32, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT },
4116 { "xxh64", sample_conv_xxh64, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT },
4117 { "json", sample_conv_json, ARG1(1,STR), sample_conv_json_check, SMP_T_STR, SMP_T_STR },
4118 { "bytes", sample_conv_bytes, ARG2(1,SINT,SINT), NULL, SMP_T_BIN, SMP_T_BIN },
4119 { "field", sample_conv_field, ARG3(2,SINT,STR,SINT), sample_conv_field_check, SMP_T_STR, SMP_T_STR },
4120 { "word", sample_conv_word, ARG3(2,SINT,STR,SINT), sample_conv_field_check, SMP_T_STR, SMP_T_STR },
4121 { "regsub", sample_conv_regsub, ARG3(2,REG,STR,STR), sample_conv_regsub_check, SMP_T_STR, SMP_T_STR },
4122 { "sha1", sample_conv_sha1, 0, NULL, SMP_T_BIN, SMP_T_BIN },
Willy Tarreau99ea1882021-10-06 15:37:17 +02004123 { "concat", sample_conv_concat, ARG3(1,STR,STR,STR), smp_check_concat, SMP_T_STR, SMP_T_STR },
4124 { "strcmp", sample_conv_strcmp, ARG1(1,STR), smp_check_strcmp, SMP_T_STR, SMP_T_SINT },
Frédéric Lécaille50290fb2019-02-27 14:34:51 +01004125
4126 /* gRPC converters. */
Frédéric Lécaillebfe61382019-03-06 14:34:36 +01004127 { "ungrpc", sample_conv_ungrpc, ARG2(1,PBUF_FNUM,STR), sample_conv_protobuf_check, SMP_T_BIN, SMP_T_BIN },
4128 { "protobuf", sample_conv_protobuf, ARG2(1,PBUF_FNUM,STR), sample_conv_protobuf_check, SMP_T_BIN, SMP_T_BIN },
Willy Tarreau97707872015-01-27 15:12:13 +01004129
Baptiste Assmanne138dda2020-10-22 15:39:03 +02004130 /* FIX converters */
4131 { "fix_is_valid", sample_conv_fix_is_valid, 0, NULL, SMP_T_BIN, SMP_T_BOOL },
4132 { "fix_tag_value", sample_conv_fix_tag_value, ARG1(1,STR), sample_conv_fix_value_check, SMP_T_BIN, SMP_T_BIN },
4133
Baptiste Assmanne279ca62020-10-27 18:10:06 +01004134 /* MQTT converters */
4135 { "mqtt_is_valid", sample_conv_mqtt_is_valid, 0, NULL, SMP_T_BIN, SMP_T_BOOL },
4136 { "mqtt_field_value", sample_conv_mqtt_field_value, ARG2(2,STR,STR), sample_conv_mqtt_field_value_check, SMP_T_BIN, SMP_T_STR },
4137
Tim Duesterhus3943e4f2020-09-11 14:25:23 +02004138 { "iif", sample_conv_iif, ARG2(2, STR, STR), NULL, SMP_T_BOOL, SMP_T_STR },
4139
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02004140 { "and", sample_conv_binary_and, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
4141 { "or", sample_conv_binary_or, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
4142 { "xor", sample_conv_binary_xor, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
4143 { "cpl", sample_conv_binary_cpl, 0, NULL, SMP_T_SINT, SMP_T_SINT },
4144 { "bool", sample_conv_arith_bool, 0, NULL, SMP_T_SINT, SMP_T_BOOL },
4145 { "not", sample_conv_arith_not, 0, NULL, SMP_T_SINT, SMP_T_BOOL },
4146 { "odd", sample_conv_arith_odd, 0, NULL, SMP_T_SINT, SMP_T_BOOL },
4147 { "even", sample_conv_arith_even, 0, NULL, SMP_T_SINT, SMP_T_BOOL },
4148 { "add", sample_conv_arith_add, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
4149 { "sub", sample_conv_arith_sub, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
4150 { "mul", sample_conv_arith_mul, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
4151 { "div", sample_conv_arith_div, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
4152 { "mod", sample_conv_arith_mod, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
4153 { "neg", sample_conv_arith_neg, 0, NULL, SMP_T_SINT, SMP_T_SINT },
Willy Tarreau97707872015-01-27 15:12:13 +01004154
Christopher Fauletea159d62020-04-01 16:21:44 +02004155 { "htonl", sample_conv_htonl, 0, NULL, SMP_T_SINT, SMP_T_BIN },
4156 { "cut_crlf", sample_conv_cut_crlf, 0, NULL, SMP_T_STR, SMP_T_STR },
Christopher Faulet51fc9d12020-04-01 17:24:41 +02004157 { "ltrim", sample_conv_ltrim, ARG1(1,STR), NULL, SMP_T_STR, SMP_T_STR },
Christopher Faulet568415a2020-04-01 17:24:47 +02004158 { "rtrim", sample_conv_rtrim, ARG1(1,STR), NULL, SMP_T_STR, SMP_T_STR },
Alex51c8ad42021-04-15 16:45:15 +02004159 { "json_query", sample_conv_json_query, ARG2(1,STR,STR), sample_check_json_query , SMP_T_STR, SMP_T_ANY },
Remi Tricot-Le Breton0a72f5e2021-10-01 15:36:57 +02004160
4161#ifdef USE_OPENSSL
4162 /* JSON Web Token converters */
4163 { "jwt_header_query", sample_conv_jwt_header_query, ARG2(0,STR,STR), sample_conv_jwt_query_check, SMP_T_BIN, SMP_T_ANY },
4164 { "jwt_payload_query", sample_conv_jwt_payload_query, ARG2(0,STR,STR), sample_conv_jwt_query_check, SMP_T_BIN, SMP_T_ANY },
Remi Tricot-Le Breton130e1422021-10-01 15:36:58 +02004165 { "jwt_verify", sample_conv_jwt_verify, ARG2(2,STR,STR), sample_conv_jwt_verify_check, SMP_T_BIN, SMP_T_SINT },
Remi Tricot-Le Breton0a72f5e2021-10-01 15:36:57 +02004166#endif
Willy Tarreau9fcb9842012-04-20 14:45:49 +02004167 { NULL, NULL, 0, 0, 0 },
Emeric Brun107ca302010-01-04 16:16:05 +01004168}};
4169
Willy Tarreau0108d902018-11-25 19:14:37 +01004170INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws);