blob: f57811e5aa64c5d7665bc964c47fe3b0c8e13345 [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
14#include <string.h>
15#include <arpa/inet.h>
Willy Tarreaudd2f85e2012-09-02 22:34:23 +020016#include <stdio.h>
Emeric Brun107ca302010-01-04 16:16:05 +010017
Willy Tarreau7e2c6472012-10-29 20:44:36 +010018#include <types/global.h>
19
Willy Tarreauc7e42382012-08-24 19:22:53 +020020#include <common/chunk.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020021#include <common/standard.h>
Willy Tarreaua4312fa2013-04-02 16:34:32 +020022#include <common/uri_auth.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020023
Willy Tarreau9fcb9842012-04-20 14:45:49 +020024#include <proto/arg.h>
Willy Tarreaua4312fa2013-04-02 16:34:32 +020025#include <proto/auth.h>
26#include <proto/log.h>
27#include <proto/proxy.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020028#include <proto/sample.h>
Willy Tarreaua4312fa2013-04-02 16:34:32 +020029#include <proto/stick_table.h>
Emeric Brun107ca302010-01-04 16:16:05 +010030
Willy Tarreau1cf8f082014-02-07 12:14:54 +010031/* sample type names */
32const char *smp_to_type[SMP_TYPES] = {
33 [SMP_T_BOOL] = "bool",
34 [SMP_T_UINT] = "uint",
35 [SMP_T_SINT] = "sint",
36 [SMP_T_ADDR] = "addr",
37 [SMP_T_IPV4] = "ipv4",
38 [SMP_T_IPV6] = "ipv6",
39 [SMP_T_STR] = "str",
40 [SMP_T_BIN] = "bin",
41 [SMP_T_CSTR] = "cstr",
42 [SMP_T_CBIN] = "cbin",
43};
44
Willy Tarreau12785782012-04-27 21:37:17 +020045/* static sample used in sample_process() when <p> is NULL */
Willy Tarreaub4a88f02012-04-23 21:35:11 +020046static struct sample temp_smp;
Emeric Brun107ca302010-01-04 16:16:05 +010047
Willy Tarreau12785782012-04-27 21:37:17 +020048/* list head of all known sample fetch keywords */
49static struct sample_fetch_kw_list sample_fetches = {
50 .list = LIST_HEAD_INIT(sample_fetches.list)
Emeric Brun107ca302010-01-04 16:16:05 +010051};
52
Willy Tarreau12785782012-04-27 21:37:17 +020053/* list head of all known sample format conversion keywords */
54static struct sample_conv_kw_list sample_convs = {
55 .list = LIST_HEAD_INIT(sample_convs.list)
Emeric Brun107ca302010-01-04 16:16:05 +010056};
57
Willy Tarreau80aca902013-01-07 15:42:20 +010058const unsigned int fetch_cap[SMP_SRC_ENTRIES] = {
59 [SMP_SRC_INTRN] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
60 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
61 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
62 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
63 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
64 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
65 SMP_VAL_FE_LOG_END),
66
67 [SMP_SRC_LISTN] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
68 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
69 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
70 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
71 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
72 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
73 SMP_VAL_FE_LOG_END),
74
75 [SMP_SRC_FTEND] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
76 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
77 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
78 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
79 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
80 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
81 SMP_VAL_FE_LOG_END),
82
83 [SMP_SRC_L4CLI] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
84 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
85 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
86 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
87 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
88 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
89 SMP_VAL_FE_LOG_END),
90
91 [SMP_SRC_L5CLI] = (SMP_VAL___________ | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
92 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
93 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
94 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
95 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
96 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
97 SMP_VAL_FE_LOG_END),
98
99 [SMP_SRC_TRACK] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
100 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
101 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
102 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
103 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
104 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
105 SMP_VAL_FE_LOG_END),
106
107 [SMP_SRC_L6REQ] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_FE_REQ_CNT |
108 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
109 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
110 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL___________ |
111 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
112 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
113 SMP_VAL___________),
114
115 [SMP_SRC_HRQHV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_FE_REQ_CNT |
116 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
117 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
118 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL___________ |
119 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
120 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
121 SMP_VAL___________),
122
123 [SMP_SRC_HRQHP] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_FE_REQ_CNT |
124 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
125 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
126 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
127 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
128 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
129 SMP_VAL_FE_LOG_END),
130
131 [SMP_SRC_HRQBO] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
132 SMP_VAL___________ | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
133 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
134 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL___________ |
135 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
136 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
137 SMP_VAL___________),
138
139 [SMP_SRC_BKEND] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
140 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
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_BE_RES_CNT |
143 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
144 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
145 SMP_VAL_FE_LOG_END),
146
147 [SMP_SRC_SERVR] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
148 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
149 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
150 SMP_VAL___________ | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
151 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
152 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
153 SMP_VAL_FE_LOG_END),
154
155 [SMP_SRC_L4SRV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
156 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
157 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
158 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT |
159 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
160 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
161 SMP_VAL_FE_LOG_END),
162
163 [SMP_SRC_L5SRV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
164 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
165 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
166 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT |
167 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
168 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
169 SMP_VAL_FE_LOG_END),
170
171 [SMP_SRC_L6RES] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
172 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
173 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
174 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT |
175 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
176 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
177 SMP_VAL___________),
178
179 [SMP_SRC_HRSHV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
180 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
181 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
182 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT |
183 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
184 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
185 SMP_VAL___________),
186
187 [SMP_SRC_HRSHP] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
188 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
189 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
190 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT |
191 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
192 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
193 SMP_VAL_FE_LOG_END),
194
195 [SMP_SRC_HRSBO] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
196 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
197 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
198 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
199 SMP_VAL___________ | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
200 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
201 SMP_VAL___________),
202
203 [SMP_SRC_RQFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
204 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
205 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
206 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
207 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
208 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
209 SMP_VAL_FE_LOG_END),
210
211 [SMP_SRC_RSFIN] = (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___________ |
215 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
216 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
217 SMP_VAL_FE_LOG_END),
218
219 [SMP_SRC_TXFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
220 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___________ |
224 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
225 SMP_VAL_FE_LOG_END),
226
227 [SMP_SRC_SSFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
228 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
229 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___________ |
233 SMP_VAL_FE_LOG_END),
234};
235
236static const char *fetch_src_names[SMP_SRC_ENTRIES] = {
237 [SMP_SRC_INTRN] = "internal state",
238 [SMP_SRC_LISTN] = "listener",
239 [SMP_SRC_FTEND] = "frontend",
240 [SMP_SRC_L4CLI] = "client address",
241 [SMP_SRC_L5CLI] = "client-side connection",
242 [SMP_SRC_TRACK] = "track counters",
243 [SMP_SRC_L6REQ] = "request buffer",
244 [SMP_SRC_HRQHV] = "HTTP request headers",
245 [SMP_SRC_HRQHP] = "HTTP request",
246 [SMP_SRC_HRQBO] = "HTTP request body",
247 [SMP_SRC_BKEND] = "backend",
248 [SMP_SRC_SERVR] = "server",
249 [SMP_SRC_L4SRV] = "server address",
250 [SMP_SRC_L5SRV] = "server-side connection",
251 [SMP_SRC_L6RES] = "response buffer",
252 [SMP_SRC_HRSHV] = "HTTP response headers",
253 [SMP_SRC_HRSHP] = "HTTP response",
254 [SMP_SRC_HRSBO] = "HTTP response body",
255 [SMP_SRC_RQFIN] = "request buffer statistics",
256 [SMP_SRC_RSFIN] = "response buffer statistics",
257 [SMP_SRC_TXFIN] = "transaction statistics",
258 [SMP_SRC_SSFIN] = "session statistics",
259};
260
Willy Tarreaubf8e2512013-03-25 14:52:41 +0100261static const char *fetch_ckp_names[SMP_CKP_ENTRIES] = {
262 [SMP_CKP_FE_CON_ACC] = "frontend tcp-request connection rule",
263 [SMP_CKP_FE_SES_ACC] = "frontend tcp-request session rule",
264 [SMP_CKP_FE_REQ_CNT] = "frontend tcp-request content rule",
265 [SMP_CKP_FE_HRQ_HDR] = "frontend http-request header rule",
266 [SMP_CKP_FE_HRQ_BDY] = "frontend http-request body rule",
267 [SMP_CKP_FE_SET_BCK] = "frontend use-backend rule",
268 [SMP_CKP_BE_REQ_CNT] = "backend tcp-request content rule",
269 [SMP_CKP_BE_HRQ_HDR] = "backend http-request header rule",
270 [SMP_CKP_BE_HRQ_BDY] = "backend http-request body rule",
271 [SMP_CKP_BE_SET_SRV] = "backend use-server, balance or stick-match rule",
272 [SMP_CKP_BE_SRV_CON] = "server source selection",
273 [SMP_CKP_BE_RES_CNT] = "backend tcp-response content rule",
274 [SMP_CKP_BE_HRS_HDR] = "backend http-response header rule",
275 [SMP_CKP_BE_HRS_BDY] = "backend http-response body rule",
276 [SMP_CKP_BE_STO_RUL] = "backend stick-store rule",
277 [SMP_CKP_FE_RES_CNT] = "frontend tcp-response content rule",
278 [SMP_CKP_FE_HRS_HDR] = "frontend http-response header rule",
279 [SMP_CKP_FE_HRS_BDY] = "frontend http-response body rule",
280 [SMP_CKP_FE_LOG_END] = "logs",
281};
282
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100283/* This function returns the type of the data returned by the sample_expr.
284 * It assumes that the <expr> and all of its converters are properly
285 * initialized.
286 */
287inline
288int smp_expr_output_type(struct sample_expr *expr)
289{
290 struct sample_conv_expr *smp_expr;
291
292 if (!LIST_ISEMPTY(&expr->conv_exprs)) {
293 smp_expr = LIST_PREV(&expr->conv_exprs, struct sample_conv_expr *, list);
294 return smp_expr->conv->out_type;
295 }
296 return expr->fetch->out_type;
297}
298
299
Willy Tarreau80aca902013-01-07 15:42:20 +0100300/* fill the trash with a comma-delimited list of source names for the <use> bit
301 * field which must be composed of a non-null set of SMP_USE_* flags. The return
302 * value is the pointer to the string in the trash buffer.
303 */
304const char *sample_src_names(unsigned int use)
305{
306 int bit;
307
308 trash.len = 0;
309 trash.str[0] = '\0';
310 for (bit = 0; bit < SMP_SRC_ENTRIES; bit++) {
311 if (!(use & ~((1 << bit) - 1)))
312 break; /* no more bits */
313
314 if (!(use & (1 << bit)))
315 continue; /* bit not set */
316
317 trash.len += snprintf(trash.str + trash.len, trash.size - trash.len, "%s%s",
318 (use & ((1 << bit) - 1)) ? "," : "",
319 fetch_src_names[bit]);
320 }
321 return trash.str;
322}
323
Willy Tarreaubf8e2512013-03-25 14:52:41 +0100324/* return a pointer to the correct sample checkpoint name, or "unknown" when
325 * the flags are invalid. Only the lowest bit is used, higher bits are ignored
326 * if set.
327 */
328const char *sample_ckp_names(unsigned int use)
329{
330 int bit;
331
332 for (bit = 0; bit < SMP_CKP_ENTRIES; bit++)
333 if (use & (1 << bit))
334 return fetch_ckp_names[bit];
335 return "unknown sample check place, please report this bug";
336}
337
Emeric Brun107ca302010-01-04 16:16:05 +0100338/*
Willy Tarreau80aca902013-01-07 15:42:20 +0100339 * Registers the sample fetch keyword list <kwl> as a list of valid keywords
340 * for next parsing sessions. The fetch keywords capabilities are also computed
341 * from their ->use field.
Emeric Brun107ca302010-01-04 16:16:05 +0100342 */
Willy Tarreau80aca902013-01-07 15:42:20 +0100343void sample_register_fetches(struct sample_fetch_kw_list *kwl)
Emeric Brun107ca302010-01-04 16:16:05 +0100344{
Willy Tarreau80aca902013-01-07 15:42:20 +0100345 struct sample_fetch *sf;
346 int bit;
347
348 for (sf = kwl->kw; sf->kw != NULL; sf++) {
349 for (bit = 0; bit < SMP_SRC_ENTRIES; bit++)
350 if (sf->use & (1 << bit))
351 sf->val |= fetch_cap[bit];
352 }
353 LIST_ADDQ(&sample_fetches.list, &kwl->list);
Emeric Brun107ca302010-01-04 16:16:05 +0100354}
355
356/*
Willy Tarreau12785782012-04-27 21:37:17 +0200357 * Registers the sample format coverstion keyword list <pckl> as a list of valid keywords for next
Emeric Brun107ca302010-01-04 16:16:05 +0100358 * parsing sessions.
359 */
Willy Tarreau12785782012-04-27 21:37:17 +0200360void sample_register_convs(struct sample_conv_kw_list *pckl)
Emeric Brun107ca302010-01-04 16:16:05 +0100361{
Willy Tarreau12785782012-04-27 21:37:17 +0200362 LIST_ADDQ(&sample_convs.list, &pckl->list);
Emeric Brun107ca302010-01-04 16:16:05 +0100363}
364
365/*
Willy Tarreau12785782012-04-27 21:37:17 +0200366 * Returns the pointer on sample fetch keyword structure identified by
Emeric Brun107ca302010-01-04 16:16:05 +0100367 * string of <len> in buffer <kw>.
368 *
369 */
Willy Tarreau12785782012-04-27 21:37:17 +0200370struct sample_fetch *find_sample_fetch(const char *kw, int len)
Emeric Brun107ca302010-01-04 16:16:05 +0100371{
372 int index;
Willy Tarreau12785782012-04-27 21:37:17 +0200373 struct sample_fetch_kw_list *kwl;
Emeric Brun107ca302010-01-04 16:16:05 +0100374
Willy Tarreau12785782012-04-27 21:37:17 +0200375 list_for_each_entry(kwl, &sample_fetches.list, list) {
Emeric Brun107ca302010-01-04 16:16:05 +0100376 for (index = 0; kwl->kw[index].kw != NULL; index++) {
377 if (strncmp(kwl->kw[index].kw, kw, len) == 0 &&
378 kwl->kw[index].kw[len] == '\0')
379 return &kwl->kw[index];
380 }
381 }
382 return NULL;
383}
384
385/*
Willy Tarreau12785782012-04-27 21:37:17 +0200386 * Returns the pointer on sample format conversion keyword structure identified by
Emeric Brun107ca302010-01-04 16:16:05 +0100387 * string of <len> in buffer <kw>.
388 *
389 */
Willy Tarreau12785782012-04-27 21:37:17 +0200390struct sample_conv *find_sample_conv(const char *kw, int len)
Emeric Brun107ca302010-01-04 16:16:05 +0100391{
392 int index;
Willy Tarreau12785782012-04-27 21:37:17 +0200393 struct sample_conv_kw_list *kwl;
Emeric Brun107ca302010-01-04 16:16:05 +0100394
Willy Tarreau12785782012-04-27 21:37:17 +0200395 list_for_each_entry(kwl, &sample_convs.list, list) {
Emeric Brun107ca302010-01-04 16:16:05 +0100396 for (index = 0; kwl->kw[index].kw != NULL; index++) {
397 if (strncmp(kwl->kw[index].kw, kw, len) == 0 &&
398 kwl->kw[index].kw[len] == '\0')
399 return &kwl->kw[index];
400 }
401 }
402 return NULL;
403}
404
Emeric Brun107ca302010-01-04 16:16:05 +0100405/******************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +0200406/* Sample casts functions */
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +0200407/* Note: these functions do *NOT* set the output type on the */
408/* sample, the caller is responsible for doing this on return. */
Emeric Brun107ca302010-01-04 16:16:05 +0100409/******************************************************************/
410
Willy Tarreau342acb42012-04-23 22:03:39 +0200411static int c_ip2int(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100412{
Willy Tarreau342acb42012-04-23 22:03:39 +0200413 smp->data.uint = ntohl(smp->data.ipv4.s_addr);
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100414 smp->type = SMP_T_UINT;
Emeric Brun107ca302010-01-04 16:16:05 +0100415 return 1;
416}
417
Willy Tarreau342acb42012-04-23 22:03:39 +0200418static int c_ip2str(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100419{
Willy Tarreau47ca5452012-12-23 20:22:19 +0100420 struct chunk *trash = get_trash_chunk();
Emeric Brun107ca302010-01-04 16:16:05 +0100421
Willy Tarreau342acb42012-04-23 22:03:39 +0200422 if (!inet_ntop(AF_INET, (void *)&smp->data.ipv4, trash->str, trash->size))
Emeric Brun107ca302010-01-04 16:16:05 +0100423 return 0;
424
425 trash->len = strlen(trash->str);
Willy Tarreau342acb42012-04-23 22:03:39 +0200426 smp->data.str = *trash;
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100427 smp->type = SMP_T_STR;
Emeric Brun107ca302010-01-04 16:16:05 +0100428
429 return 1;
430}
431
Willy Tarreau342acb42012-04-23 22:03:39 +0200432static int c_ip2ipv6(struct sample *smp)
David du Colombier4f92d322011-03-24 11:09:31 +0100433{
Willy Tarreau342acb42012-04-23 22:03:39 +0200434 v4tov6(&smp->data.ipv6, &smp->data.ipv4);
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100435 smp->type = SMP_T_IPV6;
David du Colombier4f92d322011-03-24 11:09:31 +0100436 return 1;
437}
438
Willy Tarreau342acb42012-04-23 22:03:39 +0200439static int c_ipv62str(struct sample *smp)
David du Colombier4f92d322011-03-24 11:09:31 +0100440{
Willy Tarreau47ca5452012-12-23 20:22:19 +0100441 struct chunk *trash = get_trash_chunk();
David du Colombier4f92d322011-03-24 11:09:31 +0100442
Willy Tarreau342acb42012-04-23 22:03:39 +0200443 if (!inet_ntop(AF_INET6, (void *)&smp->data.ipv6, trash->str, trash->size))
David du Colombier4f92d322011-03-24 11:09:31 +0100444 return 0;
445
446 trash->len = strlen(trash->str);
Willy Tarreau342acb42012-04-23 22:03:39 +0200447 smp->data.str = *trash;
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100448 smp->type = SMP_T_STR;
David du Colombier4f92d322011-03-24 11:09:31 +0100449 return 1;
450}
451
452/*
Willy Tarreau342acb42012-04-23 22:03:39 +0200453static int c_ipv62ip(struct sample *smp)
David du Colombier4f92d322011-03-24 11:09:31 +0100454{
Willy Tarreau342acb42012-04-23 22:03:39 +0200455 return v6tov4(&smp->data.ipv4, &smp->data.ipv6);
David du Colombier4f92d322011-03-24 11:09:31 +0100456}
457*/
458
Willy Tarreau342acb42012-04-23 22:03:39 +0200459static int c_int2ip(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100460{
Willy Tarreau342acb42012-04-23 22:03:39 +0200461 smp->data.ipv4.s_addr = htonl(smp->data.uint);
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100462 smp->type = SMP_T_IPV4;
Emeric Brun107ca302010-01-04 16:16:05 +0100463 return 1;
464}
465
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100466static int c_str2addr(struct sample *smp)
467{
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100468 if (!buf2ip(smp->data.str.str, smp->data.str.len, &smp->data.ipv4)) {
Thierry FOURNIERfd139902013-12-11 12:38:57 +0100469 if (!buf2ip6(smp->data.str.str, smp->data.str.len, &smp->data.ipv6))
470 return 0;
471 smp->type = SMP_T_IPV6;
472 return 1;
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100473 }
474 smp->type = SMP_T_IPV4;
475 return 1;
476}
477
Willy Tarreau342acb42012-04-23 22:03:39 +0200478static int c_str2ip(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100479{
Willy Tarreau342acb42012-04-23 22:03:39 +0200480 if (!buf2ip(smp->data.str.str, smp->data.str.len, &smp->data.ipv4))
Emeric Brun107ca302010-01-04 16:16:05 +0100481 return 0;
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100482 smp->type = SMP_T_IPV4;
Emeric Brun107ca302010-01-04 16:16:05 +0100483 return 1;
484}
485
Willy Tarreau342acb42012-04-23 22:03:39 +0200486static int c_str2ipv6(struct sample *smp)
David du Colombier4f92d322011-03-24 11:09:31 +0100487{
Thierry FOURNIERfd139902013-12-11 12:38:57 +0100488 if (!buf2ip6(smp->data.str.str, smp->data.str.len, &smp->data.ipv6))
489 return 0;
490 smp->type = SMP_T_IPV6;
491 return 1;
David du Colombier4f92d322011-03-24 11:09:31 +0100492}
493
Thierry FOURNIERe87cac12014-03-12 15:07:59 +0100494/* The sample is always copied into a new one so that smp->size is always
495 * valid. The NULL char always enforces the end of string if it is met.
496 */
Emeric Brun8ac33d92012-10-17 13:36:06 +0200497static int c_bin2str(struct sample *smp)
498{
Willy Tarreau47ca5452012-12-23 20:22:19 +0100499 struct chunk *trash = get_trash_chunk();
Emeric Brun8ac33d92012-10-17 13:36:06 +0200500 unsigned char c;
501 int ptr = 0;
502
Thierry FOURNIERe87cac12014-03-12 15:07:59 +0100503 while (ptr < smp->data.str.len) {
504 c = smp->data.str.str[ptr];
505 if (!c)
506 break;
507 trash->str[ptr] = c;
508 ptr++;
Emeric Brun8ac33d92012-10-17 13:36:06 +0200509 }
Thierry FOURNIERe87cac12014-03-12 15:07:59 +0100510 trash->len = ptr;
511 trash->str[ptr] = 0;
Emeric Brun8ac33d92012-10-17 13:36:06 +0200512 smp->data.str = *trash;
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100513 smp->type = SMP_T_STR;
Emeric Brun8ac33d92012-10-17 13:36:06 +0200514 return 1;
515}
516
Willy Tarreau342acb42012-04-23 22:03:39 +0200517static int c_int2str(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100518{
Willy Tarreau47ca5452012-12-23 20:22:19 +0100519 struct chunk *trash = get_trash_chunk();
Emeric Brun107ca302010-01-04 16:16:05 +0100520 char *pos;
521
Willy Tarreau342acb42012-04-23 22:03:39 +0200522 pos = ultoa_r(smp->data.uint, trash->str, trash->size);
Emeric Brun107ca302010-01-04 16:16:05 +0100523
524 if (!pos)
525 return 0;
526
Emeric Brun485479d2010-09-23 18:02:19 +0200527 trash->size = trash->size - (pos - trash->str);
Emeric Brun107ca302010-01-04 16:16:05 +0100528 trash->str = pos;
529 trash->len = strlen(pos);
Willy Tarreau342acb42012-04-23 22:03:39 +0200530 smp->data.str = *trash;
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100531 smp->type = SMP_T_STR;
Emeric Brun107ca302010-01-04 16:16:05 +0100532 return 1;
533}
534
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100535static inline void _c_datadup(struct sample *smp)
Emeric Brun485479d2010-09-23 18:02:19 +0200536{
Willy Tarreau47ca5452012-12-23 20:22:19 +0100537 struct chunk *trash = get_trash_chunk();
Emeric Brun485479d2010-09-23 18:02:19 +0200538
Willy Tarreau342acb42012-04-23 22:03:39 +0200539 trash->len = smp->data.str.len < trash->size ? smp->data.str.len : trash->size;
540 memcpy(trash->str, smp->data.str.str, trash->len);
541 smp->data.str = *trash;
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100542}
543
544static int c_datadup(struct sample *smp)
545{
546 _c_datadup(smp);
547 if (smp->type == SMP_T_CSTR)
548 smp->type = SMP_T_STR;
549 else
550 smp->type = SMP_T_BIN;
551 return 1;
552}
553
554static int c_bindup(struct sample *smp)
555{
556 _c_datadup(smp);
557 smp->type = SMP_T_BIN;
Emeric Brun485479d2010-09-23 18:02:19 +0200558 return 1;
559}
560
561
Willy Tarreau342acb42012-04-23 22:03:39 +0200562static int c_none(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100563{
564 return 1;
565}
566
Willy Tarreau342acb42012-04-23 22:03:39 +0200567static int c_str2int(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100568{
569 int i;
570 uint32_t ret = 0;
571
Thierry FOURNIER60bb0202014-01-27 18:20:48 +0100572 if (smp->data.str.len == 0)
573 return 0;
574
Willy Tarreau342acb42012-04-23 22:03:39 +0200575 for (i = 0; i < smp->data.str.len; i++) {
576 uint32_t val = smp->data.str.str[i] - '0';
Emeric Brun107ca302010-01-04 16:16:05 +0100577
Thierry FOURNIER60bb0202014-01-27 18:20:48 +0100578 if (val > 9) {
579 if (i == 0)
580 return 0;
Emeric Brun107ca302010-01-04 16:16:05 +0100581 break;
Thierry FOURNIER60bb0202014-01-27 18:20:48 +0100582 }
Emeric Brun107ca302010-01-04 16:16:05 +0100583
584 ret = ret * 10 + val;
585 }
586
Willy Tarreau342acb42012-04-23 22:03:39 +0200587 smp->data.uint = ret;
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100588 smp->type = SMP_T_UINT;
Emeric Brun107ca302010-01-04 16:16:05 +0100589 return 1;
590}
591
592/*****************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +0200593/* Sample casts matrix: */
594/* sample_casts[from type][to type] */
595/* NULL pointer used for impossible sample casts */
Emeric Brun107ca302010-01-04 16:16:05 +0100596/*****************************************************************/
Emeric Brun107ca302010-01-04 16:16:05 +0100597
Thierry FOURNIER8af6ff12013-11-21 10:53:12 +0100598sample_cast_fct sample_casts[SMP_TYPES][SMP_TYPES] = {
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100599/* to: BOOL UINT SINT ADDR IPV4 IPV6 STR BIN CSTR CBIN */
600/* from: BOOL */ { c_none, c_none, c_none, NULL, NULL, NULL, c_int2str, NULL, c_int2str, NULL, },
601/* UINT */ { c_none, c_none, c_none, c_int2ip, c_int2ip, NULL, c_int2str, NULL, c_int2str, NULL, },
602/* SINT */ { c_none, c_none, c_none, c_int2ip, c_int2ip, NULL, c_int2str, NULL, c_int2str, NULL, },
603/* ADDR */ { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, },
604/* IPV4 */ { NULL, c_ip2int, c_ip2int, c_none, c_none, c_ip2ipv6, c_ip2str, NULL, c_ip2str, NULL, },
605/* IPV6 */ { NULL, NULL, NULL, c_none, NULL, c_none, c_ipv62str, NULL, c_ipv62str, NULL, },
606/* STR */ { c_str2int, c_str2int, c_str2int, c_str2addr, c_str2ip, c_str2ipv6, c_none, c_none, c_none, c_none, },
607/* BIN */ { NULL, NULL, NULL, NULL, NULL, NULL, c_bin2str, c_none, c_bin2str, c_none, },
608/* CSTR */ { c_str2int, c_str2int, c_str2int, c_str2addr, c_str2ip, c_str2ipv6, c_datadup, c_bindup, c_none, c_none, },
609/* CBIN */ { NULL, NULL, NULL, NULL, NULL, NULL, c_bin2str, c_datadup, c_bin2str, c_none, },
Willy Tarreauf0b38bf2010-06-06 13:22:23 +0200610};
Emeric Brun107ca302010-01-04 16:16:05 +0100611
Emeric Brun107ca302010-01-04 16:16:05 +0100612/*
Willy Tarreau12785782012-04-27 21:37:17 +0200613 * Parse a sample expression configuration:
Emeric Brun107ca302010-01-04 16:16:05 +0100614 * fetch keyword followed by format conversion keywords.
Willy Tarreau12785782012-04-27 21:37:17 +0200615 * Returns a pointer on allocated sample expression structure.
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200616 * The caller must have set al->ctx.
Emeric Brun107ca302010-01-04 16:16:05 +0100617 */
Willy Tarreau975c1782013-12-12 23:16:54 +0100618struct sample_expr *sample_parse_expr(char **str, int *idx, char **err_msg, struct arg_list *al)
Emeric Brun107ca302010-01-04 16:16:05 +0100619{
Willy Tarreau833cc792013-07-24 15:34:19 +0200620 const char *begw; /* beginning of word */
621 const char *endw; /* end of word */
622 const char *endt; /* end of term */
Willy Tarreau12785782012-04-27 21:37:17 +0200623 struct sample_expr *expr;
624 struct sample_fetch *fetch;
625 struct sample_conv *conv;
Emeric Brun107ca302010-01-04 16:16:05 +0100626 unsigned long prev_type;
Willy Tarreau833cc792013-07-24 15:34:19 +0200627 char *fkw = NULL;
628 char *ckw = NULL;
Willy Tarreau689a1df2013-12-13 00:40:11 +0100629 int err_arg;
Emeric Brun107ca302010-01-04 16:16:05 +0100630
Willy Tarreau833cc792013-07-24 15:34:19 +0200631 begw = str[*idx];
632 for (endw = begw; *endw && *endw != '(' && *endw != ','; endw++);
633
634 if (endw == begw) {
Willy Tarreau975c1782013-12-12 23:16:54 +0100635 memprintf(err_msg, "missing fetch method");
Emeric Brun107ca302010-01-04 16:16:05 +0100636 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200637 }
Emeric Brun107ca302010-01-04 16:16:05 +0100638
Willy Tarreau833cc792013-07-24 15:34:19 +0200639 /* keep a copy of the current fetch keyword for error reporting */
640 fkw = my_strndup(begw, endw - begw);
Emeric Brun107ca302010-01-04 16:16:05 +0100641
Willy Tarreau833cc792013-07-24 15:34:19 +0200642 fetch = find_sample_fetch(begw, endw - begw);
643 if (!fetch) {
Willy Tarreau975c1782013-12-12 23:16:54 +0100644 memprintf(err_msg, "unknown fetch method '%s'", fkw);
Emeric Brun107ca302010-01-04 16:16:05 +0100645 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200646 }
Emeric Brun107ca302010-01-04 16:16:05 +0100647
Willy Tarreau833cc792013-07-24 15:34:19 +0200648 endt = endw;
649 if (*endt == '(') {
Willy Tarreau689a1df2013-12-13 00:40:11 +0100650 /* look for the end of this term and skip the opening parenthesis */
651 endt = ++endw;
Willy Tarreau833cc792013-07-24 15:34:19 +0200652 while (*endt && *endt != ')')
653 endt++;
654 if (*endt != ')') {
Willy Tarreau975c1782013-12-12 23:16:54 +0100655 memprintf(err_msg, "missing closing ')' after arguments to fetch keyword '%s'", fkw);
Willy Tarreau833cc792013-07-24 15:34:19 +0200656 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200657 }
Emeric Brun485479d2010-09-23 18:02:19 +0200658 }
Emeric Brun107ca302010-01-04 16:16:05 +0100659
Willy Tarreau833cc792013-07-24 15:34:19 +0200660 /* At this point, we have :
661 * - begw : beginning of the keyword
Willy Tarreau689a1df2013-12-13 00:40:11 +0100662 * - endw : end of the keyword, first character not part of keyword
663 * nor the opening parenthesis (so first character of args
664 * if present).
Willy Tarreau833cc792013-07-24 15:34:19 +0200665 * - endt : end of the term (=endw or last parenthesis if args are present)
666 */
667
668 if (fetch->out_type >= SMP_TYPES) {
Willy Tarreau975c1782013-12-12 23:16:54 +0100669 memprintf(err_msg, "returns type of fetch method '%s' is unknown", fkw);
Emeric Brun107ca302010-01-04 16:16:05 +0100670 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200671 }
Emeric Brun107ca302010-01-04 16:16:05 +0100672 prev_type = fetch->out_type;
Willy Tarreau833cc792013-07-24 15:34:19 +0200673
Willy Tarreau12785782012-04-27 21:37:17 +0200674 expr = calloc(1, sizeof(struct sample_expr));
Emeric Brun485479d2010-09-23 18:02:19 +0200675 if (!expr)
676 goto out_error;
Emeric Brun107ca302010-01-04 16:16:05 +0100677
678 LIST_INIT(&(expr->conv_exprs));
679 expr->fetch = fetch;
Willy Tarreau2e845be2012-10-19 19:49:09 +0200680 expr->arg_p = empty_arg_list;
Emeric Brun107ca302010-01-04 16:16:05 +0100681
Willy Tarreau689a1df2013-12-13 00:40:11 +0100682 /* Note that we call the argument parser even with an empty string,
683 * this allows it to automatically create entries for mandatory
684 * implicit arguments (eg: local proxy name).
685 */
686 al->kw = expr->fetch->kw;
687 al->conv = NULL;
688 if (make_arg_list(endw, endt - endw, fetch->arg_mask, &expr->arg_p, err_msg, NULL, &err_arg, al) < 0) {
689 memprintf(err_msg, "fetch method '%s' : %s", fkw, *err_msg);
690 goto out_error;
691 }
Willy Tarreau2e845be2012-10-19 19:49:09 +0200692
Willy Tarreau689a1df2013-12-13 00:40:11 +0100693 if (!expr->arg_p) {
694 expr->arg_p = empty_arg_list;
Emeric Brun485479d2010-09-23 18:02:19 +0200695 }
Willy Tarreau689a1df2013-12-13 00:40:11 +0100696 else if (fetch->val_args && !fetch->val_args(expr->arg_p, err_msg)) {
697 memprintf(err_msg, "invalid args in fetch method '%s' : %s", fkw, *err_msg);
Emeric Brun485479d2010-09-23 18:02:19 +0200698 goto out_error;
Emeric Brun107ca302010-01-04 16:16:05 +0100699 }
700
Willy Tarreau833cc792013-07-24 15:34:19 +0200701 /* Now process the converters if any. We have two supported syntaxes
702 * for the converters, which can be combined :
703 * - comma-delimited list of converters just after the keyword and args ;
704 * - one converter per keyword
705 * The combination allows to have each keyword being a comma-delimited
706 * series of converters.
707 *
708 * We want to process the former first, then the latter. For this we start
709 * from the beginning of the supposed place in the exiting conv chain, which
710 * starts at the last comma (endt).
711 */
712
713 while (1) {
Willy Tarreau12785782012-04-27 21:37:17 +0200714 struct sample_conv_expr *conv_expr;
Emeric Brun107ca302010-01-04 16:16:05 +0100715
Willy Tarreau833cc792013-07-24 15:34:19 +0200716 if (*endt == ')') /* skip last closing parenthesis */
717 endt++;
Emeric Brun107ca302010-01-04 16:16:05 +0100718
Willy Tarreau833cc792013-07-24 15:34:19 +0200719 if (*endt && *endt != ',') {
720 if (ckw)
Willy Tarreau975c1782013-12-12 23:16:54 +0100721 memprintf(err_msg, "missing comma after conv keyword '%s'", ckw);
Willy Tarreau833cc792013-07-24 15:34:19 +0200722 else
Willy Tarreau975c1782013-12-12 23:16:54 +0100723 memprintf(err_msg, "missing comma after fetch keyword '%s'", fkw);
Emeric Brun107ca302010-01-04 16:16:05 +0100724 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200725 }
Emeric Brun107ca302010-01-04 16:16:05 +0100726
Willy Tarreau833cc792013-07-24 15:34:19 +0200727 while (*endt == ',') /* then trailing commas */
728 endt++;
729
730 begw = endt; /* start of conv keyword */
731
732 if (!*begw) {
733 /* none ? skip to next string */
734 (*idx)++;
735 begw = str[*idx];
736 if (!begw || !*begw)
737 break;
738 }
739
740 for (endw = begw; *endw && *endw != '(' && *endw != ','; endw++);
741
742 free(ckw);
743 ckw = my_strndup(begw, endw - begw);
744
745 conv = find_sample_conv(begw, endw - begw);
746 if (!conv) {
747 /* we found an isolated keyword that we don't know, it's not ours */
748 if (begw == str[*idx])
749 break;
Willy Tarreau975c1782013-12-12 23:16:54 +0100750 memprintf(err_msg, "unknown conv method '%s'", ckw);
Willy Tarreau833cc792013-07-24 15:34:19 +0200751 goto out_error;
752 }
Emeric Brun107ca302010-01-04 16:16:05 +0100753
Willy Tarreau833cc792013-07-24 15:34:19 +0200754 endt = endw;
755 if (*endt == '(') {
756 /* look for the end of this term */
757 while (*endt && *endt != ')')
758 endt++;
759 if (*endt != ')') {
Willy Tarreau975c1782013-12-12 23:16:54 +0100760 memprintf(err_msg, "syntax error: missing ')' after conv keyword '%s'", ckw);
Willy Tarreau833cc792013-07-24 15:34:19 +0200761 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200762 }
Willy Tarreau833cc792013-07-24 15:34:19 +0200763 }
764
765 if (conv->in_type >= SMP_TYPES || conv->out_type >= SMP_TYPES) {
Willy Tarreau975c1782013-12-12 23:16:54 +0100766 memprintf(err_msg, "returns type of conv method '%s' is unknown", ckw);
Emeric Brun107ca302010-01-04 16:16:05 +0100767 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200768 }
Emeric Brun107ca302010-01-04 16:16:05 +0100769
770 /* If impossible type conversion */
Willy Tarreau12785782012-04-27 21:37:17 +0200771 if (!sample_casts[prev_type][conv->in_type]) {
Willy Tarreau975c1782013-12-12 23:16:54 +0100772 memprintf(err_msg, "conv method '%s' cannot be applied", ckw);
Emeric Brun107ca302010-01-04 16:16:05 +0100773 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200774 }
Emeric Brun107ca302010-01-04 16:16:05 +0100775
776 prev_type = conv->out_type;
Willy Tarreau12785782012-04-27 21:37:17 +0200777 conv_expr = calloc(1, sizeof(struct sample_conv_expr));
Emeric Brun485479d2010-09-23 18:02:19 +0200778 if (!conv_expr)
779 goto out_error;
Emeric Brun107ca302010-01-04 16:16:05 +0100780
781 LIST_ADDQ(&(expr->conv_exprs), &(conv_expr->list));
782 conv_expr->conv = conv;
783
Willy Tarreau833cc792013-07-24 15:34:19 +0200784 if (endt != endw) {
Willy Tarreaub27c0d32012-04-20 16:04:47 +0200785 int err_arg;
Willy Tarreau21d68a62012-04-20 15:52:36 +0200786
Willy Tarreau9fcb9842012-04-20 14:45:49 +0200787 if (!conv->arg_mask) {
Willy Tarreau975c1782013-12-12 23:16:54 +0100788 memprintf(err_msg, "conv method '%s' does not support any args", ckw);
Emeric Brun485479d2010-09-23 18:02:19 +0200789 goto out_error;
790 }
Willy Tarreau9e92d322010-01-26 17:58:06 +0100791
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200792 al->kw = expr->fetch->kw;
793 al->conv = conv_expr->conv->kw;
Willy Tarreau975c1782013-12-12 23:16:54 +0100794 if (make_arg_list(endw + 1, endt - endw - 1, conv->arg_mask, &conv_expr->arg_p, err_msg, NULL, &err_arg, al) < 0) {
795 memprintf(err_msg, "invalid arg %d in conv method '%s' : %s", err_arg+1, ckw, *err_msg);
Willy Tarreau21d68a62012-04-20 15:52:36 +0200796 goto out_error;
797 }
798
Willy Tarreau2e845be2012-10-19 19:49:09 +0200799 if (!conv_expr->arg_p)
800 conv_expr->arg_p = empty_arg_list;
801
Willy Tarreau975c1782013-12-12 23:16:54 +0100802 if (conv->val_args && !conv->val_args(conv_expr->arg_p, conv, err_msg)) {
803 memprintf(err_msg, "invalid args in conv method '%s' : %s", ckw, *err_msg);
Emeric Brun485479d2010-09-23 18:02:19 +0200804 goto out_error;
805 }
806 }
Willy Tarreau833cc792013-07-24 15:34:19 +0200807 else if (ARGM(conv->arg_mask)) {
Willy Tarreau975c1782013-12-12 23:16:54 +0100808 memprintf(err_msg, "missing args for conv method '%s'", ckw);
Emeric Brun485479d2010-09-23 18:02:19 +0200809 goto out_error;
Emeric Brun107ca302010-01-04 16:16:05 +0100810 }
811 }
Emeric Brun485479d2010-09-23 18:02:19 +0200812
Willy Tarreau833cc792013-07-24 15:34:19 +0200813 out:
814 free(fkw);
815 free(ckw);
Emeric Brun107ca302010-01-04 16:16:05 +0100816 return expr;
817
818out_error:
Willy Tarreau12785782012-04-27 21:37:17 +0200819 /* TODO: prune_sample_expr(expr); */
Willy Tarreau833cc792013-07-24 15:34:19 +0200820 expr = NULL;
821 goto out;
Emeric Brun107ca302010-01-04 16:16:05 +0100822}
823
824/*
Willy Tarreau12785782012-04-27 21:37:17 +0200825 * Process a fetch + format conversion of defined by the sample expression <expr>
Willy Tarreau32a6f2e2012-04-25 10:13:36 +0200826 * on request or response considering the <opt> parameter.
Willy Tarreau12785782012-04-27 21:37:17 +0200827 * Returns a pointer on a typed sample structure containing the result or NULL if
828 * sample is not found or when format conversion failed.
Emeric Brun107ca302010-01-04 16:16:05 +0100829 * If <p> is not null, function returns results in structure pointed by <p>.
Willy Tarreau12785782012-04-27 21:37:17 +0200830 * If <p> is null, functions returns a pointer on a static sample structure.
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +0200831 *
832 * Note: the fetch functions are required to properly set the return type. The
833 * conversion functions must do so too. However the cast functions do not need
834 * to since they're made to cast mutiple types according to what is required.
Emeric Brun107ca302010-01-04 16:16:05 +0100835 */
Willy Tarreau12785782012-04-27 21:37:17 +0200836struct sample *sample_process(struct proxy *px, struct session *l4, void *l7,
837 unsigned int opt,
838 struct sample_expr *expr, struct sample *p)
Emeric Brun107ca302010-01-04 16:16:05 +0100839{
Willy Tarreau12785782012-04-27 21:37:17 +0200840 struct sample_conv_expr *conv_expr;
Emeric Brun107ca302010-01-04 16:16:05 +0100841
Willy Tarreau18387e22013-07-25 12:02:38 +0200842 if (p == NULL) {
Willy Tarreaub4a88f02012-04-23 21:35:11 +0200843 p = &temp_smp;
Willy Tarreau18387e22013-07-25 12:02:38 +0200844 p->flags = 0;
845 }
Emeric Brun107ca302010-01-04 16:16:05 +0100846
Willy Tarreauef38c392013-07-22 16:29:32 +0200847 if (!expr->fetch->process(px, l4, l7, opt, expr->arg_p, p, expr->fetch->kw))
Emeric Brun107ca302010-01-04 16:16:05 +0100848 return NULL;
849
Emeric Brun107ca302010-01-04 16:16:05 +0100850 list_for_each_entry(conv_expr, &expr->conv_exprs, list) {
Willy Tarreau12e50112012-04-25 17:21:49 +0200851 /* we want to ensure that p->type can be casted into
852 * conv_expr->conv->in_type. We have 3 possibilities :
853 * - NULL => not castable.
854 * - c_none => nothing to do (let's optimize it)
855 * - other => apply cast and prepare to fail
856 */
Willy Tarreau12785782012-04-27 21:37:17 +0200857 if (!sample_casts[p->type][conv_expr->conv->in_type])
Willy Tarreau12e50112012-04-25 17:21:49 +0200858 return NULL;
859
Willy Tarreau12785782012-04-27 21:37:17 +0200860 if (sample_casts[p->type][conv_expr->conv->in_type] != c_none &&
861 !sample_casts[p->type][conv_expr->conv->in_type](p))
Emeric Brun107ca302010-01-04 16:16:05 +0100862 return NULL;
863
Willy Tarreau12e50112012-04-25 17:21:49 +0200864 /* OK cast succeeded */
865
Willy Tarreau342acb42012-04-23 22:03:39 +0200866 if (!conv_expr->conv->process(conv_expr->arg_p, p))
Emeric Brun107ca302010-01-04 16:16:05 +0100867 return NULL;
Emeric Brun107ca302010-01-04 16:16:05 +0100868 }
869 return p;
870}
871
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +0100872/*
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200873 * Resolve all remaining arguments in proxy <p>. Returns the number of
874 * errors or 0 if everything is fine.
875 */
876int smp_resolve_args(struct proxy *p)
877{
878 struct arg_list *cur, *bak;
879 const char *ctx, *where;
880 const char *conv_ctx, *conv_pre, *conv_pos;
881 struct userlist *ul;
882 struct arg *arg;
883 int cfgerr = 0;
884
885 list_for_each_entry_safe(cur, bak, &p->conf.args.list, list) {
886 struct proxy *px;
887 struct server *srv;
888 char *pname, *sname;
889
890 arg = cur->arg;
891
892 /* prepare output messages */
893 conv_pre = conv_pos = conv_ctx = "";
894 if (cur->conv) {
895 conv_ctx = cur->conv;
896 conv_pre = "conversion keyword '";
897 conv_pos = "' for ";
898 }
899
900 where = "in";
901 ctx = "sample fetch keyword";
902 switch (cur->ctx) {
903 case ARGC_STK:where = "in stick rule in"; break;
904 case ARGC_TRK: where = "in tracking rule in"; break;
905 case ARGC_LOG: where = "in log-format string in"; break;
Thierry FOURNIER1c0054f2013-11-20 15:09:52 +0100906 case ARGC_HRQ: where = "in http-request header format string in"; break;
907 case ARGC_HRS: where = "in http-response header format string in"; break;
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200908 case ARGC_UIF: where = "in unique-id-format string in"; break;
Thierry FOURNIERd18cd0f2013-11-29 12:15:45 +0100909 case ARGC_RDR: where = "in redirect format string in"; break;
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200910 case ARGC_ACL: ctx = "ACL keyword"; break;
911 }
912
913 /* set a few default settings */
914 px = p;
915 pname = p->id;
916
917 switch (arg->type) {
918 case ARGT_SRV:
919 if (!arg->data.str.len) {
920 Alert("parsing [%s:%d] : missing server name in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
921 cur->file, cur->line,
922 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
923 cfgerr++;
924 continue;
925 }
926
927 /* we support two formats : "bck/srv" and "srv" */
928 sname = strrchr(arg->data.str.str, '/');
929
930 if (sname) {
931 *sname++ = '\0';
932 pname = arg->data.str.str;
933
934 px = findproxy(pname, PR_CAP_BE);
935 if (!px) {
936 Alert("parsing [%s:%d] : unable to find proxy '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
937 cur->file, cur->line, pname,
938 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
939 cfgerr++;
940 break;
941 }
942 }
943 else
944 sname = arg->data.str.str;
945
946 srv = findserver(px, sname);
947 if (!srv) {
948 Alert("parsing [%s:%d] : unable to find server '%s' in proxy '%s', referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
949 cur->file, cur->line, sname, pname,
950 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
951 cfgerr++;
952 break;
953 }
954
955 free(arg->data.str.str);
956 arg->data.str.str = NULL;
957 arg->unresolved = 0;
958 arg->data.srv = srv;
959 break;
960
961 case ARGT_FE:
962 if (arg->data.str.len) {
963 pname = arg->data.str.str;
964 px = findproxy(pname, PR_CAP_FE);
965 }
966
967 if (!px) {
968 Alert("parsing [%s:%d] : unable to find frontend '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
969 cur->file, cur->line, pname,
970 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
971 cfgerr++;
972 break;
973 }
974
975 if (!(px->cap & PR_CAP_FE)) {
976 Alert("parsing [%s:%d] : proxy '%s', referenced in arg %d of %s%s%s%s '%s' %s proxy '%s', has not frontend capability.\n",
977 cur->file, cur->line, pname,
978 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
979 cfgerr++;
980 break;
981 }
982
983 free(arg->data.str.str);
984 arg->data.str.str = NULL;
985 arg->unresolved = 0;
986 arg->data.prx = px;
987 break;
988
989 case ARGT_BE:
990 if (arg->data.str.len) {
991 pname = arg->data.str.str;
992 px = findproxy(pname, PR_CAP_BE);
993 }
994
995 if (!px) {
996 Alert("parsing [%s:%d] : unable to find backend '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
997 cur->file, cur->line, pname,
998 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
999 cfgerr++;
1000 break;
1001 }
1002
1003 if (!(px->cap & PR_CAP_BE)) {
1004 Alert("parsing [%s:%d] : proxy '%s', referenced in arg %d of %s%s%s%s '%s' %s proxy '%s', has not backend capability.\n",
1005 cur->file, cur->line, pname,
1006 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
1007 cfgerr++;
1008 break;
1009 }
1010
1011 free(arg->data.str.str);
1012 arg->data.str.str = NULL;
1013 arg->unresolved = 0;
1014 arg->data.prx = px;
1015 break;
1016
1017 case ARGT_TAB:
1018 if (arg->data.str.len) {
1019 pname = arg->data.str.str;
1020 px = find_stktable(pname);
1021 }
1022
1023 if (!px) {
1024 Alert("parsing [%s:%d] : unable to find table '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1025 cur->file, cur->line, pname,
1026 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
1027 cfgerr++;
1028 break;
1029 }
1030
1031 if (!px->table.size) {
1032 Alert("parsing [%s:%d] : no table in proxy '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1033 cur->file, cur->line, pname,
1034 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
1035 cfgerr++;
1036 break;
1037 }
1038
1039 free(arg->data.str.str);
1040 arg->data.str.str = NULL;
1041 arg->unresolved = 0;
1042 arg->data.prx = px;
1043 break;
1044
1045 case ARGT_USR:
1046 if (!arg->data.str.len) {
1047 Alert("parsing [%s:%d] : missing userlist name in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1048 cur->file, cur->line,
1049 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
1050 cfgerr++;
1051 break;
1052 }
1053
1054 if (p->uri_auth && p->uri_auth->userlist &&
1055 !strcmp(p->uri_auth->userlist->name, arg->data.str.str))
1056 ul = p->uri_auth->userlist;
1057 else
1058 ul = auth_find_userlist(arg->data.str.str);
1059
1060 if (!ul) {
1061 Alert("parsing [%s:%d] : unable to find userlist '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1062 cur->file, cur->line, arg->data.str.str,
1063 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
1064 cfgerr++;
1065 break;
1066 }
1067
1068 free(arg->data.str.str);
1069 arg->data.str.str = NULL;
1070 arg->unresolved = 0;
1071 arg->data.usr = ul;
1072 break;
1073 }
1074
1075 LIST_DEL(&cur->list);
1076 free(cur);
1077 } /* end of args processing */
1078
1079 return cfgerr;
1080}
1081
1082/*
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001083 * Process a fetch + format conversion as defined by the sample expression <expr>
1084 * on request or response considering the <opt> parameter. The output is always of
1085 * type string. Returns either NULL if no sample could be extracted, or a pointer
1086 * to the converted result stored in static temp_smp in format string.
1087 */
1088struct sample *sample_fetch_string(struct proxy *px, struct session *l4, void *l7,
1089 unsigned int opt, struct sample_expr *expr)
1090{
1091 struct sample *smp;
1092
1093 smp = sample_process(px, l4, l7, opt, expr, NULL);
1094 if (!smp)
1095 return NULL;
1096
1097 if (!sample_casts[smp->type][SMP_T_CSTR])
1098 return NULL;
1099
1100 if (!sample_casts[smp->type][SMP_T_CSTR](smp))
1101 return NULL;
1102
1103 smp->type = SMP_T_CSTR;
1104 return smp;
1105}
1106
Emeric Brun107ca302010-01-04 16:16:05 +01001107/*****************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +02001108/* Sample format convert functions */
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001109/* These functions set the data type on return. */
Emeric Brun107ca302010-01-04 16:16:05 +01001110/*****************************************************************/
1111
Thierry FOURNIER2f49d6d2014-03-12 15:01:52 +01001112static int sample_conv_bin2hex(const struct arg *arg_p, struct sample *smp)
1113{
1114 struct chunk *trash = get_trash_chunk();
1115 unsigned char c;
1116 int ptr = 0;
1117
1118 trash->len = 0;
1119 while (ptr < smp->data.str.len && trash->len <= trash->size - 2) {
1120 c = smp->data.str.str[ptr++];
1121 trash->str[trash->len++] = hextab[(c >> 4) & 0xF];
1122 trash->str[trash->len++] = hextab[c & 0xF];
1123 }
1124 smp->data.str = *trash;
1125 smp->type = SMP_T_STR;
1126 return 1;
1127}
1128
Willy Tarreau12785782012-04-27 21:37:17 +02001129static int sample_conv_str2lower(const struct arg *arg_p, struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +01001130{
1131 int i;
1132
Willy Tarreau342acb42012-04-23 22:03:39 +02001133 if (!smp->data.str.size)
Emeric Brun485479d2010-09-23 18:02:19 +02001134 return 0;
1135
Willy Tarreau342acb42012-04-23 22:03:39 +02001136 for (i = 0; i < smp->data.str.len; i++) {
1137 if ((smp->data.str.str[i] >= 'A') && (smp->data.str.str[i] <= 'Z'))
1138 smp->data.str.str[i] += 'a' - 'A';
Emeric Brun107ca302010-01-04 16:16:05 +01001139 }
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001140 smp->type = SMP_T_STR;
Emeric Brun107ca302010-01-04 16:16:05 +01001141 return 1;
1142}
1143
Willy Tarreau12785782012-04-27 21:37:17 +02001144static int sample_conv_str2upper(const struct arg *arg_p, struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +01001145{
1146 int i;
1147
Willy Tarreau342acb42012-04-23 22:03:39 +02001148 if (!smp->data.str.size)
Emeric Brun485479d2010-09-23 18:02:19 +02001149 return 0;
1150
Willy Tarreau342acb42012-04-23 22:03:39 +02001151 for (i = 0; i < smp->data.str.len; i++) {
1152 if ((smp->data.str.str[i] >= 'a') && (smp->data.str.str[i] <= 'z'))
1153 smp->data.str.str[i] += 'A' - 'a';
Emeric Brun107ca302010-01-04 16:16:05 +01001154 }
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001155 smp->type = SMP_T_STR;
Emeric Brun107ca302010-01-04 16:16:05 +01001156 return 1;
1157}
1158
Willy Tarreauf9954102012-04-20 14:03:29 +02001159/* takes the netmask in arg_p */
Willy Tarreau12785782012-04-27 21:37:17 +02001160static int sample_conv_ipmask(const struct arg *arg_p, struct sample *smp)
Willy Tarreaud31d6eb2010-01-26 18:01:41 +01001161{
Willy Tarreau342acb42012-04-23 22:03:39 +02001162 smp->data.ipv4.s_addr &= arg_p->data.ipv4.s_addr;
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001163 smp->type = SMP_T_IPV4;
Willy Tarreaud31d6eb2010-01-26 18:01:41 +01001164 return 1;
1165}
1166
Willy Tarreau5b8ad222013-07-25 12:17:57 +02001167/************************************************************************/
1168/* All supported sample fetch functions must be declared here */
1169/************************************************************************/
1170
1171/* force TRUE to be returned at the fetch level */
1172static int
1173smp_fetch_true(struct proxy *px, struct session *s, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001174 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau5b8ad222013-07-25 12:17:57 +02001175{
1176 smp->type = SMP_T_BOOL;
1177 smp->data.uint = 1;
1178 return 1;
1179}
1180
1181/* force FALSE to be returned at the fetch level */
1182static int
1183smp_fetch_false(struct proxy *px, struct session *s, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001184 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau5b8ad222013-07-25 12:17:57 +02001185{
1186 smp->type = SMP_T_BOOL;
1187 smp->data.uint = 0;
1188 return 1;
1189}
1190
1191/* retrieve environment variable $1 as a string */
1192static int
1193smp_fetch_env(struct proxy *px, struct session *s, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001194 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau5b8ad222013-07-25 12:17:57 +02001195{
1196 char *env;
1197
1198 if (!args || args[0].type != ARGT_STR)
1199 return 0;
1200
1201 env = getenv(args[0].data.str.str);
1202 if (!env)
1203 return 0;
1204
1205 smp->type = SMP_T_CSTR;
1206 smp->data.str.str = env;
1207 smp->data.str.len = strlen(env);
1208 return 1;
1209}
1210
Willy Tarreau6236d3a2013-07-25 14:28:25 +02001211/* retrieve the current local date in epoch time, and applies an optional offset
1212 * of args[0] seconds.
1213 */
1214static int
1215smp_fetch_date(struct proxy *px, struct session *s, void *l7, unsigned int opt,
Willy Tarreauef38c392013-07-22 16:29:32 +02001216 const struct arg *args, struct sample *smp, const char *kw)
Willy Tarreau6236d3a2013-07-25 14:28:25 +02001217{
1218 smp->data.uint = date.tv_sec;
1219
1220 /* add offset */
1221 if (args && (args[0].type == ARGT_SINT || args[0].type == ARGT_UINT))
1222 smp->data.uint += args[0].data.sint;
1223
1224 smp->type = SMP_T_UINT;
1225 smp->flags |= SMP_F_VOL_TEST | SMP_F_MAY_CHANGE;
1226 return 1;
1227}
1228
Willy Tarreau84310e22014-02-14 11:59:04 +01001229/* generate a random 32-bit integer for whatever purpose, with an optional
1230 * range specified in argument.
1231 */
1232static int
1233smp_fetch_rand(struct proxy *px, struct session *s, void *l7, unsigned int opt,
1234 const struct arg *args, struct sample *smp, const char *kw)
1235{
1236 smp->data.uint = random();
1237
1238 /* reduce if needed. Don't do a modulo, use all bits! */
1239 if (args && args[0].type == ARGT_UINT)
1240 smp->data.uint = ((uint64_t)smp->data.uint * args[0].data.uint) >> 32;
1241
1242 smp->type = SMP_T_UINT;
1243 smp->flags |= SMP_F_VOL_TEST | SMP_F_MAY_CHANGE;
1244 return 1;
1245}
1246
Willy Tarreau5b8ad222013-07-25 12:17:57 +02001247/* Note: must not be declared <const> as its list will be overwritten.
1248 * Note: fetches that may return multiple types must be declared as the lowest
1249 * common denominator, the type that can be casted into all other ones. For
1250 * instance IPv4/IPv6 must be declared IPv4.
1251 */
1252static struct sample_fetch_kw_list smp_kws = {ILH, {
1253 { "always_false", smp_fetch_false, 0, NULL, SMP_T_BOOL, SMP_USE_INTRN },
1254 { "always_true", smp_fetch_true, 0, NULL, SMP_T_BOOL, SMP_USE_INTRN },
1255 { "env", smp_fetch_env, ARG1(1,STR), NULL, SMP_T_CSTR, SMP_USE_INTRN },
Willy Tarreau6236d3a2013-07-25 14:28:25 +02001256 { "date", smp_fetch_date, ARG1(0,SINT), NULL, SMP_T_UINT, SMP_USE_INTRN },
Willy Tarreau84310e22014-02-14 11:59:04 +01001257 { "rand", smp_fetch_rand, ARG1(0,UINT), NULL, SMP_T_UINT, SMP_USE_INTRN },
Willy Tarreau5b8ad222013-07-25 12:17:57 +02001258 { /* END */ },
1259}};
1260
Emeric Brun107ca302010-01-04 16:16:05 +01001261/* Note: must not be declared <const> as its list will be overwritten */
Willy Tarreaudc13c112013-06-21 23:16:39 +02001262static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Willy Tarreau12785782012-04-27 21:37:17 +02001263 { "upper", sample_conv_str2upper, 0, NULL, SMP_T_STR, SMP_T_STR },
1264 { "lower", sample_conv_str2lower, 0, NULL, SMP_T_STR, SMP_T_STR },
Thierry FOURNIER2f49d6d2014-03-12 15:01:52 +01001265 { "hex", sample_conv_bin2hex, 0, NULL, SMP_T_BIN, SMP_T_STR },
Willy Tarreau12785782012-04-27 21:37:17 +02001266 { "ipmask", sample_conv_ipmask, ARG1(1,MSK4), NULL, SMP_T_IPV4, SMP_T_IPV4 },
Willy Tarreau9fcb9842012-04-20 14:45:49 +02001267 { NULL, NULL, 0, 0, 0 },
Emeric Brun107ca302010-01-04 16:16:05 +01001268}};
1269
1270__attribute__((constructor))
Willy Tarreau12785782012-04-27 21:37:17 +02001271static void __sample_init(void)
Emeric Brun107ca302010-01-04 16:16:05 +01001272{
Willy Tarreau5b8ad222013-07-25 12:17:57 +02001273 /* register sample fetch and format conversion keywords */
1274 sample_register_fetches(&smp_kws);
Willy Tarreau12785782012-04-27 21:37:17 +02001275 sample_register_convs(&sample_conv_kws);
Emeric Brun107ca302010-01-04 16:16:05 +01001276}