blob: 12724f73d7c50ee885ab91275a36360e47b81487 [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
Willy Tarreau7e2c6472012-10-29 20:44:36 +010019#include <types/global.h>
20
Willy Tarreauc7e42382012-08-24 19:22:53 +020021#include <common/chunk.h>
Willy Tarreau23ec4ca2014-07-15 20:15:37 +020022#include <common/hash.h>
Willy Tarreau35b51c62018-09-10 15:38:55 +020023#include <common/http.h>
Willy Tarreau0108d902018-11-25 19:14:37 +010024#include <common/initcall.h>
Willy Tarreaua8b7ecd2020-02-25 09:43:22 +010025#include <common/net_helper.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020026#include <common/standard.h>
Willy Tarreaua4312fa2013-04-02 16:34:32 +020027#include <common/uri_auth.h>
Emeric Brun53d1a982014-04-30 18:21:37 +020028#include <common/base64.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020029
Willy Tarreau9fcb9842012-04-20 14:45:49 +020030#include <proto/arg.h>
Willy Tarreaua4312fa2013-04-02 16:34:32 +020031#include <proto/auth.h>
32#include <proto/log.h>
33#include <proto/proxy.h>
Frédéric Lécaillefd95c622019-02-26 14:09:08 +010034#include <proto/protocol_buffers.h>
Willy Tarreaucd3b0942012-04-27 21:52:18 +020035#include <proto/sample.h>
Willy Tarreau0851fd52019-12-17 10:07:25 +010036#include <proto/sink.h>
Willy Tarreaua4312fa2013-04-02 16:34:32 +020037#include <proto/stick_table.h>
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +020038#include <proto/vars.h>
Emeric Brun107ca302010-01-04 16:16:05 +010039
Dragan Dosen6e5a9ca2017-10-24 09:18:23 +020040#include <import/sha1.h>
Thierry FOURNIER01e09742016-12-26 11:46:11 +010041#include <import/xxhash.h>
42
Willy Tarreau1cf8f082014-02-07 12:14:54 +010043/* sample type names */
44const char *smp_to_type[SMP_TYPES] = {
Thierry FOURNIER9c627e82015-06-03 20:12:35 +020045 [SMP_T_ANY] = "any",
Willy Tarreau1cf8f082014-02-07 12:14:54 +010046 [SMP_T_BOOL] = "bool",
Willy Tarreau1cf8f082014-02-07 12:14:54 +010047 [SMP_T_SINT] = "sint",
48 [SMP_T_ADDR] = "addr",
49 [SMP_T_IPV4] = "ipv4",
50 [SMP_T_IPV6] = "ipv6",
51 [SMP_T_STR] = "str",
52 [SMP_T_BIN] = "bin",
Thierry FOURNIER4c2479e2015-06-03 20:12:04 +020053 [SMP_T_METH] = "meth",
Willy Tarreau1cf8f082014-02-07 12:14:54 +010054};
55
Willy Tarreau12785782012-04-27 21:37:17 +020056/* static sample used in sample_process() when <p> is NULL */
Emeric Brune5c918b2017-06-14 14:15:36 +020057static THREAD_LOCAL struct sample temp_smp;
Emeric Brun107ca302010-01-04 16:16:05 +010058
Willy Tarreau12785782012-04-27 21:37:17 +020059/* list head of all known sample fetch keywords */
60static struct sample_fetch_kw_list sample_fetches = {
61 .list = LIST_HEAD_INIT(sample_fetches.list)
Emeric Brun107ca302010-01-04 16:16:05 +010062};
63
Willy Tarreau12785782012-04-27 21:37:17 +020064/* list head of all known sample format conversion keywords */
65static struct sample_conv_kw_list sample_convs = {
66 .list = LIST_HEAD_INIT(sample_convs.list)
Emeric Brun107ca302010-01-04 16:16:05 +010067};
68
Willy Tarreau80aca902013-01-07 15:42:20 +010069const unsigned int fetch_cap[SMP_SRC_ENTRIES] = {
70 [SMP_SRC_INTRN] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
71 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
72 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
73 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
74 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
75 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Gaetan Rivet707b52f2020-02-21 18:14:59 +010076 SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL),
Willy Tarreau80aca902013-01-07 15:42:20 +010077
78 [SMP_SRC_LISTN] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
79 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
80 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
81 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
82 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
83 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Gaetan Rivet707b52f2020-02-21 18:14:59 +010084 SMP_VAL_FE_LOG_END | SMP_VAL___________),
Willy Tarreau80aca902013-01-07 15:42:20 +010085
86 [SMP_SRC_FTEND] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
87 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
88 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
89 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
90 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
91 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Gaetan Rivet707b52f2020-02-21 18:14:59 +010092 SMP_VAL_FE_LOG_END | SMP_VAL___________),
Willy Tarreau80aca902013-01-07 15:42:20 +010093
94 [SMP_SRC_L4CLI] = (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 |
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100100 SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL),
Willy Tarreau80aca902013-01-07 15:42:20 +0100101
102 [SMP_SRC_L5CLI] = (SMP_VAL___________ | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
103 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
104 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
105 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
106 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
107 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100108 SMP_VAL_FE_LOG_END | SMP_VAL___________),
Willy Tarreau80aca902013-01-07 15:42:20 +0100109
110 [SMP_SRC_TRACK] = (SMP_VAL_FE_CON_ACC | SMP_VAL_FE_SES_ACC | SMP_VAL_FE_REQ_CNT |
111 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
112 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
113 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
114 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
115 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100116 SMP_VAL_FE_LOG_END | SMP_VAL___________),
Willy Tarreau80aca902013-01-07 15:42:20 +0100117
118 [SMP_SRC_L6REQ] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_FE_REQ_CNT |
119 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
120 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
121 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL___________ |
122 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
123 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100124 SMP_VAL___________ | SMP_VAL___________),
Willy Tarreau80aca902013-01-07 15:42:20 +0100125
126 [SMP_SRC_HRQHV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_FE_REQ_CNT |
127 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
128 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
129 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL___________ |
130 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
131 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100132 SMP_VAL___________ | SMP_VAL___________),
Willy Tarreau80aca902013-01-07 15:42:20 +0100133
134 [SMP_SRC_HRQHP] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_FE_REQ_CNT |
135 SMP_VAL_FE_HRQ_HDR | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
136 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
137 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
138 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
139 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100140 SMP_VAL_FE_LOG_END | SMP_VAL___________),
Willy Tarreau80aca902013-01-07 15:42:20 +0100141
142 [SMP_SRC_HRQBO] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
143 SMP_VAL___________ | SMP_VAL_FE_HRQ_BDY | SMP_VAL_FE_SET_BCK |
144 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
145 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL___________ |
146 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
147 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100148 SMP_VAL___________ | SMP_VAL___________),
Willy Tarreau80aca902013-01-07 15:42:20 +0100149
150 [SMP_SRC_BKEND] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
151 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
152 SMP_VAL_BE_REQ_CNT | SMP_VAL_BE_HRQ_HDR | SMP_VAL_BE_HRQ_BDY |
153 SMP_VAL_BE_SET_SRV | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
154 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
155 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100156 SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL),
Willy Tarreau80aca902013-01-07 15:42:20 +0100157
158 [SMP_SRC_SERVR] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
159 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
160 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
161 SMP_VAL___________ | SMP_VAL_BE_SRV_CON | SMP_VAL_BE_RES_CNT |
162 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
163 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100164 SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL),
Willy Tarreau80aca902013-01-07 15:42:20 +0100165
166 [SMP_SRC_L4SRV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
167 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
168 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
169 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT |
170 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
171 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100172 SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL),
Willy Tarreau80aca902013-01-07 15:42:20 +0100173
174 [SMP_SRC_L5SRV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
175 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
176 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
177 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT |
178 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
179 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100180 SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL),
Willy Tarreau80aca902013-01-07 15:42:20 +0100181
182 [SMP_SRC_L6RES] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
183 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
184 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
185 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT |
186 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
187 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Christopher Faulete596d182020-05-05 17:46:34 +0200188 SMP_VAL___________ | SMP_VAL_BE_CHK_RUL),
Willy Tarreau80aca902013-01-07 15:42:20 +0100189
190 [SMP_SRC_HRSHV] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
191 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
192 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
193 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT |
194 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
195 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Christopher Faulete596d182020-05-05 17:46:34 +0200196 SMP_VAL___________ | SMP_VAL_BE_CHK_RUL),
Willy Tarreau80aca902013-01-07 15:42:20 +0100197
198 [SMP_SRC_HRSHP] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
199 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
200 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
201 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL_BE_RES_CNT |
202 SMP_VAL_BE_HRS_HDR | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
203 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Christopher Faulete596d182020-05-05 17:46:34 +0200204 SMP_VAL_FE_LOG_END | SMP_VAL_BE_CHK_RUL),
Willy Tarreau80aca902013-01-07 15:42:20 +0100205
206 [SMP_SRC_HRSBO] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
207 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
208 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
209 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
210 SMP_VAL___________ | SMP_VAL_BE_HRS_BDY | SMP_VAL_BE_STO_RUL |
211 SMP_VAL_FE_RES_CNT | SMP_VAL_FE_HRS_HDR | SMP_VAL_FE_HRS_BDY |
Christopher Faulete596d182020-05-05 17:46:34 +0200212 SMP_VAL___________ | SMP_VAL_BE_CHK_RUL),
Willy Tarreau80aca902013-01-07 15:42:20 +0100213
214 [SMP_SRC_RQFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
215 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
216 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
217 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
218 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
219 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100220 SMP_VAL_FE_LOG_END | SMP_VAL___________),
Willy Tarreau80aca902013-01-07 15:42:20 +0100221
222 [SMP_SRC_RSFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
223 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
224 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
225 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
226 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
227 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100228 SMP_VAL_FE_LOG_END | SMP_VAL___________),
Willy Tarreau80aca902013-01-07 15:42:20 +0100229
230 [SMP_SRC_TXFIN] = (SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
231 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
232 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
233 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
234 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
235 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100236 SMP_VAL_FE_LOG_END | SMP_VAL___________),
Willy Tarreau80aca902013-01-07 15:42:20 +0100237
238 [SMP_SRC_SSFIN] = (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___________ | SMP_VAL___________ |
243 SMP_VAL___________ | SMP_VAL___________ | SMP_VAL___________ |
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100244 SMP_VAL_FE_LOG_END | SMP_VAL___________),
Willy Tarreau80aca902013-01-07 15:42:20 +0100245};
246
247static const char *fetch_src_names[SMP_SRC_ENTRIES] = {
248 [SMP_SRC_INTRN] = "internal state",
249 [SMP_SRC_LISTN] = "listener",
250 [SMP_SRC_FTEND] = "frontend",
251 [SMP_SRC_L4CLI] = "client address",
252 [SMP_SRC_L5CLI] = "client-side connection",
253 [SMP_SRC_TRACK] = "track counters",
254 [SMP_SRC_L6REQ] = "request buffer",
255 [SMP_SRC_HRQHV] = "HTTP request headers",
256 [SMP_SRC_HRQHP] = "HTTP request",
257 [SMP_SRC_HRQBO] = "HTTP request body",
258 [SMP_SRC_BKEND] = "backend",
259 [SMP_SRC_SERVR] = "server",
260 [SMP_SRC_L4SRV] = "server address",
261 [SMP_SRC_L5SRV] = "server-side connection",
262 [SMP_SRC_L6RES] = "response buffer",
263 [SMP_SRC_HRSHV] = "HTTP response headers",
264 [SMP_SRC_HRSHP] = "HTTP response",
265 [SMP_SRC_HRSBO] = "HTTP response body",
266 [SMP_SRC_RQFIN] = "request buffer statistics",
267 [SMP_SRC_RSFIN] = "response buffer statistics",
268 [SMP_SRC_TXFIN] = "transaction statistics",
269 [SMP_SRC_SSFIN] = "session statistics",
270};
271
Willy Tarreaubf8e2512013-03-25 14:52:41 +0100272static const char *fetch_ckp_names[SMP_CKP_ENTRIES] = {
273 [SMP_CKP_FE_CON_ACC] = "frontend tcp-request connection rule",
274 [SMP_CKP_FE_SES_ACC] = "frontend tcp-request session rule",
275 [SMP_CKP_FE_REQ_CNT] = "frontend tcp-request content rule",
276 [SMP_CKP_FE_HRQ_HDR] = "frontend http-request header rule",
277 [SMP_CKP_FE_HRQ_BDY] = "frontend http-request body rule",
278 [SMP_CKP_FE_SET_BCK] = "frontend use-backend rule",
279 [SMP_CKP_BE_REQ_CNT] = "backend tcp-request content rule",
280 [SMP_CKP_BE_HRQ_HDR] = "backend http-request header rule",
281 [SMP_CKP_BE_HRQ_BDY] = "backend http-request body rule",
282 [SMP_CKP_BE_SET_SRV] = "backend use-server, balance or stick-match rule",
283 [SMP_CKP_BE_SRV_CON] = "server source selection",
284 [SMP_CKP_BE_RES_CNT] = "backend tcp-response content rule",
285 [SMP_CKP_BE_HRS_HDR] = "backend http-response header rule",
286 [SMP_CKP_BE_HRS_BDY] = "backend http-response body rule",
287 [SMP_CKP_BE_STO_RUL] = "backend stick-store rule",
288 [SMP_CKP_FE_RES_CNT] = "frontend tcp-response content rule",
289 [SMP_CKP_FE_HRS_HDR] = "frontend http-response header rule",
290 [SMP_CKP_FE_HRS_BDY] = "frontend http-response body rule",
291 [SMP_CKP_FE_LOG_END] = "logs",
Gaetan Rivet707b52f2020-02-21 18:14:59 +0100292 [SMP_CKP_BE_CHK_RUL] = "backend tcp-check rule",
Willy Tarreaubf8e2512013-03-25 14:52:41 +0100293};
294
Thierry FOURNIER348971e2013-11-21 10:50:10 +0100295/* This function returns the type of the data returned by the sample_expr.
296 * It assumes that the <expr> and all of its converters are properly
297 * initialized.
298 */
299inline
300int smp_expr_output_type(struct sample_expr *expr)
301{
302 struct sample_conv_expr *smp_expr;
303
304 if (!LIST_ISEMPTY(&expr->conv_exprs)) {
305 smp_expr = LIST_PREV(&expr->conv_exprs, struct sample_conv_expr *, list);
306 return smp_expr->conv->out_type;
307 }
308 return expr->fetch->out_type;
309}
310
311
Willy Tarreau80aca902013-01-07 15:42:20 +0100312/* fill the trash with a comma-delimited list of source names for the <use> bit
313 * field which must be composed of a non-null set of SMP_USE_* flags. The return
314 * value is the pointer to the string in the trash buffer.
315 */
316const char *sample_src_names(unsigned int use)
317{
318 int bit;
319
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200320 trash.data = 0;
321 trash.area[0] = '\0';
Willy Tarreau80aca902013-01-07 15:42:20 +0100322 for (bit = 0; bit < SMP_SRC_ENTRIES; bit++) {
323 if (!(use & ~((1 << bit) - 1)))
324 break; /* no more bits */
325
326 if (!(use & (1 << bit)))
327 continue; /* bit not set */
328
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200329 trash.data += snprintf(trash.area + trash.data,
330 trash.size - trash.data, "%s%s",
331 (use & ((1 << bit) - 1)) ? "," : "",
332 fetch_src_names[bit]);
Willy Tarreau80aca902013-01-07 15:42:20 +0100333 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200334 return trash.area;
Willy Tarreau80aca902013-01-07 15:42:20 +0100335}
336
Willy Tarreaubf8e2512013-03-25 14:52:41 +0100337/* return a pointer to the correct sample checkpoint name, or "unknown" when
338 * the flags are invalid. Only the lowest bit is used, higher bits are ignored
339 * if set.
340 */
341const char *sample_ckp_names(unsigned int use)
342{
343 int bit;
344
345 for (bit = 0; bit < SMP_CKP_ENTRIES; bit++)
346 if (use & (1 << bit))
347 return fetch_ckp_names[bit];
348 return "unknown sample check place, please report this bug";
349}
350
Emeric Brun107ca302010-01-04 16:16:05 +0100351/*
Willy Tarreau80aca902013-01-07 15:42:20 +0100352 * Registers the sample fetch keyword list <kwl> as a list of valid keywords
353 * for next parsing sessions. The fetch keywords capabilities are also computed
354 * from their ->use field.
Emeric Brun107ca302010-01-04 16:16:05 +0100355 */
Willy Tarreau80aca902013-01-07 15:42:20 +0100356void sample_register_fetches(struct sample_fetch_kw_list *kwl)
Emeric Brun107ca302010-01-04 16:16:05 +0100357{
Willy Tarreau80aca902013-01-07 15:42:20 +0100358 struct sample_fetch *sf;
359 int bit;
360
361 for (sf = kwl->kw; sf->kw != NULL; sf++) {
362 for (bit = 0; bit < SMP_SRC_ENTRIES; bit++)
363 if (sf->use & (1 << bit))
364 sf->val |= fetch_cap[bit];
365 }
366 LIST_ADDQ(&sample_fetches.list, &kwl->list);
Emeric Brun107ca302010-01-04 16:16:05 +0100367}
368
369/*
Willy Tarreau12785782012-04-27 21:37:17 +0200370 * Registers the sample format coverstion keyword list <pckl> as a list of valid keywords for next
Emeric Brun107ca302010-01-04 16:16:05 +0100371 * parsing sessions.
372 */
Willy Tarreau12785782012-04-27 21:37:17 +0200373void sample_register_convs(struct sample_conv_kw_list *pckl)
Emeric Brun107ca302010-01-04 16:16:05 +0100374{
Willy Tarreau12785782012-04-27 21:37:17 +0200375 LIST_ADDQ(&sample_convs.list, &pckl->list);
Emeric Brun107ca302010-01-04 16:16:05 +0100376}
377
378/*
Willy Tarreau12785782012-04-27 21:37:17 +0200379 * Returns the pointer on sample fetch keyword structure identified by
Emeric Brun107ca302010-01-04 16:16:05 +0100380 * string of <len> in buffer <kw>.
381 *
382 */
Willy Tarreau12785782012-04-27 21:37:17 +0200383struct sample_fetch *find_sample_fetch(const char *kw, int len)
Emeric Brun107ca302010-01-04 16:16:05 +0100384{
385 int index;
Willy Tarreau12785782012-04-27 21:37:17 +0200386 struct sample_fetch_kw_list *kwl;
Emeric Brun107ca302010-01-04 16:16:05 +0100387
Willy Tarreau12785782012-04-27 21:37:17 +0200388 list_for_each_entry(kwl, &sample_fetches.list, list) {
Emeric Brun107ca302010-01-04 16:16:05 +0100389 for (index = 0; kwl->kw[index].kw != NULL; index++) {
390 if (strncmp(kwl->kw[index].kw, kw, len) == 0 &&
391 kwl->kw[index].kw[len] == '\0')
392 return &kwl->kw[index];
393 }
394 }
395 return NULL;
396}
397
Tim Duesterhusc555ee02018-01-25 16:24:44 +0100398/* This function browses the list of available sample fetches. <current> is
Thierry FOURNIER4d9a1d12014-12-08 14:49:19 +0100399 * the last used sample fetch. If it is the first call, it must set to NULL.
Tim Duesterhusc555ee02018-01-25 16:24:44 +0100400 * <idx> is the index of the next sample fetch entry. It is used as private
401 * value. It is useless to initiate it.
Thierry FOURNIER4d9a1d12014-12-08 14:49:19 +0100402 *
Tim Duesterhusc555ee02018-01-25 16:24:44 +0100403 * It returns always the new fetch_sample entry, and NULL when the end of
Thierry FOURNIER4d9a1d12014-12-08 14:49:19 +0100404 * the list is reached.
405 */
406struct sample_fetch *sample_fetch_getnext(struct sample_fetch *current, int *idx)
407{
408 struct sample_fetch_kw_list *kwl;
409 struct sample_fetch *base;
410
411 if (!current) {
412 /* Get first kwl entry. */
413 kwl = LIST_NEXT(&sample_fetches.list, struct sample_fetch_kw_list *, list);
414 (*idx) = 0;
415 } else {
416 /* Get kwl corresponding to the curret entry. */
417 base = current + 1 - (*idx);
418 kwl = container_of(base, struct sample_fetch_kw_list, kw);
419 }
420
421 while (1) {
422
423 /* Check if kwl is the last entry. */
424 if (&kwl->list == &sample_fetches.list)
425 return NULL;
426
427 /* idx contain the next keyword. If it is available, return it. */
428 if (kwl->kw[*idx].kw) {
429 (*idx)++;
430 return &kwl->kw[(*idx)-1];
431 }
432
433 /* get next entry in the main list, and return NULL if the end is reached. */
434 kwl = LIST_NEXT(&kwl->list, struct sample_fetch_kw_list *, list);
435
436 /* Set index to 0, ans do one other loop. */
437 (*idx) = 0;
438 }
439}
440
Thierry FOURNIER8fd13762015-03-10 23:56:48 +0100441/* This function browses the list of available converters. <current> is
442 * the last used converter. If it is the first call, it must set to NULL.
443 * <idx> is the index of the next converter entry. It is used as private
444 * value. It is useless to initiate it.
445 *
446 * It returns always the next sample_conv entry, and NULL when the end of
447 * the list is reached.
448 */
449struct sample_conv *sample_conv_getnext(struct sample_conv *current, int *idx)
450{
451 struct sample_conv_kw_list *kwl;
452 struct sample_conv *base;
453
454 if (!current) {
455 /* Get first kwl entry. */
456 kwl = LIST_NEXT(&sample_convs.list, struct sample_conv_kw_list *, list);
457 (*idx) = 0;
458 } else {
459 /* Get kwl corresponding to the curret entry. */
460 base = current + 1 - (*idx);
461 kwl = container_of(base, struct sample_conv_kw_list, kw);
462 }
463
464 while (1) {
465 /* Check if kwl is the last entry. */
466 if (&kwl->list == &sample_convs.list)
467 return NULL;
468
469 /* idx contain the next keyword. If it is available, return it. */
470 if (kwl->kw[*idx].kw) {
471 (*idx)++;
472 return &kwl->kw[(*idx)-1];
473 }
474
475 /* get next entry in the main list, and return NULL if the end is reached. */
476 kwl = LIST_NEXT(&kwl->list, struct sample_conv_kw_list *, list);
477
478 /* Set index to 0, ans do one other loop. */
479 (*idx) = 0;
480 }
481}
482
Emeric Brun107ca302010-01-04 16:16:05 +0100483/*
Willy Tarreau12785782012-04-27 21:37:17 +0200484 * Returns the pointer on sample format conversion keyword structure identified by
Emeric Brun107ca302010-01-04 16:16:05 +0100485 * string of <len> in buffer <kw>.
486 *
487 */
Willy Tarreau12785782012-04-27 21:37:17 +0200488struct sample_conv *find_sample_conv(const char *kw, int len)
Emeric Brun107ca302010-01-04 16:16:05 +0100489{
490 int index;
Willy Tarreau12785782012-04-27 21:37:17 +0200491 struct sample_conv_kw_list *kwl;
Emeric Brun107ca302010-01-04 16:16:05 +0100492
Willy Tarreau12785782012-04-27 21:37:17 +0200493 list_for_each_entry(kwl, &sample_convs.list, list) {
Emeric Brun107ca302010-01-04 16:16:05 +0100494 for (index = 0; kwl->kw[index].kw != NULL; index++) {
495 if (strncmp(kwl->kw[index].kw, kw, len) == 0 &&
496 kwl->kw[index].kw[len] == '\0')
497 return &kwl->kw[index];
498 }
499 }
500 return NULL;
501}
502
Emeric Brun107ca302010-01-04 16:16:05 +0100503/******************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +0200504/* Sample casts functions */
Emeric Brun107ca302010-01-04 16:16:05 +0100505/******************************************************************/
506
Willy Tarreau342acb42012-04-23 22:03:39 +0200507static int c_ip2int(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100508{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200509 smp->data.u.sint = ntohl(smp->data.u.ipv4.s_addr);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200510 smp->data.type = SMP_T_SINT;
Emeric Brun107ca302010-01-04 16:16:05 +0100511 return 1;
512}
513
Willy Tarreau342acb42012-04-23 22:03:39 +0200514static int c_ip2str(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100515{
Willy Tarreau83061a82018-07-13 11:56:34 +0200516 struct buffer *trash = get_trash_chunk();
Emeric Brun107ca302010-01-04 16:16:05 +0100517
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200518 if (!inet_ntop(AF_INET, (void *)&smp->data.u.ipv4, trash->area, trash->size))
Emeric Brun107ca302010-01-04 16:16:05 +0100519 return 0;
520
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200521 trash->data = strlen(trash->area);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200522 smp->data.u.str = *trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200523 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100524 smp->flags &= ~SMP_F_CONST;
Emeric Brun107ca302010-01-04 16:16:05 +0100525
526 return 1;
527}
528
Willy Tarreau342acb42012-04-23 22:03:39 +0200529static int c_ip2ipv6(struct sample *smp)
David du Colombier4f92d322011-03-24 11:09:31 +0100530{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200531 v4tov6(&smp->data.u.ipv6, &smp->data.u.ipv4);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200532 smp->data.type = SMP_T_IPV6;
David du Colombier4f92d322011-03-24 11:09:31 +0100533 return 1;
534}
535
Thierry FOURNIERcc4d1712015-07-24 09:04:56 +0200536static int c_ipv62ip(struct sample *smp)
537{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200538 if (!v6tov4(&smp->data.u.ipv4, &smp->data.u.ipv6))
Thierry FOURNIERcc4d1712015-07-24 09:04:56 +0200539 return 0;
Tim Duesterhusbf5ce022018-01-25 16:24:46 +0100540 smp->data.type = SMP_T_IPV4;
Thierry FOURNIERcc4d1712015-07-24 09:04:56 +0200541 return 1;
542}
543
Willy Tarreau342acb42012-04-23 22:03:39 +0200544static int c_ipv62str(struct sample *smp)
David du Colombier4f92d322011-03-24 11:09:31 +0100545{
Willy Tarreau83061a82018-07-13 11:56:34 +0200546 struct buffer *trash = get_trash_chunk();
David du Colombier4f92d322011-03-24 11:09:31 +0100547
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200548 if (!inet_ntop(AF_INET6, (void *)&smp->data.u.ipv6, trash->area, trash->size))
David du Colombier4f92d322011-03-24 11:09:31 +0100549 return 0;
550
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200551 trash->data = strlen(trash->area);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200552 smp->data.u.str = *trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200553 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100554 smp->flags &= ~SMP_F_CONST;
David du Colombier4f92d322011-03-24 11:09:31 +0100555 return 1;
556}
557
558/*
Willy Tarreau342acb42012-04-23 22:03:39 +0200559static int c_ipv62ip(struct sample *smp)
David du Colombier4f92d322011-03-24 11:09:31 +0100560{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200561 return v6tov4(&smp->data.u.ipv4, &smp->data.u.ipv6);
David du Colombier4f92d322011-03-24 11:09:31 +0100562}
563*/
564
Willy Tarreau342acb42012-04-23 22:03:39 +0200565static int c_int2ip(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100566{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200567 smp->data.u.ipv4.s_addr = htonl((unsigned int)smp->data.u.sint);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200568 smp->data.type = SMP_T_IPV4;
Emeric Brun107ca302010-01-04 16:16:05 +0100569 return 1;
570}
571
Thierry FOURNIERcc4d1712015-07-24 09:04:56 +0200572static int c_int2ipv6(struct sample *smp)
573{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200574 smp->data.u.ipv4.s_addr = htonl((unsigned int)smp->data.u.sint);
575 v4tov6(&smp->data.u.ipv6, &smp->data.u.ipv4);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200576 smp->data.type = SMP_T_IPV6;
Thierry FOURNIERcc4d1712015-07-24 09:04:56 +0200577 return 1;
578}
579
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100580static int c_str2addr(struct sample *smp)
581{
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200582 if (!buf2ip(smp->data.u.str.area, smp->data.u.str.data, &smp->data.u.ipv4)) {
583 if (!buf2ip6(smp->data.u.str.area, smp->data.u.str.data, &smp->data.u.ipv6))
Thierry FOURNIERfd139902013-12-11 12:38:57 +0100584 return 0;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200585 smp->data.type = SMP_T_IPV6;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100586 smp->flags &= ~SMP_F_CONST;
Thierry FOURNIERfd139902013-12-11 12:38:57 +0100587 return 1;
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100588 }
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200589 smp->data.type = SMP_T_IPV4;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100590 smp->flags &= ~SMP_F_CONST;
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100591 return 1;
592}
593
Willy Tarreau342acb42012-04-23 22:03:39 +0200594static int c_str2ip(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100595{
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200596 if (!buf2ip(smp->data.u.str.area, smp->data.u.str.data, &smp->data.u.ipv4))
Emeric Brun107ca302010-01-04 16:16:05 +0100597 return 0;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200598 smp->data.type = SMP_T_IPV4;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100599 smp->flags &= ~SMP_F_CONST;
Emeric Brun107ca302010-01-04 16:16:05 +0100600 return 1;
601}
602
Willy Tarreau342acb42012-04-23 22:03:39 +0200603static int c_str2ipv6(struct sample *smp)
David du Colombier4f92d322011-03-24 11:09:31 +0100604{
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200605 if (!buf2ip6(smp->data.u.str.area, smp->data.u.str.data, &smp->data.u.ipv6))
Thierry FOURNIERfd139902013-12-11 12:38:57 +0100606 return 0;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200607 smp->data.type = SMP_T_IPV6;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100608 smp->flags &= ~SMP_F_CONST;
Thierry FOURNIERfd139902013-12-11 12:38:57 +0100609 return 1;
David du Colombier4f92d322011-03-24 11:09:31 +0100610}
611
Emeric Brun4b9e8022014-11-03 18:17:10 +0100612/*
613 * The NULL char always enforces the end of string if it is met.
614 * Data is never changed, so we can ignore the CONST case
Thierry FOURNIERe87cac12014-03-12 15:07:59 +0100615 */
Emeric Brun8ac33d92012-10-17 13:36:06 +0200616static int c_bin2str(struct sample *smp)
617{
Emeric Brun4b9e8022014-11-03 18:17:10 +0100618 int i;
Emeric Brun8ac33d92012-10-17 13:36:06 +0200619
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200620 for (i = 0; i < smp->data.u.str.data; i++) {
621 if (!smp->data.u.str.area[i]) {
622 smp->data.u.str.data = i;
Thierry FOURNIERe87cac12014-03-12 15:07:59 +0100623 break;
Emeric Brun4b9e8022014-11-03 18:17:10 +0100624 }
Emeric Brun8ac33d92012-10-17 13:36:06 +0200625 }
Christopher Faulet472ad512020-04-30 09:57:40 +0200626 smp->data.type = SMP_T_STR;
Emeric Brun8ac33d92012-10-17 13:36:06 +0200627 return 1;
628}
629
Willy Tarreau342acb42012-04-23 22:03:39 +0200630static int c_int2str(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100631{
Willy Tarreau83061a82018-07-13 11:56:34 +0200632 struct buffer *trash = get_trash_chunk();
Emeric Brun107ca302010-01-04 16:16:05 +0100633 char *pos;
634
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200635 pos = lltoa_r(smp->data.u.sint, trash->area, trash->size);
Emeric Brun107ca302010-01-04 16:16:05 +0100636 if (!pos)
637 return 0;
638
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200639 trash->size = trash->size - (pos - trash->area);
640 trash->area = pos;
641 trash->data = strlen(pos);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200642 smp->data.u.str = *trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200643 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100644 smp->flags &= ~SMP_F_CONST;
Emeric Brun107ca302010-01-04 16:16:05 +0100645 return 1;
646}
647
Joseph Herlant757f5ad2018-11-15 12:14:56 -0800648/* This function unconditionally duplicates data and removes the "const" flag.
Willy Tarreauad635822016-08-08 19:21:09 +0200649 * For strings and binary blocks, it also provides a known allocated size with
650 * a length that is capped to the size, and ensures a trailing zero is always
651 * appended for strings. This is necessary for some operations which may
652 * require to extend the length. It returns 0 if it fails, 1 on success.
653 */
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100654int smp_dup(struct sample *smp)
Emeric Brun485479d2010-09-23 18:02:19 +0200655{
Willy Tarreau83061a82018-07-13 11:56:34 +0200656 struct buffer *trash;
Emeric Brun485479d2010-09-23 18:02:19 +0200657
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200658 switch (smp->data.type) {
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100659 case SMP_T_BOOL:
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100660 case SMP_T_SINT:
661 case SMP_T_ADDR:
662 case SMP_T_IPV4:
663 case SMP_T_IPV6:
664 /* These type are not const. */
665 break;
Willy Tarreauad635822016-08-08 19:21:09 +0200666
Christopher Fauletec100512017-07-24 15:38:41 +0200667 case SMP_T_METH:
668 if (smp->data.u.meth.meth != HTTP_METH_OTHER)
669 break;
670 /* Fall through */
671
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100672 case SMP_T_STR:
Willy Tarreauad635822016-08-08 19:21:09 +0200673 trash = get_trash_chunk();
Olivier Houchard4468f1c2018-12-07 15:23:41 +0100674 trash->data = smp->data.type == SMP_T_STR ?
675 smp->data.u.str.data : smp->data.u.meth.str.data;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200676 if (trash->data > trash->size - 1)
677 trash->data = trash->size - 1;
Willy Tarreauad635822016-08-08 19:21:09 +0200678
Olivier Houchard4468f1c2018-12-07 15:23:41 +0100679 memcpy(trash->area, smp->data.type == SMP_T_STR ?
680 smp->data.u.str.area : smp->data.u.meth.str.area,
681 trash->data);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200682 trash->area[trash->data] = 0;
Willy Tarreauad635822016-08-08 19:21:09 +0200683 smp->data.u.str = *trash;
684 break;
685
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100686 case SMP_T_BIN:
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100687 trash = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200688 trash->data = smp->data.u.str.data;
689 if (trash->data > trash->size)
690 trash->data = trash->size;
Willy Tarreauad635822016-08-08 19:21:09 +0200691
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200692 memcpy(trash->area, smp->data.u.str.area, trash->data);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200693 smp->data.u.str = *trash;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100694 break;
Christopher Fauletec100512017-07-24 15:38:41 +0200695
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100696 default:
697 /* Other cases are unexpected. */
698 return 0;
699 }
Thierry FOURNIERb805f712013-11-26 20:47:54 +0100700
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100701 /* remove const flag */
702 smp->flags &= ~SMP_F_CONST;
Emeric Brun485479d2010-09-23 18:02:19 +0200703 return 1;
704}
705
Thierry FOURNIER0e9af552013-12-14 14:55:04 +0100706int c_none(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100707{
708 return 1;
709}
710
Willy Tarreau342acb42012-04-23 22:03:39 +0200711static int c_str2int(struct sample *smp)
Emeric Brun107ca302010-01-04 16:16:05 +0100712{
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200713 const char *str;
714 const char *end;
Emeric Brun107ca302010-01-04 16:16:05 +0100715
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200716 if (smp->data.u.str.data == 0)
Thierry FOURNIER60bb0202014-01-27 18:20:48 +0100717 return 0;
718
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200719 str = smp->data.u.str.area;
720 end = smp->data.u.str.area + smp->data.u.str.data;
Emeric Brun107ca302010-01-04 16:16:05 +0100721
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200722 smp->data.u.sint = read_int64(&str, end);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200723 smp->data.type = SMP_T_SINT;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +0100724 smp->flags &= ~SMP_F_CONST;
Emeric Brun107ca302010-01-04 16:16:05 +0100725 return 1;
726}
727
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100728static int c_str2meth(struct sample *smp)
729{
730 enum http_meth_t meth;
731 int len;
732
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200733 meth = find_http_meth(smp->data.u.str.area, smp->data.u.str.data);
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100734 if (meth == HTTP_METH_OTHER) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200735 len = smp->data.u.str.data;
736 smp->data.u.meth.str.area = smp->data.u.str.area;
737 smp->data.u.meth.str.data = len;
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100738 }
739 else
740 smp->flags &= ~SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200741 smp->data.u.meth.meth = meth;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200742 smp->data.type = SMP_T_METH;
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100743 return 1;
744}
745
746static int c_meth2str(struct sample *smp)
747{
748 int len;
749 enum http_meth_t meth;
750
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200751 if (smp->data.u.meth.meth == HTTP_METH_OTHER) {
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100752 /* The method is unknown. Copy the original pointer. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200753 len = smp->data.u.meth.str.data;
754 smp->data.u.str.area = smp->data.u.meth.str.area;
755 smp->data.u.str.data = len;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200756 smp->data.type = SMP_T_STR;
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100757 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200758 else if (smp->data.u.meth.meth < HTTP_METH_OTHER) {
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100759 /* The method is known, copy the pointer containing the string. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200760 meth = smp->data.u.meth.meth;
Willy Tarreau35b51c62018-09-10 15:38:55 +0200761 smp->data.u.str.area = http_known_methods[meth].ptr;
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200762 smp->data.u.str.data = http_known_methods[meth].len;
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100763 smp->flags |= SMP_F_CONST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200764 smp->data.type = SMP_T_STR;
Thierry FOURNIERd4373142013-12-17 01:10:10 +0100765 }
766 else {
767 /* Unknown method */
768 return 0;
769 }
770 return 1;
771}
772
Willy Tarreau9700e5c2014-07-15 21:03:26 +0200773static int c_addr2bin(struct sample *smp)
774{
Willy Tarreau83061a82018-07-13 11:56:34 +0200775 struct buffer *chk = get_trash_chunk();
Willy Tarreau9700e5c2014-07-15 21:03:26 +0200776
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200777 if (smp->data.type == SMP_T_IPV4) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200778 chk->data = 4;
779 memcpy(chk->area, &smp->data.u.ipv4, chk->data);
Willy Tarreau9700e5c2014-07-15 21:03:26 +0200780 }
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200781 else if (smp->data.type == SMP_T_IPV6) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200782 chk->data = 16;
783 memcpy(chk->area, &smp->data.u.ipv6, chk->data);
Willy Tarreau9700e5c2014-07-15 21:03:26 +0200784 }
785 else
786 return 0;
787
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200788 smp->data.u.str = *chk;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200789 smp->data.type = SMP_T_BIN;
Willy Tarreau9700e5c2014-07-15 21:03:26 +0200790 return 1;
791}
792
Willy Tarreaubbfd1a22014-07-15 21:19:08 +0200793static int c_int2bin(struct sample *smp)
794{
Willy Tarreau83061a82018-07-13 11:56:34 +0200795 struct buffer *chk = get_trash_chunk();
Willy Tarreaubbfd1a22014-07-15 21:19:08 +0200796
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200797 *(unsigned long long int *) chk->area = my_htonll(smp->data.u.sint);
798 chk->data = 8;
Willy Tarreaubbfd1a22014-07-15 21:19:08 +0200799
Thierry FOURNIER136f9d32015-08-19 09:07:19 +0200800 smp->data.u.str = *chk;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +0200801 smp->data.type = SMP_T_BIN;
Willy Tarreaubbfd1a22014-07-15 21:19:08 +0200802 return 1;
803}
804
Willy Tarreau9700e5c2014-07-15 21:03:26 +0200805
Emeric Brun107ca302010-01-04 16:16:05 +0100806/*****************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +0200807/* Sample casts matrix: */
808/* sample_casts[from type][to type] */
809/* NULL pointer used for impossible sample casts */
Emeric Brun107ca302010-01-04 16:16:05 +0100810/*****************************************************************/
Emeric Brun107ca302010-01-04 16:16:05 +0100811
Thierry FOURNIER8af6ff12013-11-21 10:53:12 +0100812sample_cast_fct sample_casts[SMP_TYPES][SMP_TYPES] = {
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200813/* to: ANY BOOL SINT ADDR IPV4 IPV6 STR BIN METH */
814/* from: ANY */ { c_none, c_none, c_none, c_none, c_none, c_none, c_none, c_none, c_none, },
815/* BOOL */ { c_none, c_none, c_none, NULL, NULL, NULL, c_int2str, NULL, NULL, },
Thierry FOURNIERcc4d1712015-07-24 09:04:56 +0200816/* 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 +0200817/* ADDR */ { c_none, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, },
818/* IPV4 */ { c_none, NULL, c_ip2int, c_none, c_none, c_ip2ipv6, c_ip2str, c_addr2bin, NULL, },
Thierry FOURNIERcc4d1712015-07-24 09:04:56 +0200819/* IPV6 */ { c_none, NULL, NULL, c_none, c_ipv62ip,c_none, c_ipv62str, c_addr2bin, NULL, },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +0200820/* STR */ { c_none, c_str2int, c_str2int, c_str2addr, c_str2ip, c_str2ipv6, c_none, c_none, c_str2meth, },
821/* BIN */ { c_none, NULL, NULL, NULL, NULL, NULL, c_bin2str, c_none, c_str2meth, },
822/* METH */ { c_none, NULL, NULL, NULL, NULL, NULL, c_meth2str, c_meth2str, c_none, }
Willy Tarreauf0b38bf2010-06-06 13:22:23 +0200823};
Emeric Brun107ca302010-01-04 16:16:05 +0100824
Emeric Brun107ca302010-01-04 16:16:05 +0100825/*
Willy Tarreau12785782012-04-27 21:37:17 +0200826 * Parse a sample expression configuration:
Emeric Brun107ca302010-01-04 16:16:05 +0100827 * fetch keyword followed by format conversion keywords.
Willy Tarreau12785782012-04-27 21:37:17 +0200828 * Returns a pointer on allocated sample expression structure.
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200829 * The caller must have set al->ctx.
Willy Tarreaue3b57bf2020-02-14 16:50:14 +0100830 * If <endptr> is non-nul, it will be set to the first unparsed character
831 * (which may be the final '\0') on success. If it is nul, the expression
832 * must be properly terminated by a '\0' otherwise an error is reported.
Emeric Brun107ca302010-01-04 16:16:05 +0100833 */
Willy Tarreaue3b57bf2020-02-14 16:50:14 +0100834struct 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 +0100835{
Willy Tarreau833cc792013-07-24 15:34:19 +0200836 const char *begw; /* beginning of word */
837 const char *endw; /* end of word */
838 const char *endt; /* end of term */
Willy Tarreau12785782012-04-27 21:37:17 +0200839 struct sample_expr *expr;
840 struct sample_fetch *fetch;
841 struct sample_conv *conv;
Emeric Brun107ca302010-01-04 16:16:05 +0100842 unsigned long prev_type;
Willy Tarreau833cc792013-07-24 15:34:19 +0200843 char *fkw = NULL;
844 char *ckw = NULL;
Willy Tarreau689a1df2013-12-13 00:40:11 +0100845 int err_arg;
Emeric Brun107ca302010-01-04 16:16:05 +0100846
Willy Tarreau833cc792013-07-24 15:34:19 +0200847 begw = str[*idx];
Willy Tarreaued2c6622020-02-14 18:27:10 +0100848 for (endw = begw; is_idchar(*endw); endw++)
849 ;
Willy Tarreau833cc792013-07-24 15:34:19 +0200850
851 if (endw == begw) {
Willy Tarreau975c1782013-12-12 23:16:54 +0100852 memprintf(err_msg, "missing fetch method");
Emeric Brun107ca302010-01-04 16:16:05 +0100853 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200854 }
Emeric Brun107ca302010-01-04 16:16:05 +0100855
Willy Tarreau833cc792013-07-24 15:34:19 +0200856 /* keep a copy of the current fetch keyword for error reporting */
857 fkw = my_strndup(begw, endw - begw);
Emeric Brun107ca302010-01-04 16:16:05 +0100858
Willy Tarreau833cc792013-07-24 15:34:19 +0200859 fetch = find_sample_fetch(begw, endw - begw);
860 if (!fetch) {
Willy Tarreau975c1782013-12-12 23:16:54 +0100861 memprintf(err_msg, "unknown fetch method '%s'", fkw);
Emeric Brun107ca302010-01-04 16:16:05 +0100862 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200863 }
Emeric Brun107ca302010-01-04 16:16:05 +0100864
Willy Tarreau833cc792013-07-24 15:34:19 +0200865 /* At this point, we have :
866 * - begw : beginning of the keyword
Willy Tarreau689a1df2013-12-13 00:40:11 +0100867 * - endw : end of the keyword, first character not part of keyword
Willy Tarreau833cc792013-07-24 15:34:19 +0200868 */
869
870 if (fetch->out_type >= SMP_TYPES) {
Willy Tarreau975c1782013-12-12 23:16:54 +0100871 memprintf(err_msg, "returns type of fetch method '%s' is unknown", fkw);
Emeric Brun107ca302010-01-04 16:16:05 +0100872 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200873 }
Emeric Brun107ca302010-01-04 16:16:05 +0100874 prev_type = fetch->out_type;
Willy Tarreau833cc792013-07-24 15:34:19 +0200875
Vincent Bernat02779b62016-04-03 13:48:43 +0200876 expr = calloc(1, sizeof(*expr));
Emeric Brun485479d2010-09-23 18:02:19 +0200877 if (!expr)
878 goto out_error;
Emeric Brun107ca302010-01-04 16:16:05 +0100879
880 LIST_INIT(&(expr->conv_exprs));
881 expr->fetch = fetch;
Willy Tarreau2e845be2012-10-19 19:49:09 +0200882 expr->arg_p = empty_arg_list;
Emeric Brun107ca302010-01-04 16:16:05 +0100883
Willy Tarreau689a1df2013-12-13 00:40:11 +0100884 /* Note that we call the argument parser even with an empty string,
885 * this allows it to automatically create entries for mandatory
886 * implicit arguments (eg: local proxy name).
887 */
888 al->kw = expr->fetch->kw;
889 al->conv = NULL;
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100890 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 +0100891 memprintf(err_msg, "fetch method '%s' : %s", fkw, *err_msg);
892 goto out_error;
893 }
Willy Tarreau2e845be2012-10-19 19:49:09 +0200894
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100895 /* now endt is our first char not part of the arg list, typically the
896 * comma after the sample fetch name or after the closing parenthesis,
897 * or the NUL char.
898 */
899
Willy Tarreau689a1df2013-12-13 00:40:11 +0100900 if (!expr->arg_p) {
901 expr->arg_p = empty_arg_list;
Emeric Brun485479d2010-09-23 18:02:19 +0200902 }
Willy Tarreau689a1df2013-12-13 00:40:11 +0100903 else if (fetch->val_args && !fetch->val_args(expr->arg_p, err_msg)) {
904 memprintf(err_msg, "invalid args in fetch method '%s' : %s", fkw, *err_msg);
Emeric Brun485479d2010-09-23 18:02:19 +0200905 goto out_error;
Emeric Brun107ca302010-01-04 16:16:05 +0100906 }
907
Willy Tarreau833cc792013-07-24 15:34:19 +0200908 /* Now process the converters if any. We have two supported syntaxes
909 * for the converters, which can be combined :
910 * - comma-delimited list of converters just after the keyword and args ;
911 * - one converter per keyword
912 * The combination allows to have each keyword being a comma-delimited
913 * series of converters.
914 *
915 * We want to process the former first, then the latter. For this we start
916 * from the beginning of the supposed place in the exiting conv chain, which
917 * starts at the last comma (endt).
918 */
919
920 while (1) {
Willy Tarreau12785782012-04-27 21:37:17 +0200921 struct sample_conv_expr *conv_expr;
Willy Tarreau46dfd782019-12-17 10:25:29 +0100922 int err_arg;
923 int argcnt;
Emeric Brun107ca302010-01-04 16:16:05 +0100924
Willy Tarreau833cc792013-07-24 15:34:19 +0200925 if (*endt && *endt != ',') {
Willy Tarreaue3b57bf2020-02-14 16:50:14 +0100926 if (endptr) {
927 /* end found, let's stop here */
928 break;
929 }
Willy Tarreau833cc792013-07-24 15:34:19 +0200930 if (ckw)
Willy Tarreau97108e02016-11-25 07:33:24 +0100931 memprintf(err_msg, "missing comma after converter '%s'", ckw);
Willy Tarreau833cc792013-07-24 15:34:19 +0200932 else
Willy Tarreau975c1782013-12-12 23:16:54 +0100933 memprintf(err_msg, "missing comma after fetch keyword '%s'", fkw);
Emeric Brun107ca302010-01-04 16:16:05 +0100934 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200935 }
Emeric Brun107ca302010-01-04 16:16:05 +0100936
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100937 /* FIXME: how long should we support such idiocies ? Maybe we
938 * should already warn ?
939 */
Willy Tarreau833cc792013-07-24 15:34:19 +0200940 while (*endt == ',') /* then trailing commas */
941 endt++;
942
Willy Tarreau97108e02016-11-25 07:33:24 +0100943 begw = endt; /* start of converter */
Willy Tarreau833cc792013-07-24 15:34:19 +0200944
945 if (!*begw) {
946 /* none ? skip to next string */
947 (*idx)++;
948 begw = str[*idx];
949 if (!begw || !*begw)
950 break;
951 }
952
Willy Tarreaued2c6622020-02-14 18:27:10 +0100953 for (endw = begw; is_idchar(*endw); endw++)
954 ;
Willy Tarreau833cc792013-07-24 15:34:19 +0200955
956 free(ckw);
957 ckw = my_strndup(begw, endw - begw);
958
959 conv = find_sample_conv(begw, endw - begw);
960 if (!conv) {
961 /* we found an isolated keyword that we don't know, it's not ours */
Willy Tarreaue3b57bf2020-02-14 16:50:14 +0100962 if (begw == str[*idx]) {
963 endt = begw;
Willy Tarreau833cc792013-07-24 15:34:19 +0200964 break;
Willy Tarreaue3b57bf2020-02-14 16:50:14 +0100965 }
Willy Tarreau97108e02016-11-25 07:33:24 +0100966 memprintf(err_msg, "unknown converter '%s'", ckw);
Willy Tarreau833cc792013-07-24 15:34:19 +0200967 goto out_error;
968 }
Emeric Brun107ca302010-01-04 16:16:05 +0100969
Willy Tarreau833cc792013-07-24 15:34:19 +0200970 if (conv->in_type >= SMP_TYPES || conv->out_type >= SMP_TYPES) {
Willy Tarreau97108e02016-11-25 07:33:24 +0100971 memprintf(err_msg, "returns type of converter '%s' is unknown", ckw);
Emeric Brun107ca302010-01-04 16:16:05 +0100972 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200973 }
Emeric Brun107ca302010-01-04 16:16:05 +0100974
975 /* If impossible type conversion */
Willy Tarreau12785782012-04-27 21:37:17 +0200976 if (!sample_casts[prev_type][conv->in_type]) {
Willy Tarreau97108e02016-11-25 07:33:24 +0100977 memprintf(err_msg, "converter '%s' cannot be applied", ckw);
Emeric Brun107ca302010-01-04 16:16:05 +0100978 goto out_error;
Emeric Brun485479d2010-09-23 18:02:19 +0200979 }
Emeric Brun107ca302010-01-04 16:16:05 +0100980
981 prev_type = conv->out_type;
Vincent Bernat02779b62016-04-03 13:48:43 +0200982 conv_expr = calloc(1, sizeof(*conv_expr));
Emeric Brun485479d2010-09-23 18:02:19 +0200983 if (!conv_expr)
984 goto out_error;
Emeric Brun107ca302010-01-04 16:16:05 +0100985
986 LIST_ADDQ(&(expr->conv_exprs), &(conv_expr->list));
987 conv_expr->conv = conv;
988
Willy Tarreau46dfd782019-12-17 10:25:29 +0100989 al->kw = expr->fetch->kw;
990 al->conv = conv_expr->conv->kw;
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100991 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 +0100992 if (argcnt < 0) {
993 memprintf(err_msg, "invalid arg %d in converter '%s' : %s", err_arg+1, ckw, *err_msg);
994 goto out_error;
995 }
Willy Tarreau9e92d322010-01-26 17:58:06 +0100996
Willy Tarreau46dfd782019-12-17 10:25:29 +0100997 if (argcnt && !conv->arg_mask) {
998 memprintf(err_msg, "converter '%s' does not support any args", ckw);
999 goto out_error;
1000 }
Willy Tarreau21d68a62012-04-20 15:52:36 +02001001
Willy Tarreau46dfd782019-12-17 10:25:29 +01001002 if (!conv_expr->arg_p)
1003 conv_expr->arg_p = empty_arg_list;
Willy Tarreau2e845be2012-10-19 19:49:09 +02001004
Willy Tarreau46dfd782019-12-17 10:25:29 +01001005 if (conv->val_args && !conv->val_args(conv_expr->arg_p, conv, file, line, err_msg)) {
1006 memprintf(err_msg, "invalid args in converter '%s' : %s", ckw, *err_msg);
Emeric Brun485479d2010-09-23 18:02:19 +02001007 goto out_error;
Emeric Brun107ca302010-01-04 16:16:05 +01001008 }
1009 }
Emeric Brun485479d2010-09-23 18:02:19 +02001010
Willy Tarreaue3b57bf2020-02-14 16:50:14 +01001011 if (endptr) {
1012 /* end found, let's stop here */
1013 *endptr = (char *)endt;
1014 }
1015
Willy Tarreau833cc792013-07-24 15:34:19 +02001016 out:
1017 free(fkw);
1018 free(ckw);
Emeric Brun107ca302010-01-04 16:16:05 +01001019 return expr;
1020
1021out_error:
Willy Tarreau12785782012-04-27 21:37:17 +02001022 /* TODO: prune_sample_expr(expr); */
Willy Tarreau833cc792013-07-24 15:34:19 +02001023 expr = NULL;
1024 goto out;
Emeric Brun107ca302010-01-04 16:16:05 +01001025}
1026
1027/*
Willy Tarreau12785782012-04-27 21:37:17 +02001028 * Process a fetch + format conversion of defined by the sample expression <expr>
Willy Tarreau32a6f2e2012-04-25 10:13:36 +02001029 * on request or response considering the <opt> parameter.
Willy Tarreau12785782012-04-27 21:37:17 +02001030 * Returns a pointer on a typed sample structure containing the result or NULL if
1031 * sample is not found or when format conversion failed.
Emeric Brun107ca302010-01-04 16:16:05 +01001032 * If <p> is not null, function returns results in structure pointed by <p>.
Willy Tarreau12785782012-04-27 21:37:17 +02001033 * If <p> is null, functions returns a pointer on a static sample structure.
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001034 *
1035 * Note: the fetch functions are required to properly set the return type. The
1036 * conversion functions must do so too. However the cast functions do not need
1037 * to since they're made to cast mutiple types according to what is required.
Willy Tarreau6bcb0a82014-07-30 08:56:35 +02001038 *
1039 * The caller may indicate in <opt> if it considers the result final or not.
1040 * The caller needs to check the SMP_F_MAY_CHANGE flag in p->flags to verify
1041 * if the result is stable or not, according to the following table :
1042 *
1043 * return MAY_CHANGE FINAL Meaning for the sample
1044 * NULL 0 * Not present and will never be (eg: header)
1045 * NULL 1 0 Not present yet, could change (eg: POST param)
1046 * NULL 1 1 Not present yet, will not change anymore
1047 * smp 0 * Present and will not change (eg: header)
1048 * smp 1 0 Present, may change (eg: request length)
1049 * smp 1 1 Present, last known value (eg: request length)
Emeric Brun107ca302010-01-04 16:16:05 +01001050 */
Willy Tarreau192252e2015-04-04 01:47:55 +02001051struct sample *sample_process(struct proxy *px, struct session *sess,
1052 struct stream *strm, unsigned int opt,
Willy Tarreau12785782012-04-27 21:37:17 +02001053 struct sample_expr *expr, struct sample *p)
Emeric Brun107ca302010-01-04 16:16:05 +01001054{
Willy Tarreau12785782012-04-27 21:37:17 +02001055 struct sample_conv_expr *conv_expr;
Emeric Brun107ca302010-01-04 16:16:05 +01001056
Willy Tarreau18387e22013-07-25 12:02:38 +02001057 if (p == NULL) {
Willy Tarreaub4a88f02012-04-23 21:35:11 +02001058 p = &temp_smp;
Willy Tarreau6c616e02014-06-25 16:56:41 +02001059 memset(p, 0, sizeof(*p));
Willy Tarreau18387e22013-07-25 12:02:38 +02001060 }
Emeric Brun107ca302010-01-04 16:16:05 +01001061
Willy Tarreau1777ea62016-03-10 16:15:46 +01001062 smp_set_owner(p, px, sess, strm, opt);
Thierry FOURNIER0786d052015-05-11 15:42:45 +02001063 if (!expr->fetch->process(expr->arg_p, p, expr->fetch->kw, expr->fetch->private))
Emeric Brun107ca302010-01-04 16:16:05 +01001064 return NULL;
1065
Emeric Brun107ca302010-01-04 16:16:05 +01001066 list_for_each_entry(conv_expr, &expr->conv_exprs, list) {
Willy Tarreau12e50112012-04-25 17:21:49 +02001067 /* we want to ensure that p->type can be casted into
1068 * conv_expr->conv->in_type. We have 3 possibilities :
1069 * - NULL => not castable.
1070 * - c_none => nothing to do (let's optimize it)
1071 * - other => apply cast and prepare to fail
1072 */
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001073 if (!sample_casts[p->data.type][conv_expr->conv->in_type])
Willy Tarreau12e50112012-04-25 17:21:49 +02001074 return NULL;
1075
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001076 if (sample_casts[p->data.type][conv_expr->conv->in_type] != c_none &&
1077 !sample_casts[p->data.type][conv_expr->conv->in_type](p))
Emeric Brun107ca302010-01-04 16:16:05 +01001078 return NULL;
1079
Willy Tarreau12e50112012-04-25 17:21:49 +02001080 /* OK cast succeeded */
1081
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001082 if (!conv_expr->conv->process(conv_expr->arg_p, p, conv_expr->conv->private))
Emeric Brun107ca302010-01-04 16:16:05 +01001083 return NULL;
Emeric Brun107ca302010-01-04 16:16:05 +01001084 }
1085 return p;
1086}
1087
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001088/*
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001089 * Resolve all remaining arguments in proxy <p>. Returns the number of
1090 * errors or 0 if everything is fine.
1091 */
1092int smp_resolve_args(struct proxy *p)
1093{
1094 struct arg_list *cur, *bak;
1095 const char *ctx, *where;
1096 const char *conv_ctx, *conv_pre, *conv_pos;
1097 struct userlist *ul;
Willy Tarreau46947782015-01-19 19:00:58 +01001098 struct my_regex *reg;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001099 struct arg *arg;
1100 int cfgerr = 0;
Willy Tarreau46947782015-01-19 19:00:58 +01001101 int rflags;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001102
1103 list_for_each_entry_safe(cur, bak, &p->conf.args.list, list) {
1104 struct proxy *px;
1105 struct server *srv;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001106 struct stktable *t;
1107 char *pname, *sname, *stktname;
Willy Tarreau46947782015-01-19 19:00:58 +01001108 char *err;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001109
1110 arg = cur->arg;
1111
1112 /* prepare output messages */
1113 conv_pre = conv_pos = conv_ctx = "";
1114 if (cur->conv) {
1115 conv_ctx = cur->conv;
1116 conv_pre = "conversion keyword '";
1117 conv_pos = "' for ";
1118 }
1119
1120 where = "in";
1121 ctx = "sample fetch keyword";
1122 switch (cur->ctx) {
Dragan Dosen0b85ece2015-09-25 19:17:44 +02001123 case ARGC_STK: where = "in stick rule in"; break;
1124 case ARGC_TRK: where = "in tracking rule in"; break;
1125 case ARGC_LOG: where = "in log-format string in"; break;
1126 case ARGC_LOGSD: where = "in log-format-sd string in"; break;
1127 case ARGC_HRQ: where = "in http-request header format string in"; break;
1128 case ARGC_HRS: where = "in http-response header format string in"; break;
1129 case ARGC_UIF: where = "in unique-id-format string in"; break;
1130 case ARGC_RDR: where = "in redirect format string in"; break;
1131 case ARGC_CAP: where = "in capture rule in"; break;
1132 case ARGC_ACL: ctx = "ACL keyword"; break;
1133 case ARGC_SRV: where = "in server directive in"; break;
Christopher Fauletf7e4e7e2016-10-27 22:29:49 +02001134 case ARGC_SPOE: where = "in spoe-message directive in"; break;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001135 }
1136
1137 /* set a few default settings */
1138 px = p;
1139 pname = p->id;
1140
1141 switch (arg->type) {
1142 case ARGT_SRV:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001143 if (!arg->data.str.data) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001144 ha_alert("parsing [%s:%d] : missing server name in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1145 cur->file, cur->line,
1146 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001147 cfgerr++;
1148 continue;
1149 }
1150
1151 /* we support two formats : "bck/srv" and "srv" */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001152 sname = strrchr(arg->data.str.area, '/');
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001153
1154 if (sname) {
1155 *sname++ = '\0';
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001156 pname = arg->data.str.area;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001157
Willy Tarreau9e0bb102015-05-26 11:24:42 +02001158 px = proxy_be_by_name(pname);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001159 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001160 ha_alert("parsing [%s:%d] : unable to find proxy '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1161 cur->file, cur->line, pname,
1162 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001163 cfgerr++;
1164 break;
1165 }
1166 }
1167 else
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001168 sname = arg->data.str.area;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001169
1170 srv = findserver(px, sname);
1171 if (!srv) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001172 ha_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",
1173 cur->file, cur->line, sname, pname,
1174 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001175 cfgerr++;
1176 break;
1177 }
1178
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001179 free(arg->data.str.area);
1180 arg->data.str.area = NULL;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001181 arg->unresolved = 0;
1182 arg->data.srv = srv;
1183 break;
1184
1185 case ARGT_FE:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001186 if (arg->data.str.data) {
1187 pname = arg->data.str.area;
Willy Tarreau9e0bb102015-05-26 11:24:42 +02001188 px = proxy_fe_by_name(pname);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001189 }
1190
1191 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001192 ha_alert("parsing [%s:%d] : unable to find frontend '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1193 cur->file, cur->line, pname,
1194 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001195 cfgerr++;
1196 break;
1197 }
1198
1199 if (!(px->cap & PR_CAP_FE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001200 ha_alert("parsing [%s:%d] : proxy '%s', referenced in arg %d of %s%s%s%s '%s' %s proxy '%s', has not frontend capability.\n",
1201 cur->file, cur->line, pname,
1202 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001203 cfgerr++;
1204 break;
1205 }
1206
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001207 free(arg->data.str.area);
1208 arg->data.str.area = NULL;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001209 arg->unresolved = 0;
1210 arg->data.prx = px;
1211 break;
1212
1213 case ARGT_BE:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001214 if (arg->data.str.data) {
1215 pname = arg->data.str.area;
Willy Tarreau9e0bb102015-05-26 11:24:42 +02001216 px = proxy_be_by_name(pname);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001217 }
1218
1219 if (!px) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001220 ha_alert("parsing [%s:%d] : unable to find backend '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1221 cur->file, cur->line, pname,
1222 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001223 cfgerr++;
1224 break;
1225 }
1226
1227 if (!(px->cap & PR_CAP_BE)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001228 ha_alert("parsing [%s:%d] : proxy '%s', referenced in arg %d of %s%s%s%s '%s' %s proxy '%s', has not backend capability.\n",
1229 cur->file, cur->line, pname,
1230 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001231 cfgerr++;
1232 break;
1233 }
1234
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001235 free(arg->data.str.area);
1236 arg->data.str.area = NULL;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001237 arg->unresolved = 0;
1238 arg->data.prx = px;
1239 break;
1240
1241 case ARGT_TAB:
Frédéric Lécaille9417f452019-06-20 09:31:04 +02001242 if (arg->data.str.data)
1243 stktname = arg->data.str.area;
1244 else
1245 stktname = px->id;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001246
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001247 t = stktable_find_by_name(stktname);
1248 if (!t) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001249 ha_alert("parsing [%s:%d] : unable to find table '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001250 cur->file, cur->line, stktname,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001251 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001252 cfgerr++;
1253 break;
1254 }
1255
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001256 if (!t->size) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001257 ha_alert("parsing [%s:%d] : no table in proxy '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001258 cur->file, cur->line, stktname,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001259 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001260 cfgerr++;
1261 break;
1262 }
1263
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001264 if (t->proxy && (p->bind_proc & ~t->proxy->bind_proc)) {
Willy Tarreau151e1ca2019-02-05 11:38:38 +01001265 ha_alert("parsing [%s:%d] : stick-table '%s' not present on all processes covered by proxy '%s'.\n",
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001266 cur->file, cur->line, t->proxy->id, p->id);
Willy Tarreau1a0fe3b2019-02-06 10:25:07 +01001267 cfgerr++;
1268 break;
Willy Tarreau151e1ca2019-02-05 11:38:38 +01001269 }
1270
Frédéric Lécaillebe367932019-08-07 09:28:39 +02001271 if (!in_proxies_list(t->proxies_list, p)) {
Frédéric Lécaille015e4d72019-03-19 14:55:01 +01001272 p->next_stkt_ref = t->proxies_list;
1273 t->proxies_list = p;
1274 }
1275
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001276 free(arg->data.str.area);
1277 arg->data.str.area = NULL;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001278 arg->unresolved = 0;
Frédéric Lécaille1b8e68e2019-03-14 07:07:41 +01001279 arg->data.t = t;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001280 break;
1281
1282 case ARGT_USR:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001283 if (!arg->data.str.data) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001284 ha_alert("parsing [%s:%d] : missing userlist name in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1285 cur->file, cur->line,
1286 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001287 cfgerr++;
1288 break;
1289 }
1290
1291 if (p->uri_auth && p->uri_auth->userlist &&
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001292 !strcmp(p->uri_auth->userlist->name, arg->data.str.area))
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001293 ul = p->uri_auth->userlist;
1294 else
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001295 ul = auth_find_userlist(arg->data.str.area);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001296
1297 if (!ul) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001298 ha_alert("parsing [%s:%d] : unable to find userlist '%s' referenced in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001299 cur->file, cur->line,
1300 arg->data.str.area,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001301 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001302 cfgerr++;
1303 break;
1304 }
1305
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001306 free(arg->data.str.area);
1307 arg->data.str.area = NULL;
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001308 arg->unresolved = 0;
1309 arg->data.usr = ul;
1310 break;
Willy Tarreau46947782015-01-19 19:00:58 +01001311
1312 case ARGT_REG:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001313 if (!arg->data.str.data) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001314 ha_alert("parsing [%s:%d] : missing regex in arg %d of %s%s%s%s '%s' %s proxy '%s'.\n",
1315 cur->file, cur->line,
1316 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id);
Willy Tarreau46947782015-01-19 19:00:58 +01001317 cfgerr++;
1318 continue;
1319 }
1320
Willy Tarreau46947782015-01-19 19:00:58 +01001321 rflags = 0;
1322 rflags |= (arg->type_flags & ARGF_REG_ICASE) ? REG_ICASE : 0;
1323 err = NULL;
1324
Dragan Dosen26743032019-04-30 15:54:36 +02001325 if (!(reg = regex_comp(arg->data.str.area, !(rflags & REG_ICASE), 1 /* capture substr */, &err))) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001326 ha_alert("parsing [%s:%d] : error in regex '%s' in arg %d of %s%s%s%s '%s' %s proxy '%s' : %s.\n",
1327 cur->file, cur->line,
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001328 arg->data.str.area,
Christopher Faulet767a84b2017-11-24 16:50:31 +01001329 cur->arg_pos + 1, conv_pre, conv_ctx, conv_pos, ctx, cur->kw, where, p->id, err);
Willy Tarreau46947782015-01-19 19:00:58 +01001330 cfgerr++;
1331 continue;
1332 }
1333
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001334 free(arg->data.str.area);
1335 arg->data.str.area = NULL;
Willy Tarreau46947782015-01-19 19:00:58 +01001336 arg->unresolved = 0;
1337 arg->data.reg = reg;
1338 break;
1339
1340
Willy Tarreaua4312fa2013-04-02 16:34:32 +02001341 }
1342
1343 LIST_DEL(&cur->list);
1344 free(cur);
1345 } /* end of args processing */
1346
1347 return cfgerr;
1348}
1349
1350/*
Willy Tarreau5b4bf702014-06-13 16:04:35 +02001351 * Process a fetch + format conversion as defined by the sample expression
1352 * <expr> on request or response considering the <opt> parameter. The output is
Adis Nezirovic79beb242015-07-06 15:41:02 +02001353 * not explicitly set to <smp_type>, but shall be compatible with it as
1354 * specified by 'sample_casts' table. If a stable sample can be fetched, or an
1355 * unstable one when <opt> contains SMP_OPT_FINAL, the sample is converted and
Willy Tarreau5b4bf702014-06-13 16:04:35 +02001356 * returned without the SMP_F_MAY_CHANGE flag. If an unstable sample is found
1357 * and <opt> does not contain SMP_OPT_FINAL, then the sample is returned as-is
1358 * with its SMP_F_MAY_CHANGE flag so that the caller can check it and decide to
1359 * take actions (eg: wait longer). If a sample could not be found or could not
Willy Tarreau6bcb0a82014-07-30 08:56:35 +02001360 * be converted, NULL is returned. The caller MUST NOT use the sample if the
1361 * SMP_F_MAY_CHANGE flag is present, as it is used only as a hint that there is
1362 * still hope to get it after waiting longer, and is not converted to string.
1363 * The possible output combinations are the following :
1364 *
1365 * return MAY_CHANGE FINAL Meaning for the sample
1366 * NULL * * Not present and will never be (eg: header)
1367 * smp 0 * Final value converted (eg: header)
1368 * smp 1 0 Not present yet, may appear later (eg: header)
1369 * smp 1 1 never happens (either flag is cleared on output)
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001370 */
Adis Nezirovic79beb242015-07-06 15:41:02 +02001371struct sample *sample_fetch_as_type(struct proxy *px, struct session *sess,
Willy Tarreau192252e2015-04-04 01:47:55 +02001372 struct stream *strm, unsigned int opt,
Adis Nezirovic79beb242015-07-06 15:41:02 +02001373 struct sample_expr *expr, int smp_type)
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001374{
Willy Tarreau5b4bf702014-06-13 16:04:35 +02001375 struct sample *smp = &temp_smp;
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001376
Willy Tarreau6c616e02014-06-25 16:56:41 +02001377 memset(smp, 0, sizeof(*smp));
1378
Willy Tarreau192252e2015-04-04 01:47:55 +02001379 if (!sample_process(px, sess, strm, opt, expr, smp)) {
Willy Tarreau5b4bf702014-06-13 16:04:35 +02001380 if ((smp->flags & SMP_F_MAY_CHANGE) && !(opt & SMP_OPT_FINAL))
1381 return smp;
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001382 return NULL;
Willy Tarreau5b4bf702014-06-13 16:04:35 +02001383 }
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001384
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001385 if (!sample_casts[smp->data.type][smp_type])
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001386 return NULL;
1387
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001388 if (!sample_casts[smp->data.type][smp_type](smp))
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001389 return NULL;
1390
Willy Tarreau5b4bf702014-06-13 16:04:35 +02001391 smp->flags &= ~SMP_F_MAY_CHANGE;
Willy Tarreaue7ad4bb2012-12-21 00:02:32 +01001392 return smp;
1393}
1394
Christopher Faulet476e5d02016-10-26 11:34:47 +02001395static void release_sample_arg(struct arg *p)
1396{
1397 struct arg *p_back = p;
1398
1399 if (!p)
1400 return;
1401
1402 while (p->type != ARGT_STOP) {
1403 if (p->type == ARGT_STR || p->unresolved) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001404 free(p->data.str.area);
1405 p->data.str.area = NULL;
Christopher Faulet476e5d02016-10-26 11:34:47 +02001406 p->unresolved = 0;
1407 }
1408 else if (p->type == ARGT_REG) {
Dragan Dosen26743032019-04-30 15:54:36 +02001409 regex_free(p->data.reg);
1410 p->data.reg = NULL;
Christopher Faulet476e5d02016-10-26 11:34:47 +02001411 }
1412 p++;
1413 }
1414
1415 if (p_back != empty_arg_list)
1416 free(p_back);
1417}
1418
1419void release_sample_expr(struct sample_expr *expr)
1420{
1421 struct sample_conv_expr *conv_expr, *conv_exprb;
1422
1423 if (!expr)
1424 return;
1425
1426 list_for_each_entry_safe(conv_expr, conv_exprb, &expr->conv_exprs, list)
1427 release_sample_arg(conv_expr->arg_p);
1428 release_sample_arg(expr->arg_p);
1429 free(expr);
1430}
1431
Emeric Brun107ca302010-01-04 16:16:05 +01001432/*****************************************************************/
Willy Tarreau12785782012-04-27 21:37:17 +02001433/* Sample format convert functions */
Willy Tarreaub8c8f1f2012-04-23 22:38:26 +02001434/* These functions set the data type on return. */
Emeric Brun107ca302010-01-04 16:16:05 +01001435/*****************************************************************/
1436
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001437static int sample_conv_debug(const struct arg *arg_p, struct sample *smp, void *private)
1438{
1439 int i;
1440 struct sample tmp;
Willy Tarreau0851fd52019-12-17 10:07:25 +01001441 struct buffer *buf;
1442 struct sink *sink;
1443 struct ist line;
1444 char *pfx;
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001445
Willy Tarreau0851fd52019-12-17 10:07:25 +01001446 buf = alloc_trash_chunk();
1447 if (!buf)
1448 goto end;
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001449
Willy Tarreau0851fd52019-12-17 10:07:25 +01001450 sink = (struct sink *)arg_p[1].data.str.area;
1451 BUG_ON(!sink);
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001452
Willy Tarreau0851fd52019-12-17 10:07:25 +01001453 pfx = arg_p[0].data.str.area;
1454 BUG_ON(!pfx);
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001455
Willy Tarreau0851fd52019-12-17 10:07:25 +01001456 chunk_printf(buf, "[debug] %s: type=%s ", pfx, smp_to_type[smp->data.type]);
1457 if (!sample_casts[smp->data.type][SMP_T_STR])
1458 goto nocast;
1459
1460 /* Copy sample fetch. This puts the sample as const, the
1461 * cast will copy data if a transformation is required.
1462 */
1463 memcpy(&tmp, smp, sizeof(struct sample));
1464 tmp.flags = SMP_F_CONST;
1465
1466 if (!sample_casts[smp->data.type][SMP_T_STR](&tmp))
1467 goto nocast;
1468
1469 /* Display the displayable chars*. */
1470 b_putchr(buf, '<');
1471 for (i = 0; i < tmp.data.u.str.data; i++) {
Willy Tarreau90807112020-02-25 08:16:33 +01001472 if (isprint((unsigned char)tmp.data.u.str.area[i]))
Willy Tarreau0851fd52019-12-17 10:07:25 +01001473 b_putchr(buf, tmp.data.u.str.area[i]);
1474 else
1475 b_putchr(buf, '.');
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001476 }
Willy Tarreau0851fd52019-12-17 10:07:25 +01001477 b_putchr(buf, '>');
1478
1479 done:
1480 line = ist2(buf->area, buf->data);
1481 sink_write(sink, &line, 1);
1482 end:
1483 free_trash_chunk(buf);
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001484 return 1;
Willy Tarreau0851fd52019-12-17 10:07:25 +01001485 nocast:
1486 chunk_appendf(buf, "(undisplayable)");
1487 goto done;
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001488}
Willy Tarreau0851fd52019-12-17 10:07:25 +01001489
1490// This function checks the "debug" converter's arguments.
1491static int smp_check_debug(struct arg *args, struct sample_conv *conv,
1492 const char *file, int line, char **err)
1493{
1494 const char *name = "buf0";
1495 struct sink *sink = NULL;
1496
1497 if (args[0].type != ARGT_STR) {
1498 /* optional prefix */
1499 args[0].data.str.area = "";
1500 args[0].data.str.data = 0;
1501 }
1502
1503 if (args[1].type == ARGT_STR)
1504 name = args[1].data.str.area;
1505
1506 sink = sink_find(name);
1507 if (!sink) {
1508 memprintf(err, "No such sink '%s'", name);
1509 return 0;
1510 }
1511
1512 args[1].data.str.area = (char *)sink;
1513 args[1].data.str.data = 0; // that's not a string anymore
1514 return 1;
1515}
Thierry FOURNIER9687c772015-05-07 15:46:29 +02001516
Holger Just1bfc24b2017-05-06 00:56:53 +02001517static int sample_conv_base642bin(const struct arg *arg_p, struct sample *smp, void *private)
1518{
Willy Tarreau83061a82018-07-13 11:56:34 +02001519 struct buffer *trash = get_trash_chunk();
Holger Just1bfc24b2017-05-06 00:56:53 +02001520 int bin_len;
1521
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001522 trash->data = 0;
1523 bin_len = base64dec(smp->data.u.str.area, smp->data.u.str.data,
1524 trash->area, trash->size);
Holger Just1bfc24b2017-05-06 00:56:53 +02001525 if (bin_len < 0)
1526 return 0;
1527
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001528 trash->data = bin_len;
Holger Just1bfc24b2017-05-06 00:56:53 +02001529 smp->data.u.str = *trash;
1530 smp->data.type = SMP_T_BIN;
1531 smp->flags &= ~SMP_F_CONST;
1532 return 1;
1533}
1534
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001535static int sample_conv_bin2base64(const struct arg *arg_p, struct sample *smp, void *private)
Emeric Brun53d1a982014-04-30 18:21:37 +02001536{
Willy Tarreau83061a82018-07-13 11:56:34 +02001537 struct buffer *trash = get_trash_chunk();
Emeric Brun53d1a982014-04-30 18:21:37 +02001538 int b64_len;
1539
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001540 trash->data = 0;
1541 b64_len = a2base64(smp->data.u.str.area, smp->data.u.str.data,
1542 trash->area, trash->size);
Emeric Brun53d1a982014-04-30 18:21:37 +02001543 if (b64_len < 0)
1544 return 0;
1545
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001546 trash->data = b64_len;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001547 smp->data.u.str = *trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001548 smp->data.type = SMP_T_STR;
Emeric Brun53d1a982014-04-30 18:21:37 +02001549 smp->flags &= ~SMP_F_CONST;
1550 return 1;
1551}
1552
Dragan Dosen6e5a9ca2017-10-24 09:18:23 +02001553static int sample_conv_sha1(const struct arg *arg_p, struct sample *smp, void *private)
1554{
1555 blk_SHA_CTX ctx;
Willy Tarreau83061a82018-07-13 11:56:34 +02001556 struct buffer *trash = get_trash_chunk();
Dragan Dosen6e5a9ca2017-10-24 09:18:23 +02001557
1558 memset(&ctx, 0, sizeof(ctx));
1559
1560 blk_SHA1_Init(&ctx);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001561 blk_SHA1_Update(&ctx, smp->data.u.str.area, smp->data.u.str.data);
1562 blk_SHA1_Final((unsigned char *) trash->area, &ctx);
Dragan Dosen6e5a9ca2017-10-24 09:18:23 +02001563
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001564 trash->data = 20;
Dragan Dosen6e5a9ca2017-10-24 09:18:23 +02001565 smp->data.u.str = *trash;
1566 smp->data.type = SMP_T_BIN;
1567 smp->flags &= ~SMP_F_CONST;
1568 return 1;
1569}
1570
Tim Duesterhusd4376302019-06-17 12:41:44 +02001571#ifdef USE_OPENSSL
Tim Duesterhuscd373242019-12-17 12:31:20 +01001572static int smp_check_sha2(struct arg *args, struct sample_conv *conv,
1573 const char *file, int line, char **err)
1574{
1575 if (args[0].type == ARGT_STOP)
1576 return 1;
1577 if (args[0].type != ARGT_SINT) {
1578 memprintf(err, "Invalid type '%s'", arg_type_names[args[0].type]);
1579 return 0;
1580 }
1581
1582 switch (args[0].data.sint) {
1583 case 224:
1584 case 256:
1585 case 384:
1586 case 512:
1587 /* this is okay */
1588 return 1;
1589 default:
1590 memprintf(err, "Unsupported number of bits: '%lld'", args[0].data.sint);
1591 return 0;
1592 }
1593}
1594
Tim Duesterhusd4376302019-06-17 12:41:44 +02001595static int sample_conv_sha2(const struct arg *arg_p, struct sample *smp, void *private)
1596{
1597 struct buffer *trash = get_trash_chunk();
1598 int bits = 256;
1599 if (arg_p && arg_p->data.sint)
1600 bits = arg_p->data.sint;
1601
1602 switch (bits) {
1603 case 224: {
1604 SHA256_CTX ctx;
1605
1606 memset(&ctx, 0, sizeof(ctx));
1607
1608 SHA224_Init(&ctx);
1609 SHA224_Update(&ctx, smp->data.u.str.area, smp->data.u.str.data);
1610 SHA224_Final((unsigned char *) trash->area, &ctx);
1611 trash->data = SHA224_DIGEST_LENGTH;
1612 break;
1613 }
1614 case 256: {
1615 SHA256_CTX ctx;
1616
1617 memset(&ctx, 0, sizeof(ctx));
1618
1619 SHA256_Init(&ctx);
1620 SHA256_Update(&ctx, smp->data.u.str.area, smp->data.u.str.data);
1621 SHA256_Final((unsigned char *) trash->area, &ctx);
1622 trash->data = SHA256_DIGEST_LENGTH;
1623 break;
1624 }
1625 case 384: {
1626 SHA512_CTX ctx;
1627
1628 memset(&ctx, 0, sizeof(ctx));
1629
1630 SHA384_Init(&ctx);
1631 SHA384_Update(&ctx, smp->data.u.str.area, smp->data.u.str.data);
1632 SHA384_Final((unsigned char *) trash->area, &ctx);
1633 trash->data = SHA384_DIGEST_LENGTH;
1634 break;
1635 }
1636 case 512: {
1637 SHA512_CTX ctx;
1638
1639 memset(&ctx, 0, sizeof(ctx));
1640
1641 SHA512_Init(&ctx);
1642 SHA512_Update(&ctx, smp->data.u.str.area, smp->data.u.str.data);
1643 SHA512_Final((unsigned char *) trash->area, &ctx);
1644 trash->data = SHA512_DIGEST_LENGTH;
1645 break;
1646 }
1647 default:
1648 return 0;
1649 }
1650
1651 smp->data.u.str = *trash;
1652 smp->data.type = SMP_T_BIN;
1653 smp->flags &= ~SMP_F_CONST;
1654 return 1;
1655}
1656#endif
1657
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001658static int sample_conv_bin2hex(const struct arg *arg_p, struct sample *smp, void *private)
Thierry FOURNIER2f49d6d2014-03-12 15:01:52 +01001659{
Willy Tarreau83061a82018-07-13 11:56:34 +02001660 struct buffer *trash = get_trash_chunk();
Thierry FOURNIER2f49d6d2014-03-12 15:01:52 +01001661 unsigned char c;
1662 int ptr = 0;
1663
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001664 trash->data = 0;
1665 while (ptr < smp->data.u.str.data && trash->data <= trash->size - 2) {
1666 c = smp->data.u.str.area[ptr++];
1667 trash->area[trash->data++] = hextab[(c >> 4) & 0xF];
1668 trash->area[trash->data++] = hextab[c & 0xF];
Thierry FOURNIER2f49d6d2014-03-12 15:01:52 +01001669 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001670 smp->data.u.str = *trash;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001671 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01001672 smp->flags &= ~SMP_F_CONST;
Thierry FOURNIER2f49d6d2014-03-12 15:01:52 +01001673 return 1;
1674}
1675
Dragan Dosen3f957b22017-10-24 09:27:34 +02001676static int sample_conv_hex2int(const struct arg *arg_p, struct sample *smp, void *private)
1677{
1678 long long int n = 0;
1679 int i, c;
1680
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001681 for (i = 0; i < smp->data.u.str.data; i++) {
1682 if ((c = hex2i(smp->data.u.str.area[i])) < 0)
Dragan Dosen3f957b22017-10-24 09:27:34 +02001683 return 0;
1684 n = (n << 4) + c;
1685 }
1686
1687 smp->data.u.sint = n;
1688 smp->data.type = SMP_T_SINT;
1689 smp->flags &= ~SMP_F_CONST;
1690 return 1;
1691}
1692
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02001693/* hashes the binary input into a 32-bit unsigned int */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001694static int sample_conv_djb2(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02001695{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001696 smp->data.u.sint = hash_djb2(smp->data.u.str.area,
1697 smp->data.u.str.data);
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001698 if (arg_p && arg_p->data.sint)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001699 smp->data.u.sint = full_hash(smp->data.u.sint);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001700 smp->data.type = SMP_T_SINT;
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02001701 return 1;
1702}
1703
Willy Tarreau60a2ee72017-12-15 07:13:48 +01001704static int sample_conv_length(const struct arg *arg_p, struct sample *smp, void *private)
Etienne Carriereed0d24e2017-12-13 13:41:34 +01001705{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001706 int i = smp->data.u.str.data;
Etienne Carriereed0d24e2017-12-13 13:41:34 +01001707 smp->data.u.sint = i;
1708 smp->data.type = SMP_T_SINT;
1709 return 1;
1710}
1711
1712
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001713static int sample_conv_str2lower(const struct arg *arg_p, struct sample *smp, void *private)
Emeric Brun107ca302010-01-04 16:16:05 +01001714{
1715 int i;
1716
Willy Tarreauf0645dc2016-08-09 14:29:38 +02001717 if (!smp_make_rw(smp))
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01001718 return 0;
1719
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001720 for (i = 0; i < smp->data.u.str.data; i++) {
1721 if ((smp->data.u.str.area[i] >= 'A') && (smp->data.u.str.area[i] <= 'Z'))
1722 smp->data.u.str.area[i] += 'a' - 'A';
Emeric Brun107ca302010-01-04 16:16:05 +01001723 }
1724 return 1;
1725}
1726
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001727static int sample_conv_str2upper(const struct arg *arg_p, struct sample *smp, void *private)
Emeric Brun107ca302010-01-04 16:16:05 +01001728{
1729 int i;
1730
Willy Tarreauf0645dc2016-08-09 14:29:38 +02001731 if (!smp_make_rw(smp))
Emeric Brun485479d2010-09-23 18:02:19 +02001732 return 0;
1733
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001734 for (i = 0; i < smp->data.u.str.data; i++) {
1735 if ((smp->data.u.str.area[i] >= 'a') && (smp->data.u.str.area[i] <= 'z'))
1736 smp->data.u.str.area[i] += 'A' - 'a';
Emeric Brun107ca302010-01-04 16:16:05 +01001737 }
1738 return 1;
1739}
1740
Tim Duesterhus1478aa72018-01-25 16:24:51 +01001741/* takes the IPv4 mask in args[0] and an optional IPv6 mask in args[1] */
1742static int sample_conv_ipmask(const struct arg *args, struct sample *smp, void *private)
Willy Tarreaud31d6eb2010-01-26 18:01:41 +01001743{
Tim Duesterhus1478aa72018-01-25 16:24:51 +01001744 /* Attempt to convert to IPv4 to apply the correct mask. */
1745 c_ipv62ip(smp);
1746
1747 if (smp->data.type == SMP_T_IPV4) {
1748 smp->data.u.ipv4.s_addr &= args[0].data.ipv4.s_addr;
1749 smp->data.type = SMP_T_IPV4;
1750 }
1751 else if (smp->data.type == SMP_T_IPV6) {
1752 /* IPv6 cannot be converted without an IPv6 mask. */
1753 if (args[1].type != ARGT_IPV6)
1754 return 0;
1755
Willy Tarreaua8b7ecd2020-02-25 09:43:22 +01001756 write_u64(&smp->data.u.ipv6.s6_addr[0],
1757 read_u64(&smp->data.u.ipv6.s6_addr[0]) & read_u64(&args[1].data.ipv6.s6_addr[0]));
1758 write_u64(&smp->data.u.ipv6.s6_addr[8],
1759 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 +01001760 smp->data.type = SMP_T_IPV6;
1761 }
1762
Willy Tarreaud31d6eb2010-01-26 18:01:41 +01001763 return 1;
1764}
1765
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001766/* takes an UINT value on input supposed to represent the time since EPOCH,
1767 * adds an optional offset found in args[1] and emits a string representing
1768 * the local time in the format specified in args[1] using strftime().
1769 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001770static int sample_conv_ltime(const struct arg *args, struct sample *smp, void *private)
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001771{
Willy Tarreau83061a82018-07-13 11:56:34 +02001772 struct buffer *temp;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001773 /* With high numbers, the date returned can be negative, the 55 bits mask prevent this. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001774 time_t curr_date = smp->data.u.sint & 0x007fffffffffffffLL;
Thierry FOURNIERfac9ccf2015-07-08 00:15:20 +02001775 struct tm *tm;
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001776
1777 /* add offset */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001778 if (args[1].type == ARGT_SINT)
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001779 curr_date += args[1].data.sint;
1780
Thierry FOURNIERfac9ccf2015-07-08 00:15:20 +02001781 tm = localtime(&curr_date);
1782 if (!tm)
1783 return 0;
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001784 temp = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001785 temp->data = strftime(temp->area, temp->size, args[0].data.str.area,
1786 tm);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001787 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001788 smp->data.type = SMP_T_STR;
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001789 return 1;
1790}
1791
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02001792/* hashes the binary input into a 32-bit unsigned int */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001793static int sample_conv_sdbm(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02001794{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001795 smp->data.u.sint = hash_sdbm(smp->data.u.str.area,
1796 smp->data.u.str.data);
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001797 if (arg_p && arg_p->data.sint)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001798 smp->data.u.sint = full_hash(smp->data.u.sint);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001799 smp->data.type = SMP_T_SINT;
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02001800 return 1;
1801}
1802
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001803/* takes an UINT value on input supposed to represent the time since EPOCH,
1804 * adds an optional offset found in args[1] and emits a string representing
1805 * the UTC date in the format specified in args[1] using strftime().
1806 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001807static int sample_conv_utime(const struct arg *args, struct sample *smp, void *private)
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001808{
Willy Tarreau83061a82018-07-13 11:56:34 +02001809 struct buffer *temp;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001810 /* With high numbers, the date returned can be negative, the 55 bits mask prevent this. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001811 time_t curr_date = smp->data.u.sint & 0x007fffffffffffffLL;
Thierry FOURNIERfac9ccf2015-07-08 00:15:20 +02001812 struct tm *tm;
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001813
1814 /* add offset */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001815 if (args[1].type == ARGT_SINT)
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001816 curr_date += args[1].data.sint;
1817
Thierry FOURNIERfac9ccf2015-07-08 00:15:20 +02001818 tm = gmtime(&curr_date);
1819 if (!tm)
1820 return 0;
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001821 temp = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001822 temp->data = strftime(temp->area, temp->size, args[0].data.str.area,
1823 tm);
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001824 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001825 smp->data.type = SMP_T_STR;
Willy Tarreau0dbfdba2014-07-10 16:37:47 +02001826 return 1;
1827}
1828
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02001829/* hashes the binary input into a 32-bit unsigned int */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001830static int sample_conv_wt6(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02001831{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001832 smp->data.u.sint = hash_wt6(smp->data.u.str.area,
1833 smp->data.u.str.data);
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001834 if (arg_p && arg_p->data.sint)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001835 smp->data.u.sint = full_hash(smp->data.u.sint);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001836 smp->data.type = SMP_T_SINT;
Willy Tarreau23ec4ca2014-07-15 20:15:37 +02001837 return 1;
1838}
1839
Thierry FOURNIER01e09742016-12-26 11:46:11 +01001840/* hashes the binary input into a 32-bit unsigned int using xxh.
1841 * The seed of the hash defaults to 0 but can be changd in argument 1.
1842 */
1843static int sample_conv_xxh32(const struct arg *arg_p, struct sample *smp, void *private)
1844{
1845 unsigned int seed;
1846
1847 if (arg_p && arg_p->data.sint)
1848 seed = arg_p->data.sint;
1849 else
1850 seed = 0;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001851 smp->data.u.sint = XXH32(smp->data.u.str.area, smp->data.u.str.data,
1852 seed);
Thierry FOURNIER01e09742016-12-26 11:46:11 +01001853 smp->data.type = SMP_T_SINT;
1854 return 1;
1855}
1856
1857/* hashes the binary input into a 64-bit unsigned int using xxh.
1858 * In fact, the function returns a 64 bit unsigned, but the sample
1859 * storage of haproxy only proposes 64-bits signed, so the value is
1860 * cast as signed. This cast doesn't impact the hash repartition.
1861 * The seed of the hash defaults to 0 but can be changd in argument 1.
1862 */
1863static int sample_conv_xxh64(const struct arg *arg_p, struct sample *smp, void *private)
1864{
1865 unsigned long long int seed;
1866
1867 if (arg_p && arg_p->data.sint)
1868 seed = (unsigned long long int)arg_p->data.sint;
1869 else
1870 seed = 0;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001871 smp->data.u.sint = (long long int)XXH64(smp->data.u.str.area,
1872 smp->data.u.str.data, seed);
Thierry FOURNIER01e09742016-12-26 11:46:11 +01001873 smp->data.type = SMP_T_SINT;
1874 return 1;
1875}
1876
Willy Tarreau80599772015-01-20 19:35:24 +01001877/* hashes the binary input into a 32-bit unsigned int */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001878static int sample_conv_crc32(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau80599772015-01-20 19:35:24 +01001879{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001880 smp->data.u.sint = hash_crc32(smp->data.u.str.area,
1881 smp->data.u.str.data);
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001882 if (arg_p && arg_p->data.sint)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02001883 smp->data.u.sint = full_hash(smp->data.u.sint);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02001884 smp->data.type = SMP_T_SINT;
Willy Tarreau80599772015-01-20 19:35:24 +01001885 return 1;
1886}
1887
Emmanuel Hocdet50791a72018-03-21 11:19:01 +01001888/* hashes the binary input into crc32c (RFC4960, Appendix B [8].) */
1889static int sample_conv_crc32c(const struct arg *arg_p, struct sample *smp, void *private)
1890{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001891 smp->data.u.sint = hash_crc32c(smp->data.u.str.area,
1892 smp->data.u.str.data);
Emmanuel Hocdet50791a72018-03-21 11:19:01 +01001893 if (arg_p && arg_p->data.sint)
1894 smp->data.u.sint = full_hash(smp->data.u.sint);
1895 smp->data.type = SMP_T_SINT;
1896 return 1;
1897}
1898
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02001899/* This function escape special json characters. The returned string can be
1900 * safely set between two '"' and used as json string. The json string is
1901 * defined like this:
1902 *
1903 * any Unicode character except '"' or '\' or control character
1904 * \", \\, \/, \b, \f, \n, \r, \t, \u + four-hex-digits
1905 *
1906 * The enum input_type contain all the allowed mode for decoding the input
1907 * string.
1908 */
1909enum input_type {
1910 IT_ASCII = 0,
1911 IT_UTF8,
1912 IT_UTF8S,
1913 IT_UTF8P,
1914 IT_UTF8PS,
1915};
1916static int sample_conv_json_check(struct arg *arg, struct sample_conv *conv,
1917 const char *file, int line, char **err)
1918{
1919 if (!arg) {
1920 memprintf(err, "Unexpected empty arg list");
1921 return 0;
1922 }
1923
1924 if (arg->type != ARGT_STR) {
1925 memprintf(err, "Unexpected arg type");
1926 return 0;
1927 }
1928
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001929 if (strcmp(arg->data.str.area, "") == 0) {
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001930 arg->type = ARGT_SINT;
1931 arg->data.sint = IT_ASCII;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02001932 return 1;
1933 }
1934
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001935 else if (strcmp(arg->data.str.area, "ascii") == 0) {
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001936 arg->type = ARGT_SINT;
1937 arg->data.sint = IT_ASCII;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02001938 return 1;
1939 }
1940
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001941 else if (strcmp(arg->data.str.area, "utf8") == 0) {
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001942 arg->type = ARGT_SINT;
1943 arg->data.sint = IT_UTF8;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02001944 return 1;
1945 }
1946
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001947 else if (strcmp(arg->data.str.area, "utf8s") == 0) {
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001948 arg->type = ARGT_SINT;
1949 arg->data.sint = IT_UTF8S;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02001950 return 1;
1951 }
1952
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001953 else if (strcmp(arg->data.str.area, "utf8p") == 0) {
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001954 arg->type = ARGT_SINT;
1955 arg->data.sint = IT_UTF8P;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02001956 return 1;
1957 }
1958
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001959 else if (strcmp(arg->data.str.area, "utf8ps") == 0) {
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001960 arg->type = ARGT_SINT;
1961 arg->data.sint = IT_UTF8PS;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02001962 return 1;
1963 }
1964
Thierry FOURNIER / OZON.IOa69c9122016-11-23 01:13:57 +01001965 memprintf(err, "Unexpected input code type. "
1966 "Allowed value are 'ascii', 'utf8', 'utf8s', 'utf8p' and 'utf8ps'");
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02001967 return 0;
1968}
1969
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02001970static int sample_conv_json(const struct arg *arg_p, struct sample *smp, void *private)
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02001971{
Willy Tarreau83061a82018-07-13 11:56:34 +02001972 struct buffer *temp;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02001973 char _str[7]; /* \u + 4 hex digit + null char for sprintf. */
1974 const char *str;
1975 int len;
1976 enum input_type input_type = IT_ASCII;
1977 unsigned int c;
1978 unsigned int ret;
1979 char *p;
1980
1981 if (arg_p)
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02001982 input_type = arg_p->data.sint;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02001983
1984 temp = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001985 temp->data = 0;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02001986
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001987 p = smp->data.u.str.area;
1988 while (p < smp->data.u.str.area + smp->data.u.str.data) {
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02001989
1990 if (input_type == IT_ASCII) {
1991 /* Read input as ASCII. */
1992 c = *(unsigned char *)p;
1993 p++;
1994 }
1995 else {
1996 /* Read input as UTF8. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001997 ret = utf8_next(p,
1998 smp->data.u.str.data - ( p - smp->data.u.str.area),
1999 &c);
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002000 p += utf8_return_length(ret);
2001
2002 if (input_type == IT_UTF8 && utf8_return_code(ret) != UTF8_CODE_OK)
2003 return 0;
2004 if (input_type == IT_UTF8S && utf8_return_code(ret) != UTF8_CODE_OK)
2005 continue;
2006 if (input_type == IT_UTF8P && utf8_return_code(ret) & (UTF8_CODE_INVRANGE|UTF8_CODE_BADSEQ))
2007 return 0;
2008 if (input_type == IT_UTF8PS && utf8_return_code(ret) & (UTF8_CODE_INVRANGE|UTF8_CODE_BADSEQ))
2009 continue;
2010
2011 /* Check too big values. */
2012 if ((unsigned int)c > 0xffff) {
2013 if (input_type == IT_UTF8 || input_type == IT_UTF8P)
2014 return 0;
2015 continue;
2016 }
2017 }
2018
2019 /* Convert character. */
2020 if (c == '"') {
2021 len = 2;
2022 str = "\\\"";
2023 }
2024 else if (c == '\\') {
2025 len = 2;
2026 str = "\\\\";
2027 }
2028 else if (c == '/') {
2029 len = 2;
2030 str = "\\/";
2031 }
2032 else if (c == '\b') {
2033 len = 2;
2034 str = "\\b";
2035 }
2036 else if (c == '\f') {
2037 len = 2;
2038 str = "\\f";
2039 }
2040 else if (c == '\r') {
2041 len = 2;
2042 str = "\\r";
2043 }
2044 else if (c == '\n') {
2045 len = 2;
2046 str = "\\n";
2047 }
2048 else if (c == '\t') {
2049 len = 2;
2050 str = "\\t";
2051 }
Willy Tarreau90807112020-02-25 08:16:33 +01002052 else if (c > 0xff || !isprint((unsigned char)c)) {
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002053 /* isprint generate a segfault if c is too big. The man says that
2054 * c must have the value of an unsigned char or EOF.
2055 */
2056 len = 6;
2057 _str[0] = '\\';
2058 _str[1] = 'u';
2059 snprintf(&_str[2], 5, "%04x", (unsigned short)c);
2060 str = _str;
2061 }
2062 else {
2063 len = 1;
Willy Tarreau5715da22020-02-25 08:37:37 +01002064 _str[0] = c;
2065 str = _str;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002066 }
2067
2068 /* Check length */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002069 if (temp->data + len > temp->size)
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002070 return 0;
2071
2072 /* Copy string. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002073 memcpy(temp->area + temp->data, str, len);
2074 temp->data += len;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002075 }
2076
2077 smp->flags &= ~SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002078 smp->data.u.str = *temp;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002079 smp->data.type = SMP_T_STR;
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02002080
2081 return 1;
2082}
2083
Emeric Brun54c4ac82014-11-03 15:32:43 +01002084/* This sample function is designed to extract some bytes from an input buffer.
2085 * First arg is the offset.
2086 * Optional second arg is the length to truncate */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002087static int sample_conv_bytes(const struct arg *arg_p, struct sample *smp, void *private)
Emeric Brun54c4ac82014-11-03 15:32:43 +01002088{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002089 if (smp->data.u.str.data <= arg_p[0].data.sint) {
2090 smp->data.u.str.data = 0;
Emeric Brun54c4ac82014-11-03 15:32:43 +01002091 return 1;
2092 }
2093
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002094 if (smp->data.u.str.size)
2095 smp->data.u.str.size -= arg_p[0].data.sint;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002096 smp->data.u.str.data -= arg_p[0].data.sint;
2097 smp->data.u.str.area += arg_p[0].data.sint;
Emeric Brun54c4ac82014-11-03 15:32:43 +01002098
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002099 if ((arg_p[1].type == ARGT_SINT) && (arg_p[1].data.sint < smp->data.u.str.data))
2100 smp->data.u.str.data = arg_p[1].data.sint;
Emeric Brun54c4ac82014-11-03 15:32:43 +01002101
2102 return 1;
2103}
2104
Emeric Brunf399b0d2014-11-03 17:07:03 +01002105static int sample_conv_field_check(struct arg *args, struct sample_conv *conv,
2106 const char *file, int line, char **err)
2107{
2108 struct arg *arg = args;
2109
2110 if (!arg) {
2111 memprintf(err, "Unexpected empty arg list");
2112 return 0;
2113 }
2114
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02002115 if (arg->type != ARGT_SINT) {
Emeric Brunf399b0d2014-11-03 17:07:03 +01002116 memprintf(err, "Unexpected arg type");
2117 return 0;
2118 }
2119
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02002120 if (!arg->data.sint) {
Emeric Brunf399b0d2014-11-03 17:07:03 +01002121 memprintf(err, "Unexpected value 0 for index");
2122 return 0;
2123 }
2124
2125 arg++;
2126
2127 if (arg->type != ARGT_STR) {
2128 memprintf(err, "Unexpected arg type");
2129 return 0;
2130 }
2131
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002132 if (!arg->data.str.data) {
Emeric Brunf399b0d2014-11-03 17:07:03 +01002133 memprintf(err, "Empty separators list");
2134 return 0;
2135 }
2136
2137 return 1;
2138}
2139
2140/* This sample function is designed to a return selected part of a string (field).
2141 * First arg is the index of the field (start at 1)
2142 * Second arg is a char list of separators (type string)
2143 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002144static int sample_conv_field(const struct arg *arg_p, struct sample *smp, void *private)
Emeric Brunf399b0d2014-11-03 17:07:03 +01002145{
Marcin Deranek9631a282018-04-16 14:30:46 +02002146 int field;
Emeric Brunf399b0d2014-11-03 17:07:03 +01002147 char *start, *end;
2148 int i;
Marcin Deranek9631a282018-04-16 14:30:46 +02002149 int count = (arg_p[2].type == ARGT_SINT) ? arg_p[2].data.sint : 1;
Emeric Brunf399b0d2014-11-03 17:07:03 +01002150
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02002151 if (!arg_p[0].data.sint)
Emeric Brunf399b0d2014-11-03 17:07:03 +01002152 return 0;
2153
Marcin Deranek9631a282018-04-16 14:30:46 +02002154 if (arg_p[0].data.sint < 0) {
2155 field = -1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002156 end = start = smp->data.u.str.area + smp->data.u.str.data;
2157 while (start > smp->data.u.str.area) {
2158 for (i = 0 ; i < arg_p[1].data.str.data; i++) {
2159 if (*(start-1) == arg_p[1].data.str.area[i]) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002160 if (field == arg_p[0].data.sint) {
2161 if (count == 1)
2162 goto found;
2163 else if (count > 1)
2164 count--;
2165 } else {
2166 end = start-1;
2167 field--;
2168 }
2169 break;
2170 }
Emeric Brunf399b0d2014-11-03 17:07:03 +01002171 }
Marcin Deranek9631a282018-04-16 14:30:46 +02002172 start--;
Emeric Brunf399b0d2014-11-03 17:07:03 +01002173 }
Marcin Deranek9631a282018-04-16 14:30:46 +02002174 } else {
2175 field = 1;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002176 end = start = smp->data.u.str.area;
2177 while (end - smp->data.u.str.area < smp->data.u.str.data) {
2178 for (i = 0 ; i < arg_p[1].data.str.data; i++) {
2179 if (*end == arg_p[1].data.str.area[i]) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002180 if (field == arg_p[0].data.sint) {
2181 if (count == 1)
2182 goto found;
2183 else if (count > 1)
2184 count--;
2185 } else {
2186 start = end+1;
2187 field++;
2188 }
2189 break;
2190 }
2191 }
2192 end++;
2193 }
Emeric Brunf399b0d2014-11-03 17:07:03 +01002194 }
2195
2196 /* Field not found */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02002197 if (field != arg_p[0].data.sint) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002198 smp->data.u.str.data = 0;
Tim Duesterhus4381d262019-10-16 15:11:15 +02002199 return 0;
Emeric Brunf399b0d2014-11-03 17:07:03 +01002200 }
2201found:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002202 smp->data.u.str.data = end - start;
Emeric Brunf399b0d2014-11-03 17:07:03 +01002203 /* If ret string is len 0, no need to
2204 change pointers or to update size */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002205 if (!smp->data.u.str.data)
Emeric Brunf399b0d2014-11-03 17:07:03 +01002206 return 1;
2207
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002208 smp->data.u.str.area = start;
Emeric Brunf399b0d2014-11-03 17:07:03 +01002209
2210 /* Compute remaining size if needed
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002211 Note: smp->data.u.str.size cannot be set to 0 */
2212 if (smp->data.u.str.size)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002213 smp->data.u.str.size -= start - smp->data.u.str.area;
Emeric Brunf399b0d2014-11-03 17:07:03 +01002214
2215 return 1;
2216}
2217
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002218/* This sample function is designed to return a word from a string.
2219 * First arg is the index of the word (start at 1)
2220 * Second arg is a char list of words separators (type string)
2221 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002222static int sample_conv_word(const struct arg *arg_p, struct sample *smp, void *private)
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002223{
Marcin Deranek9631a282018-04-16 14:30:46 +02002224 int word;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002225 char *start, *end;
2226 int i, issep, inword;
Marcin Deranek9631a282018-04-16 14:30:46 +02002227 int count = (arg_p[2].type == ARGT_SINT) ? arg_p[2].data.sint : 1;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002228
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02002229 if (!arg_p[0].data.sint)
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002230 return 0;
2231
2232 word = 0;
2233 inword = 0;
Marcin Deranek9631a282018-04-16 14:30:46 +02002234 if (arg_p[0].data.sint < 0) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002235 end = start = smp->data.u.str.area + smp->data.u.str.data;
2236 while (start > smp->data.u.str.area) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002237 issep = 0;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002238 for (i = 0 ; i < arg_p[1].data.str.data; i++) {
2239 if (*(start-1) == arg_p[1].data.str.area[i]) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002240 issep = 1;
2241 break;
2242 }
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002243 }
Marcin Deranek9631a282018-04-16 14:30:46 +02002244 if (!inword) {
2245 if (!issep) {
2246 if (word != arg_p[0].data.sint) {
2247 word--;
2248 end = start;
2249 }
2250 inword = 1;
2251 }
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002252 }
Marcin Deranek9631a282018-04-16 14:30:46 +02002253 else if (issep) {
Willy Tarreau9eb2a4a2018-04-19 10:33:28 +02002254 if (word == arg_p[0].data.sint) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002255 if (count == 1)
2256 goto found;
2257 else if (count > 1)
2258 count--;
Willy Tarreau9eb2a4a2018-04-19 10:33:28 +02002259 }
Marcin Deranek9631a282018-04-16 14:30:46 +02002260 inword = 0;
2261 }
2262 start--;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002263 }
Marcin Deranek9631a282018-04-16 14:30:46 +02002264 } else {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002265 end = start = smp->data.u.str.area;
2266 while (end - smp->data.u.str.area < smp->data.u.str.data) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002267 issep = 0;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002268 for (i = 0 ; i < arg_p[1].data.str.data; i++) {
2269 if (*end == arg_p[1].data.str.area[i]) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002270 issep = 1;
2271 break;
2272 }
2273 }
2274 if (!inword) {
2275 if (!issep) {
2276 if (word != arg_p[0].data.sint) {
2277 word++;
2278 start = end;
2279 }
2280 inword = 1;
2281 }
2282 }
2283 else if (issep) {
Willy Tarreau9eb2a4a2018-04-19 10:33:28 +02002284 if (word == arg_p[0].data.sint) {
Marcin Deranek9631a282018-04-16 14:30:46 +02002285 if (count == 1)
2286 goto found;
2287 else if (count > 1)
2288 count--;
Willy Tarreau9eb2a4a2018-04-19 10:33:28 +02002289 }
Marcin Deranek9631a282018-04-16 14:30:46 +02002290 inword = 0;
2291 }
2292 end++;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002293 }
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002294 }
2295
2296 /* Field not found */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02002297 if (word != arg_p[0].data.sint) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002298 smp->data.u.str.data = 0;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002299 return 1;
2300 }
2301found:
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002302 smp->data.u.str.data = end - start;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002303 /* If ret string is len 0, no need to
2304 change pointers or to update size */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002305 if (!smp->data.u.str.data)
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002306 return 1;
2307
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002308 smp->data.u.str.area = start;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002309
2310 /* Compute remaining size if needed
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002311 Note: smp->data.u.str.size cannot be set to 0 */
2312 if (smp->data.u.str.size)
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002313 smp->data.u.str.size -= start - smp->data.u.str.area;
Emeric Brunc9a0f6d2014-11-25 14:09:01 +01002314
2315 return 1;
2316}
2317
Willy Tarreau7eda8492015-01-20 19:47:06 +01002318static int sample_conv_regsub_check(struct arg *args, struct sample_conv *conv,
2319 const char *file, int line, char **err)
2320{
2321 struct arg *arg = args;
2322 char *p;
2323 int len;
2324
2325 /* arg0 is a regex, it uses type_flag for ICASE and global match */
2326 arg[0].type_flags = 0;
2327
2328 if (arg[2].type != ARGT_STR)
2329 return 1;
2330
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002331 p = arg[2].data.str.area;
2332 len = arg[2].data.str.data;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002333 while (len) {
2334 if (*p == 'i') {
2335 arg[0].type_flags |= ARGF_REG_ICASE;
2336 }
2337 else if (*p == 'g') {
2338 arg[0].type_flags |= ARGF_REG_GLOB;
2339 }
2340 else {
2341 memprintf(err, "invalid regex flag '%c', only 'i' and 'g' are supported", *p);
2342 return 0;
2343 }
2344 p++;
2345 len--;
2346 }
2347 return 1;
2348}
2349
2350/* This sample function is designed to do the equivalent of s/match/replace/ on
2351 * the input string. It applies a regex and restarts from the last matched
2352 * location until nothing matches anymore. First arg is the regex to apply to
2353 * the input string, second arg is the replacement expression.
2354 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002355static int sample_conv_regsub(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau7eda8492015-01-20 19:47:06 +01002356{
2357 char *start, *end;
2358 struct my_regex *reg = arg_p[0].data.reg;
2359 regmatch_t pmatch[MAX_MATCH];
Willy Tarreau83061a82018-07-13 11:56:34 +02002360 struct buffer *trash = get_trash_chunk();
Jerome Magnin07e1e3c2020-02-16 19:20:19 +01002361 struct buffer *output;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002362 int flag, max;
2363 int found;
2364
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002365 start = smp->data.u.str.area;
2366 end = start + smp->data.u.str.data;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002367
2368 flag = 0;
2369 while (1) {
2370 /* check for last round which is used to copy remaining parts
2371 * when not running in global replacement mode.
2372 */
2373 found = 0;
2374 if ((arg_p[0].type_flags & ARGF_REG_GLOB) || !(flag & REG_NOTBOL)) {
2375 /* Note: we can have start == end on empty strings or at the end */
2376 found = regex_exec_match2(reg, start, end - start, MAX_MATCH, pmatch, flag);
2377 }
2378
2379 if (!found)
2380 pmatch[0].rm_so = end - start;
2381
2382 /* copy the heading non-matching part (which may also be the tail if nothing matches) */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002383 max = trash->size - trash->data;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002384 if (max && pmatch[0].rm_so > 0) {
2385 if (max > pmatch[0].rm_so)
2386 max = pmatch[0].rm_so;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002387 memcpy(trash->area + trash->data, start, max);
2388 trash->data += max;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002389 }
2390
2391 if (!found)
2392 break;
2393
Jerome Magnin07e1e3c2020-02-16 19:20:19 +01002394 output = alloc_trash_chunk();
Willy Tarreau23997da2020-02-18 14:27:44 +01002395 if (!output)
2396 break;
2397
Jerome Magnin07e1e3c2020-02-16 19:20:19 +01002398 output->data = exp_replace(output->area, output->size, start, arg_p[1].data.str.area, pmatch);
2399
Willy Tarreau7eda8492015-01-20 19:47:06 +01002400 /* replace the matching part */
Jerome Magnin07e1e3c2020-02-16 19:20:19 +01002401 max = output->size - output->data;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002402 if (max) {
Jerome Magnin07e1e3c2020-02-16 19:20:19 +01002403 if (max > output->data)
2404 max = output->data;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002405 memcpy(trash->area + trash->data,
Jerome Magnin07e1e3c2020-02-16 19:20:19 +01002406 output->area, max);
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002407 trash->data += max;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002408 }
2409
Jerome Magnin07e1e3c2020-02-16 19:20:19 +01002410 free_trash_chunk(output);
2411
Willy Tarreau7eda8492015-01-20 19:47:06 +01002412 /* stop here if we're done with this string */
2413 if (start >= end)
2414 break;
2415
2416 /* We have a special case for matches of length 0 (eg: "x*y*").
2417 * These ones are considered to match in front of a character,
2418 * so we have to copy that character and skip to the next one.
2419 */
2420 if (!pmatch[0].rm_eo) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002421 if (trash->data < trash->size)
2422 trash->area[trash->data++] = start[pmatch[0].rm_eo];
Willy Tarreau7eda8492015-01-20 19:47:06 +01002423 pmatch[0].rm_eo++;
2424 }
2425
2426 start += pmatch[0].rm_eo;
2427 flag |= REG_NOTBOL;
2428 }
2429
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002430 smp->data.u.str = *trash;
Willy Tarreau7eda8492015-01-20 19:47:06 +01002431 return 1;
2432}
2433
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002434/* This function check an operator entry. It expects a string.
2435 * The string can be an integer or a variable name.
2436 */
2437static int check_operator(struct arg *args, struct sample_conv *conv,
2438 const char *file, int line, char **err)
2439{
2440 const char *str;
2441 const char *end;
2442
2443 /* Try to decode a variable. */
2444 if (vars_check_arg(&args[0], NULL))
2445 return 1;
2446
2447 /* Try to convert an integer */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002448 str = args[0].data.str.area;
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002449 end = str + strlen(str);
2450 args[0].data.sint = read_int64(&str, end);
2451 if (*str != '\0') {
2452 memprintf(err, "expects an integer or a variable name");
2453 return 0;
2454 }
2455 args[0].type = ARGT_SINT;
2456 return 1;
2457}
2458
Willy Tarreau6204cd92016-03-10 16:33:04 +01002459/* This function returns a sample struct filled with an arg content.
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002460 * If the arg contain an integer, the integer is returned in the
2461 * sample. If the arg contains a variable descriptor, it returns the
2462 * variable value.
2463 *
2464 * This function returns 0 if an error occurs, otherwise it returns 1.
2465 */
Willy Tarreau6204cd92016-03-10 16:33:04 +01002466static inline int sample_conv_var2smp(const struct arg *arg, struct sample *smp)
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002467{
2468 switch (arg->type) {
2469 case ARGT_SINT:
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002470 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002471 smp->data.u.sint = arg->data.sint;
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002472 return 1;
2473 case ARGT_VAR:
Willy Tarreau6204cd92016-03-10 16:33:04 +01002474 if (!vars_get_by_desc(&arg->data.var, smp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002475 return 0;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002476 if (!sample_casts[smp->data.type][SMP_T_SINT])
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002477 return 0;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002478 if (!sample_casts[smp->data.type][SMP_T_SINT](smp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002479 return 0;
2480 return 1;
2481 default:
2482 return 0;
2483 }
2484}
2485
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002486/* Takes a SINT on input, applies a binary twos complement and returns the SINT
Willy Tarreau97707872015-01-27 15:12:13 +01002487 * result.
2488 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002489static int sample_conv_binary_cpl(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002490{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002491 smp->data.u.sint = ~smp->data.u.sint;
Willy Tarreau97707872015-01-27 15:12:13 +01002492 return 1;
2493}
2494
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002495/* Takes a SINT on input, applies a binary "and" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002496 * arg_p or in the variable described in arg_p, and returns the SINT result.
Willy Tarreau97707872015-01-27 15:12:13 +01002497 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002498static int sample_conv_binary_and(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002499{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002500 struct sample tmp;
2501
Willy Tarreau7560dd42016-03-10 16:28:58 +01002502 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreau6204cd92016-03-10 16:33:04 +01002503 if (!sample_conv_var2smp(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002504 return 0;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002505 smp->data.u.sint &= tmp.data.u.sint;
Willy Tarreau97707872015-01-27 15:12:13 +01002506 return 1;
2507}
2508
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002509/* Takes a SINT on input, applies a binary "or" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002510 * arg_p or in the variable described in arg_p, and returns the SINT result.
Willy Tarreau97707872015-01-27 15:12:13 +01002511 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002512static int sample_conv_binary_or(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002513{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002514 struct sample tmp;
2515
Willy Tarreau7560dd42016-03-10 16:28:58 +01002516 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreau6204cd92016-03-10 16:33:04 +01002517 if (!sample_conv_var2smp(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002518 return 0;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002519 smp->data.u.sint |= tmp.data.u.sint;
Willy Tarreau97707872015-01-27 15:12:13 +01002520 return 1;
2521}
2522
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002523/* Takes a SINT on input, applies a binary "xor" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002524 * arg_p or in the variable described in arg_p, and returns the SINT result.
Willy Tarreau97707872015-01-27 15:12:13 +01002525 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002526static int sample_conv_binary_xor(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002527{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002528 struct sample tmp;
2529
Willy Tarreau7560dd42016-03-10 16:28:58 +01002530 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreau6204cd92016-03-10 16:33:04 +01002531 if (!sample_conv_var2smp(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002532 return 0;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002533 smp->data.u.sint ^= tmp.data.u.sint;
Willy Tarreau97707872015-01-27 15:12:13 +01002534 return 1;
2535}
2536
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002537static inline long long int arith_add(long long int a, long long int b)
2538{
2539 /* Prevent overflow and makes capped calculus.
2540 * We must ensure that the check calculus doesn't
2541 * exceed the signed 64 bits limits.
2542 *
2543 * +----------+----------+
2544 * | a<0 | a>=0 |
2545 * +------+----------+----------+
2546 * | b<0 | MIN-a>b | no check |
2547 * +------+----------+----------+
2548 * | b>=0 | no check | MAX-a<b |
2549 * +------+----------+----------+
2550 */
2551 if ((a ^ b) >= 0) {
2552 /* signs are differents. */
2553 if (a < 0) {
2554 if (LLONG_MIN - a > b)
2555 return LLONG_MIN;
2556 }
2557 if (LLONG_MAX - a < b)
2558 return LLONG_MAX;
2559 }
2560 return a + b;
2561}
2562
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002563/* Takes a SINT on input, applies an arithmetic "add" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002564 * arg_p or in the variable described in arg_p, and returns the SINT result.
Willy Tarreau97707872015-01-27 15:12:13 +01002565 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002566static int sample_conv_arith_add(const struct arg *arg_p, struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002567{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002568 struct sample tmp;
2569
Willy Tarreau7560dd42016-03-10 16:28:58 +01002570 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreau6204cd92016-03-10 16:33:04 +01002571 if (!sample_conv_var2smp(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002572 return 0;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002573 smp->data.u.sint = arith_add(smp->data.u.sint, tmp.data.u.sint);
Willy Tarreau97707872015-01-27 15:12:13 +01002574 return 1;
2575}
2576
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002577/* Takes a SINT on input, applies an arithmetic "sub" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002578 * arg_p or in the variable described in arg_p, and returns the SINT result.
Willy Tarreau97707872015-01-27 15:12:13 +01002579 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002580static int sample_conv_arith_sub(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002581 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002582{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002583 struct sample tmp;
2584
Willy Tarreau7560dd42016-03-10 16:28:58 +01002585 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreau6204cd92016-03-10 16:33:04 +01002586 if (!sample_conv_var2smp(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002587 return 0;
2588
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002589 /* We cannot represent -LLONG_MIN because abs(LLONG_MIN) is greater
2590 * than abs(LLONG_MAX). So, the following code use LLONG_MAX in place
2591 * of -LLONG_MIN and correct the result.
2592 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002593 if (tmp.data.u.sint == LLONG_MIN) {
2594 smp->data.u.sint = arith_add(smp->data.u.sint, LLONG_MAX);
2595 if (smp->data.u.sint < LLONG_MAX)
2596 smp->data.u.sint++;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002597 return 1;
2598 }
2599
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002600 /* standard subtraction: we use the "add" function and negate
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002601 * the second operand.
2602 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002603 smp->data.u.sint = arith_add(smp->data.u.sint, -tmp.data.u.sint);
Willy Tarreau97707872015-01-27 15:12:13 +01002604 return 1;
2605}
2606
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002607/* Takes a SINT on input, applies an arithmetic "mul" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002608 * arg_p or in the variable described in arg_p, and returns the SINT result.
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002609 * If the result makes an overflow, then the largest possible quantity is
2610 * returned.
Willy Tarreau97707872015-01-27 15:12:13 +01002611 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002612static int sample_conv_arith_mul(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002613 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002614{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002615 struct sample tmp;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002616 long long int c;
2617
Willy Tarreau7560dd42016-03-10 16:28:58 +01002618 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreau6204cd92016-03-10 16:33:04 +01002619 if (!sample_conv_var2smp(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002620 return 0;
2621
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002622 /* prevent divide by 0 during the check */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002623 if (!smp->data.u.sint || !tmp.data.u.sint) {
2624 smp->data.u.sint = 0;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002625 return 1;
2626 }
2627
2628 /* The multiply between LLONG_MIN and -1 returns a
2629 * "floting point exception".
2630 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002631 if (smp->data.u.sint == LLONG_MIN && tmp.data.u.sint == -1) {
2632 smp->data.u.sint = LLONG_MAX;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002633 return 1;
2634 }
2635
2636 /* execute standard multiplication. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002637 c = smp->data.u.sint * tmp.data.u.sint;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002638
2639 /* check for overflow and makes capped multiply. */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002640 if (smp->data.u.sint != c / tmp.data.u.sint) {
2641 if ((smp->data.u.sint < 0) == (tmp.data.u.sint < 0)) {
2642 smp->data.u.sint = LLONG_MAX;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002643 return 1;
2644 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002645 smp->data.u.sint = LLONG_MIN;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002646 return 1;
2647 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002648 smp->data.u.sint = c;
Willy Tarreau97707872015-01-27 15:12:13 +01002649 return 1;
2650}
2651
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002652/* Takes a SINT on input, applies an arithmetic "div" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002653 * arg_p or in the variable described in arg_p, and returns the SINT result.
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002654 * If arg_p makes the result overflow, then the largest possible quantity is
2655 * returned.
Willy Tarreau97707872015-01-27 15:12:13 +01002656 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002657static int sample_conv_arith_div(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002658 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002659{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002660 struct sample tmp;
2661
Willy Tarreau7560dd42016-03-10 16:28:58 +01002662 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreau6204cd92016-03-10 16:33:04 +01002663 if (!sample_conv_var2smp(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002664 return 0;
2665
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002666 if (tmp.data.u.sint) {
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002667 /* The divide between LLONG_MIN and -1 returns a
2668 * "floting point exception".
2669 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002670 if (smp->data.u.sint == LLONG_MIN && tmp.data.u.sint == -1) {
2671 smp->data.u.sint = LLONG_MAX;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002672 return 1;
2673 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002674 smp->data.u.sint /= tmp.data.u.sint;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002675 return 1;
2676 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002677 smp->data.u.sint = LLONG_MAX;
Willy Tarreau97707872015-01-27 15:12:13 +01002678 return 1;
2679}
2680
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002681/* Takes a SINT on input, applies an arithmetic "mod" with the SINT directly in
Joseph Herlant757f5ad2018-11-15 12:14:56 -08002682 * arg_p or in the variable described in arg_p, and returns the SINT result.
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002683 * If arg_p makes the result overflow, then 0 is returned.
Willy Tarreau97707872015-01-27 15:12:13 +01002684 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002685static int sample_conv_arith_mod(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002686 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002687{
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002688 struct sample tmp;
2689
Willy Tarreau7560dd42016-03-10 16:28:58 +01002690 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
Willy Tarreau6204cd92016-03-10 16:33:04 +01002691 if (!sample_conv_var2smp(arg_p, &tmp))
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02002692 return 0;
2693
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002694 if (tmp.data.u.sint) {
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002695 /* The divide between LLONG_MIN and -1 returns a
2696 * "floting point exception".
2697 */
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002698 if (smp->data.u.sint == LLONG_MIN && tmp.data.u.sint == -1) {
2699 smp->data.u.sint = 0;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002700 return 1;
2701 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002702 smp->data.u.sint %= tmp.data.u.sint;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002703 return 1;
2704 }
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002705 smp->data.u.sint = 0;
Willy Tarreau97707872015-01-27 15:12:13 +01002706 return 1;
2707}
2708
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002709/* Takes an SINT on input, applies an arithmetic "neg" and returns the SINT
Willy Tarreau97707872015-01-27 15:12:13 +01002710 * result.
2711 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002712static int sample_conv_arith_neg(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002713 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002714{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002715 if (smp->data.u.sint == LLONG_MIN)
2716 smp->data.u.sint = LLONG_MAX;
Thierry FOURNIER00c005c2015-07-08 01:10:21 +02002717 else
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002718 smp->data.u.sint = -smp->data.u.sint;
Willy Tarreau97707872015-01-27 15:12:13 +01002719 return 1;
2720}
2721
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002722/* Takes a SINT on input, returns true is the value is non-null, otherwise
Willy Tarreau97707872015-01-27 15:12:13 +01002723 * false. The output is a BOOL.
2724 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002725static int sample_conv_arith_bool(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002726 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002727{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002728 smp->data.u.sint = !!smp->data.u.sint;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002729 smp->data.type = SMP_T_BOOL;
Willy Tarreau97707872015-01-27 15:12:13 +01002730 return 1;
2731}
2732
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002733/* Takes a SINT on input, returns false is the value is non-null, otherwise
Willy Tarreau97707872015-01-27 15:12:13 +01002734 * truee. The output is a BOOL.
2735 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002736static int sample_conv_arith_not(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 FOURNIER136f9d32015-08-19 09:07:19 +02002739 smp->data.u.sint = !smp->data.u.sint;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002740 smp->data.type = SMP_T_BOOL;
Willy Tarreau97707872015-01-27 15:12:13 +01002741 return 1;
2742}
2743
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002744/* Takes a SINT on input, returns true is the value is odd, otherwise false.
Willy Tarreau97707872015-01-27 15:12:13 +01002745 * The output is a BOOL.
2746 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002747static int sample_conv_arith_odd(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002748 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002749{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002750 smp->data.u.sint = smp->data.u.sint & 1;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002751 smp->data.type = SMP_T_BOOL;
Willy Tarreau97707872015-01-27 15:12:13 +01002752 return 1;
2753}
2754
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02002755/* Takes a SINT on input, returns true is the value is even, otherwise false.
Willy Tarreau97707872015-01-27 15:12:13 +01002756 * The output is a BOOL.
2757 */
Thierry FOURNIER0a9a2b82015-05-11 15:20:49 +02002758static int sample_conv_arith_even(const struct arg *arg_p,
Thierry FOURNIER68a556e2015-02-23 15:11:11 +01002759 struct sample *smp, void *private)
Willy Tarreau97707872015-01-27 15:12:13 +01002760{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02002761 smp->data.u.sint = !(smp->data.u.sint & 1);
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02002762 smp->data.type = SMP_T_BOOL;
Willy Tarreau97707872015-01-27 15:12:13 +01002763 return 1;
2764}
2765
Willy Tarreau280f42b2018-02-19 15:34:12 +01002766/* appends an optional const string, an optional variable contents and another
2767 * optional const string to an existing string.
2768 */
2769static int sample_conv_concat(const struct arg *arg_p, struct sample *smp, void *private)
2770{
Willy Tarreau83061a82018-07-13 11:56:34 +02002771 struct buffer *trash;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002772 struct sample tmp;
2773 int max;
2774
2775 trash = get_trash_chunk();
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002776 trash->data = smp->data.u.str.data;
2777 if (trash->data > trash->size - 1)
2778 trash->data = trash->size - 1;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002779
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002780 memcpy(trash->area, smp->data.u.str.area, trash->data);
2781 trash->area[trash->data] = 0;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002782
2783 /* append first string */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002784 max = arg_p[0].data.str.data;
2785 if (max > trash->size - 1 - trash->data)
2786 max = trash->size - 1 - trash->data;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002787
2788 if (max) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002789 memcpy(trash->area + trash->data, arg_p[0].data.str.area, max);
2790 trash->data += max;
2791 trash->area[trash->data] = 0;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002792 }
2793
2794 /* append second string (variable) if it's found and we can turn it
2795 * into a string.
2796 */
2797 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
2798 if (arg_p[1].type == ARGT_VAR && vars_get_by_desc(&arg_p[1].data.var, &tmp) &&
2799 (sample_casts[tmp.data.type][SMP_T_STR] == c_none ||
2800 sample_casts[tmp.data.type][SMP_T_STR](&tmp))) {
2801
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002802 max = tmp.data.u.str.data;
2803 if (max > trash->size - 1 - trash->data)
2804 max = trash->size - 1 - trash->data;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002805
2806 if (max) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002807 memcpy(trash->area + trash->data, tmp.data.u.str.area,
2808 max);
2809 trash->data += max;
2810 trash->area[trash->data] = 0;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002811 }
2812 }
2813
2814 /* append third string */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002815 max = arg_p[2].data.str.data;
2816 if (max > trash->size - 1 - trash->data)
2817 max = trash->size - 1 - trash->data;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002818
2819 if (max) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002820 memcpy(trash->area + trash->data, arg_p[2].data.str.area, max);
2821 trash->data += max;
2822 trash->area[trash->data] = 0;
Willy Tarreau280f42b2018-02-19 15:34:12 +01002823 }
2824
2825 smp->data.u.str = *trash;
2826 smp->data.type = SMP_T_STR;
2827 return 1;
2828}
2829
2830/* This function checks the "concat" converter's arguments and extracts the
2831 * variable name and its scope.
2832 */
2833static int smp_check_concat(struct arg *args, struct sample_conv *conv,
2834 const char *file, int line, char **err)
2835{
2836 /* Try to decode a variable. */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002837 if (args[1].data.str.data > 0 && !vars_check_arg(&args[1], NULL)) {
2838 memprintf(err, "failed to register variable name '%s'",
2839 args[1].data.str.area);
Willy Tarreau280f42b2018-02-19 15:34:12 +01002840 return 0;
2841 }
2842 return 1;
2843}
2844
Tim Duesterhusca097c12018-04-27 21:18:45 +02002845/* compares string with a variable containing a string. Return value
2846 * is compatible with strcmp(3)'s return value.
2847 */
2848static int sample_conv_strcmp(const struct arg *arg_p, struct sample *smp, void *private)
2849{
2850 struct sample tmp;
2851 int max, result;
2852
2853 smp_set_owner(&tmp, smp->px, smp->sess, smp->strm, smp->opt);
2854 if (arg_p[0].type != ARGT_VAR)
2855 return 0;
2856 if (!vars_get_by_desc(&arg_p[0].data.var, &tmp))
2857 return 0;
2858 if (!sample_casts[tmp.data.type][SMP_T_STR](&tmp))
2859 return 0;
2860
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002861 max = MIN(smp->data.u.str.data, tmp.data.u.str.data);
2862 result = strncmp(smp->data.u.str.area, tmp.data.u.str.area, max);
Tim Duesterhusca097c12018-04-27 21:18:45 +02002863 if (result == 0) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002864 if (smp->data.u.str.data != tmp.data.u.str.data) {
2865 if (smp->data.u.str.data < tmp.data.u.str.data) {
Tim Duesterhusca097c12018-04-27 21:18:45 +02002866 result = -1;
2867 }
2868 else {
2869 result = 1;
2870 }
2871 }
2872 }
2873
2874 smp->data.u.sint = result;
2875 smp->data.type = SMP_T_SINT;
2876 return 1;
2877}
2878
Frédéric Lécaille50290fb2019-02-27 14:34:51 +01002879#define GRPC_MSG_COMPRESS_FLAG_SZ 1 /* 1 byte */
2880#define GRPC_MSG_LENGTH_SZ 4 /* 4 bytes */
2881#define GRPC_MSG_HEADER_SZ (GRPC_MSG_COMPRESS_FLAG_SZ + GRPC_MSG_LENGTH_SZ)
2882
2883/*
2884 * Extract the field value of an input binary sample. Takes a mandatory argument:
2885 * the protocol buffers field identifier (dotted notation) internally represented
2886 * as an array of unsigned integers and its size.
2887 * Return 1 if the field was found, 0 if not.
2888 */
2889static int sample_conv_ungrpc(const struct arg *arg_p, struct sample *smp, void *private)
2890{
2891 unsigned char *pos;
2892 size_t grpc_left;
Frédéric Lécaille50290fb2019-02-27 14:34:51 +01002893
2894 pos = (unsigned char *)smp->data.u.str.area;
Frédéric Lécaille50290fb2019-02-27 14:34:51 +01002895 grpc_left = smp->data.u.str.data;
2896
Frédéric Lécaille7c93e882019-03-04 07:33:41 +01002897 while (grpc_left > GRPC_MSG_HEADER_SZ) {
Frédéric Lécaille50290fb2019-02-27 14:34:51 +01002898 size_t grpc_msg_len, left;
Frédéric Lécaille50290fb2019-02-27 14:34:51 +01002899
2900 grpc_msg_len = left = ntohl(*(uint32_t *)(pos + GRPC_MSG_COMPRESS_FLAG_SZ));
2901
2902 pos += GRPC_MSG_HEADER_SZ;
2903 grpc_left -= GRPC_MSG_HEADER_SZ;
2904
2905 if (grpc_left < left)
2906 return 0;
2907
Frédéric Lécaille5f33f852019-03-06 08:03:44 +01002908 if (protobuf_field_lookup(arg_p, smp, &pos, &left))
2909 return 1;
Frédéric Lécaille50290fb2019-02-27 14:34:51 +01002910
Frédéric Lécaille50290fb2019-02-27 14:34:51 +01002911 grpc_left -= grpc_msg_len;
2912 }
2913
2914 return 0;
2915}
2916
Frédéric Lécaillebfe61382019-03-06 14:34:36 +01002917static int sample_conv_protobuf(const struct arg *arg_p, struct sample *smp, void *private)
2918{
2919 unsigned char *pos;
2920 size_t left;
2921
2922 pos = (unsigned char *)smp->data.u.str.area;
2923 left = smp->data.u.str.data;
2924
2925 return protobuf_field_lookup(arg_p, smp, &pos, &left);
2926}
2927
2928static int sample_conv_protobuf_check(struct arg *args, struct sample_conv *conv,
2929 const char *file, int line, char **err)
Frédéric Lécaille756d97f2019-03-04 19:03:48 +01002930{
2931 if (!args[1].type) {
2932 args[1].type = ARGT_SINT;
2933 args[1].data.sint = PBUF_T_BINARY;
2934 }
2935 else {
2936 int pbuf_type;
2937
2938 pbuf_type = protobuf_type(args[1].data.str.area);
2939 if (pbuf_type == -1) {
2940 memprintf(err, "Wrong protocol buffer type '%s'", args[1].data.str.area);
2941 return 0;
2942 }
2943
2944 args[1].type = ARGT_SINT;
2945 args[1].data.sint = pbuf_type;
2946 }
2947
2948 return 1;
2949}
2950
Tim Duesterhusca097c12018-04-27 21:18:45 +02002951/* This function checks the "strcmp" converter's arguments and extracts the
2952 * variable name and its scope.
2953 */
2954static int smp_check_strcmp(struct arg *args, struct sample_conv *conv,
2955 const char *file, int line, char **err)
2956{
2957 /* Try to decode a variable. */
2958 if (vars_check_arg(&args[0], NULL))
2959 return 1;
2960
Willy Tarreau843b7cb2018-07-13 10:54:26 +02002961 memprintf(err, "failed to register variable name '%s'",
2962 args[0].data.str.area);
Tim Duesterhusca097c12018-04-27 21:18:45 +02002963 return 0;
2964}
2965
Christopher Faulet4ccc12f2020-04-01 09:08:32 +02002966/**/
2967static int sample_conv_htonl(const struct arg *arg_p, struct sample *smp, void *private)
2968{
2969 struct buffer *tmp;
2970 uint32_t n;
2971
2972 n = htonl((uint32_t)smp->data.u.sint);
2973 tmp = get_trash_chunk();
2974
2975 memcpy(b_head(tmp), &n, 4);
2976 b_add(tmp, 4);
2977
2978 smp->data.u.str = *tmp;
2979 smp->data.type = SMP_T_BIN;
2980 return 1;
2981}
2982
Christopher Fauletea159d62020-04-01 16:21:44 +02002983/**/
2984static int sample_conv_cut_crlf(const struct arg *arg_p, struct sample *smp, void *private)
2985{
2986 char *p;
2987 size_t l;
2988
2989 p = smp->data.u.str.area;
2990 for (l = 0; l < smp->data.u.str.data; l++) {
2991 if (*(p+l) == '\r' || *(p+l) == '\n')
2992 break;
2993 }
2994 smp->data.u.str.data = l;
2995 return 1;
2996}
2997
Christopher Faulet51fc9d12020-04-01 17:24:41 +02002998/**/
2999static int sample_conv_ltrim(const struct arg *arg_p, struct sample *smp, void *private)
3000{
3001 char *delimiters, *p;
3002 size_t dlen, l;
3003
3004 delimiters = arg_p[0].data.str.area;
3005 dlen = arg_p[0].data.str.data;
3006
3007 l = smp->data.u.str.data;
3008 p = smp->data.u.str.area;
3009 while (l && memchr(delimiters, *p, dlen) != NULL) {
3010 p++;
3011 l--;
3012 }
3013
3014 smp->data.u.str.area = p;
3015 smp->data.u.str.data = l;
3016 return 1;
3017}
3018
Christopher Faulet568415a2020-04-01 17:24:47 +02003019/**/
3020static int sample_conv_rtrim(const struct arg *arg_p, struct sample *smp, void *private)
3021{
3022 char *delimiters, *p;
3023 size_t dlen, l;
3024
3025 delimiters = arg_p[0].data.str.area;
3026 dlen = arg_p[0].data.str.data;
3027
3028 l = smp->data.u.str.data;
3029 p = smp->data.u.str.area + l - 1;
3030 while (l && memchr(delimiters, *p, dlen) != NULL) {
3031 p--;
3032 l--;
3033 }
3034
3035 smp->data.u.str.data = l;
3036 return 1;
3037}
3038
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003039/************************************************************************/
3040/* All supported sample fetch functions must be declared here */
3041/************************************************************************/
3042
3043/* force TRUE to be returned at the fetch level */
3044static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003045smp_fetch_true(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003046{
Willy Tarreau280f42b2018-02-19 15:34:12 +01003047 if (!smp_make_rw(smp))
3048 return 0;
3049
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003050 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003051 smp->data.u.sint = 1;
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003052 return 1;
3053}
3054
3055/* force FALSE to be returned at the fetch level */
3056static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003057smp_fetch_false(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003058{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003059 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003060 smp->data.u.sint = 0;
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003061 return 1;
3062}
3063
3064/* retrieve environment variable $1 as a string */
3065static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003066smp_fetch_env(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003067{
3068 char *env;
3069
3070 if (!args || args[0].type != ARGT_STR)
3071 return 0;
3072
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003073 env = getenv(args[0].data.str.area);
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003074 if (!env)
3075 return 0;
3076
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003077 smp->data.type = SMP_T_STR;
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01003078 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003079 smp->data.u.str.area = env;
3080 smp->data.u.str.data = strlen(env);
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003081 return 1;
3082}
3083
Damien Claisseae6f1252019-10-30 15:57:28 +00003084/* Validates the data unit argument passed to "date" fetch. Argument 1 support an
3085 * optional string representing the unit of the result: "s" for seconds, "ms" for
3086 * milliseconds and "us" for microseconds.
3087 * Returns 0 on error and non-zero if OK.
3088 */
3089int smp_check_date_unit(struct arg *args, char **err)
3090{
3091 if (args[1].type == ARGT_STR) {
3092 if (strcmp(args[1].data.str.area, "s") == 0) {
3093 args[1].data.sint = TIME_UNIT_S;
3094 }
3095 else if (strcmp(args[1].data.str.area, "ms") == 0) {
3096 args[1].data.sint = TIME_UNIT_MS;
3097 }
3098 else if (strcmp(args[1].data.str.area, "us") == 0) {
3099 args[1].data.sint = TIME_UNIT_US;
3100 }
3101 else {
3102 memprintf(err, "expects 's', 'ms' or 'us', got '%s'",
3103 args[1].data.str.area);
3104 return 0;
3105 }
3106 free(args[1].data.str.area);
3107 args[1].data.str.area = NULL;
3108 args[1].type = ARGT_SINT;
3109 }
3110 else if (args[1].type != ARGT_STOP) {
3111 memprintf(err, "Unexpected arg type");
3112 return 0;
3113 }
3114
3115 return 1;
3116}
3117
3118/* retrieve the current local date in epoch time, converts it to milliseconds
3119 * or microseconds if asked to in optional args[1] unit param, and applies an
3120 * optional args[0] offset.
Willy Tarreau6236d3a2013-07-25 14:28:25 +02003121 */
3122static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003123smp_fetch_date(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau6236d3a2013-07-25 14:28:25 +02003124{
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003125 smp->data.u.sint = date.tv_sec;
Willy Tarreau6236d3a2013-07-25 14:28:25 +02003126
Damien Claisseae6f1252019-10-30 15:57:28 +00003127 /* report in milliseconds */
3128 if (args && args[1].type == ARGT_SINT && args[1].data.sint == TIME_UNIT_MS) {
3129 smp->data.u.sint *= 1000;
3130 smp->data.u.sint += date.tv_usec / 1000;
3131 }
3132 /* report in microseconds */
3133 else if (args && args[1].type == ARGT_SINT && args[1].data.sint == TIME_UNIT_US) {
3134 smp->data.u.sint *= 1000000;
3135 smp->data.u.sint += date.tv_usec;
3136 }
3137
Willy Tarreau6236d3a2013-07-25 14:28:25 +02003138 /* add offset */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02003139 if (args && args[0].type == ARGT_SINT)
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003140 smp->data.u.sint += args[0].data.sint;
Willy Tarreau6236d3a2013-07-25 14:28:25 +02003141
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003142 smp->data.type = SMP_T_SINT;
Willy Tarreau6236d3a2013-07-25 14:28:25 +02003143 smp->flags |= SMP_F_VOL_TEST | SMP_F_MAY_CHANGE;
3144 return 1;
3145}
3146
Etienne Carrierea792a0a2018-01-17 13:43:24 +01003147/* retrieve the current microsecond part of the date */
3148static int
3149smp_fetch_date_us(const struct arg *args, struct sample *smp, const char *kw, void *private)
3150{
3151 smp->data.u.sint = date.tv_usec;
3152 smp->data.type = SMP_T_SINT;
3153 smp->flags |= SMP_F_VOL_TEST | SMP_F_MAY_CHANGE;
3154 return 1;
3155}
3156
3157
Nenad Merdanovic807a6e72017-03-12 22:00:00 +01003158/* returns the hostname */
3159static int
3160smp_fetch_hostname(const struct arg *args, struct sample *smp, const char *kw, void *private)
3161{
3162 smp->data.type = SMP_T_STR;
3163 smp->flags = SMP_F_CONST;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003164 smp->data.u.str.area = hostname;
3165 smp->data.u.str.data = strlen(hostname);
Nenad Merdanovic807a6e72017-03-12 22:00:00 +01003166 return 1;
3167}
3168
Willy Tarreau0f30d262014-11-24 16:02:05 +01003169/* returns the number of processes */
3170static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003171smp_fetch_nbproc(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0f30d262014-11-24 16:02:05 +01003172{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003173 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003174 smp->data.u.sint = global.nbproc;
Willy Tarreau0f30d262014-11-24 16:02:05 +01003175 return 1;
3176}
3177
3178/* returns the number of the current process (between 1 and nbproc */
3179static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003180smp_fetch_proc(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0f30d262014-11-24 16:02:05 +01003181{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003182 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003183 smp->data.u.sint = relative_pid;
Willy Tarreau0f30d262014-11-24 16:02:05 +01003184 return 1;
3185}
3186
Christopher Faulet34adb2a2017-11-21 21:45:38 +01003187/* returns the number of the current thread (between 1 and nbthread */
3188static int
3189smp_fetch_thread(const struct arg *args, struct sample *smp, const char *kw, void *private)
3190{
3191 smp->data.type = SMP_T_SINT;
3192 smp->data.u.sint = tid;
3193 return 1;
3194}
3195
Willy Tarreau84310e22014-02-14 11:59:04 +01003196/* generate a random 32-bit integer for whatever purpose, with an optional
3197 * range specified in argument.
3198 */
3199static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003200smp_fetch_rand(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau84310e22014-02-14 11:59:04 +01003201{
Willy Tarreauaa8bbc12020-03-08 18:01:10 +01003202 smp->data.u.sint = ha_random32();
Willy Tarreau84310e22014-02-14 11:59:04 +01003203
3204 /* reduce if needed. Don't do a modulo, use all bits! */
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02003205 if (args && args[0].type == ARGT_SINT)
Willy Tarreauaa8bbc12020-03-08 18:01:10 +01003206 smp->data.u.sint = ((u64)smp->data.u.sint * (u64)args[0].data.sint) >> 32;
Willy Tarreau84310e22014-02-14 11:59:04 +01003207
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003208 smp->data.type = SMP_T_SINT;
Willy Tarreau84310e22014-02-14 11:59:04 +01003209 smp->flags |= SMP_F_VOL_TEST | SMP_F_MAY_CHANGE;
3210 return 1;
3211}
3212
Willy Tarreau0f30d262014-11-24 16:02:05 +01003213/* returns true if the current process is stopping */
3214static int
Thierry FOURNIER0786d052015-05-11 15:42:45 +02003215smp_fetch_stopping(const struct arg *args, struct sample *smp, const char *kw, void *private)
Willy Tarreau0f30d262014-11-24 16:02:05 +01003216{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003217 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003218 smp->data.u.sint = stopping;
Willy Tarreau0f30d262014-11-24 16:02:05 +01003219 return 1;
3220}
3221
Willy Tarreau70fe9442018-11-22 16:07:39 +01003222/* returns the number of calls of the current stream's process_stream() */
3223static int
3224smp_fetch_cpu_calls(const struct arg *args, struct sample *smp, const char *kw, void *private)
3225{
Willy Tarreaue0dd2102020-04-29 11:59:02 +02003226 if (!smp->strm)
3227 return 0;
3228
Willy Tarreau70fe9442018-11-22 16:07:39 +01003229 smp->data.type = SMP_T_SINT;
3230 smp->data.u.sint = smp->strm->task->calls;
3231 return 1;
3232}
3233
3234/* returns the average number of nanoseconds spent processing the stream per call */
3235static int
3236smp_fetch_cpu_ns_avg(const struct arg *args, struct sample *smp, const char *kw, void *private)
3237{
Willy Tarreaue0dd2102020-04-29 11:59:02 +02003238 if (!smp->strm)
3239 return 0;
3240
Willy Tarreau70fe9442018-11-22 16:07:39 +01003241 smp->data.type = SMP_T_SINT;
3242 smp->data.u.sint = smp->strm->task->calls ? smp->strm->task->cpu_time / smp->strm->task->calls : 0;
3243 return 1;
3244}
3245
3246/* returns the total number of nanoseconds spent processing the stream */
3247static int
3248smp_fetch_cpu_ns_tot(const struct arg *args, struct sample *smp, const char *kw, void *private)
3249{
Willy Tarreaue0dd2102020-04-29 11:59:02 +02003250 if (!smp->strm)
3251 return 0;
3252
Willy Tarreau70fe9442018-11-22 16:07:39 +01003253 smp->data.type = SMP_T_SINT;
3254 smp->data.u.sint = smp->strm->task->cpu_time;
3255 return 1;
3256}
3257
3258/* returns the average number of nanoseconds per call spent waiting for other tasks to be processed */
3259static int
3260smp_fetch_lat_ns_avg(const struct arg *args, struct sample *smp, const char *kw, void *private)
3261{
Willy Tarreaue0dd2102020-04-29 11:59:02 +02003262 if (!smp->strm)
3263 return 0;
3264
Willy Tarreau70fe9442018-11-22 16:07:39 +01003265 smp->data.type = SMP_T_SINT;
3266 smp->data.u.sint = smp->strm->task->calls ? smp->strm->task->lat_time / smp->strm->task->calls : 0;
3267 return 1;
3268}
3269
3270/* returns the total number of nanoseconds per call spent waiting for other tasks to be processed */
3271static int
3272smp_fetch_lat_ns_tot(const struct arg *args, struct sample *smp, const char *kw, void *private)
3273{
Willy Tarreaue0dd2102020-04-29 11:59:02 +02003274 if (!smp->strm)
3275 return 0;
3276
Willy Tarreau70fe9442018-11-22 16:07:39 +01003277 smp->data.type = SMP_T_SINT;
3278 smp->data.u.sint = smp->strm->task->lat_time;
3279 return 1;
3280}
3281
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003282static int smp_fetch_const_str(const struct arg *args, struct sample *smp, const char *kw, void *private)
3283{
3284 smp->flags |= SMP_F_CONST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003285 smp->data.type = SMP_T_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003286 smp->data.u.str.area = args[0].data.str.area;
3287 smp->data.u.str.data = args[0].data.str.data;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003288 return 1;
3289}
3290
3291static int smp_check_const_bool(struct arg *args, char **err)
3292{
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003293 if (strcasecmp(args[0].data.str.area, "true") == 0 ||
3294 strcasecmp(args[0].data.str.area, "1") == 0) {
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02003295 args[0].type = ARGT_SINT;
3296 args[0].data.sint = 1;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003297 return 1;
3298 }
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003299 if (strcasecmp(args[0].data.str.area, "false") == 0 ||
3300 strcasecmp(args[0].data.str.area, "0") == 0) {
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02003301 args[0].type = ARGT_SINT;
3302 args[0].data.sint = 0;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003303 return 1;
3304 }
3305 memprintf(err, "Expects 'true', 'false', '0' or '1'");
3306 return 0;
3307}
3308
3309static int smp_fetch_const_bool(const struct arg *args, struct sample *smp, const char *kw, void *private)
3310{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003311 smp->data.type = SMP_T_BOOL;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003312 smp->data.u.sint = args[0].data.sint;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003313 return 1;
3314}
3315
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02003316static int smp_fetch_const_int(const struct arg *args, struct sample *smp, const char *kw, void *private)
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003317{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003318 smp->data.type = SMP_T_SINT;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003319 smp->data.u.sint = args[0].data.sint;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003320 return 1;
3321}
3322
3323static int smp_fetch_const_ipv4(const struct arg *args, struct sample *smp, const char *kw, void *private)
3324{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003325 smp->data.type = SMP_T_IPV4;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003326 smp->data.u.ipv4 = args[0].data.ipv4;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003327 return 1;
3328}
3329
3330static int smp_fetch_const_ipv6(const struct arg *args, struct sample *smp, const char *kw, void *private)
3331{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003332 smp->data.type = SMP_T_IPV6;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003333 smp->data.u.ipv6 = args[0].data.ipv6;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003334 return 1;
3335}
3336
3337static int smp_check_const_bin(struct arg *args, char **err)
3338{
David Carlier64a16ab2016-04-08 10:37:02 +01003339 char *binstr = NULL;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003340 int binstrlen;
3341
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003342 if (!parse_binary(args[0].data.str.area, &binstr, &binstrlen, err))
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003343 return 0;
3344 args[0].type = ARGT_STR;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003345 args[0].data.str.area = binstr;
3346 args[0].data.str.data = binstrlen;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003347 return 1;
3348}
3349
3350static int smp_fetch_const_bin(const struct arg *args, struct sample *smp, const char *kw, void *private)
3351{
3352 smp->flags |= SMP_F_CONST;
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003353 smp->data.type = SMP_T_BIN;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003354 smp->data.u.str.area = args[0].data.str.area;
3355 smp->data.u.str.data = args[0].data.str.data;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003356 return 1;
3357}
3358
3359static int smp_check_const_meth(struct arg *args, char **err)
3360{
3361 enum http_meth_t meth;
3362 int i;
3363
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003364 meth = find_http_meth(args[0].data.str.area, args[0].data.str.data);
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003365 if (meth != HTTP_METH_OTHER) {
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02003366 args[0].type = ARGT_SINT;
3367 args[0].data.sint = meth;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003368 } else {
3369 /* Check method avalaibility. A methos is a token defined as :
3370 * tchar = "!" / "#" / "$" / "%" / "&" / "'" / "*" / "+" / "-" / "." /
3371 * "^" / "_" / "`" / "|" / "~" / DIGIT / ALPHA
3372 * token = 1*tchar
3373 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003374 for (i = 0; i < args[0].data.str.data; i++) {
3375 if (!HTTP_IS_TOKEN(args[0].data.str.area[i])) {
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003376 memprintf(err, "expects valid method.");
3377 return 0;
3378 }
3379 }
3380 }
3381 return 1;
3382}
3383
3384static int smp_fetch_const_meth(const struct arg *args, struct sample *smp, const char *kw, void *private)
3385{
Thierry FOURNIER8c542ca2015-08-19 09:00:18 +02003386 smp->data.type = SMP_T_METH;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02003387 if (args[0].type == ARGT_SINT) {
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003388 smp->flags &= ~SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003389 smp->data.u.meth.meth = args[0].data.sint;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003390 smp->data.u.meth.str.area = "";
3391 smp->data.u.meth.str.data = 0;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003392 } else {
3393 smp->flags |= SMP_F_CONST;
Thierry FOURNIER136f9d32015-08-19 09:07:19 +02003394 smp->data.u.meth.meth = HTTP_METH_OTHER;
Willy Tarreau843b7cb2018-07-13 10:54:26 +02003395 smp->data.u.meth.str.area = args[0].data.str.area;
3396 smp->data.u.meth.str.data = args[0].data.str.data;
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003397 }
3398 return 1;
3399}
3400
Luca Schimweg8a694b82019-09-10 15:42:52 +02003401// This function checks the "uuid" sample's arguments.
3402// Function won't get called when no parameter is specified (maybe a bug?)
3403static int smp_check_uuid(struct arg *args, char **err)
3404{
3405 if (!args[0].type) {
3406 args[0].type = ARGT_SINT;
3407 args[0].data.sint = 4;
3408 }
3409 else if (args[0].data.sint != 4) {
3410 memprintf(err, "Unsupported UUID version: '%lld'", args[0].data.sint);
3411 return 0;
3412 }
3413
3414 return 1;
3415}
3416
3417// Generate a RFC4122 UUID (default is v4 = fully random)
3418static int smp_fetch_uuid(const struct arg *args, struct sample *smp, const char *kw, void *private)
3419{
3420 if (args[0].data.sint == 4 || !args[0].type) {
Willy Tarreauee3bcdd2020-03-08 17:48:17 +01003421 ha_generate_uuid(&trash);
Luca Schimweg8a694b82019-09-10 15:42:52 +02003422 smp->data.type = SMP_T_STR;
3423 smp->flags = SMP_F_VOL_TEST | SMP_F_MAY_CHANGE;
3424 smp->data.u.str = trash;
3425 return 1;
3426 }
3427
3428 // more implementations of other uuid formats possible here
3429 return 0;
3430}
3431
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003432/* Note: must not be declared <const> as its list will be overwritten.
3433 * Note: fetches that may return multiple types must be declared as the lowest
3434 * common denominator, the type that can be casted into all other ones. For
3435 * instance IPv4/IPv6 must be declared IPv4.
3436 */
3437static struct sample_fetch_kw_list smp_kws = {ILH, {
3438 { "always_false", smp_fetch_false, 0, NULL, SMP_T_BOOL, SMP_USE_INTRN },
3439 { "always_true", smp_fetch_true, 0, NULL, SMP_T_BOOL, SMP_USE_INTRN },
Thierry FOURNIER7654c9f2013-12-17 00:20:33 +01003440 { "env", smp_fetch_env, ARG1(1,STR), NULL, SMP_T_STR, SMP_USE_INTRN },
Damien Claisseae6f1252019-10-30 15:57:28 +00003441 { "date", smp_fetch_date, ARG2(0,SINT,STR), smp_check_date_unit, SMP_T_SINT, SMP_USE_INTRN },
Etienne Carrierea792a0a2018-01-17 13:43:24 +01003442 { "date_us", smp_fetch_date_us, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
Nenad Merdanovic807a6e72017-03-12 22:00:00 +01003443 { "hostname", smp_fetch_hostname, 0, NULL, SMP_T_STR, SMP_USE_INTRN },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02003444 { "nbproc", smp_fetch_nbproc,0, NULL, SMP_T_SINT, SMP_USE_INTRN },
3445 { "proc", smp_fetch_proc, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
Christopher Faulet34adb2a2017-11-21 21:45:38 +01003446 { "thread", smp_fetch_thread, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02003447 { "rand", smp_fetch_rand, ARG1(0,SINT), NULL, SMP_T_SINT, SMP_USE_INTRN },
Willy Tarreau0f30d262014-11-24 16:02:05 +01003448 { "stopping", smp_fetch_stopping, 0, NULL, SMP_T_BOOL, SMP_USE_INTRN },
Willy Tarreau70fe9442018-11-22 16:07:39 +01003449 { "stopping", smp_fetch_stopping, 0, NULL, SMP_T_BOOL, SMP_USE_INTRN },
Luca Schimweg8a694b82019-09-10 15:42:52 +02003450 { "uuid", smp_fetch_uuid, ARG1(0, SINT), smp_check_uuid, SMP_T_STR, SMP_USE_INTRN },
Willy Tarreau70fe9442018-11-22 16:07:39 +01003451
3452 { "cpu_calls", smp_fetch_cpu_calls, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
3453 { "cpu_ns_avg", smp_fetch_cpu_ns_avg, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
3454 { "cpu_ns_tot", smp_fetch_cpu_ns_tot, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
3455 { "lat_ns_avg", smp_fetch_lat_ns_avg, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
3456 { "lat_ns_tot", smp_fetch_lat_ns_tot, 0, NULL, SMP_T_SINT, SMP_USE_INTRN },
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003457
3458 { "str", smp_fetch_const_str, ARG1(1,STR), NULL , SMP_T_STR, SMP_USE_INTRN },
3459 { "bool", smp_fetch_const_bool, ARG1(1,STR), smp_check_const_bool, SMP_T_BOOL, SMP_USE_INTRN },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02003460 { "int", smp_fetch_const_int, ARG1(1,SINT), NULL , SMP_T_SINT, SMP_USE_INTRN },
Thierry FOURNIERcc103292015-06-06 19:30:17 +02003461 { "ipv4", smp_fetch_const_ipv4, ARG1(1,IPV4), NULL , SMP_T_IPV4, SMP_USE_INTRN },
3462 { "ipv6", smp_fetch_const_ipv6, ARG1(1,IPV6), NULL , SMP_T_IPV6, SMP_USE_INTRN },
3463 { "bin", smp_fetch_const_bin, ARG1(1,STR), smp_check_const_bin , SMP_T_BIN, SMP_USE_INTRN },
3464 { "meth", smp_fetch_const_meth, ARG1(1,STR), smp_check_const_meth, SMP_T_METH, SMP_USE_INTRN },
3465
Willy Tarreau5b8ad222013-07-25 12:17:57 +02003466 { /* END */ },
3467}};
3468
Willy Tarreau0108d902018-11-25 19:14:37 +01003469INITCALL1(STG_REGISTER, sample_register_fetches, &smp_kws);
3470
Emeric Brun107ca302010-01-04 16:16:05 +01003471/* Note: must not be declared <const> as its list will be overwritten */
Willy Tarreaudc13c112013-06-21 23:16:39 +02003472static struct sample_conv_kw_list sample_conv_kws = {ILH, {
Willy Tarreau0851fd52019-12-17 10:07:25 +01003473 { "debug", sample_conv_debug, ARG2(0,STR,STR), smp_check_debug, SMP_T_ANY, SMP_T_ANY },
Holger Just1bfc24b2017-05-06 00:56:53 +02003474 { "b64dec", sample_conv_base642bin,0, NULL, SMP_T_STR, SMP_T_BIN },
Emeric Brun53d1a982014-04-30 18:21:37 +02003475 { "base64", sample_conv_bin2base64,0, NULL, SMP_T_BIN, SMP_T_STR },
Willy Tarreau12785782012-04-27 21:37:17 +02003476 { "upper", sample_conv_str2upper, 0, NULL, SMP_T_STR, SMP_T_STR },
3477 { "lower", sample_conv_str2lower, 0, NULL, SMP_T_STR, SMP_T_STR },
Willy Tarreau60a2ee72017-12-15 07:13:48 +01003478 { "length", sample_conv_length, 0, NULL, SMP_T_STR, SMP_T_SINT },
Thierry FOURNIER2f49d6d2014-03-12 15:01:52 +01003479 { "hex", sample_conv_bin2hex, 0, NULL, SMP_T_BIN, SMP_T_STR },
Dragan Dosen3f957b22017-10-24 09:27:34 +02003480 { "hex2i", sample_conv_hex2int, 0, NULL, SMP_T_STR, SMP_T_SINT },
Tim Duesterhus1478aa72018-01-25 16:24:51 +01003481 { "ipmask", sample_conv_ipmask, ARG2(1,MSK4,MSK6), NULL, SMP_T_ADDR, SMP_T_IPV4 },
Thierry FOURNIER07ee64e2015-07-06 23:43:03 +02003482 { "ltime", sample_conv_ltime, ARG2(1,STR,SINT), NULL, SMP_T_SINT, SMP_T_STR },
3483 { "utime", sample_conv_utime, ARG2(1,STR,SINT), NULL, SMP_T_SINT, SMP_T_STR },
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02003484 { "crc32", sample_conv_crc32, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT },
Emmanuel Hocdet50791a72018-03-21 11:19:01 +01003485 { "crc32c", sample_conv_crc32c, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT },
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02003486 { "djb2", sample_conv_djb2, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT },
3487 { "sdbm", sample_conv_sdbm, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT },
3488 { "wt6", sample_conv_wt6, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT },
Thierry FOURNIER01e09742016-12-26 11:46:11 +01003489 { "xxh32", sample_conv_xxh32, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT },
3490 { "xxh64", sample_conv_xxh64, ARG1(0,SINT), NULL, SMP_T_BIN, SMP_T_SINT },
Thierry FOURNIER317e1c42014-08-12 10:20:47 +02003491 { "json", sample_conv_json, ARG1(1,STR), sample_conv_json_check, SMP_T_STR, SMP_T_STR },
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +02003492 { "bytes", sample_conv_bytes, ARG2(1,SINT,SINT), NULL, SMP_T_BIN, SMP_T_BIN },
Marcin Deranek9631a282018-04-16 14:30:46 +02003493 { "field", sample_conv_field, ARG3(2,SINT,STR,SINT), sample_conv_field_check, SMP_T_STR, SMP_T_STR },
3494 { "word", sample_conv_word, ARG3(2,SINT,STR,SINT), sample_conv_field_check, SMP_T_STR, SMP_T_STR },
Willy Tarreau7eda8492015-01-20 19:47:06 +01003495 { "regsub", sample_conv_regsub, ARG3(2,REG,STR,STR), sample_conv_regsub_check, SMP_T_STR, SMP_T_STR },
Dragan Dosen6e5a9ca2017-10-24 09:18:23 +02003496 { "sha1", sample_conv_sha1, 0, NULL, SMP_T_BIN, SMP_T_BIN },
Tim Duesterhusd4376302019-06-17 12:41:44 +02003497#ifdef USE_OPENSSL
Tim Duesterhuscd373242019-12-17 12:31:20 +01003498 { "sha2", sample_conv_sha2, ARG1(0, SINT), smp_check_sha2, SMP_T_BIN, SMP_T_BIN },
Tim Duesterhusd4376302019-06-17 12:41:44 +02003499#endif
Willy Tarreau280f42b2018-02-19 15:34:12 +01003500 { "concat", sample_conv_concat, ARG3(1,STR,STR,STR), smp_check_concat, SMP_T_STR, SMP_T_STR },
Tim Duesterhusca097c12018-04-27 21:18:45 +02003501 { "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 +01003502
3503 /* gRPC converters. */
Frédéric Lécaillebfe61382019-03-06 14:34:36 +01003504 { "ungrpc", sample_conv_ungrpc, ARG2(1,PBUF_FNUM,STR), sample_conv_protobuf_check, SMP_T_BIN, SMP_T_BIN },
3505 { "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 +01003506
Thierry FOURNIER5d86fae2015-07-07 21:10:16 +02003507 { "and", sample_conv_binary_and, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
3508 { "or", sample_conv_binary_or, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
3509 { "xor", sample_conv_binary_xor, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
3510 { "cpl", sample_conv_binary_cpl, 0, NULL, SMP_T_SINT, SMP_T_SINT },
3511 { "bool", sample_conv_arith_bool, 0, NULL, SMP_T_SINT, SMP_T_BOOL },
3512 { "not", sample_conv_arith_not, 0, NULL, SMP_T_SINT, SMP_T_BOOL },
3513 { "odd", sample_conv_arith_odd, 0, NULL, SMP_T_SINT, SMP_T_BOOL },
3514 { "even", sample_conv_arith_even, 0, NULL, SMP_T_SINT, SMP_T_BOOL },
3515 { "add", sample_conv_arith_add, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
3516 { "sub", sample_conv_arith_sub, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
3517 { "mul", sample_conv_arith_mul, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
3518 { "div", sample_conv_arith_div, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
3519 { "mod", sample_conv_arith_mod, ARG1(1,STR), check_operator, SMP_T_SINT, SMP_T_SINT },
3520 { "neg", sample_conv_arith_neg, 0, NULL, SMP_T_SINT, SMP_T_SINT },
Willy Tarreau97707872015-01-27 15:12:13 +01003521
Christopher Fauletea159d62020-04-01 16:21:44 +02003522 { "htonl", sample_conv_htonl, 0, NULL, SMP_T_SINT, SMP_T_BIN },
3523 { "cut_crlf", sample_conv_cut_crlf, 0, NULL, SMP_T_STR, SMP_T_STR },
Christopher Faulet51fc9d12020-04-01 17:24:41 +02003524 { "ltrim", sample_conv_ltrim, ARG1(1,STR), NULL, SMP_T_STR, SMP_T_STR },
Christopher Faulet568415a2020-04-01 17:24:47 +02003525 { "rtrim", sample_conv_rtrim, ARG1(1,STR), NULL, SMP_T_STR, SMP_T_STR },
Willy Tarreau9fcb9842012-04-20 14:45:49 +02003526 { NULL, NULL, 0, 0, 0 },
Emeric Brun107ca302010-01-04 16:16:05 +01003527}};
3528
Willy Tarreau0108d902018-11-25 19:14:37 +01003529INITCALL1(STG_REGISTER, sample_register_convs, &sample_conv_kws);