blob: 4dc93b68a3d0d33417661c5f610296358aa82aba [file] [log] [blame]
Amaury Denoyellefc6ac532021-04-27 10:46:36 +02001#define _GNU_SOURCE /* for cpu_set_t from haproxy/cpuset.h */
Willy Tarreau36b9e222018-11-11 15:19:52 +01002#include <stdio.h>
3#include <stdlib.h>
4#include <string.h>
5#include <netdb.h>
6#include <ctype.h>
7#include <pwd.h>
8#include <grp.h>
9#include <errno.h>
10#include <sys/types.h>
11#include <sys/stat.h>
12#include <fcntl.h>
13#include <unistd.h>
14
Eric Salama7cea6062020-10-02 11:58:19 +020015#include <haproxy/buf.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020016#include <haproxy/cfgparse.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020017#ifdef USE_CPU_AFFINITY
Amaury Denoyellec90932b2021-04-14 16:16:03 +020018#include <haproxy/cpuset.h>
Amaury Denoyellea6f9c5d2021-04-23 16:58:08 +020019#endif
Willy Tarreau0a3bd392020-06-04 08:52:38 +020020#include <haproxy/compression.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020021#include <haproxy/global.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020022#include <haproxy/log.h>
Dragan Dosen13cd54c2020-06-18 18:24:05 +020023#include <haproxy/peers.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020024#include <haproxy/tools.h>
Willy Tarreau36b9e222018-11-11 15:19:52 +010025
Willy Tarreaua0e8eb82021-03-12 09:30:14 +010026/* some keywords that are still being parsed using strcmp() and are not
27 * registered anywhere. They are used as suggestions for mistyped words.
28 */
29static const char *common_kw_list[] = {
30 "global", "daemon", "master-worker", "noepoll", "nokqueue",
31 "noevports", "nopoll", "busy-polling", "set-dumpable",
32 "insecure-fork-wanted", "insecure-setuid-wanted", "nosplice",
33 "nogetaddrinfo", "noreuseport", "quiet", "zero-warning",
34 "tune.runqueue-depth", "tune.maxpollevents", "tune.maxaccept",
Willy Tarreaueb9d90a2021-06-11 15:29:31 +020035 "tune.recv_enough", "tune.buffers.limit",
Willy Tarreaua0e8eb82021-03-12 09:30:14 +010036 "tune.buffers.reserve", "tune.bufsize", "tune.maxrewrite",
37 "tune.idletimer", "tune.rcvbuf.client", "tune.rcvbuf.server",
38 "tune.sndbuf.client", "tune.sndbuf.server", "tune.pipesize",
39 "tune.http.cookielen", "tune.http.logurilen", "tune.http.maxhdr",
40 "tune.comp.maxlevel", "tune.pattern.cache-size", "uid", "gid",
41 "external-check", "user", "group", "nbproc", "nbthread", "maxconn",
42 "ssl-server-verify", "maxconnrate", "maxsessrate", "maxsslrate",
43 "maxcomprate", "maxpipes", "maxzlibmem", "maxcompcpuusage", "ulimit-n",
44 "chroot", "description", "node", "pidfile", "unix-bind", "log",
45 "log-send-hostname", "server-state-base", "server-state-file",
46 "log-tag", "spread-checks", "max-spread-checks", "cpu-map", "setenv",
47 "presetenv", "unsetenv", "resetenv", "strict-limits", "localpeer",
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +010048 "numa-cpu-mapping", "defaults", "listen", "frontend", "backend",
49 "peers", "resolvers",
Willy Tarreaua0e8eb82021-03-12 09:30:14 +010050 NULL /* must be last */
51};
52
Willy Tarreau36b9e222018-11-11 15:19:52 +010053/*
54 * parse a line in a <global> section. Returns the error code, 0 if OK, or
55 * any combination of :
56 * - ERR_ABORT: must abort ASAP
57 * - ERR_FATAL: we can continue parsing but not start the service
58 * - ERR_WARN: a warning has been emitted
59 * - ERR_ALERT: an alert has been emitted
60 * Only the two first ones can stop processing, the two others are just
61 * indicators.
62 */
63int cfg_parse_global(const char *file, int linenum, char **args, int kwm)
64{
65 int err_code = 0;
66 char *errmsg = NULL;
67
Tim Duesterhuse5ff1412021-01-02 22:31:53 +010068 if (strcmp(args[0], "global") == 0) { /* new section */
Willy Tarreau36b9e222018-11-11 15:19:52 +010069 /* no option, nothing special to do */
70 alertif_too_many_args(0, file, linenum, args, &err_code);
71 goto out;
72 }
Amaury Denoyelled2e53cd2021-05-06 16:21:39 +020073 else if (strcmp(args[0], "expose-experimental-directives") == 0) {
74 experimental_directives_allowed = 1;
75 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +010076 else if (strcmp(args[0], "daemon") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +010077 if (alertif_too_many_args(0, file, linenum, args, &err_code))
78 goto out;
79 global.mode |= MODE_DAEMON;
80 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +010081 else if (strcmp(args[0], "master-worker") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +010082 if (alertif_too_many_args(1, file, linenum, args, &err_code))
83 goto out;
84 if (*args[1]) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +010085 if (strcmp(args[1], "no-exit-on-failure") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +010086 global.tune.options |= GTUNE_NOEXIT_ONFAILURE;
87 } else {
88 ha_alert("parsing [%s:%d] : '%s' only supports 'no-exit-on-failure' option.\n", file, linenum, args[0]);
89 err_code |= ERR_ALERT | ERR_FATAL;
90 goto out;
91 }
92 }
93 global.mode |= MODE_MWORKER;
94 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +010095 else if (strcmp(args[0], "noepoll") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +010096 if (alertif_too_many_args(0, file, linenum, args, &err_code))
97 goto out;
98 global.tune.options &= ~GTUNE_USE_EPOLL;
99 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100100 else if (strcmp(args[0], "nokqueue") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100101 if (alertif_too_many_args(0, file, linenum, args, &err_code))
102 goto out;
103 global.tune.options &= ~GTUNE_USE_KQUEUE;
104 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100105 else if (strcmp(args[0], "noevports") == 0) {
Emmanuel Hocdet0ba4f482019-04-08 16:53:32 +0000106 if (alertif_too_many_args(0, file, linenum, args, &err_code))
107 goto out;
108 global.tune.options &= ~GTUNE_USE_EVPORTS;
109 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100110 else if (strcmp(args[0], "nopoll") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100111 if (alertif_too_many_args(0, file, linenum, args, &err_code))
112 goto out;
113 global.tune.options &= ~GTUNE_USE_POLL;
114 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100115 else if (strcmp(args[0], "busy-polling") == 0) { /* "no busy-polling" or "busy-polling" */
Willy Tarreaubeb859a2018-11-22 18:07:59 +0100116 if (alertif_too_many_args(0, file, linenum, args, &err_code))
117 goto out;
118 if (kwm == KWM_NO)
119 global.tune.options &= ~GTUNE_BUSY_POLLING;
120 else
121 global.tune.options |= GTUNE_BUSY_POLLING;
122 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100123 else if (strcmp(args[0], "set-dumpable") == 0) { /* "no set-dumpable" or "set-dumpable" */
Willy Tarreau636848a2019-04-15 19:38:50 +0200124 if (alertif_too_many_args(0, file, linenum, args, &err_code))
125 goto out;
126 if (kwm == KWM_NO)
127 global.tune.options &= ~GTUNE_SET_DUMPABLE;
128 else
129 global.tune.options |= GTUNE_SET_DUMPABLE;
130 }
Amaury Denoyellebefeae82021-07-09 17:14:30 +0200131 else if (strcmp(args[0], "h2-workaround-bogus-websocket-clients") == 0) { /* "no h2-workaround-bogus-websocket-clients" or "h2-workaround-bogus-websocket-clients" */
132 if (alertif_too_many_args(0, file, linenum, args, &err_code))
133 goto out;
134 if (kwm == KWM_NO)
135 global.tune.options &= ~GTUNE_DISABLE_H2_WEBSOCKET;
136 else
137 global.tune.options |= GTUNE_DISABLE_H2_WEBSOCKET;
138 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100139 else if (strcmp(args[0], "insecure-fork-wanted") == 0) { /* "no insecure-fork-wanted" or "insecure-fork-wanted" */
Willy Tarreaud96f1122019-12-03 07:07:36 +0100140 if (alertif_too_many_args(0, file, linenum, args, &err_code))
141 goto out;
142 if (kwm == KWM_NO)
143 global.tune.options &= ~GTUNE_INSECURE_FORK;
144 else
145 global.tune.options |= GTUNE_INSECURE_FORK;
146 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100147 else if (strcmp(args[0], "insecure-setuid-wanted") == 0) { /* "no insecure-setuid-wanted" or "insecure-setuid-wanted" */
Willy Tarreaua45a8b52019-12-06 16:31:45 +0100148 if (alertif_too_many_args(0, file, linenum, args, &err_code))
149 goto out;
150 if (kwm == KWM_NO)
151 global.tune.options &= ~GTUNE_INSECURE_SETUID;
152 else
153 global.tune.options |= GTUNE_INSECURE_SETUID;
154 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100155 else if (strcmp(args[0], "nosplice") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100156 if (alertif_too_many_args(0, file, linenum, args, &err_code))
157 goto out;
158 global.tune.options &= ~GTUNE_USE_SPLICE;
159 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100160 else if (strcmp(args[0], "nogetaddrinfo") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100161 if (alertif_too_many_args(0, file, linenum, args, &err_code))
162 goto out;
163 global.tune.options &= ~GTUNE_USE_GAI;
164 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100165 else if (strcmp(args[0], "noreuseport") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100166 if (alertif_too_many_args(0, file, linenum, args, &err_code))
167 goto out;
168 global.tune.options &= ~GTUNE_USE_REUSEPORT;
169 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100170 else if (strcmp(args[0], "quiet") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100171 if (alertif_too_many_args(0, file, linenum, args, &err_code))
172 goto out;
173 global.mode |= MODE_QUIET;
174 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100175 else if (strcmp(args[0], "zero-warning") == 0) {
Willy Tarreau3eb10b82020-04-15 16:42:39 +0200176 if (alertif_too_many_args(0, file, linenum, args, &err_code))
177 goto out;
178 global.mode |= MODE_ZERO_WARNING;
179 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100180 else if (strcmp(args[0], "tune.runqueue-depth") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100181 if (alertif_too_many_args(1, file, linenum, args, &err_code))
182 goto out;
183 if (global.tune.runqueue_depth != 0) {
184 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
185 err_code |= ERR_ALERT;
186 goto out;
187 }
188 if (*(args[1]) == 0) {
189 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
190 err_code |= ERR_ALERT | ERR_FATAL;
191 goto out;
192 }
193 global.tune.runqueue_depth = atol(args[1]);
194
195 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100196 else if (strcmp(args[0], "tune.maxpollevents") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100197 if (alertif_too_many_args(1, file, linenum, args, &err_code))
198 goto out;
199 if (global.tune.maxpollevents != 0) {
200 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
201 err_code |= ERR_ALERT;
202 goto out;
203 }
204 if (*(args[1]) == 0) {
205 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
206 err_code |= ERR_ALERT | ERR_FATAL;
207 goto out;
208 }
209 global.tune.maxpollevents = atol(args[1]);
210 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100211 else if (strcmp(args[0], "tune.maxaccept") == 0) {
Christopher Faulet6b02ab82019-04-30 14:03:56 +0200212 long max;
213
Willy Tarreau36b9e222018-11-11 15:19:52 +0100214 if (alertif_too_many_args(1, file, linenum, args, &err_code))
215 goto out;
216 if (global.tune.maxaccept != 0) {
217 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
218 err_code |= ERR_ALERT;
219 goto out;
220 }
221 if (*(args[1]) == 0) {
222 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
223 err_code |= ERR_ALERT | ERR_FATAL;
224 goto out;
225 }
Christopher Faulet6b02ab82019-04-30 14:03:56 +0200226 max = atol(args[1]);
227 if (/*max < -1 || */max > INT_MAX) {
228 ha_alert("parsing [%s:%d] : '%s' expects -1 or an integer from 0 to INT_MAX.\n", file, linenum, args[0]);
229 err_code |= ERR_ALERT | ERR_FATAL;
230 goto out;
231 }
232 global.tune.maxaccept = max;
Willy Tarreau36b9e222018-11-11 15:19:52 +0100233 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100234 else if (strcmp(args[0], "tune.chksize") == 0) {
Willy Tarreaueb9d90a2021-06-11 15:29:31 +0200235 ha_alert("parsing [%s:%d]: option '%s' is not supported any more (tune.bufsize is used instead).\n", file, linenum, args[0]);
236 err_code |= ERR_ALERT | ERR_FATAL;
237 goto out;
Willy Tarreau36b9e222018-11-11 15:19:52 +0100238 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100239 else if (strcmp(args[0], "tune.recv_enough") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100240 if (alertif_too_many_args(1, file, linenum, args, &err_code))
241 goto out;
242 if (*(args[1]) == 0) {
243 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
244 err_code |= ERR_ALERT | ERR_FATAL;
245 goto out;
246 }
247 global.tune.recv_enough = atol(args[1]);
248 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100249 else if (strcmp(args[0], "tune.buffers.limit") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100250 if (alertif_too_many_args(1, file, linenum, args, &err_code))
251 goto out;
252 if (*(args[1]) == 0) {
253 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
254 err_code |= ERR_ALERT | ERR_FATAL;
255 goto out;
256 }
257 global.tune.buf_limit = atol(args[1]);
258 if (global.tune.buf_limit) {
259 if (global.tune.buf_limit < 3)
260 global.tune.buf_limit = 3;
261 if (global.tune.buf_limit <= global.tune.reserved_bufs)
262 global.tune.buf_limit = global.tune.reserved_bufs + 1;
263 }
264 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100265 else if (strcmp(args[0], "tune.buffers.reserve") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100266 if (alertif_too_many_args(1, file, linenum, args, &err_code))
267 goto out;
268 if (*(args[1]) == 0) {
269 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
270 err_code |= ERR_ALERT | ERR_FATAL;
271 goto out;
272 }
273 global.tune.reserved_bufs = atol(args[1]);
274 if (global.tune.reserved_bufs < 2)
275 global.tune.reserved_bufs = 2;
276 if (global.tune.buf_limit && global.tune.buf_limit <= global.tune.reserved_bufs)
277 global.tune.buf_limit = global.tune.reserved_bufs + 1;
278 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100279 else if (strcmp(args[0], "tune.bufsize") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100280 if (alertif_too_many_args(1, file, linenum, args, &err_code))
281 goto out;
282 if (*(args[1]) == 0) {
283 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
284 err_code |= ERR_ALERT | ERR_FATAL;
285 goto out;
286 }
287 global.tune.bufsize = atol(args[1]);
Willy Tarreauc77d3642018-12-12 06:19:42 +0100288 /* round it up to support a two-pointer alignment at the end */
289 global.tune.bufsize = (global.tune.bufsize + 2 * sizeof(void *) - 1) & -(2 * sizeof(void *));
Willy Tarreau36b9e222018-11-11 15:19:52 +0100290 if (global.tune.bufsize <= 0) {
291 ha_alert("parsing [%s:%d] : '%s' expects a positive integer argument.\n", file, linenum, args[0]);
292 err_code |= ERR_ALERT | ERR_FATAL;
293 goto out;
294 }
295 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100296 else if (strcmp(args[0], "tune.maxrewrite") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100297 if (alertif_too_many_args(1, file, linenum, args, &err_code))
298 goto out;
299 if (*(args[1]) == 0) {
300 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
301 err_code |= ERR_ALERT | ERR_FATAL;
302 goto out;
303 }
304 global.tune.maxrewrite = atol(args[1]);
305 if (global.tune.maxrewrite < 0) {
306 ha_alert("parsing [%s:%d] : '%s' expects a positive integer argument.\n", file, linenum, args[0]);
307 err_code |= ERR_ALERT | ERR_FATAL;
308 goto out;
309 }
310 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100311 else if (strcmp(args[0], "tune.idletimer") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100312 unsigned int idle;
313 const char *res;
314
315 if (alertif_too_many_args(1, file, linenum, args, &err_code))
316 goto out;
317 if (*(args[1]) == 0) {
318 ha_alert("parsing [%s:%d] : '%s' expects a timer value between 0 and 65535 ms.\n", file, linenum, args[0]);
319 err_code |= ERR_ALERT | ERR_FATAL;
320 goto out;
321 }
322
323 res = parse_time_err(args[1], &idle, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +0200324 if (res == PARSE_TIME_OVER) {
325 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s>, maximum value is 65535 ms.\n",
326 file, linenum, args[1], args[0]);
327 err_code |= ERR_ALERT | ERR_FATAL;
328 goto out;
329 }
330 else if (res == PARSE_TIME_UNDER) {
331 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s>, minimum non-null value is 1 ms.\n",
332 file, linenum, args[1], args[0]);
333 err_code |= ERR_ALERT | ERR_FATAL;
334 goto out;
335 }
336 else if (res) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100337 ha_alert("parsing [%s:%d]: unexpected character '%c' in argument to <%s>.\n",
Willy Tarreau9faebe32019-06-07 19:00:37 +0200338 file, linenum, *res, args[0]);
Willy Tarreau36b9e222018-11-11 15:19:52 +0100339 err_code |= ERR_ALERT | ERR_FATAL;
340 goto out;
341 }
342
343 if (idle > 65535) {
344 ha_alert("parsing [%s:%d] : '%s' expects a timer value between 0 and 65535 ms.\n", file, linenum, args[0]);
345 err_code |= ERR_ALERT | ERR_FATAL;
346 goto out;
347 }
348 global.tune.idle_timer = idle;
349 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100350 else if (strcmp(args[0], "tune.rcvbuf.client") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100351 if (alertif_too_many_args(1, file, linenum, args, &err_code))
352 goto out;
353 if (global.tune.client_rcvbuf != 0) {
354 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
355 err_code |= ERR_ALERT;
356 goto out;
357 }
358 if (*(args[1]) == 0) {
359 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
360 err_code |= ERR_ALERT | ERR_FATAL;
361 goto out;
362 }
363 global.tune.client_rcvbuf = atol(args[1]);
364 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100365 else if (strcmp(args[0], "tune.rcvbuf.server") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100366 if (alertif_too_many_args(1, file, linenum, args, &err_code))
367 goto out;
368 if (global.tune.server_rcvbuf != 0) {
369 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
370 err_code |= ERR_ALERT;
371 goto out;
372 }
373 if (*(args[1]) == 0) {
374 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
375 err_code |= ERR_ALERT | ERR_FATAL;
376 goto out;
377 }
378 global.tune.server_rcvbuf = atol(args[1]);
379 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100380 else if (strcmp(args[0], "tune.sndbuf.client") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100381 if (alertif_too_many_args(1, file, linenum, args, &err_code))
382 goto out;
383 if (global.tune.client_sndbuf != 0) {
384 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
385 err_code |= ERR_ALERT;
386 goto out;
387 }
388 if (*(args[1]) == 0) {
389 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
390 err_code |= ERR_ALERT | ERR_FATAL;
391 goto out;
392 }
393 global.tune.client_sndbuf = atol(args[1]);
394 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100395 else if (strcmp(args[0], "tune.sndbuf.server") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100396 if (alertif_too_many_args(1, file, linenum, args, &err_code))
397 goto out;
398 if (global.tune.server_sndbuf != 0) {
399 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
400 err_code |= ERR_ALERT;
401 goto out;
402 }
403 if (*(args[1]) == 0) {
404 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
405 err_code |= ERR_ALERT | ERR_FATAL;
406 goto out;
407 }
408 global.tune.server_sndbuf = atol(args[1]);
409 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100410 else if (strcmp(args[0], "tune.pipesize") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100411 if (alertif_too_many_args(1, file, linenum, args, &err_code))
412 goto out;
413 if (*(args[1]) == 0) {
414 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
415 err_code |= ERR_ALERT | ERR_FATAL;
416 goto out;
417 }
418 global.tune.pipesize = atol(args[1]);
419 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100420 else if (strcmp(args[0], "tune.http.cookielen") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100421 if (alertif_too_many_args(1, file, linenum, args, &err_code))
422 goto out;
423 if (*(args[1]) == 0) {
424 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
425 err_code |= ERR_ALERT | ERR_FATAL;
426 goto out;
427 }
428 global.tune.cookie_len = atol(args[1]) + 1;
429 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100430 else if (strcmp(args[0], "tune.http.logurilen") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100431 if (alertif_too_many_args(1, file, linenum, args, &err_code))
432 goto out;
433 if (*(args[1]) == 0) {
434 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
435 err_code |= ERR_ALERT | ERR_FATAL;
436 goto out;
437 }
438 global.tune.requri_len = atol(args[1]) + 1;
439 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100440 else if (strcmp(args[0], "tune.http.maxhdr") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100441 if (alertif_too_many_args(1, file, linenum, args, &err_code))
442 goto out;
443 if (*(args[1]) == 0) {
444 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
445 err_code |= ERR_ALERT | ERR_FATAL;
446 goto out;
447 }
448 global.tune.max_http_hdr = atoi(args[1]);
449 if (global.tune.max_http_hdr < 1 || global.tune.max_http_hdr > 32767) {
450 ha_alert("parsing [%s:%d] : '%s' expects a numeric value between 1 and 32767\n",
451 file, linenum, args[0]);
452 err_code |= ERR_ALERT | ERR_FATAL;
453 goto out;
454 }
455 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100456 else if (strcmp(args[0], "tune.comp.maxlevel") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100457 if (alertif_too_many_args(1, file, linenum, args, &err_code))
458 goto out;
459 if (*args[1]) {
460 global.tune.comp_maxlevel = atoi(args[1]);
461 if (global.tune.comp_maxlevel < 1 || global.tune.comp_maxlevel > 9) {
462 ha_alert("parsing [%s:%d] : '%s' expects a numeric value between 1 and 9\n",
463 file, linenum, args[0]);
464 err_code |= ERR_ALERT | ERR_FATAL;
465 goto out;
466 }
467 } else {
468 ha_alert("parsing [%s:%d] : '%s' expects a numeric value between 1 and 9\n",
469 file, linenum, args[0]);
470 err_code |= ERR_ALERT | ERR_FATAL;
471 goto out;
472 }
473 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100474 else if (strcmp(args[0], "tune.pattern.cache-size") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100475 if (*args[1]) {
476 global.tune.pattern_cache = atoi(args[1]);
477 if (global.tune.pattern_cache < 0) {
478 ha_alert("parsing [%s:%d] : '%s' expects a positive numeric value\n",
479 file, linenum, args[0]);
480 err_code |= ERR_ALERT | ERR_FATAL;
481 goto out;
482 }
483 } else {
484 ha_alert("parsing [%s:%d] : '%s' expects a positive numeric value\n",
485 file, linenum, args[0]);
486 err_code |= ERR_ALERT | ERR_FATAL;
487 goto out;
488 }
489 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100490 else if (strcmp(args[0], "uid") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100491 if (alertif_too_many_args(1, file, linenum, args, &err_code))
492 goto out;
493 if (global.uid != 0) {
494 ha_alert("parsing [%s:%d] : user/uid already specified. Continuing.\n", file, linenum);
495 err_code |= ERR_ALERT;
496 goto out;
497 }
498 if (*(args[1]) == 0) {
499 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
500 err_code |= ERR_ALERT | ERR_FATAL;
501 goto out;
502 }
503 if (strl2irc(args[1], strlen(args[1]), &global.uid) != 0) {
504 ha_warning("parsing [%s:%d] : uid: string '%s' is not a number.\n | You might want to use the 'user' parameter to use a system user name.\n", file, linenum, args[1]);
505 err_code |= ERR_WARN;
506 goto out;
507 }
508
509 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100510 else if (strcmp(args[0], "gid") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100511 if (alertif_too_many_args(1, file, linenum, args, &err_code))
512 goto out;
513 if (global.gid != 0) {
514 ha_alert("parsing [%s:%d] : group/gid already specified. Continuing.\n", file, linenum);
515 err_code |= ERR_ALERT;
516 goto out;
517 }
518 if (*(args[1]) == 0) {
519 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
520 err_code |= ERR_ALERT | ERR_FATAL;
521 goto out;
522 }
523 if (strl2irc(args[1], strlen(args[1]), &global.gid) != 0) {
524 ha_warning("parsing [%s:%d] : gid: string '%s' is not a number.\n | You might want to use the 'group' parameter to use a system group name.\n", file, linenum, args[1]);
525 err_code |= ERR_WARN;
526 goto out;
527 }
528 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100529 else if (strcmp(args[0], "external-check") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100530 if (alertif_too_many_args(0, file, linenum, args, &err_code))
531 goto out;
532 global.external_check = 1;
533 }
534 /* user/group name handling */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100535 else if (strcmp(args[0], "user") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100536 struct passwd *ha_user;
537 if (alertif_too_many_args(1, file, linenum, args, &err_code))
538 goto out;
539 if (global.uid != 0) {
540 ha_alert("parsing [%s:%d] : user/uid already specified. Continuing.\n", file, linenum);
541 err_code |= ERR_ALERT;
542 goto out;
543 }
544 errno = 0;
545 ha_user = getpwnam(args[1]);
546 if (ha_user != NULL) {
547 global.uid = (int)ha_user->pw_uid;
548 }
549 else {
550 ha_alert("parsing [%s:%d] : cannot find user id for '%s' (%d:%s)\n", file, linenum, args[1], errno, strerror(errno));
551 err_code |= ERR_ALERT | ERR_FATAL;
552 }
553 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100554 else if (strcmp(args[0], "group") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100555 struct group *ha_group;
556 if (alertif_too_many_args(1, file, linenum, args, &err_code))
557 goto out;
558 if (global.gid != 0) {
559 ha_alert("parsing [%s:%d] : gid/group was already specified. Continuing.\n", file, linenum);
560 err_code |= ERR_ALERT;
561 goto out;
562 }
563 errno = 0;
564 ha_group = getgrnam(args[1]);
565 if (ha_group != NULL) {
566 global.gid = (int)ha_group->gr_gid;
567 }
568 else {
569 ha_alert("parsing [%s:%d] : cannot find group id for '%s' (%d:%s)\n", file, linenum, args[1], errno, strerror(errno));
570 err_code |= ERR_ALERT | ERR_FATAL;
571 }
572 }
573 /* end of user/group name handling*/
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100574 else if (strcmp(args[0], "nbproc") == 0) {
Willy Tarreaub63dbb72021-06-11 16:50:29 +0200575 ha_alert("parsing [%s:%d] : nbproc is not supported any more since HAProxy 2.5. Threads will automatically be used on multi-processor machines if available.\n", file, linenum);
576 err_code |= ERR_ALERT | ERR_FATAL;
577 goto out;
Willy Tarreau36b9e222018-11-11 15:19:52 +0100578 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100579 else if (strcmp(args[0], "nbthread") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100580 if (alertif_too_many_args(1, file, linenum, args, &err_code))
581 goto out;
582 if (*(args[1]) == 0) {
583 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
584 err_code |= ERR_ALERT | ERR_FATAL;
585 goto out;
586 }
Amaury Denoyellec4d47d62021-03-29 10:41:15 +0200587
588 HA_DIAG_WARNING_COND(global.nbthread,
589 "parsing [%s:%d] : nbthread is already defined and will be overridden.\n",
590 file, linenum);
591
Willy Tarreau36b9e222018-11-11 15:19:52 +0100592 global.nbthread = parse_nbthread(args[1], &errmsg);
593 if (!global.nbthread) {
594 ha_alert("parsing [%s:%d] : '%s' %s.\n",
595 file, linenum, args[0], errmsg);
596 err_code |= ERR_ALERT | ERR_FATAL;
597 goto out;
598 }
599 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100600 else if (strcmp(args[0], "maxconn") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100601 if (alertif_too_many_args(1, file, linenum, args, &err_code))
602 goto out;
603 if (global.maxconn != 0) {
604 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
605 err_code |= ERR_ALERT;
606 goto out;
607 }
608 if (*(args[1]) == 0) {
609 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
610 err_code |= ERR_ALERT | ERR_FATAL;
611 goto out;
612 }
613 global.maxconn = atol(args[1]);
614#ifdef SYSTEM_MAXCONN
Willy Tarreauca783d42019-03-13 10:03:07 +0100615 if (global.maxconn > SYSTEM_MAXCONN && cfg_maxconn <= SYSTEM_MAXCONN) {
616 ha_alert("parsing [%s:%d] : maxconn value %d too high for this system.\nLimiting to %d. Please use '-n' to force the value.\n", file, linenum, global.maxconn, SYSTEM_MAXCONN);
617 global.maxconn = SYSTEM_MAXCONN;
Willy Tarreau36b9e222018-11-11 15:19:52 +0100618 err_code |= ERR_ALERT;
619 }
620#endif /* SYSTEM_MAXCONN */
621 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100622 else if (strcmp(args[0], "ssl-server-verify") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100623 if (alertif_too_many_args(1, file, linenum, args, &err_code))
624 goto out;
625 if (*(args[1]) == 0) {
626 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
627 err_code |= ERR_ALERT | ERR_FATAL;
628 goto out;
629 }
630 if (strcmp(args[1],"none") == 0)
631 global.ssl_server_verify = SSL_SERVER_VERIFY_NONE;
632 else if (strcmp(args[1],"required") == 0)
633 global.ssl_server_verify = SSL_SERVER_VERIFY_REQUIRED;
634 else {
635 ha_alert("parsing [%s:%d] : '%s' expects 'none' or 'required' as argument.\n", file, linenum, args[0]);
636 err_code |= ERR_ALERT | ERR_FATAL;
637 goto out;
638 }
639 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100640 else if (strcmp(args[0], "maxconnrate") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100641 if (alertif_too_many_args(1, file, linenum, args, &err_code))
642 goto out;
643 if (global.cps_lim != 0) {
644 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
645 err_code |= ERR_ALERT;
646 goto out;
647 }
648 if (*(args[1]) == 0) {
649 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
650 err_code |= ERR_ALERT | ERR_FATAL;
651 goto out;
652 }
653 global.cps_lim = atol(args[1]);
654 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100655 else if (strcmp(args[0], "maxsessrate") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100656 if (alertif_too_many_args(1, file, linenum, args, &err_code))
657 goto out;
658 if (global.sps_lim != 0) {
659 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
660 err_code |= ERR_ALERT;
661 goto out;
662 }
663 if (*(args[1]) == 0) {
664 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
665 err_code |= ERR_ALERT | ERR_FATAL;
666 goto out;
667 }
668 global.sps_lim = atol(args[1]);
669 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100670 else if (strcmp(args[0], "maxsslrate") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100671 if (alertif_too_many_args(1, file, linenum, args, &err_code))
672 goto out;
673 if (global.ssl_lim != 0) {
674 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
675 err_code |= ERR_ALERT;
676 goto out;
677 }
678 if (*(args[1]) == 0) {
679 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
680 err_code |= ERR_ALERT | ERR_FATAL;
681 goto out;
682 }
683 global.ssl_lim = atol(args[1]);
684 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100685 else if (strcmp(args[0], "maxcomprate") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100686 if (alertif_too_many_args(1, file, linenum, args, &err_code))
687 goto out;
688 if (*(args[1]) == 0) {
689 ha_alert("parsing [%s:%d] : '%s' expects an integer argument in kb/s.\n", file, linenum, args[0]);
690 err_code |= ERR_ALERT | ERR_FATAL;
691 goto out;
692 }
693 global.comp_rate_lim = atoi(args[1]) * 1024;
694 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100695 else if (strcmp(args[0], "maxpipes") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100696 if (alertif_too_many_args(1, file, linenum, args, &err_code))
697 goto out;
698 if (global.maxpipes != 0) {
699 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
700 err_code |= ERR_ALERT;
701 goto out;
702 }
703 if (*(args[1]) == 0) {
704 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
705 err_code |= ERR_ALERT | ERR_FATAL;
706 goto out;
707 }
708 global.maxpipes = atol(args[1]);
709 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100710 else if (strcmp(args[0], "maxzlibmem") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100711 if (alertif_too_many_args(1, file, linenum, args, &err_code))
712 goto out;
713 if (*(args[1]) == 0) {
714 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
715 err_code |= ERR_ALERT | ERR_FATAL;
716 goto out;
717 }
718 global.maxzlibmem = atol(args[1]) * 1024L * 1024L;
719 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100720 else if (strcmp(args[0], "maxcompcpuusage") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100721 if (alertif_too_many_args(1, file, linenum, args, &err_code))
722 goto out;
723 if (*(args[1]) == 0) {
724 ha_alert("parsing [%s:%d] : '%s' expects an integer argument between 0 and 100.\n", file, linenum, args[0]);
725 err_code |= ERR_ALERT | ERR_FATAL;
726 goto out;
727 }
728 compress_min_idle = 100 - atoi(args[1]);
729 if (compress_min_idle > 100) {
730 ha_alert("parsing [%s:%d] : '%s' expects an integer argument between 0 and 100.\n", file, linenum, args[0]);
731 err_code |= ERR_ALERT | ERR_FATAL;
732 goto out;
733 }
734 }
735
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100736 else if (strcmp(args[0], "ulimit-n") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100737 if (alertif_too_many_args(1, file, linenum, args, &err_code))
738 goto out;
739 if (global.rlimit_nofile != 0) {
740 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
741 err_code |= ERR_ALERT;
742 goto out;
743 }
744 if (*(args[1]) == 0) {
745 ha_alert("parsing [%s:%d] : '%s' expects an integer argument.\n", file, linenum, args[0]);
746 err_code |= ERR_ALERT | ERR_FATAL;
747 goto out;
748 }
749 global.rlimit_nofile = atol(args[1]);
750 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100751 else if (strcmp(args[0], "chroot") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100752 if (alertif_too_many_args(1, file, linenum, args, &err_code))
753 goto out;
754 if (global.chroot != NULL) {
755 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
756 err_code |= ERR_ALERT;
757 goto out;
758 }
759 if (*(args[1]) == 0) {
760 ha_alert("parsing [%s:%d] : '%s' expects a directory as an argument.\n", file, linenum, args[0]);
761 err_code |= ERR_ALERT | ERR_FATAL;
762 goto out;
763 }
764 global.chroot = strdup(args[1]);
765 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100766 else if (strcmp(args[0], "description") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100767 int i, len=0;
768 char *d;
769
770 if (!*args[1]) {
771 ha_alert("parsing [%s:%d]: '%s' expects a string argument.\n",
772 file, linenum, args[0]);
773 err_code |= ERR_ALERT | ERR_FATAL;
774 goto out;
775 }
776
777 for (i = 1; *args[i]; i++)
778 len += strlen(args[i]) + 1;
779
780 if (global.desc)
781 free(global.desc);
782
783 global.desc = d = calloc(1, len);
784
785 d += snprintf(d, global.desc + len - d, "%s", args[1]);
786 for (i = 2; *args[i]; i++)
787 d += snprintf(d, global.desc + len - d, " %s", args[i]);
788 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100789 else if (strcmp(args[0], "node") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100790 int i;
791 char c;
792
793 if (alertif_too_many_args(1, file, linenum, args, &err_code))
794 goto out;
795
796 for (i=0; args[1][i]; i++) {
797 c = args[1][i];
798 if (!isupper((unsigned char)c) && !islower((unsigned char)c) &&
799 !isdigit((unsigned char)c) && c != '_' && c != '-' && c != '.')
800 break;
801 }
802
803 if (!i || args[1][i]) {
804 ha_alert("parsing [%s:%d]: '%s' requires valid node name - non-empty string"
805 " with digits(0-9), letters(A-Z, a-z), dot(.), hyphen(-) or underscode(_).\n",
806 file, linenum, args[0]);
807 err_code |= ERR_ALERT | ERR_FATAL;
808 goto out;
809 }
810
811 if (global.node)
812 free(global.node);
813
814 global.node = strdup(args[1]);
815 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100816 else if (strcmp(args[0], "pidfile") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100817 if (alertif_too_many_args(1, file, linenum, args, &err_code))
818 goto out;
819 if (global.pidfile != NULL) {
820 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
821 err_code |= ERR_ALERT;
822 goto out;
823 }
824 if (*(args[1]) == 0) {
825 ha_alert("parsing [%s:%d] : '%s' expects a file name as an argument.\n", file, linenum, args[0]);
826 err_code |= ERR_ALERT | ERR_FATAL;
827 goto out;
828 }
829 global.pidfile = strdup(args[1]);
830 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100831 else if (strcmp(args[0], "unix-bind") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100832 int cur_arg = 1;
833 while (*(args[cur_arg])) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100834 if (strcmp(args[cur_arg], "prefix") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100835 if (global.unix_bind.prefix != NULL) {
836 ha_alert("parsing [%s:%d] : unix-bind '%s' already specified. Continuing.\n", file, linenum, args[cur_arg]);
837 err_code |= ERR_ALERT;
838 cur_arg += 2;
839 continue;
840 }
841
842 if (*(args[cur_arg+1]) == 0) {
843 ha_alert("parsing [%s:%d] : unix_bind '%s' expects a path as an argument.\n", file, linenum, args[cur_arg]);
844 err_code |= ERR_ALERT | ERR_FATAL;
845 goto out;
846 }
847 global.unix_bind.prefix = strdup(args[cur_arg+1]);
848 cur_arg += 2;
849 continue;
850 }
851
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100852 if (strcmp(args[cur_arg], "mode") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100853
854 global.unix_bind.ux.mode = strtol(args[cur_arg + 1], NULL, 8);
855 cur_arg += 2;
856 continue;
857 }
858
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100859 if (strcmp(args[cur_arg], "uid") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100860
861 global.unix_bind.ux.uid = atol(args[cur_arg + 1 ]);
862 cur_arg += 2;
863 continue;
864 }
865
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100866 if (strcmp(args[cur_arg], "gid") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100867
868 global.unix_bind.ux.gid = atol(args[cur_arg + 1 ]);
869 cur_arg += 2;
870 continue;
871 }
872
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100873 if (strcmp(args[cur_arg], "user") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100874 struct passwd *user;
875
876 user = getpwnam(args[cur_arg + 1]);
877 if (!user) {
878 ha_alert("parsing [%s:%d] : '%s' : '%s' unknown user.\n",
879 file, linenum, args[0], args[cur_arg + 1 ]);
880 err_code |= ERR_ALERT | ERR_FATAL;
881 goto out;
882 }
883
884 global.unix_bind.ux.uid = user->pw_uid;
885 cur_arg += 2;
886 continue;
887 }
888
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100889 if (strcmp(args[cur_arg], "group") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100890 struct group *group;
891
892 group = getgrnam(args[cur_arg + 1]);
893 if (!group) {
894 ha_alert("parsing [%s:%d] : '%s' : '%s' unknown group.\n",
895 file, linenum, args[0], args[cur_arg + 1 ]);
896 err_code |= ERR_ALERT | ERR_FATAL;
897 goto out;
898 }
899
900 global.unix_bind.ux.gid = group->gr_gid;
901 cur_arg += 2;
902 continue;
903 }
904
905 ha_alert("parsing [%s:%d] : '%s' only supports the 'prefix', 'mode', 'uid', 'gid', 'user' and 'group' options.\n",
906 file, linenum, args[0]);
907 err_code |= ERR_ALERT | ERR_FATAL;
908 goto out;
909 }
910 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100911 else if (strcmp(args[0], "log") == 0) { /* "no log" or "log ..." */
Emeric Brun9533a702021-04-02 10:13:43 +0200912 if (!parse_logsrv(args, &global.logsrvs, (kwm == KWM_NO), file, linenum, &errmsg)) {
Willy Tarreau36b9e222018-11-11 15:19:52 +0100913 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
914 err_code |= ERR_ALERT | ERR_FATAL;
915 goto out;
916 }
917 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100918 else if (strcmp(args[0], "log-send-hostname") == 0) { /* set the hostname in syslog header */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100919 char *name;
920
921 if (global.log_send_hostname != NULL) {
922 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
923 err_code |= ERR_ALERT;
924 goto out;
925 }
926
927 if (*(args[1]))
928 name = args[1];
929 else
930 name = hostname;
931
932 free(global.log_send_hostname);
933 global.log_send_hostname = strdup(name);
934 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100935 else if (strcmp(args[0], "server-state-base") == 0) { /* path base where HAProxy can find server state files */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100936 if (global.server_state_base != NULL) {
937 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
938 err_code |= ERR_ALERT;
939 goto out;
940 }
941
942 if (!*(args[1])) {
943 ha_alert("parsing [%s:%d] : '%s' expects one argument: a directory path.\n", file, linenum, args[0]);
944 err_code |= ERR_FATAL;
945 goto out;
946 }
947
948 global.server_state_base = strdup(args[1]);
949 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100950 else if (strcmp(args[0], "server-state-file") == 0) { /* path to the file where HAProxy can load the server states */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100951 if (global.server_state_file != NULL) {
952 ha_alert("parsing [%s:%d] : '%s' already specified. Continuing.\n", file, linenum, args[0]);
953 err_code |= ERR_ALERT;
954 goto out;
955 }
956
957 if (!*(args[1])) {
958 ha_alert("parsing [%s:%d] : '%s' expect one argument: a file path.\n", file, linenum, args[0]);
959 err_code |= ERR_FATAL;
960 goto out;
961 }
962
963 global.server_state_file = strdup(args[1]);
964 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100965 else if (strcmp(args[0], "log-tag") == 0) { /* tag to report to syslog */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100966 if (alertif_too_many_args(1, file, linenum, args, &err_code))
967 goto out;
968 if (*(args[1]) == 0) {
969 ha_alert("parsing [%s:%d] : '%s' expects a tag for use in syslog.\n", file, linenum, args[0]);
970 err_code |= ERR_ALERT | ERR_FATAL;
971 goto out;
972 }
973 chunk_destroy(&global.log_tag);
Eric Salama7cea6062020-10-02 11:58:19 +0200974 chunk_initlen(&global.log_tag, strdup(args[1]), strlen(args[1]), strlen(args[1]));
975 if (b_orig(&global.log_tag) == NULL) {
976 chunk_destroy(&global.log_tag);
977 ha_alert("parsing [%s:%d]: cannot allocate memory for '%s'.\n", file, linenum, args[0]);
978 err_code |= ERR_ALERT | ERR_FATAL;
979 goto out;
980 }
Willy Tarreau36b9e222018-11-11 15:19:52 +0100981 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100982 else if (strcmp(args[0], "spread-checks") == 0) { /* random time between checks (0-50) */
Willy Tarreau36b9e222018-11-11 15:19:52 +0100983 if (alertif_too_many_args(1, file, linenum, args, &err_code))
984 goto out;
985 if (global.spread_checks != 0) {
986 ha_alert("parsing [%s:%d]: spread-checks already specified. Continuing.\n", file, linenum);
987 err_code |= ERR_ALERT;
988 goto out;
989 }
990 if (*(args[1]) == 0) {
991 ha_alert("parsing [%s:%d]: '%s' expects an integer argument (0..50).\n", file, linenum, args[0]);
992 err_code |= ERR_ALERT | ERR_FATAL;
993 goto out;
994 }
995 global.spread_checks = atol(args[1]);
996 if (global.spread_checks < 0 || global.spread_checks > 50) {
997 ha_alert("parsing [%s:%d]: 'spread-checks' needs a positive value in range 0..50.\n", file, linenum);
998 err_code |= ERR_ALERT | ERR_FATAL;
999 }
1000 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001001 else if (strcmp(args[0], "max-spread-checks") == 0) { /* maximum time between first and last check */
Willy Tarreau36b9e222018-11-11 15:19:52 +01001002 const char *err;
1003 unsigned int val;
1004
1005 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1006 goto out;
1007 if (*(args[1]) == 0) {
1008 ha_alert("parsing [%s:%d]: '%s' expects an integer argument (0..50).\n", file, linenum, args[0]);
1009 err_code |= ERR_ALERT | ERR_FATAL;
1010 goto out;
1011 }
1012
1013 err = parse_time_err(args[1], &val, TIME_UNIT_MS);
Willy Tarreau9faebe32019-06-07 19:00:37 +02001014 if (err == PARSE_TIME_OVER) {
1015 ha_alert("parsing [%s:%d]: timer overflow in argument <%s> to <%s>, maximum value is 2147483647 ms (~24.8 days).\n",
1016 file, linenum, args[1], args[0]);
Willy Tarreau36b9e222018-11-11 15:19:52 +01001017 err_code |= ERR_ALERT | ERR_FATAL;
1018 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001019 else if (err == PARSE_TIME_UNDER) {
1020 ha_alert("parsing [%s:%d]: timer underflow in argument <%s> to <%s>, minimum non-null value is 1 ms.\n",
1021 file, linenum, args[1], args[0]);
1022 err_code |= ERR_ALERT | ERR_FATAL;
1023 }
1024 else if (err) {
1025 ha_alert("parsing [%s:%d]: unsupported character '%c' in '%s' (wants an integer delay).\n", file, linenum, *err, args[0]);
Willy Tarreau36b9e222018-11-11 15:19:52 +01001026 err_code |= ERR_ALERT | ERR_FATAL;
1027 }
Willy Tarreau9faebe32019-06-07 19:00:37 +02001028 global.max_spread_checks = val;
Willy Tarreau36b9e222018-11-11 15:19:52 +01001029 }
1030 else if (strcmp(args[0], "cpu-map") == 0) {
1031 /* map a process list to a CPU set */
1032#ifdef USE_CPU_AFFINITY
1033 char *slash;
Amaury Denoyelle982fb532021-04-21 18:39:58 +02001034 unsigned long proc = 0, thread = 0;
Willy Tarreaubda7c1d2021-06-15 08:49:05 +02001035 int j, n, autoinc;
Amaury Denoyelle982fb532021-04-21 18:39:58 +02001036 struct hap_cpuset cpus, cpus_copy;
Willy Tarreau36b9e222018-11-11 15:19:52 +01001037
1038 if (!*args[1] || !*args[2]) {
1039 ha_alert("parsing [%s:%d] : %s expects a process number "
1040 " ('all', 'odd', 'even', a number from 1 to %d or a range), "
1041 " followed by a list of CPU ranges with numbers from 0 to %d.\n",
Willy Tarreau5799e9c2019-03-05 18:14:03 +01001042 file, linenum, args[0], LONGBITS, LONGBITS - 1);
Willy Tarreau36b9e222018-11-11 15:19:52 +01001043 err_code |= ERR_ALERT | ERR_FATAL;
1044 goto out;
1045 }
1046
1047 if ((slash = strchr(args[1], '/')) != NULL)
1048 *slash = 0;
1049
Willy Tarreau5799e9c2019-03-05 18:14:03 +01001050 /* note: we silently ignore processes over MAX_PROCS and
1051 * threads over MAX_THREADS so as not to make configurations a
1052 * pain to maintain.
1053 */
1054 if (parse_process_number(args[1], &proc, LONGBITS, &autoinc, &errmsg)) {
Willy Tarreau36b9e222018-11-11 15:19:52 +01001055 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
1056 err_code |= ERR_ALERT | ERR_FATAL;
1057 goto out;
1058 }
1059
1060 if (slash) {
Willy Tarreau5799e9c2019-03-05 18:14:03 +01001061 if (parse_process_number(slash+1, &thread, LONGBITS, NULL, &errmsg)) {
Willy Tarreau36b9e222018-11-11 15:19:52 +01001062 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
1063 err_code |= ERR_ALERT | ERR_FATAL;
1064 goto out;
1065 }
1066 *slash = '/';
Willy Tarreau36b9e222018-11-11 15:19:52 +01001067 }
1068
Amaury Denoyellea8082352021-04-06 16:46:15 +02001069 if (parse_cpu_set((const char **)args+2, &cpus, 0, &errmsg)) {
Willy Tarreau36b9e222018-11-11 15:19:52 +01001070 ha_alert("parsing [%s:%d] : %s : %s\n", file, linenum, args[0], errmsg);
1071 err_code |= ERR_ALERT | ERR_FATAL;
1072 goto out;
1073 }
Amaury Denoyelle982fb532021-04-21 18:39:58 +02001074
Willy Tarreau36b9e222018-11-11 15:19:52 +01001075 if (autoinc &&
Amaury Denoyelle982fb532021-04-21 18:39:58 +02001076 my_popcountl(proc) != ha_cpuset_count(&cpus) &&
1077 my_popcountl(thread) != ha_cpuset_count(&cpus)) {
Willy Tarreau36b9e222018-11-11 15:19:52 +01001078 ha_alert("parsing [%s:%d] : %s : PROC/THREAD range and CPU sets "
1079 "must have the same size to be automatically bound\n",
1080 file, linenum, args[0]);
1081 err_code |= ERR_ALERT | ERR_FATAL;
1082 goto out;
1083 }
1084
Willy Tarreau7764a572019-07-16 15:10:34 +02001085 /* we now have to deal with 3 real cases :
1086 * cpu-map P-Q => mapping for whole processes, numbers P to Q
1087 * cpu-map P-Q/1 => mapping of first thread of processes P to Q
1088 * cpu-map 1/T-U => mapping of threads T to U of process 1
Willy Tarreaubda7c1d2021-06-15 08:49:05 +02001089 * (note: P=Q=1 since 2.5).
Willy Tarreau7764a572019-07-16 15:10:34 +02001090 * Otherwise other combinations are silently ignored since nbthread
1091 * and nbproc cannot both be >1 :
1092 * cpu-map P-Q/T => mapping for thread T for processes P to Q.
1093 * Only one of T,Q may be > 1, others ignored.
1094 * cpu-map P/T-U => mapping for threads T to U of process P. Only
1095 * one of P,U may be > 1, others ignored.
1096 */
Willy Tarreaubda7c1d2021-06-15 08:49:05 +02001097 if (!thread || thread == 0x1) {
1098 /* mapping for whole process. E.g. cpu-map 1 0-3 or cpu-map 1/1 0-3 */
1099 ha_cpuset_assign(&cpus_copy, &cpus);
1100
1101 if (!autoinc)
Willy Tarreau44ea6312021-06-15 08:57:56 +02001102 ha_cpuset_assign(&cpu_map.proc, &cpus);
Willy Tarreaubda7c1d2021-06-15 08:49:05 +02001103 else {
Willy Tarreau44ea6312021-06-15 08:57:56 +02001104 ha_cpuset_zero(&cpu_map.proc);
Willy Tarreaubda7c1d2021-06-15 08:49:05 +02001105 n = ha_cpuset_ffs(&cpus_copy) - 1;
1106 ha_cpuset_clr(&cpus_copy, n);
Willy Tarreau44ea6312021-06-15 08:57:56 +02001107 ha_cpuset_set(&cpu_map.proc, n);
Willy Tarreaubda7c1d2021-06-15 08:49:05 +02001108 }
1109 } else {
1110 /* first process, iterate on threads. E.g. cpu-map 1/1-4 0-3 */
Amaury Denoyelle982fb532021-04-21 18:39:58 +02001111 ha_cpuset_assign(&cpus_copy, &cpus);
Willy Tarreaubda7c1d2021-06-15 08:49:05 +02001112 for (j = n = 0; j < MAX_THREADS; j++) {
1113 /* No mapping for this thread */
1114 if (!(thread & (1UL << j)))
Willy Tarreau81492c92019-05-03 09:41:23 +02001115 continue;
1116
Willy Tarreau36b9e222018-11-11 15:19:52 +01001117 if (!autoinc)
Willy Tarreaubda7c1d2021-06-15 08:49:05 +02001118 ha_cpuset_assign(&cpu_map.thread[j], &cpus);
Willy Tarreau36b9e222018-11-11 15:19:52 +01001119 else {
Willy Tarreaubda7c1d2021-06-15 08:49:05 +02001120 ha_cpuset_zero(&cpu_map.thread[j]);
Amaury Denoyelle982fb532021-04-21 18:39:58 +02001121 n = ha_cpuset_ffs(&cpus_copy) - 1;
1122 ha_cpuset_clr(&cpus_copy, n);
Willy Tarreaubda7c1d2021-06-15 08:49:05 +02001123 ha_cpuset_set(&cpu_map.thread[j], n);
Willy Tarreau36b9e222018-11-11 15:19:52 +01001124 }
1125 }
Amaury Denoyellea2944ec2021-04-15 18:07:07 +02001126
1127 HA_DIAG_WARNING_COND(proc != 0x1 && thread != 0x1,
1128 "parsing [%s:%d] : cpu-map statement is considered invalid and thus ignored as it addresses multiple processes and threads at the same time. At least one of them should be 1 and only 1.", file, linenum);
Willy Tarreau36b9e222018-11-11 15:19:52 +01001129 }
1130#else
1131 ha_alert("parsing [%s:%d] : '%s' is not enabled, please check build options for USE_CPU_AFFINITY.\n",
1132 file, linenum, args[0]);
1133 err_code |= ERR_ALERT | ERR_FATAL;
1134 goto out;
1135#endif /* ! USE_CPU_AFFINITY */
1136 }
1137 else if (strcmp(args[0], "setenv") == 0 || strcmp(args[0], "presetenv") == 0) {
1138 if (alertif_too_many_args(3, file, linenum, args, &err_code))
1139 goto out;
1140
1141 if (*(args[2]) == 0) {
1142 ha_alert("parsing [%s:%d]: '%s' expects a name and a value.\n", file, linenum, args[0]);
1143 err_code |= ERR_ALERT | ERR_FATAL;
1144 goto out;
1145 }
1146
1147 /* "setenv" overwrites, "presetenv" only sets if not yet set */
1148 if (setenv(args[1], args[2], (args[0][0] == 's')) != 0) {
1149 ha_alert("parsing [%s:%d]: '%s' failed on variable '%s' : %s.\n", file, linenum, args[0], args[1], strerror(errno));
1150 err_code |= ERR_ALERT | ERR_FATAL;
1151 goto out;
1152 }
1153 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001154 else if (strcmp(args[0], "unsetenv") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +01001155 int arg;
1156
1157 if (*(args[1]) == 0) {
1158 ha_alert("parsing [%s:%d]: '%s' expects at least one variable name.\n", file, linenum, args[0]);
1159 err_code |= ERR_ALERT | ERR_FATAL;
1160 goto out;
1161 }
1162
1163 for (arg = 1; *args[arg]; arg++) {
1164 if (unsetenv(args[arg]) != 0) {
1165 ha_alert("parsing [%s:%d]: '%s' failed on variable '%s' : %s.\n", file, linenum, args[0], args[arg], strerror(errno));
1166 err_code |= ERR_ALERT | ERR_FATAL;
1167 goto out;
1168 }
1169 }
1170 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001171 else if (strcmp(args[0], "resetenv") == 0) {
Willy Tarreau36b9e222018-11-11 15:19:52 +01001172 extern char **environ;
1173 char **env = environ;
1174
1175 /* args contain variable names to keep, one per argument */
1176 while (*env) {
1177 int arg;
1178
1179 /* look for current variable in among all those we want to keep */
1180 for (arg = 1; *args[arg]; arg++) {
1181 if (strncmp(*env, args[arg], strlen(args[arg])) == 0 &&
1182 (*env)[strlen(args[arg])] == '=')
1183 break;
1184 }
1185
1186 /* delete this variable */
1187 if (!*args[arg]) {
1188 char *delim = strchr(*env, '=');
1189
1190 if (!delim || delim - *env >= trash.size) {
1191 ha_alert("parsing [%s:%d]: '%s' failed to unset invalid variable '%s'.\n", file, linenum, args[0], *env);
1192 err_code |= ERR_ALERT | ERR_FATAL;
1193 goto out;
1194 }
1195
1196 memcpy(trash.area, *env, delim - *env);
1197 trash.area[delim - *env] = 0;
1198
1199 if (unsetenv(trash.area) != 0) {
1200 ha_alert("parsing [%s:%d]: '%s' failed to unset variable '%s' : %s.\n", file, linenum, args[0], *env, strerror(errno));
1201 err_code |= ERR_ALERT | ERR_FATAL;
1202 goto out;
1203 }
1204 }
1205 else
1206 env++;
1207 }
1208 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001209 else if (strcmp(args[0], "strict-limits") == 0) { /* "no strict-limits" or "strict-limits" */
William Dauchy0fec3ab2019-10-27 20:08:11 +01001210 if (alertif_too_many_args(0, file, linenum, args, &err_code))
1211 goto out;
1212 if (kwm == KWM_NO)
1213 global.tune.options &= ~GTUNE_STRICT_LIMITS;
William Dauchy0fec3ab2019-10-27 20:08:11 +01001214 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001215 else if (strcmp(args[0], "localpeer") == 0) {
Dragan Dosen13cd54c2020-06-18 18:24:05 +02001216 if (alertif_too_many_args(1, file, linenum, args, &err_code))
1217 goto out;
1218
1219 if (*(args[1]) == 0) {
1220 ha_alert("parsing [%s:%d] : '%s' expects a name as an argument.\n",
1221 file, linenum, args[0]);
1222 err_code |= ERR_ALERT | ERR_FATAL;
1223 goto out;
1224 }
1225
1226 if (global.localpeer_cmdline != 0) {
1227 ha_warning("parsing [%s:%d] : '%s' ignored since it is already set by using the '-L' "
1228 "command line argument.\n", file, linenum, args[0]);
1229 err_code |= ERR_WARN;
1230 goto out;
1231 }
1232
1233 if (cfg_peers) {
1234 ha_warning("parsing [%s:%d] : '%s' ignored since it is used after 'peers' section.\n",
1235 file, linenum, args[0]);
1236 err_code |= ERR_WARN;
1237 goto out;
1238 }
1239
1240 free(localpeer);
1241 if ((localpeer = strdup(args[1])) == NULL) {
1242 ha_alert("parsing [%s:%d]: cannot allocate memory for '%s'.\n",
1243 file, linenum, args[0]);
1244 err_code |= ERR_ALERT | ERR_FATAL;
1245 goto out;
1246 }
1247 setenv("HAPROXY_LOCALPEER", localpeer, 1);
1248 }
Amaury Denoyelle0f50cb92021-03-26 18:50:33 +01001249 else if (strcmp(args[0], "numa-cpu-mapping") == 0) {
1250 global.numa_cpu_mapping = (kwm == KWM_NO) ? 0 : 1;
1251 }
Willy Tarreau36b9e222018-11-11 15:19:52 +01001252 else {
1253 struct cfg_kw_list *kwl;
Willy Tarreaua0e8eb82021-03-12 09:30:14 +01001254 const char *best;
Willy Tarreau36b9e222018-11-11 15:19:52 +01001255 int index;
1256 int rc;
1257
1258 list_for_each_entry(kwl, &cfg_keywords.list, list) {
1259 for (index = 0; kwl->kw[index].kw != NULL; index++) {
1260 if (kwl->kw[index].section != CFG_GLOBAL)
1261 continue;
1262 if (strcmp(kwl->kw[index].kw, args[0]) == 0) {
Amaury Denoyelled2e53cd2021-05-06 16:21:39 +02001263 if (check_kw_experimental(&kwl->kw[index], file, linenum, &errmsg)) {
Amaury Denoyelle86c1d0f2021-05-07 15:07:21 +02001264 ha_alert("%s\n", errmsg);
Amaury Denoyelled2e53cd2021-05-06 16:21:39 +02001265 err_code |= ERR_ALERT | ERR_FATAL;
1266 goto out;
1267 }
1268
Willy Tarreau36b9e222018-11-11 15:19:52 +01001269 rc = kwl->kw[index].parse(args, CFG_GLOBAL, NULL, NULL, file, linenum, &errmsg);
1270 if (rc < 0) {
1271 ha_alert("parsing [%s:%d] : %s\n", file, linenum, errmsg);
1272 err_code |= ERR_ALERT | ERR_FATAL;
1273 }
1274 else if (rc > 0) {
1275 ha_warning("parsing [%s:%d] : %s\n", file, linenum, errmsg);
1276 err_code |= ERR_WARN;
1277 goto out;
1278 }
1279 goto out;
1280 }
1281 }
1282 }
1283
Willy Tarreau101df312021-03-15 09:12:41 +01001284 best = cfg_find_best_match(args[0], &cfg_keywords.list, CFG_GLOBAL, common_kw_list);
Willy Tarreaua0e8eb82021-03-12 09:30:14 +01001285 if (best)
1286 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section; did you mean '%s' maybe ?\n", file, linenum, args[0], cursection, best);
1287 else
1288 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], "global");
Willy Tarreau36b9e222018-11-11 15:19:52 +01001289 err_code |= ERR_ALERT | ERR_FATAL;
1290 }
1291
1292 out:
1293 free(errmsg);
1294 return err_code;
1295}
1296