blob: 4e40aaed90505aee08180191865d5f5600d6e762 [file] [log] [blame]
Willy Tarreau2ac57182012-04-19 15:24:50 +02001/*
2 * Functions used to parse typed argument lists
3 *
4 * Copyright 2012 Willy Tarreau <w@1wt.eu>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 *
11 */
12
13#include <sys/types.h>
14#include <sys/socket.h>
15#include <arpa/inet.h>
16
Willy Tarreaub2551052020-06-09 09:07:15 +020017#include <haproxy/arg.h>
Willy Tarreauc13ed532020-06-02 10:22:45 +020018#include <haproxy/chunk.h>
Willy Tarreauf268ee82020-06-04 17:05:57 +020019#include <haproxy/global.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020020#include <haproxy/tools.h>
Willy Tarreau2ac57182012-04-19 15:24:50 +020021
Thierry FOURNIER49f45af2014-12-08 19:50:43 +010022const char *arg_type_names[ARGT_NBTYPES] = {
Willy Tarreau2ac57182012-04-19 15:24:50 +020023 [ARGT_STOP] = "end of arguments",
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +020024 [ARGT_SINT] = "integer",
Willy Tarreau2ac57182012-04-19 15:24:50 +020025 [ARGT_STR] = "string",
26 [ARGT_IPV4] = "IPv4 address",
27 [ARGT_MSK4] = "IPv4 mask",
28 [ARGT_IPV6] = "IPv6 address",
29 [ARGT_MSK6] = "IPv6 mask",
30 [ARGT_TIME] = "delay",
31 [ARGT_SIZE] = "size",
32 [ARGT_FE] = "frontend",
33 [ARGT_BE] = "backend",
34 [ARGT_TAB] = "table",
35 [ARGT_SRV] = "server",
36 [ARGT_USR] = "user list",
Willy Tarreau53c250e2015-01-19 18:58:20 +010037 [ARGT_MAP] = "map",
Willy Tarreau46947782015-01-19 19:00:58 +010038 [ARGT_REG] = "regex",
Willy Tarreauf7ead612015-09-21 20:57:12 +020039 [ARGT_VAR] = "variable",
Frédéric Lécaille3a463c92019-02-25 15:20:35 +010040 [ARGT_PBUF_FNUM] = "Protocol buffers field number",
Willy Tarreau2ac57182012-04-19 15:24:50 +020041 /* Unassigned types must never happen. Better crash during parsing if they do. */
42};
43
Willy Tarreau2e845be2012-10-19 19:49:09 +020044/* This dummy arg list may be used by default when no arg is found, it helps
45 * parsers by removing pointer checks.
46 */
Willy Tarreau3d241e72015-01-19 18:44:07 +010047struct arg empty_arg_list[ARGM_NBARGS] = { };
Willy Tarreau2e845be2012-10-19 19:49:09 +020048
Willy Tarreaua4312fa2013-04-02 16:34:32 +020049/* This function clones a struct arg_list template into a new one which is
50 * returned.
51 */
52struct arg_list *arg_list_clone(const struct arg_list *orig)
53{
54 struct arg_list *new;
55
56 if ((new = calloc(1, sizeof(*new))) != NULL) {
57 /* ->list will be set by the caller when inserting the element.
58 * ->arg and ->arg_pos will be set by the caller.
59 */
60 new->ctx = orig->ctx;
61 new->kw = orig->kw;
62 new->conv = orig->conv;
63 new->file = orig->file;
64 new->line = orig->line;
65 }
66 return new;
67}
68
69/* This function clones a struct <arg_list> template into a new one which is
70 * set to point to arg <arg> at pos <pos>, and which is returned if the caller
71 * wants to apply further changes.
72 */
73struct arg_list *arg_list_add(struct arg_list *orig, struct arg *arg, int pos)
74{
75 struct arg_list *new;
76
77 new = arg_list_clone(orig);
Willy Tarreaua9e2e4b2017-04-12 22:28:52 +020078 if (new) {
79 new->arg = arg;
80 new->arg_pos = pos;
Willy Tarreau2b718102021-04-21 07:32:39 +020081 LIST_APPEND(&orig->list, &new->list);
Willy Tarreaua9e2e4b2017-04-12 22:28:52 +020082 }
Willy Tarreaua4312fa2013-04-02 16:34:32 +020083 return new;
84}
85
Willy Tarreau80b53ff2020-02-14 08:40:37 +010086/* This function builds an argument list from a config line, and stops at the
87 * first non-matching character, which is pointed to in <end_ptr>. A valid arg
88 * list starts with an opening parenthesis '(', contains a number of comma-
89 * delimited words, and ends with the closing parenthesis ')'. An empty list
90 * (with or without the parenthesis) will lead to a valid empty argument if the
91 * keyword has a mandatory one. The function returns the number of arguments
92 * emitted, or <0 in case of any error. Everything needed it automatically
93 * allocated. A pointer to an error message might be returned in err_msg if not
94 * NULL, in which case it would be allocated and the caller will have to check
95 * it and free it. The output arg list is returned in argp which must be valid.
96 * The returned array is always terminated by an arg of type ARGT_STOP (0),
97 * unless the mask indicates that no argument is supported. Unresolved arguments
98 * are appended to arg list <al>, which also serves as a template to create new
Christopher Faulet45bb15f2021-09-30 08:48:56 +020099 * entries. <al> may be NULL if unresolved arguments are not allowed. The mask
100 * is composed of a number of mandatory arguments in its lower ARGM_BITS bits,
101 * and a concatenation of each argument type in each subsequent ARGT_BITS-bit
102 * sblock. If <err_msg> is not NULL, it must point to a freeable or NULL
103 * pointer. The caller is expected to restart the parsing from the new pointer
104 * set in <end_ptr>, which is the first character considered as not being part
105 * of the arg list. The input string ends on the first between <len> characters
106 * (when len is positive) or the first NUL character. Placing -1 in <len> will
107 * make it virtually unbounded (~2GB long strings).
Willy Tarreau2ac57182012-04-19 15:24:50 +0200108 */
David Carlier15073a32016-03-15 19:00:35 +0000109int make_arg_list(const char *in, int len, uint64_t mask, struct arg **argp,
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100110 char **err_msg, const char **end_ptr, int *err_arg,
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200111 struct arg_list *al)
Willy Tarreau2ac57182012-04-19 15:24:50 +0200112{
113 int nbarg;
114 int pos;
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200115 struct arg *arg;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200116 const char *beg;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200117 const char *ptr_err = NULL;
118 int min_arg;
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100119 int empty;
Willy Tarreau0622f022017-04-12 22:32:04 +0200120 struct arg_list *new_al = al;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200121
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200122 *argp = NULL;
123
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100124 empty = 0;
125 if (!len || *in != '(') {
126 /* it's already not for us, stop here */
127 empty = 1;
128 len = 0;
129 } else {
130 /* skip opening parenthesis */
131 len--;
132 in++;
133 }
134
Willy Tarreau3d241e72015-01-19 18:44:07 +0100135 min_arg = mask & ARGM_MASK;
136 mask >>= ARGM_BITS;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200137
138 pos = 0;
Willy Tarreau3d241e72015-01-19 18:44:07 +0100139 /* find between 0 and NBARGS the max number of args supported by the mask */
140 for (nbarg = 0; nbarg < ARGM_NBARGS && ((mask >> (nbarg * ARGT_BITS)) & ARGT_MASK); nbarg++);
Willy Tarreau2ac57182012-04-19 15:24:50 +0200141
142 if (!nbarg)
143 goto end_parse;
144
145 /* Note: an empty input string contains an empty argument if this argument
146 * is marked mandatory. Otherwise we can ignore it.
147 */
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100148 if (empty && !min_arg)
Willy Tarreau2ac57182012-04-19 15:24:50 +0200149 goto end_parse;
150
Tim Duesterhuse52b6e52020-09-12 20:26:43 +0200151 arg = *argp = calloc(nbarg + 1, sizeof(**argp));
Willy Tarreau2ac57182012-04-19 15:24:50 +0200152
Remi Tricot-Le Breton6d303d62021-05-19 12:00:54 +0200153 if (!arg)
154 goto alloc_err;
155
Willy Tarreau2ac57182012-04-19 15:24:50 +0200156 /* Note: empty arguments after a comma always exist. */
157 while (pos < nbarg) {
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200158 unsigned int uint;
Willy Tarreauef21fac2020-02-14 13:37:20 +0100159 int squote = 0, dquote = 0;
160 char *out;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200161
Willy Tarreauef21fac2020-02-14 13:37:20 +0100162 chunk_reset(&trash);
163 out = trash.area;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200164
Willy Tarreauef21fac2020-02-14 13:37:20 +0100165 while (len && *in && trash.data < trash.size - 1) {
166 if (*in == '"' && !squote) { /* double quote outside single quotes */
167 if (dquote)
168 dquote = 0;
169 else
170 dquote = 1;
171 in++; len--;
172 continue;
173 }
174 else if (*in == '\'' && !dquote) { /* single quote outside double quotes */
175 if (squote)
176 squote = 0;
177 else
178 squote = 1;
179 in++; len--;
180 continue;
181 }
182 else if (*in == '\\' && !squote && len != 1) {
183 /* '\', ', ' ', '"' support being escaped by '\' */
184 if (len == 1 || in[1] == 0)
185 goto unquote_err;
186
187 if (in[1] == '\\' || in[1] == ' ' || in[1] == '"' || in[1] == '\'') {
188 in++; len--;
189 *out++ = *in;
190 }
191 else if (in[1] == 'r') {
192 in++; len--;
193 *out++ = '\r';
194 }
195 else if (in[1] == 'n') {
196 in++; len--;
197 *out++ = '\n';
198 }
199 else if (in[1] == 't') {
200 in++; len--;
201 *out++ = '\t';
202 }
203 else {
204 /* just a lone '\' */
205 *out++ = *in;
206 }
207 in++; len--;
208 }
209 else {
210 if (!squote && !dquote && (*in == ',' || *in == ')')) {
211 /* end of argument */
212 break;
213 }
214 /* verbatim copy */
215 *out++ = *in++;
216 len--;
217 }
218 trash.data = out - trash.area;
219 }
Willy Tarreau807aef82020-02-15 14:54:28 +0100220
Willy Tarreau9af749b2020-02-16 10:46:37 +0100221 if (len && *in && *in != ',' && *in != ')')
Willy Tarreau807aef82020-02-15 14:54:28 +0100222 goto buffer_err;
223
Willy Tarreauef21fac2020-02-14 13:37:20 +0100224 trash.area[trash.data] = 0;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200225
Willy Tarreau3d241e72015-01-19 18:44:07 +0100226 arg->type = (mask >> (pos * ARGT_BITS)) & ARGT_MASK;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200227
228 switch (arg->type) {
229 case ARGT_SINT:
Willy Tarreau338c6702020-02-14 11:34:35 +0100230 if (!trash.data) // empty number
Willy Tarreau4e6336f2012-04-27 16:32:26 +0200231 goto empty_err;
Willy Tarreau338c6702020-02-14 11:34:35 +0100232 beg = trash.area;
233 arg->data.sint = read_int64(&beg, trash.area + trash.data);
234 if (beg < trash.area + trash.data)
Willy Tarreau4e6336f2012-04-27 16:32:26 +0200235 goto parse_err;
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200236 arg->type = ARGT_SINT;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200237 break;
238
239 case ARGT_FE:
240 case ARGT_BE:
241 case ARGT_TAB:
242 case ARGT_SRV:
243 case ARGT_USR:
Willy Tarreau46947782015-01-19 19:00:58 +0100244 case ARGT_REG:
Willy Tarreau496aa012012-06-01 10:38:29 +0200245 /* These argument types need to be stored as strings during
246 * parsing then resolved later.
247 */
Christopher Faulet45bb15f2021-09-30 08:48:56 +0200248 if (!al)
249 goto resolve_err;
Willy Tarreau496aa012012-06-01 10:38:29 +0200250 arg->unresolved = 1;
Willy Tarreau0622f022017-04-12 22:32:04 +0200251 new_al = arg_list_add(al, arg, pos);
Willy Tarreaua4312fa2013-04-02 16:34:32 +0200252
Willy Tarreau496aa012012-06-01 10:38:29 +0200253 /* fall through */
Willy Tarreau2ac57182012-04-19 15:24:50 +0200254 case ARGT_STR:
255 /* all types that must be resolved are stored as strings
256 * during the parsing. The caller must at one point resolve
257 * them and free the string.
258 */
Willy Tarreau338c6702020-02-14 11:34:35 +0100259 arg->data.str.area = my_strndup(trash.area, trash.data);
260 arg->data.str.data = trash.data;
261 arg->data.str.size = trash.data + 1;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200262 break;
263
264 case ARGT_IPV4:
Willy Tarreau338c6702020-02-14 11:34:35 +0100265 if (!trash.data) // empty address
Willy Tarreau4e6336f2012-04-27 16:32:26 +0200266 goto empty_err;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200267
Willy Tarreau338c6702020-02-14 11:34:35 +0100268 if (inet_pton(AF_INET, trash.area, &arg->data.ipv4) <= 0)
Willy Tarreau2ac57182012-04-19 15:24:50 +0200269 goto parse_err;
270 break;
271
272 case ARGT_MSK4:
Willy Tarreau338c6702020-02-14 11:34:35 +0100273 if (!trash.data) // empty mask
Willy Tarreau4e6336f2012-04-27 16:32:26 +0200274 goto empty_err;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200275
Willy Tarreau338c6702020-02-14 11:34:35 +0100276 if (!str2mask(trash.area, &arg->data.ipv4))
Willy Tarreau2ac57182012-04-19 15:24:50 +0200277 goto parse_err;
278
279 arg->type = ARGT_IPV4;
280 break;
281
282 case ARGT_IPV6:
Willy Tarreau338c6702020-02-14 11:34:35 +0100283 if (!trash.data) // empty address
Willy Tarreau4e6336f2012-04-27 16:32:26 +0200284 goto empty_err;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200285
Willy Tarreau338c6702020-02-14 11:34:35 +0100286 if (inet_pton(AF_INET6, trash.area, &arg->data.ipv6) <= 0)
Willy Tarreau2ac57182012-04-19 15:24:50 +0200287 goto parse_err;
288 break;
289
Tim Duesterhusb814da62018-01-25 16:24:50 +0100290 case ARGT_MSK6:
Willy Tarreau338c6702020-02-14 11:34:35 +0100291 if (!trash.data) // empty mask
Tim Duesterhusb814da62018-01-25 16:24:50 +0100292 goto empty_err;
293
Willy Tarreau338c6702020-02-14 11:34:35 +0100294 if (!str2mask6(trash.area, &arg->data.ipv6))
Tim Duesterhusb814da62018-01-25 16:24:50 +0100295 goto parse_err;
296
297 arg->type = ARGT_IPV6;
298 break;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200299
300 case ARGT_TIME:
Willy Tarreau338c6702020-02-14 11:34:35 +0100301 if (!trash.data) // empty time
Willy Tarreau4e6336f2012-04-27 16:32:26 +0200302 goto empty_err;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200303
Willy Tarreau338c6702020-02-14 11:34:35 +0100304 ptr_err = parse_time_err(trash.area, &uint, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200305 if (ptr_err) {
306 if (ptr_err == PARSE_TIME_OVER || ptr_err == PARSE_TIME_UNDER)
Willy Tarreau338c6702020-02-14 11:34:35 +0100307 ptr_err = trash.area;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200308 goto parse_err;
Willy Tarreau9faebe32019-06-07 19:00:37 +0200309 }
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200310 arg->data.sint = uint;
311 arg->type = ARGT_SINT;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200312 break;
313
314 case ARGT_SIZE:
Willy Tarreau338c6702020-02-14 11:34:35 +0100315 if (!trash.data) // empty size
Willy Tarreau4e6336f2012-04-27 16:32:26 +0200316 goto empty_err;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200317
Willy Tarreau338c6702020-02-14 11:34:35 +0100318 ptr_err = parse_size_err(trash.area, &uint);
Willy Tarreau2ac57182012-04-19 15:24:50 +0200319 if (ptr_err)
320 goto parse_err;
321
Thierry FOURNIERbf65cd42015-07-20 17:45:02 +0200322 arg->data.sint = uint;
323 arg->type = ARGT_SINT;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200324 break;
325
Frédéric Lécaille3a463c92019-02-25 15:20:35 +0100326 case ARGT_PBUF_FNUM:
Willy Tarreau338c6702020-02-14 11:34:35 +0100327 if (!trash.data)
Frédéric Lécaille756d97f2019-03-04 19:03:48 +0100328 goto empty_err;
329
Willy Tarreau338c6702020-02-14 11:34:35 +0100330 if (!parse_dotted_uints(trash.area, &arg->data.fid.ids, &arg->data.fid.sz))
Frédéric Lécaille3a463c92019-02-25 15:20:35 +0100331 goto parse_err;
332
333 break;
334
Willy Tarreau2ac57182012-04-19 15:24:50 +0200335 /* FIXME: other types need to be implemented here */
336 default:
Willy Tarreau4e6336f2012-04-27 16:32:26 +0200337 goto not_impl;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200338 }
339
340 pos++;
341 arg++;
342
343 /* don't go back to parsing if we reached end */
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100344 if (!len || !*in || *in == ')' || pos >= nbarg)
Willy Tarreau2ac57182012-04-19 15:24:50 +0200345 break;
346
347 /* skip comma */
348 in++; len--;
349 }
350
351 end_parse:
Willy Tarreau2ac57182012-04-19 15:24:50 +0200352 if (pos < min_arg) {
353 /* not enough arguments */
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200354 memprintf(err_msg,
Willy Tarreaub111d422013-12-13 00:38:47 +0100355 "missing arguments (got %d/%d), type '%s' expected",
Willy Tarreau3d241e72015-01-19 18:44:07 +0100356 pos, min_arg, arg_type_names[(mask >> (pos * ARGT_BITS)) & ARGT_MASK]);
Willy Tarreau2ac57182012-04-19 15:24:50 +0200357 goto err;
358 }
359
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100360 if (empty) {
361 /* nothing to do */
362 } else if (*in == ')') {
363 /* skip the expected closing parenthesis */
364 in++;
365 } else {
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200366 /* the caller is responsible for freeing this message */
Willy Tarreau338c6702020-02-14 11:34:35 +0100367 char *word = (len > 0) ? my_strndup(in, len) : (char *)in;
Willy Tarreau3e293a92021-05-06 14:50:30 +0200368
369 if (*word)
370 memprintf(err_msg, "expected ')' before '%s'", word);
371 else
372 memprintf(err_msg, "expected ')'");
373
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100374 if (len > 0)
375 free(word);
Ilya Shipitsin46a030c2020-07-05 16:36:08 +0500376 /* when we're missing a right paren, the empty part preceding
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100377 * already created an empty arg, adding one to the position, so
378 * let's fix the reporting to avoid being confusing.
379 */
380 if (pos > 1)
381 pos--;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200382 goto err;
383 }
384
385 /* note that pos might be < nbarg and this is not an error, it's up to the
386 * caller to decide what to do with optional args.
387 */
Willy Tarreau2ac57182012-04-19 15:24:50 +0200388 if (err_arg)
389 *err_arg = pos;
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100390 if (end_ptr)
391 *end_ptr = in;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200392 return pos;
393
Willy Tarreau2ac57182012-04-19 15:24:50 +0200394 err:
Willy Tarreau0622f022017-04-12 22:32:04 +0200395 if (new_al == al) {
396 /* only free the arg area if we have not queued unresolved args
397 * still pointing to it.
398 */
399 free(*argp);
400 }
Willy Tarreau681e49d2013-12-06 15:30:05 +0100401 *argp = NULL;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200402 if (err_arg)
403 *err_arg = pos;
Willy Tarreau80b53ff2020-02-14 08:40:37 +0100404 if (end_ptr)
405 *end_ptr = in;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200406 return -1;
Willy Tarreau4e6336f2012-04-27 16:32:26 +0200407
408 empty_err:
Willy Tarreau75fd2ff2020-07-21 15:44:38 +0200409 /* If we've only got an empty set of parenthesis with nothing
410 * in between, there is no arg at all.
411 */
412 if (!pos) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100413 ha_free(argp);
Willy Tarreau75fd2ff2020-07-21 15:44:38 +0200414 }
415
Willy Tarreau77e463f2020-02-28 16:41:29 +0100416 if (pos >= min_arg)
417 goto end_parse;
418
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200419 memprintf(err_msg, "expected type '%s' at position %d, but got nothing",
Willy Tarreau3d241e72015-01-19 18:44:07 +0100420 arg_type_names[(mask >> (pos * ARGT_BITS)) & ARGT_MASK], pos + 1);
Willy Tarreau4e6336f2012-04-27 16:32:26 +0200421 goto err;
422
423 parse_err:
Willy Tarreau338c6702020-02-14 11:34:35 +0100424 /* come here with the word attempted to parse in trash */
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200425 memprintf(err_msg, "failed to parse '%s' as type '%s' at position %d",
Willy Tarreau338c6702020-02-14 11:34:35 +0100426 trash.area, arg_type_names[(mask >> (pos * ARGT_BITS)) & ARGT_MASK], pos + 1);
Willy Tarreau4e6336f2012-04-27 16:32:26 +0200427 goto err;
428
429 not_impl:
Willy Tarreaueb6cead2012-09-20 19:43:14 +0200430 memprintf(err_msg, "parsing for type '%s' was not implemented, please report this bug",
Willy Tarreau3d241e72015-01-19 18:44:07 +0100431 arg_type_names[(mask >> (pos * ARGT_BITS)) & ARGT_MASK]);
Willy Tarreau4e6336f2012-04-27 16:32:26 +0200432 goto err;
Willy Tarreau338c6702020-02-14 11:34:35 +0100433
434 buffer_err:
435 memprintf(err_msg, "too small buffer size to store decoded argument %d, increase bufsize ?",
436 pos + 1);
437 goto err;
Willy Tarreauef21fac2020-02-14 13:37:20 +0100438
439 unquote_err:
440 /* come here with the parsed part in <trash.area>:<trash.data> and the
441 * unparsable part in <in>.
442 */
443 trash.area[trash.data] = 0;
444 memprintf(err_msg, "failed to parse '%s' after '%s' as type '%s' at position %d",
445 in, trash.area, arg_type_names[(mask >> (pos * ARGT_BITS)) & ARGT_MASK], pos + 1);
446 goto err;
447
Remi Tricot-Le Breton6d303d62021-05-19 12:00:54 +0200448alloc_err:
449 memprintf(err_msg, "out of memory");
450 goto err;
Christopher Faulet45bb15f2021-09-30 08:48:56 +0200451
452 resolve_err:
453 memprintf(err_msg, "unresolved argument of type '%s' at position %d not allowed",
454 arg_type_names[(mask >> (pos * ARGT_BITS)) & ARGT_MASK], pos + 1);
455 goto err;
Willy Tarreau2ac57182012-04-19 15:24:50 +0200456}