blob: 87227a35f3cee60a9467d5ee74fb188b7a83ffb1 [file] [log] [blame]
William Lallemand74c24fb2016-11-21 17:18:36 +01001/*
2 * Functions dedicated to statistics output and the stats socket
3 *
4 * Copyright 2000-2012 Willy Tarreau <w@1wt.eu>
5 * Copyright 2007-2009 Krzysztof Piotr Oledzki <ole@ans.pl>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
11 *
12 */
13
14#include <ctype.h>
15#include <errno.h>
16#include <fcntl.h>
17#include <stdio.h>
18#include <stdlib.h>
19#include <string.h>
20#include <pwd.h>
21#include <grp.h>
22
23#include <sys/socket.h>
24#include <sys/stat.h>
25#include <sys/types.h>
26
Olivier Houchardf886e342017-04-05 22:24:59 +020027#include <net/if.h>
28
William Lallemand74c24fb2016-11-21 17:18:36 +010029#include <common/cfgparse.h>
30#include <common/compat.h>
31#include <common/config.h>
32#include <common/debug.h>
33#include <common/memory.h>
34#include <common/mini-clist.h>
35#include <common/standard.h>
36#include <common/ticks.h>
37#include <common/time.h>
38#include <common/uri_auth.h>
39#include <common/version.h>
40#include <common/base64.h>
41
42#include <types/applet.h>
William Lallemand9ed62032016-11-21 17:49:11 +010043#include <types/cli.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010044#include <types/global.h>
45#include <types/dns.h>
William Lallemand9ed62032016-11-21 17:49:11 +010046#include <types/stats.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010047
48#include <proto/backend.h>
49#include <proto/channel.h>
50#include <proto/checks.h>
51#include <proto/compression.h>
William Lallemand9ed62032016-11-21 17:49:11 +010052#include <proto/stats.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010053#include <proto/fd.h>
54#include <proto/freq_ctr.h>
55#include <proto/frontend.h>
56#include <proto/log.h>
57#include <proto/pattern.h>
58#include <proto/pipe.h>
William Lallemandce83b4a2018-10-26 14:47:30 +020059#include <proto/protocol.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010060#include <proto/listener.h>
61#include <proto/map.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010062#include <proto/proxy.h>
63#include <proto/sample.h>
64#include <proto/session.h>
65#include <proto/stream.h>
66#include <proto/server.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010067#include <proto/stream_interface.h>
68#include <proto/task.h>
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +020069#include <proto/proto_udp.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010070
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +020071#define PAYLOAD_PATTERN "<<"
72
William Lallemand74c24fb2016-11-21 17:18:36 +010073static struct applet cli_applet;
74
75static const char stats_sock_usage_msg[] =
76 "Unknown command. Please enter one of the following commands only :\n"
William Lallemand74c24fb2016-11-21 17:18:36 +010077 " help : this message\n"
78 " prompt : toggle interactive mode with prompt\n"
79 " quit : disconnect\n"
William Lallemand74c24fb2016-11-21 17:18:36 +010080 "";
81
82static const char stats_permission_denied_msg[] =
83 "Permission denied\n"
84 "";
85
86
Christopher Faulet1bc04c72017-10-29 20:14:08 +010087static THREAD_LOCAL char *dynamic_usage_msg = NULL;
William Lallemand74c24fb2016-11-21 17:18:36 +010088
89/* List head of cli keywords */
90static struct cli_kw_list cli_keywords = {
91 .list = LIST_HEAD_INIT(cli_keywords.list)
92};
93
94extern const char *stat_status_codes[];
95
William Lallemand14721be2018-10-26 14:47:37 +020096extern int master;
97
William Lallemand8a022572018-10-26 14:47:35 +020098static struct proxy *mworker_proxy; /* CLI proxy of the master */
99
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200100static char *cli_gen_usage_msg(struct appctx *appctx)
William Lallemand74c24fb2016-11-21 17:18:36 +0100101{
102 struct cli_kw_list *kw_list;
103 struct cli_kw *kw;
Willy Tarreau83061a82018-07-13 11:56:34 +0200104 struct buffer *tmp = get_trash_chunk();
105 struct buffer out;
William Lallemand74c24fb2016-11-21 17:18:36 +0100106
107 free(dynamic_usage_msg);
108 dynamic_usage_msg = NULL;
109
110 if (LIST_ISEMPTY(&cli_keywords.list))
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200111 goto end;
William Lallemand74c24fb2016-11-21 17:18:36 +0100112
113 chunk_reset(tmp);
114 chunk_strcat(tmp, stats_sock_usage_msg);
115 list_for_each_entry(kw_list, &cli_keywords.list, list) {
116 kw = &kw_list->kw[0];
William Lallemand0154edc2018-05-15 11:50:04 +0200117 while (kw->str_kw[0]) {
William Lallemand14721be2018-10-26 14:47:37 +0200118
119 /* in a worker or normal process, don't display master only commands */
120 if (master == 0 && (kw->level & ACCESS_MASTER_ONLY))
121 goto next_kw;
122
123 /* in master don't displays if we don't have the master bits */
124 if (master == 1 && !(kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)))
125 goto next_kw;
126
William Lallemand0154edc2018-05-15 11:50:04 +0200127 if (kw->usage)
128 chunk_appendf(tmp, " %s\n", kw->usage);
William Lallemand14721be2018-10-26 14:47:37 +0200129
130next_kw:
131
William Lallemand74c24fb2016-11-21 17:18:36 +0100132 kw++;
133 }
134 }
135 chunk_init(&out, NULL, 0);
136 chunk_dup(&out, tmp);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200137 dynamic_usage_msg = out.area;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200138
139end:
140 if (dynamic_usage_msg) {
141 appctx->ctx.cli.severity = LOG_INFO;
142 appctx->ctx.cli.msg = dynamic_usage_msg;
143 }
144 else {
145 appctx->ctx.cli.severity = LOG_INFO;
146 appctx->ctx.cli.msg = stats_sock_usage_msg;
147 }
148 appctx->st0 = CLI_ST_PRINT;
149
William Lallemand74c24fb2016-11-21 17:18:36 +0100150 return dynamic_usage_msg;
151}
152
153struct cli_kw* cli_find_kw(char **args)
154{
155 struct cli_kw_list *kw_list;
156 struct cli_kw *kw;/* current cli_kw */
157 char **tmp_args;
158 const char **tmp_str_kw;
159 int found = 0;
160
161 if (LIST_ISEMPTY(&cli_keywords.list))
162 return NULL;
163
164 list_for_each_entry(kw_list, &cli_keywords.list, list) {
165 kw = &kw_list->kw[0];
166 while (*kw->str_kw) {
167 tmp_args = args;
168 tmp_str_kw = kw->str_kw;
169 while (*tmp_str_kw) {
170 if (strcmp(*tmp_str_kw, *tmp_args) == 0) {
171 found = 1;
172 } else {
173 found = 0;
174 break;
175 }
176 tmp_args++;
177 tmp_str_kw++;
178 }
179 if (found)
180 return (kw);
181 kw++;
182 }
183 }
184 return NULL;
185}
186
187void cli_register_kw(struct cli_kw_list *kw_list)
188{
189 LIST_ADDQ(&cli_keywords.list, &kw_list->list);
190}
191
192
193/* allocate a new stats frontend named <name>, and return it
194 * (or NULL in case of lack of memory).
195 */
196static struct proxy *alloc_stats_fe(const char *name, const char *file, int line)
197{
198 struct proxy *fe;
199
200 fe = calloc(1, sizeof(*fe));
201 if (!fe)
202 return NULL;
203
204 init_new_proxy(fe);
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100205 fe->next = proxies_list;
206 proxies_list = fe;
William Lallemand74c24fb2016-11-21 17:18:36 +0100207 fe->last_change = now.tv_sec;
208 fe->id = strdup("GLOBAL");
209 fe->cap = PR_CAP_FE;
210 fe->maxconn = 10; /* default to 10 concurrent connections */
211 fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
212 fe->conf.file = strdup(file);
213 fe->conf.line = line;
214 fe->accept = frontend_accept;
215 fe->default_target = &cli_applet.obj_type;
216
217 /* the stats frontend is the only one able to assign ID #0 */
218 fe->conf.id.key = fe->uuid = 0;
219 eb32_insert(&used_proxy_id, &fe->conf.id);
220 return fe;
221}
222
223/* This function parses a "stats" statement in the "global" section. It returns
224 * -1 if there is any error, otherwise zero. If it returns -1, it will write an
225 * error message into the <err> buffer which will be preallocated. The trailing
226 * '\n' must not be written. The function must be called with <args> pointing to
227 * the first word after "stats".
228 */
229static int stats_parse_global(char **args, int section_type, struct proxy *curpx,
230 struct proxy *defpx, const char *file, int line,
231 char **err)
232{
233 struct bind_conf *bind_conf;
234 struct listener *l;
235
236 if (!strcmp(args[1], "socket")) {
237 int cur_arg;
238
239 if (*args[2] == 0) {
240 memprintf(err, "'%s %s' in global section expects an address or a path to a UNIX socket", args[0], args[1]);
241 return -1;
242 }
243
244 if (!global.stats_fe) {
245 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
246 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
247 return -1;
248 }
249 }
250
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100251 bind_conf = bind_conf_alloc(global.stats_fe, file, line, args[2], xprt_get(XPRT_RAW));
William Lallemand07a62f72017-05-24 00:57:40 +0200252 bind_conf->level &= ~ACCESS_LVL_MASK;
253 bind_conf->level |= ACCESS_LVL_OPER; /* default access level */
William Lallemand74c24fb2016-11-21 17:18:36 +0100254
255 if (!str2listener(args[2], global.stats_fe, bind_conf, file, line, err)) {
256 memprintf(err, "parsing [%s:%d] : '%s %s' : %s\n",
257 file, line, args[0], args[1], err && *err ? *err : "error");
258 return -1;
259 }
260
261 cur_arg = 3;
262 while (*args[cur_arg]) {
263 static int bind_dumped;
264 struct bind_kw *kw;
265
266 kw = bind_find_kw(args[cur_arg]);
267 if (kw) {
268 if (!kw->parse) {
269 memprintf(err, "'%s %s' : '%s' option is not implemented in this version (check build options).",
270 args[0], args[1], args[cur_arg]);
271 return -1;
272 }
273
274 if (kw->parse(args, cur_arg, global.stats_fe, bind_conf, err) != 0) {
275 if (err && *err)
276 memprintf(err, "'%s %s' : '%s'", args[0], args[1], *err);
277 else
278 memprintf(err, "'%s %s' : error encountered while processing '%s'",
279 args[0], args[1], args[cur_arg]);
280 return -1;
281 }
282
283 cur_arg += 1 + kw->skip;
284 continue;
285 }
286
287 if (!bind_dumped) {
288 bind_dump_kws(err);
289 indent_msg(err, 4);
290 bind_dumped = 1;
291 }
292
293 memprintf(err, "'%s %s' : unknown keyword '%s'.%s%s",
294 args[0], args[1], args[cur_arg],
295 err && *err ? " Registered keywords :" : "", err && *err ? *err : "");
296 return -1;
297 }
298
299 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
300 l->maxconn = global.stats_fe->maxconn;
301 l->backlog = global.stats_fe->backlog;
302 l->accept = session_accept_fd;
William Lallemand74c24fb2016-11-21 17:18:36 +0100303 l->default_target = global.stats_fe->default_target;
304 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
305 l->nice = -64; /* we want to boost priority for local stats */
306 global.maxsock += l->maxconn;
307 }
308 }
309 else if (!strcmp(args[1], "timeout")) {
310 unsigned timeout;
311 const char *res = parse_time_err(args[2], &timeout, TIME_UNIT_MS);
312
313 if (res) {
314 memprintf(err, "'%s %s' : unexpected character '%c'", args[0], args[1], *res);
315 return -1;
316 }
317
318 if (!timeout) {
319 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
320 return -1;
321 }
322 if (!global.stats_fe) {
323 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
324 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
325 return -1;
326 }
327 }
328 global.stats_fe->timeout.client = MS_TO_TICKS(timeout);
329 }
330 else if (!strcmp(args[1], "maxconn")) {
331 int maxconn = atol(args[2]);
332
333 if (maxconn <= 0) {
334 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
335 return -1;
336 }
337
338 if (!global.stats_fe) {
339 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
340 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
341 return -1;
342 }
343 }
344 global.stats_fe->maxconn = maxconn;
345 }
346 else if (!strcmp(args[1], "bind-process")) { /* enable the socket only on some processes */
347 int cur_arg = 2;
348 unsigned long set = 0;
349
350 if (!global.stats_fe) {
351 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
352 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
353 return -1;
354 }
355 }
356
357 while (*args[cur_arg]) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100358 if (strcmp(args[cur_arg], "all") == 0) {
359 set = 0;
360 break;
361 }
Christopher Faulet26028f62017-11-22 15:01:51 +0100362 if (parse_process_number(args[cur_arg], &set, NULL, err)) {
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +0100363 memprintf(err, "'%s %s' : %s", args[0], args[1], *err);
William Lallemand74c24fb2016-11-21 17:18:36 +0100364 return -1;
365 }
366 cur_arg++;
367 }
368 global.stats_fe->bind_proc = set;
369 }
370 else {
371 memprintf(err, "'%s' only supports 'socket', 'maxconn', 'bind-process' and 'timeout' (got '%s')", args[0], args[1]);
372 return -1;
373 }
374 return 0;
375}
376
Willy Tarreaude57a572016-11-23 17:01:39 +0100377/* Verifies that the CLI at least has a level at least as high as <level>
378 * (typically ACCESS_LVL_ADMIN). Returns 1 if OK, otherwise 0. In case of
379 * failure, an error message is prepared and the appctx's state is adjusted
380 * to print it so that a return 1 is enough to abort any processing.
381 */
382int cli_has_level(struct appctx *appctx, int level)
383{
384 struct stream_interface *si = appctx->owner;
385 struct stream *s = si_strm(si);
386
William Lallemand07a62f72017-05-24 00:57:40 +0200387 if ((strm_li(s)->bind_conf->level & ACCESS_LVL_MASK) < level) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +0200388 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreaude57a572016-11-23 17:01:39 +0100389 appctx->ctx.cli.msg = stats_permission_denied_msg;
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100390 appctx->st0 = CLI_ST_PRINT;
Willy Tarreaude57a572016-11-23 17:01:39 +0100391 return 0;
392 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100393 return 1;
394}
395
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200396/* Returns severity_output for the current session if set, or default for the socket */
397static int cli_get_severity_output(struct appctx *appctx)
398{
399 if (appctx->cli_severity_output)
400 return appctx->cli_severity_output;
401 return strm_li(si_strm(appctx->owner))->bind_conf->severity_output;
402}
William Lallemand74c24fb2016-11-21 17:18:36 +0100403
Willy Tarreau41908562016-11-24 16:23:38 +0100404/* Processes the CLI interpreter on the stats socket. This function is called
405 * from the CLI's IO handler running in an appctx context. The function returns 1
406 * if the request was understood, otherwise zero. It is called with appctx->st0
407 * set to CLI_ST_GETREQ and presets ->st2 to 0 so that parsers don't have to do
408 * it. It will possilbly leave st0 to CLI_ST_CALLBACK if the keyword needs to
409 * have its own I/O handler called again. Most of the time, parsers will only
410 * set st0 to CLI_ST_PRINT and put their message to be displayed into cli.msg.
Willy Tarreaueaffde32016-12-16 17:59:25 +0100411 * If a keyword parser is NULL and an I/O handler is declared, the I/O handler
412 * will automatically be used.
William Lallemand74c24fb2016-11-21 17:18:36 +0100413 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200414static int cli_parse_request(struct appctx *appctx)
William Lallemand74c24fb2016-11-21 17:18:36 +0100415{
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200416 char *args[MAX_STATS_ARGS + 1], *p, *end, *payload = NULL;
417 int i = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100418 struct cli_kw *kw;
William Lallemand74c24fb2016-11-21 17:18:36 +0100419
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200420 appctx->st2 = 0;
421 memset(&appctx->ctx.cli, 0, sizeof(appctx->ctx.cli));
William Lallemand74c24fb2016-11-21 17:18:36 +0100422
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200423 p = appctx->chunk->area;
424 end = p + appctx->chunk->data;
William Lallemand74c24fb2016-11-21 17:18:36 +0100425
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200426 /*
427 * Get the payload start if there is one.
428 * For the sake of simplicity, the payload pattern is looked up
429 * everywhere from the start of the input but it can only be found
430 * at the end of the first line if APPCTX_CLI_ST1_PAYLOAD is set.
431 *
432 * The input string was zero terminated so it is safe to use
433 * the str*() functions throughout the parsing
434 */
435 if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) {
436 payload = strstr(p, PAYLOAD_PATTERN);
437 end = payload;
438 /* skip the pattern */
439 payload += strlen(PAYLOAD_PATTERN);
440 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100441
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200442 /*
443 * Get pointers on words.
444 * One extra slot is reserved to store a pointer on a null byte.
445 */
446 while (i < MAX_STATS_ARGS && p < end) {
447 int j, k;
William Lallemand74c24fb2016-11-21 17:18:36 +0100448
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200449 /* skip leading spaces/tabs */
450 p += strspn(p, " \t");
451 if (!*p)
452 break;
William Lallemand74c24fb2016-11-21 17:18:36 +0100453
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200454 args[i] = p;
455 p += strcspn(p, " \t");
456 *p++ = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100457
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200458 /* unescape backslashes (\) */
459 for (j = 0, k = 0; args[i][k]; k++) {
460 if (args[i][k] == '\\') {
461 if (args[i][k + 1] == '\\')
462 k++;
Dragan Dosena1c35ab2016-11-24 11:33:12 +0100463 else
464 continue;
465 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200466 args[i][j] = args[i][k];
William Lallemand74c24fb2016-11-21 17:18:36 +0100467 j++;
468 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200469 args[i][j] = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100470
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200471 i++;
472 }
473 /* fill unused slots */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200474 p = appctx->chunk->area + appctx->chunk->data;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200475 for (; i < MAX_STATS_ARGS + 1; i++)
476 args[i] = p;
Willy Tarreau41908562016-11-24 16:23:38 +0100477
478 kw = cli_find_kw(args);
Willy Tarreaueaffde32016-12-16 17:59:25 +0100479 if (!kw)
Willy Tarreau41908562016-11-24 16:23:38 +0100480 return 0;
481
William Lallemand14721be2018-10-26 14:47:37 +0200482 /* in a worker or normal process, don't display master only commands */
483 if (master == 0 && (kw->level & ACCESS_MASTER_ONLY))
484 return 0;
485
486 /* in master don't displays if we don't have the master bits */
487 if (master == 1 && !(kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)))
488 return 0;
489
Willy Tarreau41908562016-11-24 16:23:38 +0100490 appctx->io_handler = kw->io_handler;
Emeric Brund6871f72017-06-29 19:54:13 +0200491 appctx->io_release = kw->io_release;
492 /* kw->parse could set its own io_handler or ip_release handler */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200493 if ((!kw->parse || kw->parse(args, payload, appctx, kw->private) == 0) && appctx->io_handler) {
Willy Tarreau41908562016-11-24 16:23:38 +0100494 appctx->st0 = CLI_ST_CALLBACK;
William Lallemand74c24fb2016-11-21 17:18:36 +0100495 }
Willy Tarreau41908562016-11-24 16:23:38 +0100496 return 1;
William Lallemand74c24fb2016-11-21 17:18:36 +0100497}
498
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200499/* prepends then outputs the argument msg with a syslog-type severity depending on severity_output value */
500static int cli_output_msg(struct channel *chn, const char *msg, int severity, int severity_output)
501{
Willy Tarreau83061a82018-07-13 11:56:34 +0200502 struct buffer *tmp;
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200503
504 if (likely(severity_output == CLI_SEVERITY_NONE))
Willy Tarreau06d80a92017-10-19 14:32:15 +0200505 return ci_putblk(chn, msg, strlen(msg));
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200506
507 tmp = get_trash_chunk();
508 chunk_reset(tmp);
509
510 if (severity < 0 || severity > 7) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100511 ha_warning("socket command feedback with invalid severity %d", severity);
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200512 chunk_printf(tmp, "[%d]: ", severity);
513 }
514 else {
515 switch (severity_output) {
516 case CLI_SEVERITY_NUMBER:
517 chunk_printf(tmp, "[%d]: ", severity);
518 break;
519 case CLI_SEVERITY_STRING:
520 chunk_printf(tmp, "[%s]: ", log_levels[severity]);
521 break;
522 default:
Christopher Faulet767a84b2017-11-24 16:50:31 +0100523 ha_warning("Unrecognized severity output %d", severity_output);
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200524 }
525 }
526 chunk_appendf(tmp, "%s", msg);
527
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200528 return ci_putblk(chn, tmp->area, strlen(tmp->area));
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200529}
530
William Lallemand74c24fb2016-11-21 17:18:36 +0100531/* This I/O handler runs as an applet embedded in a stream interface. It is
532 * used to processes I/O from/to the stats unix socket. The system relies on a
533 * state machine handling requests and various responses. We read a request,
534 * then we process it and send the response, and we possibly display a prompt.
535 * Then we can read again. The state is stored in appctx->st0 and is one of the
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100536 * CLI_ST_* constants. appctx->st1 is used to indicate whether prompt is enabled
William Lallemand74c24fb2016-11-21 17:18:36 +0100537 * or not.
538 */
539static void cli_io_handler(struct appctx *appctx)
540{
541 struct stream_interface *si = appctx->owner;
542 struct channel *req = si_oc(si);
543 struct channel *res = si_ic(si);
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200544 struct bind_conf *bind_conf = strm_li(si_strm(si))->bind_conf;
William Lallemand74c24fb2016-11-21 17:18:36 +0100545 int reql;
546 int len;
547
548 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
549 goto out;
550
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100551 /* Check if the input buffer is avalaible. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200552 if (res->buf.size == 0) {
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100553 si_applet_cant_put(si);
554 goto out;
555 }
556
William Lallemand74c24fb2016-11-21 17:18:36 +0100557 while (1) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100558 if (appctx->st0 == CLI_ST_INIT) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100559 /* Stats output not initialized yet */
560 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200561 /* reset severity to default at init */
562 appctx->cli_severity_output = bind_conf->severity_output;
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100563 appctx->st0 = CLI_ST_GETREQ;
William Lallemand74c24fb2016-11-21 17:18:36 +0100564 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100565 else if (appctx->st0 == CLI_ST_END) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100566 /* Let's close for real now. We just close the request
567 * side, the conditions below will complete if needed.
568 */
569 si_shutw(si);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200570 free_trash_chunk(appctx->chunk);
William Lallemand74c24fb2016-11-21 17:18:36 +0100571 break;
572 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100573 else if (appctx->st0 == CLI_ST_GETREQ) {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200574 char *str;
575
576 /* use a trash chunk to store received data */
577 if (!appctx->chunk) {
578 appctx->chunk = alloc_trash_chunk();
579 if (!appctx->chunk) {
580 appctx->st0 = CLI_ST_END;
581 continue;
582 }
583 }
584
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200585 str = appctx->chunk->area + appctx->chunk->data;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200586
William Lallemand74c24fb2016-11-21 17:18:36 +0100587 /* ensure we have some output room left in the event we
588 * would want to return some info right after parsing.
589 */
590 if (buffer_almost_full(si_ib(si))) {
591 si_applet_cant_put(si);
592 break;
593 }
594
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200595 /* '- 1' is to ensure a null byte can always be inserted at the end */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200596 reql = co_getline(si_oc(si), str,
597 appctx->chunk->size - appctx->chunk->data - 1);
William Lallemand74c24fb2016-11-21 17:18:36 +0100598 if (reql <= 0) { /* closed or EOL not found */
599 if (reql == 0)
600 break;
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100601 appctx->st0 = CLI_ST_END;
William Lallemand74c24fb2016-11-21 17:18:36 +0100602 continue;
603 }
604
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200605 if (!(appctx->st1 & APPCTX_CLI_ST1_PAYLOAD)) {
606 /* seek for a possible unescaped semi-colon. If we find
607 * one, we replace it with an LF and skip only this part.
608 */
609 for (len = 0; len < reql; len++) {
610 if (str[len] == '\\') {
611 len++;
612 continue;
613 }
614 if (str[len] == ';') {
615 str[len] = '\n';
616 reql = len + 1;
617 break;
618 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100619 }
620 }
621
622 /* now it is time to check that we have a full line,
623 * remove the trailing \n and possibly \r, then cut the
624 * line.
625 */
626 len = reql - 1;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200627 if (str[len] != '\n') {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100628 appctx->st0 = CLI_ST_END;
William Lallemand74c24fb2016-11-21 17:18:36 +0100629 continue;
630 }
631
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200632 if (len && str[len-1] == '\r')
William Lallemand74c24fb2016-11-21 17:18:36 +0100633 len--;
634
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200635 str[len] = '\0';
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200636 appctx->chunk->data += len;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200637
638 if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200639 appctx->chunk->area[appctx->chunk->data] = '\n';
640 appctx->chunk->area[appctx->chunk->data + 1] = 0;
641 appctx->chunk->data++;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200642 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100643
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100644 appctx->st0 = CLI_ST_PROMPT;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200645
646 if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) {
647 /* empty line */
648 if (!len) {
649 /* remove the last two \n */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200650 appctx->chunk->data -= 2;
651 appctx->chunk->area[appctx->chunk->data] = 0;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200652
653 if (!cli_parse_request(appctx))
654 cli_gen_usage_msg(appctx);
655
656 chunk_reset(appctx->chunk);
657 /* NB: cli_sock_parse_request() may have put
658 * another CLI_ST_O_* into appctx->st0.
659 */
660
661 appctx->st1 &= ~APPCTX_CLI_ST1_PAYLOAD;
William Lallemand74c24fb2016-11-21 17:18:36 +0100662 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100663 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200664 else {
665 /*
666 * Look for the "payload start" pattern at the end of a line
667 * Its location is not remembered here, this is just to switch
668 * to a gathering mode.
William Lallemand74c24fb2016-11-21 17:18:36 +0100669 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200670 if (!strcmp(appctx->chunk->area + appctx->chunk->data - strlen(PAYLOAD_PATTERN), PAYLOAD_PATTERN))
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200671 appctx->st1 |= APPCTX_CLI_ST1_PAYLOAD;
Andjelko Iharosc3680ec2017-07-20 16:49:14 +0200672 else {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200673 /* no payload, the command is complete: parse the request */
674 if (!cli_parse_request(appctx))
675 cli_gen_usage_msg(appctx);
676
677 chunk_reset(appctx->chunk);
Andjelko Iharosc3680ec2017-07-20 16:49:14 +0200678 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100679 }
680
681 /* re-adjust req buffer */
Willy Tarreau06d80a92017-10-19 14:32:15 +0200682 co_skip(si_oc(si), reql);
William Lallemand74c24fb2016-11-21 17:18:36 +0100683 req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
684 }
685 else { /* output functions */
686 switch (appctx->st0) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100687 case CLI_ST_PROMPT:
William Lallemand74c24fb2016-11-21 17:18:36 +0100688 break;
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100689 case CLI_ST_PRINT:
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200690 if (cli_output_msg(res, appctx->ctx.cli.msg, appctx->ctx.cli.severity,
691 cli_get_severity_output(appctx)) != -1)
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100692 appctx->st0 = CLI_ST_PROMPT;
William Lallemand74c24fb2016-11-21 17:18:36 +0100693 else
694 si_applet_cant_put(si);
695 break;
Aurélien Nephtalic511b7c2018-04-16 18:50:19 +0200696 case CLI_ST_PRINT_FREE: {
697 const char *msg = appctx->ctx.cli.err;
698
699 if (!msg)
700 msg = "Out of memory.\n";
701
702 if (cli_output_msg(res, msg, LOG_ERR, cli_get_severity_output(appctx)) != -1) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100703 free(appctx->ctx.cli.err);
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100704 appctx->st0 = CLI_ST_PROMPT;
William Lallemand74c24fb2016-11-21 17:18:36 +0100705 }
706 else
707 si_applet_cant_put(si);
708 break;
Aurélien Nephtalic511b7c2018-04-16 18:50:19 +0200709 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100710 case CLI_ST_CALLBACK: /* use custom pointer */
William Lallemand74c24fb2016-11-21 17:18:36 +0100711 if (appctx->io_handler)
712 if (appctx->io_handler(appctx)) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100713 appctx->st0 = CLI_ST_PROMPT;
William Lallemand74c24fb2016-11-21 17:18:36 +0100714 if (appctx->io_release) {
715 appctx->io_release(appctx);
716 appctx->io_release = NULL;
717 }
718 }
719 break;
720 default: /* abnormal state */
721 si->flags |= SI_FL_ERR;
722 break;
723 }
724
725 /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100726 if (appctx->st0 == CLI_ST_PROMPT) {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200727 const char *prompt = "";
728
729 if (appctx->st1 & APPCTX_CLI_ST1_PROMPT) {
730 /*
731 * when entering a payload with interactive mode, change the prompt
732 * to emphasize that more data can still be sent
733 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200734 if (appctx->chunk->data && appctx->st1 & APPCTX_CLI_ST1_PAYLOAD)
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200735 prompt = "+ ";
736 else
737 prompt = "\n> ";
738 }
739 else {
740 if (!(appctx->st1 & APPCTX_CLI_ST1_PAYLOAD))
741 prompt = "\n";
742 }
743
744 if (ci_putstr(si_ic(si), prompt) != -1)
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100745 appctx->st0 = CLI_ST_GETREQ;
William Lallemand74c24fb2016-11-21 17:18:36 +0100746 else
747 si_applet_cant_put(si);
748 }
749
750 /* If the output functions are still there, it means they require more room. */
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100751 if (appctx->st0 >= CLI_ST_OUTPUT)
William Lallemand74c24fb2016-11-21 17:18:36 +0100752 break;
753
754 /* Now we close the output if one of the writers did so,
755 * or if we're not in interactive mode and the request
756 * buffer is empty. This still allows pipelined requests
757 * to be sent in non-interactive mode.
758 */
Willy Tarreau851d12c2018-06-19 07:01:36 +0200759 if ((res->flags & (CF_SHUTW|CF_SHUTW_NOW)) || (!(appctx->st1 & APPCTX_CLI_ST1_PROMPT) && !co_data(req))) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100760 appctx->st0 = CLI_ST_END;
William Lallemand74c24fb2016-11-21 17:18:36 +0100761 continue;
762 }
763
764 /* switch state back to GETREQ to read next requests */
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100765 appctx->st0 = CLI_ST_GETREQ;
William Lallemand74c24fb2016-11-21 17:18:36 +0100766 }
767 }
768
769 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST)) {
770 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
771 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
772 /* Other side has closed, let's abort if we have no more processing to do
773 * and nothing more to consume. This is comparable to a broken pipe, so
774 * we forward the close to the request side so that it flows upstream to
775 * the client.
776 */
777 si_shutw(si);
778 }
779
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100780 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST) && (appctx->st0 < CLI_ST_OUTPUT)) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100781 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
782 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
783 /* We have no more processing to do, and nothing more to send, and
784 * the client side has closed. So we'll forward this state downstream
785 * on the response buffer.
786 */
787 si_shutr(si);
788 res->flags |= CF_READ_NULL;
789 }
790
791 out:
Christopher Faulet45073512018-07-20 10:16:29 +0200792 DPRINTF(stderr, "%s@%d: st=%d, rqf=%x, rpf=%x, rqh=%lu, rqs=%lu, rh=%lu, rs=%lu\n",
William Lallemand74c24fb2016-11-21 17:18:36 +0100793 __FUNCTION__, __LINE__,
Christopher Faulet45073512018-07-20 10:16:29 +0200794 si->state, req->flags, res->flags, ci_data(req), co_data(req), ci_data(res), co_data(res));
William Lallemand74c24fb2016-11-21 17:18:36 +0100795}
796
William Lallemand74c24fb2016-11-21 17:18:36 +0100797/* This is called when the stream interface is closed. For instance, upon an
798 * external abort, we won't call the i/o handler anymore so we may need to
799 * remove back references to the stream currently being dumped.
800 */
801static void cli_release_handler(struct appctx *appctx)
802{
803 if (appctx->io_release) {
804 appctx->io_release(appctx);
805 appctx->io_release = NULL;
806 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100807 else if (appctx->st0 == CLI_ST_PRINT_FREE) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100808 free(appctx->ctx.cli.err);
809 appctx->ctx.cli.err = NULL;
810 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100811}
812
813/* This function dumps all environmnent variables to the buffer. It returns 0
814 * if the output buffer is full and it needs to be called again, otherwise
Willy Tarreauf6710f82016-12-16 17:45:44 +0100815 * non-zero. Dumps only one entry if st2 == STAT_ST_END. It uses cli.p0 as the
816 * pointer to the current variable.
William Lallemand74c24fb2016-11-21 17:18:36 +0100817 */
Willy Tarreau0a739292016-11-22 20:21:23 +0100818static int cli_io_handler_show_env(struct appctx *appctx)
William Lallemand74c24fb2016-11-21 17:18:36 +0100819{
Willy Tarreau0a739292016-11-22 20:21:23 +0100820 struct stream_interface *si = appctx->owner;
Willy Tarreauf6710f82016-12-16 17:45:44 +0100821 char **var = appctx->ctx.cli.p0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100822
823 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
824 return 1;
825
826 chunk_reset(&trash);
827
828 /* we have two inner loops here, one for the proxy, the other one for
829 * the buffer.
830 */
Willy Tarreauf6710f82016-12-16 17:45:44 +0100831 while (*var) {
832 chunk_printf(&trash, "%s\n", *var);
William Lallemand74c24fb2016-11-21 17:18:36 +0100833
Willy Tarreau06d80a92017-10-19 14:32:15 +0200834 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100835 si_applet_cant_put(si);
836 return 0;
837 }
838 if (appctx->st2 == STAT_ST_END)
839 break;
Willy Tarreauf6710f82016-12-16 17:45:44 +0100840 var++;
841 appctx->ctx.cli.p0 = var;
William Lallemand74c24fb2016-11-21 17:18:36 +0100842 }
843
844 /* dump complete */
845 return 1;
846}
847
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200848/* This function dumps all file descriptors states (or the requested one) to
849 * the buffer. It returns 0 if the output buffer is full and it needs to be
850 * called again, otherwise non-zero. Dumps only one entry if st2 == STAT_ST_END.
851 * It uses cli.i0 as the fd number to restart from.
852 */
853static int cli_io_handler_show_fd(struct appctx *appctx)
854{
855 struct stream_interface *si = appctx->owner;
856 int fd = appctx->ctx.cli.i0;
857
858 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
859 return 1;
860
861 chunk_reset(&trash);
862
863 /* we have two inner loops here, one for the proxy, the other one for
864 * the buffer.
865 */
Aurélien Nephtali498a1152018-03-09 18:51:16 +0100866 while (fd >= 0 && fd < global.maxsock) {
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200867 struct fdtab fdt;
Willy Tarreau286ec682017-08-09 16:35:44 +0200868 struct listener *li = NULL;
869 struct server *sv = NULL;
870 struct proxy *px = NULL;
Willy Tarreaua833cd92018-03-29 13:19:37 +0200871 const struct mux_ops *mux = NULL;
Willy Tarreau35b1b482018-03-28 18:41:30 +0200872 void *ctx = NULL;
Willy Tarreau286ec682017-08-09 16:35:44 +0200873 uint32_t conn_flags = 0;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200874
Willy Tarreaubf9fd652018-08-02 11:05:48 +0200875 thread_isolate();
876
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200877 fdt = fdtab[fd];
878
Willy Tarreaubf9fd652018-08-02 11:05:48 +0200879 if (!fdt.owner) {
880 thread_release();
Willy Tarreau017af242017-10-04 20:24:54 +0200881 goto skip; // closed
Willy Tarreaubf9fd652018-08-02 11:05:48 +0200882 }
Willy Tarreau017af242017-10-04 20:24:54 +0200883
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200884 if (fdt.iocb == conn_fd_handler) {
885 conn_flags = ((struct connection *)fdt.owner)->flags;
Willy Tarreau35b1b482018-03-28 18:41:30 +0200886 mux = ((struct connection *)fdt.owner)->mux;
887 ctx = ((struct connection *)fdt.owner)->mux_ctx;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200888 li = objt_listener(((struct connection *)fdt.owner)->target);
889 sv = objt_server(((struct connection *)fdt.owner)->target);
890 px = objt_proxy(((struct connection *)fdt.owner)->target);
891 }
892 else if (fdt.iocb == listener_accept)
893 li = fdt.owner;
894
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200895 chunk_printf(&trash,
Willy Tarreauc754b342018-03-30 15:00:15 +0200896 " %5d : st=0x%02x(R:%c%c%c W:%c%c%c) ev=0x%02x(%c%c%c%c%c) [%c%c] cnext=%d cprev=%d tmask=0x%lx umask=0x%lx owner=%p iocb=%p(%s)",
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200897 fd,
898 fdt.state,
899 (fdt.state & FD_EV_POLLED_R) ? 'P' : 'p',
900 (fdt.state & FD_EV_READY_R) ? 'R' : 'r',
901 (fdt.state & FD_EV_ACTIVE_R) ? 'A' : 'a',
902 (fdt.state & FD_EV_POLLED_W) ? 'P' : 'p',
903 (fdt.state & FD_EV_READY_W) ? 'R' : 'r',
904 (fdt.state & FD_EV_ACTIVE_W) ? 'A' : 'a',
905 fdt.ev,
906 (fdt.ev & FD_POLL_HUP) ? 'H' : 'h',
907 (fdt.ev & FD_POLL_ERR) ? 'E' : 'e',
908 (fdt.ev & FD_POLL_OUT) ? 'O' : 'o',
909 (fdt.ev & FD_POLL_PRI) ? 'P' : 'p',
910 (fdt.ev & FD_POLL_IN) ? 'I' : 'i',
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200911 fdt.linger_risk ? 'L' : 'l',
912 fdt.cloned ? 'C' : 'c',
Willy Tarreauc754b342018-03-30 15:00:15 +0200913 fdt.cache.next,
914 fdt.cache.prev,
915 fdt.thread_mask, fdt.update_mask,
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200916 fdt.owner,
917 fdt.iocb,
918 (fdt.iocb == conn_fd_handler) ? "conn_fd_handler" :
919 (fdt.iocb == dgram_fd_handler) ? "dgram_fd_handler" :
920 (fdt.iocb == listener_accept) ? "listener_accept" :
Olivier Houchard79321b92018-07-26 17:55:11 +0200921 (fdt.iocb == poller_pipe_io_handler) ? "poller_pipe_io_handler" :
Willy Tarreauc754b342018-03-30 15:00:15 +0200922 "unknown");
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200923
924 if (fdt.iocb == conn_fd_handler) {
925 chunk_appendf(&trash, " cflg=0x%08x", conn_flags);
926 if (px)
927 chunk_appendf(&trash, " px=%s", px->id);
928 else if (sv)
929 chunk_appendf(&trash, " sv=%s/%s", sv->id, sv->proxy->id);
930 else if (li)
931 chunk_appendf(&trash, " fe=%s", li->bind_conf->frontend->id);
Willy Tarreau35b1b482018-03-28 18:41:30 +0200932
Willy Tarreaub011d8f2018-03-30 14:41:19 +0200933 if (mux) {
Willy Tarreau35b1b482018-03-28 18:41:30 +0200934 chunk_appendf(&trash, " mux=%s mux_ctx=%p", mux->name, ctx);
Willy Tarreaub011d8f2018-03-30 14:41:19 +0200935 if (mux->show_fd)
936 mux->show_fd(&trash, fdt.owner);
937 }
Willy Tarreau35b1b482018-03-28 18:41:30 +0200938 else
939 chunk_appendf(&trash, " nomux");
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200940 }
941 else if (fdt.iocb == listener_accept) {
942 chunk_appendf(&trash, " l.st=%s fe=%s",
943 listener_state_str(li),
944 li->bind_conf->frontend->id);
945 }
946
Willy Tarreaubf9fd652018-08-02 11:05:48 +0200947 thread_release();
948
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200949 chunk_appendf(&trash, "\n");
950
Willy Tarreau06d80a92017-10-19 14:32:15 +0200951 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200952 si_applet_cant_put(si);
953 return 0;
954 }
955 skip:
956 if (appctx->st2 == STAT_ST_END)
957 break;
958
959 fd++;
960 appctx->ctx.cli.i0 = fd;
961 }
962
963 /* dump complete */
964 return 1;
965}
966
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100967/* This function dumps some activity counters used by developers and support to
968 * rule out some hypothesis during bug reports. It returns 0 if the output
969 * buffer is full and it needs to be called again, otherwise non-zero. It dumps
970 * everything at once in the buffer and is not designed to do it in multiple
971 * passes.
972 */
973static int cli_io_handler_show_activity(struct appctx *appctx)
974{
975 struct stream_interface *si = appctx->owner;
976 int thr;
977
978 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
979 return 1;
980
981 chunk_reset(&trash);
982
983 chunk_appendf(&trash, "thread_id: %u", tid);
984 chunk_appendf(&trash, "\ndate_now: %lu.%06lu", (long)now.tv_sec, (long)now.tv_usec);
985 chunk_appendf(&trash, "\nloops:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].loops);
986 chunk_appendf(&trash, "\nwake_cache:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].wake_cache);
987 chunk_appendf(&trash, "\nwake_tasks:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].wake_tasks);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100988 chunk_appendf(&trash, "\nwake_signal:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].wake_signal);
989 chunk_appendf(&trash, "\npoll_exp:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].poll_exp);
990 chunk_appendf(&trash, "\npoll_drop:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].poll_drop);
991 chunk_appendf(&trash, "\npoll_dead:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].poll_dead);
992 chunk_appendf(&trash, "\npoll_skip:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].poll_skip);
993 chunk_appendf(&trash, "\nfd_skip:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].fd_skip);
994 chunk_appendf(&trash, "\nfd_lock:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].fd_lock);
995 chunk_appendf(&trash, "\nfd_del:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].fd_del);
996 chunk_appendf(&trash, "\nconn_dead:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].conn_dead);
997 chunk_appendf(&trash, "\nstream:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].stream);
998 chunk_appendf(&trash, "\nempty_rq:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].empty_rq);
999 chunk_appendf(&trash, "\nlong_rq:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].long_rq);
Willy Tarreaued72d822018-10-17 19:01:24 +02001000 chunk_appendf(&trash, "\ncpust_tot:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].cpust_total/2);
1001 chunk_appendf(&trash, "\ncpust_1s:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", read_freq_ctr(&activity[thr].cpust_1s)/2);
1002 chunk_appendf(&trash, "\ncpust_15s:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", read_freq_ctr_period(&activity[thr].cpust_15s, 15000)/2);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001003
1004 chunk_appendf(&trash, "\n");
1005
1006 if (ci_putchk(si_ic(si), &trash) == -1) {
1007 chunk_reset(&trash);
1008 chunk_printf(&trash, "[output too large, cannot dump]\n");
1009 si_applet_cant_put(si);
1010 }
1011
1012 /* dump complete */
1013 return 1;
1014}
1015
William Lallemandeceddf72016-12-15 18:06:44 +01001016/*
Willy Tarreau3af9d832016-12-16 12:58:09 +01001017 * CLI IO handler for `show cli sockets`.
1018 * Uses ctx.cli.p0 to store the restart pointer.
William Lallemandeceddf72016-12-15 18:06:44 +01001019 */
1020static int cli_io_handler_show_cli_sock(struct appctx *appctx)
1021{
1022 struct bind_conf *bind_conf;
1023 struct stream_interface *si = appctx->owner;
1024
1025 chunk_reset(&trash);
1026
1027 switch (appctx->st2) {
1028 case STAT_ST_INIT:
1029 chunk_printf(&trash, "# socket lvl processes\n");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001030 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemandeceddf72016-12-15 18:06:44 +01001031 si_applet_cant_put(si);
1032 return 0;
1033 }
William Lallemandeceddf72016-12-15 18:06:44 +01001034 appctx->st2 = STAT_ST_LIST;
1035
1036 case STAT_ST_LIST:
1037 if (global.stats_fe) {
1038 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
1039 struct listener *l;
1040
1041 /*
Willy Tarreau3af9d832016-12-16 12:58:09 +01001042 * get the latest dumped node in appctx->ctx.cli.p0
William Lallemandeceddf72016-12-15 18:06:44 +01001043 * if the current node is the first of the list
1044 */
1045
Willy Tarreau3af9d832016-12-16 12:58:09 +01001046 if (appctx->ctx.cli.p0 &&
1047 &bind_conf->by_fe == (&global.stats_fe->conf.bind)->n) {
William Lallemandeceddf72016-12-15 18:06:44 +01001048 /* change the current node to the latest dumped and continue the loop */
Willy Tarreau3af9d832016-12-16 12:58:09 +01001049 bind_conf = LIST_ELEM(appctx->ctx.cli.p0, typeof(bind_conf), by_fe);
William Lallemandeceddf72016-12-15 18:06:44 +01001050 continue;
1051 }
1052
1053 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
1054
1055 char addr[46];
1056 char port[6];
1057
1058 if (l->addr.ss_family == AF_UNIX) {
1059 const struct sockaddr_un *un;
1060
1061 un = (struct sockaddr_un *)&l->addr;
1062 chunk_appendf(&trash, "%s ", un->sun_path);
1063 } else if (l->addr.ss_family == AF_INET) {
1064 addr_to_str(&l->addr, addr, sizeof(addr));
1065 port_to_str(&l->addr, port, sizeof(port));
1066 chunk_appendf(&trash, "%s:%s ", addr, port);
1067 } else if (l->addr.ss_family == AF_INET6) {
1068 addr_to_str(&l->addr, addr, sizeof(addr));
1069 port_to_str(&l->addr, port, sizeof(port));
1070 chunk_appendf(&trash, "[%s]:%s ", addr, port);
1071 } else
1072 continue;
1073
William Lallemand07a62f72017-05-24 00:57:40 +02001074 if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_ADMIN)
William Lallemandeceddf72016-12-15 18:06:44 +01001075 chunk_appendf(&trash, "admin ");
William Lallemand07a62f72017-05-24 00:57:40 +02001076 else if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_OPER)
1077 chunk_appendf(&trash, "operator ");
1078 else if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_USER)
1079 chunk_appendf(&trash, "user ");
William Lallemandeceddf72016-12-15 18:06:44 +01001080 else
1081 chunk_appendf(&trash, " ");
1082
1083 if (bind_conf->bind_proc != 0) {
1084 int pos;
Willy Tarreau20c5e522016-12-16 12:50:55 +01001085 for (pos = 0; pos < 8 * sizeof(bind_conf->bind_proc); pos++) {
Willy Tarreau4305ac72016-12-16 12:56:31 +01001086 if (bind_conf->bind_proc & (1UL << pos)) {
William Lallemandeceddf72016-12-15 18:06:44 +01001087 chunk_appendf(&trash, "%d,", pos+1);
1088 }
1089 }
1090 /* replace the latest comma by a newline */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001091 trash.area[trash.data-1] = '\n';
William Lallemandeceddf72016-12-15 18:06:44 +01001092
1093 } else {
1094 chunk_appendf(&trash, "all\n");
1095 }
1096
Willy Tarreau06d80a92017-10-19 14:32:15 +02001097 if (ci_putchk(si_ic(si), &trash) == -1) {
William Lallemandeceddf72016-12-15 18:06:44 +01001098 si_applet_cant_put(si);
1099 return 0;
1100 }
1101 }
Willy Tarreau3af9d832016-12-16 12:58:09 +01001102 appctx->ctx.cli.p0 = &bind_conf->by_fe; /* store the latest list node dumped */
William Lallemandeceddf72016-12-15 18:06:44 +01001103 }
1104 }
1105 default:
1106 appctx->st2 = STAT_ST_FIN;
1107 return 1;
1108 }
1109}
1110
1111
Willy Tarreau0a739292016-11-22 20:21:23 +01001112/* parse a "show env" CLI request. Returns 0 if it needs to continue, 1 if it
Willy Tarreauf6710f82016-12-16 17:45:44 +01001113 * wants to stop here. It puts the variable to be dumped into cli.p0 if a single
1114 * variable is requested otherwise puts environ there.
Willy Tarreau0a739292016-11-22 20:21:23 +01001115 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001116static int cli_parse_show_env(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau0a739292016-11-22 20:21:23 +01001117{
1118 extern char **environ;
Willy Tarreauf6710f82016-12-16 17:45:44 +01001119 char **var;
Willy Tarreau0a739292016-11-22 20:21:23 +01001120
1121 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1122 return 1;
1123
Willy Tarreauf6710f82016-12-16 17:45:44 +01001124 var = environ;
Willy Tarreau0a739292016-11-22 20:21:23 +01001125
1126 if (*args[2]) {
1127 int len = strlen(args[2]);
1128
Willy Tarreauf6710f82016-12-16 17:45:44 +01001129 for (; *var; var++) {
1130 if (strncmp(*var, args[2], len) == 0 &&
1131 (*var)[len] == '=')
Willy Tarreau0a739292016-11-22 20:21:23 +01001132 break;
1133 }
Willy Tarreauf6710f82016-12-16 17:45:44 +01001134 if (!*var) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001135 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau0a739292016-11-22 20:21:23 +01001136 appctx->ctx.cli.msg = "Variable not found\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001137 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau0a739292016-11-22 20:21:23 +01001138 return 1;
1139 }
1140 appctx->st2 = STAT_ST_END;
1141 }
Willy Tarreauf6710f82016-12-16 17:45:44 +01001142 appctx->ctx.cli.p0 = var;
Willy Tarreau0a739292016-11-22 20:21:23 +01001143 return 0;
1144}
1145
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001146/* parse a "show fd" CLI request. Returns 0 if it needs to continue, 1 if it
1147 * wants to stop here. It puts the FD number into cli.i0 if a specific FD is
1148 * requested and sets st2 to STAT_ST_END, otherwise leaves 0 in i0.
1149 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001150static int cli_parse_show_fd(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001151{
1152 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1153 return 1;
1154
1155 appctx->ctx.cli.i0 = 0;
1156
1157 if (*args[2]) {
1158 appctx->ctx.cli.i0 = atoi(args[2]);
1159 appctx->st2 = STAT_ST_END;
1160 }
1161 return 0;
1162}
1163
Willy Tarreau599852e2016-11-22 20:33:32 +01001164/* parse a "set timeout" CLI request. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001165static int cli_parse_set_timeout(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau599852e2016-11-22 20:33:32 +01001166{
1167 struct stream_interface *si = appctx->owner;
1168 struct stream *s = si_strm(si);
1169
1170 if (strcmp(args[2], "cli") == 0) {
1171 unsigned timeout;
1172 const char *res;
1173
1174 if (!*args[3]) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001175 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau599852e2016-11-22 20:33:32 +01001176 appctx->ctx.cli.msg = "Expects an integer value.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001177 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau599852e2016-11-22 20:33:32 +01001178 return 1;
1179 }
1180
1181 res = parse_time_err(args[3], &timeout, TIME_UNIT_S);
1182 if (res || timeout < 1) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001183 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau599852e2016-11-22 20:33:32 +01001184 appctx->ctx.cli.msg = "Invalid timeout value.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001185 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau599852e2016-11-22 20:33:32 +01001186 return 1;
1187 }
1188
1189 s->req.rto = s->res.wto = 1 + MS_TO_TICKS(timeout*1000);
1190 task_wakeup(s->task, TASK_WOKEN_MSG); // recompute timeouts
1191 return 1;
1192 }
1193 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001194 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau599852e2016-11-22 20:33:32 +01001195 appctx->ctx.cli.msg = "'set timeout' only supports 'cli'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001196 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau599852e2016-11-22 20:33:32 +01001197 return 1;
1198 }
1199}
1200
Willy Tarreau2af99412016-11-23 11:10:59 +01001201/* parse a "set maxconn global" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001202static int cli_parse_set_maxconn_global(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2af99412016-11-23 11:10:59 +01001203{
1204 int v;
1205
1206 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1207 return 1;
1208
1209 if (!*args[3]) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001210 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau2af99412016-11-23 11:10:59 +01001211 appctx->ctx.cli.msg = "Expects an integer value.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001212 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau2af99412016-11-23 11:10:59 +01001213 return 1;
1214 }
1215
1216 v = atoi(args[3]);
1217 if (v > global.hardmaxconn) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001218 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau2af99412016-11-23 11:10:59 +01001219 appctx->ctx.cli.msg = "Value out of range.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001220 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau2af99412016-11-23 11:10:59 +01001221 return 1;
1222 }
1223
1224 /* check for unlimited values */
1225 if (v <= 0)
1226 v = global.hardmaxconn;
1227
1228 global.maxconn = v;
1229
1230 /* Dequeues all of the listeners waiting for a resource */
1231 if (!LIST_ISEMPTY(&global_listener_queue))
1232 dequeue_all_listeners(&global_listener_queue);
1233
1234 return 1;
1235}
1236
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001237static int set_severity_output(int *target, char *argument)
1238{
1239 if (!strcmp(argument, "none")) {
1240 *target = CLI_SEVERITY_NONE;
1241 return 1;
1242 }
1243 else if (!strcmp(argument, "number")) {
1244 *target = CLI_SEVERITY_NUMBER;
1245 return 1;
1246 }
1247 else if (!strcmp(argument, "string")) {
1248 *target = CLI_SEVERITY_STRING;
1249 return 1;
1250 }
1251 return 0;
1252}
1253
1254/* parse a "set severity-output" command. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001255static int cli_parse_set_severity_output(char **args, char *payload, struct appctx *appctx, void *private)
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001256{
1257 if (*args[2] && set_severity_output(&appctx->cli_severity_output, args[2]))
1258 return 0;
1259
1260 appctx->ctx.cli.severity = LOG_ERR;
Aurélien Nephtali6e8a41d2018-03-15 21:48:50 +01001261 appctx->ctx.cli.msg = "one of 'none', 'number', 'string' is a required argument\n";
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001262 appctx->st0 = CLI_ST_PRINT;
1263 return 1;
1264}
William Lallemandeceddf72016-12-15 18:06:44 +01001265
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001266int cli_parse_default(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemandeceddf72016-12-15 18:06:44 +01001267{
1268 return 0;
1269}
1270
Willy Tarreau45c742b2016-11-24 14:51:17 +01001271/* parse a "set rate-limit" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001272static int cli_parse_set_ratelimit(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau45c742b2016-11-24 14:51:17 +01001273{
1274 int v;
1275 int *res;
1276 int mul = 1;
1277
1278 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1279 return 1;
1280
1281 if (strcmp(args[2], "connections") == 0 && strcmp(args[3], "global") == 0)
1282 res = &global.cps_lim;
1283 else if (strcmp(args[2], "sessions") == 0 && strcmp(args[3], "global") == 0)
1284 res = &global.sps_lim;
1285#ifdef USE_OPENSSL
1286 else if (strcmp(args[2], "ssl-sessions") == 0 && strcmp(args[3], "global") == 0)
1287 res = &global.ssl_lim;
1288#endif
1289 else if (strcmp(args[2], "http-compression") == 0 && strcmp(args[3], "global") == 0) {
1290 res = &global.comp_rate_lim;
1291 mul = 1024;
1292 }
1293 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001294 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau45c742b2016-11-24 14:51:17 +01001295 appctx->ctx.cli.msg =
1296 "'set rate-limit' only supports :\n"
1297 " - 'connections global' to set the per-process maximum connection rate\n"
1298 " - 'sessions global' to set the per-process maximum session rate\n"
1299#ifdef USE_OPENSSL
Aurélien Nephtalib53e2082018-03-11 16:55:02 +01001300 " - 'ssl-sessions global' to set the per-process maximum SSL session rate\n"
Willy Tarreau45c742b2016-11-24 14:51:17 +01001301#endif
1302 " - 'http-compression global' to set the per-process maximum compression speed in kB/s\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001303 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau45c742b2016-11-24 14:51:17 +01001304 return 1;
1305 }
1306
1307 if (!*args[4]) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001308 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau45c742b2016-11-24 14:51:17 +01001309 appctx->ctx.cli.msg = "Expects an integer value.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001310 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau45c742b2016-11-24 14:51:17 +01001311 return 1;
1312 }
1313
1314 v = atoi(args[4]);
1315 if (v < 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001316 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau45c742b2016-11-24 14:51:17 +01001317 appctx->ctx.cli.msg = "Value out of range.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001318 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau45c742b2016-11-24 14:51:17 +01001319 return 1;
1320 }
1321
1322 *res = v * mul;
1323
1324 /* Dequeues all of the listeners waiting for a resource */
1325 if (!LIST_ISEMPTY(&global_listener_queue))
1326 dequeue_all_listeners(&global_listener_queue);
1327
1328 return 1;
1329}
1330
William Lallemandf6975e92017-05-26 17:42:10 +02001331/* parse the "expose-fd" argument on the bind lines */
1332static int bind_parse_expose_fd(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1333{
1334 if (!*args[cur_arg + 1]) {
1335 memprintf(err, "'%s' : missing fd type", args[cur_arg]);
1336 return ERR_ALERT | ERR_FATAL;
1337 }
1338 if (!strcmp(args[cur_arg+1], "listeners")) {
1339 conf->level |= ACCESS_FD_LISTENERS;
1340 } else {
1341 memprintf(err, "'%s' only supports 'listeners' (got '%s')",
1342 args[cur_arg], args[cur_arg+1]);
1343 return ERR_ALERT | ERR_FATAL;
1344 }
1345
1346 return 0;
1347}
1348
William Lallemand74c24fb2016-11-21 17:18:36 +01001349/* parse the "level" argument on the bind lines */
1350static int bind_parse_level(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1351{
1352 if (!*args[cur_arg + 1]) {
1353 memprintf(err, "'%s' : missing level", args[cur_arg]);
1354 return ERR_ALERT | ERR_FATAL;
1355 }
1356
William Lallemand07a62f72017-05-24 00:57:40 +02001357 if (!strcmp(args[cur_arg+1], "user")) {
1358 conf->level &= ~ACCESS_LVL_MASK;
1359 conf->level |= ACCESS_LVL_USER;
1360 } else if (!strcmp(args[cur_arg+1], "operator")) {
1361 conf->level &= ~ACCESS_LVL_MASK;
1362 conf->level |= ACCESS_LVL_OPER;
1363 } else if (!strcmp(args[cur_arg+1], "admin")) {
1364 conf->level &= ~ACCESS_LVL_MASK;
1365 conf->level |= ACCESS_LVL_ADMIN;
1366 } else {
William Lallemand74c24fb2016-11-21 17:18:36 +01001367 memprintf(err, "'%s' only supports 'user', 'operator', and 'admin' (got '%s')",
1368 args[cur_arg], args[cur_arg+1]);
1369 return ERR_ALERT | ERR_FATAL;
1370 }
1371
1372 return 0;
1373}
1374
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001375static int bind_parse_severity_output(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1376{
1377 if (!*args[cur_arg + 1]) {
1378 memprintf(err, "'%s' : missing severity format", args[cur_arg]);
1379 return ERR_ALERT | ERR_FATAL;
1380 }
1381
1382 if (set_severity_output(&conf->severity_output, args[cur_arg+1]))
1383 return 0;
1384 else {
1385 memprintf(err, "'%s' only supports 'none', 'number', and 'string' (got '%s')",
1386 args[cur_arg], args[cur_arg+1]);
1387 return ERR_ALERT | ERR_FATAL;
1388 }
1389}
1390
Olivier Houchardf886e342017-04-05 22:24:59 +02001391/* Send all the bound sockets, always returns 1 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001392static int _getsocks(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchardf886e342017-04-05 22:24:59 +02001393{
1394 char *cmsgbuf = NULL;
1395 unsigned char *tmpbuf = NULL;
1396 struct cmsghdr *cmsg;
1397 struct stream_interface *si = appctx->owner;
William Lallemandf6975e92017-05-26 17:42:10 +02001398 struct stream *s = si_strm(si);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001399 struct connection *remote = cs_conn(objt_cs(si_opposite(si)->end));
Olivier Houchardf886e342017-04-05 22:24:59 +02001400 struct msghdr msghdr;
1401 struct iovec iov;
Olivier Houchard54740872017-04-06 14:45:14 +02001402 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Olivier Houchardf886e342017-04-05 22:24:59 +02001403 int *tmpfd;
1404 int tot_fd_nb = 0;
1405 struct proxy *px;
1406 int i = 0;
Willy Tarreauc2b7f802018-09-20 11:22:29 +02001407 int fd = -1;
Olivier Houchardf886e342017-04-05 22:24:59 +02001408 int curoff = 0;
Willy Tarreauc2b7f802018-09-20 11:22:29 +02001409 int old_fcntl = -1;
Olivier Houchardf886e342017-04-05 22:24:59 +02001410 int ret;
1411
Willy Tarreauc2b7f802018-09-20 11:22:29 +02001412 if (!remote) {
1413 ha_warning("Only works on real connections\n");
1414 goto out;
1415 }
1416
1417 fd = remote->handle.fd;
1418
Olivier Houchardf886e342017-04-05 22:24:59 +02001419 /* Temporary set the FD in blocking mode, that will make our life easier */
1420 old_fcntl = fcntl(fd, F_GETFL);
1421 if (old_fcntl < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001422 ha_warning("Couldn't get the flags for the unix socket\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001423 goto out;
1424 }
1425 cmsgbuf = malloc(CMSG_SPACE(sizeof(int) * MAX_SEND_FD));
1426 if (!cmsgbuf) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001427 ha_warning("Failed to allocate memory to send sockets\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001428 goto out;
1429 }
1430 if (fcntl(fd, F_SETFL, old_fcntl &~ O_NONBLOCK) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001431 ha_warning("Cannot make the unix socket blocking\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001432 goto out;
1433 }
Olivier Houchard54740872017-04-06 14:45:14 +02001434 setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf886e342017-04-05 22:24:59 +02001435 iov.iov_base = &tot_fd_nb;
1436 iov.iov_len = sizeof(tot_fd_nb);
William Lallemandf6975e92017-05-26 17:42:10 +02001437 if (!(strm_li(s)->bind_conf->level & ACCESS_FD_LISTENERS))
Olivier Houchardf886e342017-04-05 22:24:59 +02001438 goto out;
1439 memset(&msghdr, 0, sizeof(msghdr));
1440 /*
1441 * First, calculates the total number of FD, so that we can let
1442 * the caller know how much he should expects.
1443 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001444 px = proxies_list;
Olivier Houchardf886e342017-04-05 22:24:59 +02001445 while (px) {
1446 struct listener *l;
1447
1448 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001449 /* Only transfer IPv4/IPv6/UNIX sockets */
1450 if (l->state >= LI_ZOMBIE &&
1451 (l->proto->sock_family == AF_INET ||
Olivier Houchardf886e342017-04-05 22:24:59 +02001452 l->proto->sock_family == AF_INET6 ||
Olivier Houchard1fc05162017-04-06 01:05:05 +02001453 l->proto->sock_family == AF_UNIX))
Olivier Houchardf886e342017-04-05 22:24:59 +02001454 tot_fd_nb++;
1455 }
1456 px = px->next;
1457 }
1458 if (tot_fd_nb == 0)
1459 goto out;
1460
1461 /* First send the total number of file descriptors, so that the
1462 * receiving end knows what to expect.
1463 */
1464 msghdr.msg_iov = &iov;
1465 msghdr.msg_iovlen = 1;
1466 ret = sendmsg(fd, &msghdr, 0);
1467 if (ret != sizeof(tot_fd_nb)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001468 ha_warning("Failed to send the number of sockets to send\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001469 goto out;
1470 }
1471
1472 /* Now send the fds */
1473 msghdr.msg_control = cmsgbuf;
1474 msghdr.msg_controllen = CMSG_SPACE(sizeof(int) * MAX_SEND_FD);
1475 cmsg = CMSG_FIRSTHDR(&msghdr);
1476 cmsg->cmsg_len = CMSG_LEN(MAX_SEND_FD * sizeof(int));
1477 cmsg->cmsg_level = SOL_SOCKET;
1478 cmsg->cmsg_type = SCM_RIGHTS;
1479 tmpfd = (int *)CMSG_DATA(cmsg);
1480
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001481 px = proxies_list;
Olivier Houchardf886e342017-04-05 22:24:59 +02001482 /* For each socket, e message is sent, containing the following :
1483 * Size of the namespace name (or 0 if none), as an unsigned char.
1484 * The namespace name, if any
1485 * Size of the interface name (or 0 if none), as an unsigned char
1486 * The interface name, if any
1487 * Listener options, as an int.
1488 */
1489 /* We will send sockets MAX_SEND_FD per MAX_SEND_FD, allocate a
1490 * buffer big enough to store the socket informations.
1491 */
Olivier Houchardf143b802017-11-04 15:13:01 +01001492 tmpbuf = malloc(MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf886e342017-04-05 22:24:59 +02001493 if (tmpbuf == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001494 ha_warning("Failed to allocate memory to transfer socket informations\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001495 goto out;
1496 }
1497 iov.iov_base = tmpbuf;
1498 while (px) {
1499 struct listener *l;
1500
1501 list_for_each_entry(l, &px->conf.listeners, by_fe) {
1502 int ret;
1503 /* Only transfer IPv4/IPv6 sockets */
Olivier Houchard1fc05162017-04-06 01:05:05 +02001504 if (l->state >= LI_ZOMBIE &&
Olivier Houchardf886e342017-04-05 22:24:59 +02001505 (l->proto->sock_family == AF_INET ||
1506 l->proto->sock_family == AF_INET6 ||
1507 l->proto->sock_family == AF_UNIX)) {
1508 memcpy(&tmpfd[i % MAX_SEND_FD], &l->fd, sizeof(l->fd));
1509 if (!l->netns)
1510 tmpbuf[curoff++] = 0;
1511#ifdef CONFIG_HAP_NS
1512 else {
1513 char *name = l->netns->node.key;
1514 unsigned char len = l->netns->name_len;
1515 tmpbuf[curoff++] = len;
1516 memcpy(tmpbuf + curoff, name, len);
1517 curoff += len;
1518 }
1519#endif
1520 if (l->interface) {
1521 unsigned char len = strlen(l->interface);
1522 tmpbuf[curoff++] = len;
1523 memcpy(tmpbuf + curoff, l->interface, len);
1524 curoff += len;
1525 } else
1526 tmpbuf[curoff++] = 0;
1527 memcpy(tmpbuf + curoff, &l->options,
1528 sizeof(l->options));
1529 curoff += sizeof(l->options);
1530
1531
1532 i++;
1533 } else
1534 continue;
1535 if ((!(i % MAX_SEND_FD))) {
1536 iov.iov_len = curoff;
1537 if (sendmsg(fd, &msghdr, 0) != curoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001538 ha_warning("Failed to transfer sockets\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001539 goto out;
1540 }
1541 /* Wait for an ack */
1542 do {
1543 ret = recv(fd, &tot_fd_nb,
1544 sizeof(tot_fd_nb), 0);
1545 } while (ret == -1 && errno == EINTR);
1546 if (ret <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001547 ha_warning("Unexpected error while transferring sockets\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001548 goto out;
1549 }
1550 curoff = 0;
1551 }
1552
1553 }
1554 px = px->next;
1555 }
1556 if (i % MAX_SEND_FD) {
1557 iov.iov_len = curoff;
1558 cmsg->cmsg_len = CMSG_LEN((i % MAX_SEND_FD) * sizeof(int));
1559 msghdr.msg_controllen = CMSG_SPACE(sizeof(int) * (i % MAX_SEND_FD));
1560 if (sendmsg(fd, &msghdr, 0) != curoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001561 ha_warning("Failed to transfer sockets\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001562 goto out;
1563 }
1564 }
1565
1566out:
Willy Tarreauc2b7f802018-09-20 11:22:29 +02001567 if (fd >= 0 && old_fcntl >= 0 && fcntl(fd, F_SETFL, old_fcntl) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001568 ha_warning("Cannot make the unix socket non-blocking\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001569 goto out;
1570 }
1571 appctx->st0 = CLI_ST_END;
1572 free(cmsgbuf);
1573 free(tmpbuf);
1574 return 1;
1575}
1576
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001577static int cli_parse_simple(char **args, char *payload, struct appctx *appctx, void *private)
1578{
1579 if (*args[0] == 'h')
1580 /* help */
1581 cli_gen_usage_msg(appctx);
1582 else if (*args[0] == 'p')
1583 /* prompt */
1584 appctx->st1 ^= APPCTX_CLI_ST1_PROMPT;
1585 else if (*args[0] == 'q')
1586 /* quit */
1587 appctx->st0 = CLI_ST_END;
1588
1589 return 1;
1590}
Olivier Houchardf886e342017-04-05 22:24:59 +02001591
William Lallemand8a022572018-10-26 14:47:35 +02001592/*
1593 * The mworker functions are used to initialize the CLI in the master process
1594 */
1595
1596/*
1597 * Create the mworker CLI proxy
1598 */
1599int mworker_cli_proxy_create()
1600{
1601 struct mworker_proc *child;
1602
1603 mworker_proxy = calloc(1, sizeof(*mworker_proxy));
1604 if (!mworker_proxy)
1605 return -1;
1606
1607 init_new_proxy(mworker_proxy);
1608 mworker_proxy->next = proxies_list;
1609 proxies_list = mworker_proxy;
1610 mworker_proxy->id = strdup("MASTER");
1611 mworker_proxy->mode = PR_MODE_TCP;
1612 mworker_proxy->state = PR_STNEW;
1613 mworker_proxy->last_change = now.tv_sec;
1614 mworker_proxy->cap = PR_CAP_LISTEN; /* this is a listen section */
1615 mworker_proxy->maxconn = 10; /* default to 10 concurrent connections */
1616 mworker_proxy->timeout.client = 0; /* no timeout */
1617 mworker_proxy->conf.file = strdup("MASTER");
1618 mworker_proxy->conf.line = 0;
1619 mworker_proxy->accept = frontend_accept;
1620 mworker_proxy-> lbprm.algo = BE_LB_ALGO_NONE;
1621
1622 /* Does not init the default target the CLI applet, but must be done in
1623 * the request parsing code */
1624 mworker_proxy->default_target = NULL;
1625
1626 /* the check_config_validity() will get an ID for the proxy */
1627 mworker_proxy->uuid = -1;
1628
1629 proxy_store_name(mworker_proxy);
1630
1631 /* create all servers using the mworker_proc list */
1632 list_for_each_entry(child, &proc_list, list) {
1633 char *msg = NULL;
1634 struct server *newsrv = NULL;
1635 struct sockaddr_storage *sk;
1636 int port1, port2, port;
1637 struct protocol *proto;
1638 char *errmsg;
1639
1640 newsrv = new_server(mworker_proxy);
1641 if (!newsrv)
1642 return -1;
1643
1644 /* we don't know the new pid yet */
1645 if (child->pid == -1)
1646 memprintf(&msg, "cur-%d", child->relative_pid);
1647 else
1648 memprintf(&msg, "old-%d", child->pid);
1649
1650 newsrv->next = mworker_proxy->srv;
1651 mworker_proxy->srv = newsrv;
1652 newsrv->conf.file = strdup(msg);
1653 newsrv->id = strdup(msg);
1654 newsrv->conf.line = 0;
1655
1656 memprintf(&msg, "sockpair@%d", child->ipc_fd[0]);
1657 if ((sk = str2sa_range(msg, &port, &port1, &port2, &errmsg, NULL, NULL, 0)) == 0)
1658 return -1;
1659
1660 proto = protocol_by_family(sk->ss_family);
1661 if (!proto || !proto->connect) {
1662 return -1;
1663 }
1664
1665 /* no port specified */
1666 newsrv->flags |= SRV_F_MAPPORTS;
1667 newsrv->addr = *sk;
1668 newsrv->iweight = 1;
1669 newsrv->uweight = 1;
1670 mworker_proxy->srv_act++;
1671 srv_lb_commit_status(newsrv);
1672 }
1673 return 0;
1674}
Olivier Houchardf886e342017-04-05 22:24:59 +02001675
William Lallemandce83b4a2018-10-26 14:47:30 +02001676/*
William Lallemande7361152018-10-26 14:47:36 +02001677 * Create a new listener for the master CLI proxy
1678 */
1679int mworker_cli_proxy_new_listener(char *line)
1680{
1681 struct bind_conf *bind_conf;
1682 struct listener *l;
1683 char *err = NULL;
1684 char *args[MAX_LINE_ARGS + 1];
1685 int arg;
1686 int cur_arg;
1687
1688 arg = 0;
1689 args[0] = line;
1690
1691 /* args is a bind configuration with spaces replaced by commas */
1692 while (*line && arg < MAX_LINE_ARGS) {
1693
1694 if (*line == ',') {
1695 *line++ = '\0';
1696 while (*line == ',')
1697 line++;
1698 args[++arg] = line;
1699 }
1700 line++;
1701 }
1702
1703 args[++arg] = "\0";
1704
1705 bind_conf = bind_conf_alloc(mworker_proxy, "master-socket", 0, "", xprt_get(XPRT_RAW));
1706
1707 bind_conf->level &= ~ACCESS_LVL_MASK;
1708 bind_conf->level |= ACCESS_LVL_ADMIN;
1709
1710 if (!str2listener(args[0], mworker_proxy, bind_conf, "master-socket", 0, &err)) {
1711 ha_alert("Cannot create the listener of the master CLI\n");
1712 return -1;
1713 }
1714
1715 cur_arg = 1;
1716
1717 while (*args[cur_arg]) {
1718 static int bind_dumped;
1719 struct bind_kw *kw;
1720
1721 kw = bind_find_kw(args[cur_arg]);
1722 if (kw) {
1723 if (!kw->parse) {
1724 memprintf(&err, "'%s %s' : '%s' option is not implemented in this version (check build options).",
1725 args[0], args[1], args[cur_arg]);
1726 goto err;
1727 }
1728
1729 if (kw->parse(args, cur_arg, global.stats_fe, bind_conf, &err) != 0) {
1730 if (err)
1731 memprintf(&err, "'%s %s' : '%s'", args[0], args[1], err);
1732 else
1733 memprintf(&err, "'%s %s' : error encountered while processing '%s'",
1734 args[0], args[1], args[cur_arg]);
1735 goto err;
1736 }
1737
1738 cur_arg += 1 + kw->skip;
1739 continue;
1740 }
1741
1742 if (!bind_dumped) {
1743 bind_dump_kws(&err);
1744 indent_msg(&err, 4);
1745 bind_dumped = 1;
1746 }
1747
1748 memprintf(&err, "'%s %s' : unknown keyword '%s'.%s%s",
1749 args[0], args[1], args[cur_arg],
1750 err ? " Registered keywords :" : "", err ? err : "");
1751 goto err;
1752 }
1753
1754
1755 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
1756 l->maxconn = 10;
1757 l->backlog = 10;
1758 l->accept = session_accept_fd;
1759 l->default_target = mworker_proxy->default_target;
1760 /* don't make the peers subject to global limits and don't close it in the master */
1761 l->options |= (LI_O_UNLIMITED|LI_O_MWORKER); /* we are keeping this FD in the master */
1762 l->nice = -64; /* we want to boost priority for local stats */
1763 global.maxsock += l->maxconn;
1764 }
1765
1766 return 0;
1767
1768err:
1769 ha_alert("%s\n", err);
1770 return -1;
1771
1772}
1773
1774/*
William Lallemandce83b4a2018-10-26 14:47:30 +02001775 * Create a new CLI socket using a socketpair for a worker process
1776 * <mworker_proc> is the process structure, and <proc> is the process number
1777 */
1778int mworker_cli_sockpair_new(struct mworker_proc *mworker_proc, int proc)
1779{
1780 struct bind_conf *bind_conf;
1781 struct listener *l;
1782 char *path = NULL;
1783 char *err = NULL;
1784
1785 /* master pipe to ensure the master is still alive */
1786 if (socketpair(AF_UNIX, SOCK_STREAM, 0, mworker_proc->ipc_fd) < 0) {
1787 ha_alert("Cannot create worker socketpair.\n");
1788 return -1;
1789 }
1790
1791 /* XXX: we might want to use a separate frontend at some point */
1792 if (!global.stats_fe) {
1793 if ((global.stats_fe = alloc_stats_fe("GLOBAL", "master-socket", 0)) == NULL) {
1794 ha_alert("out of memory trying to allocate the stats frontend");
1795 return -1;
1796 }
1797 }
1798
1799 bind_conf = bind_conf_alloc(global.stats_fe, "master-socket", 0, "", xprt_get(XPRT_RAW));
1800 bind_conf->level &= ~ACCESS_LVL_MASK;
1801 bind_conf->level |= ACCESS_LVL_ADMIN; /* TODO: need to lower the rights with a CLI keyword*/
1802
1803 bind_conf->bind_proc = 1UL << proc;
1804 global.stats_fe->bind_proc = 0; /* XXX: we should be careful with that, it can be removed by configuration */
1805
1806 if (!memprintf(&path, "sockpair@%d", mworker_proc->ipc_fd[1])) {
1807 ha_alert("Cannot allocate listener.\n");
1808 return -1;
1809 }
1810
1811 if (!str2listener(path, global.stats_fe, bind_conf, "master-socket", 0, &err)) {
1812 ha_alert("Cannot create a CLI sockpair listener for process #%d\n", proc);
1813 return -1;
1814 }
1815
1816 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
1817 l->maxconn = global.stats_fe->maxconn;
1818 l->backlog = global.stats_fe->backlog;
1819 l->accept = session_accept_fd;
1820 l->default_target = global.stats_fe->default_target;
1821 l->options |= LI_O_UNLIMITED;
1822 /* it's a sockpair but we don't want to keep the fd in the master */
1823 l->options &= ~LI_O_INHERITED;
1824 l->nice = -64; /* we want to boost priority for local stats */
1825 global.maxsock += l->maxconn;
1826 }
1827
1828 return 0;
1829}
1830
William Lallemand74c24fb2016-11-21 17:18:36 +01001831static struct applet cli_applet = {
1832 .obj_type = OBJ_TYPE_APPLET,
1833 .name = "<CLI>", /* used for logging */
1834 .fct = cli_io_handler,
1835 .release = cli_release_handler,
1836};
1837
Willy Tarreau0a739292016-11-22 20:21:23 +01001838/* register cli keywords */
1839static struct cli_kw_list cli_kws = {{ },{
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001840 { { "help", NULL }, NULL, cli_parse_simple, NULL },
1841 { { "prompt", NULL }, NULL, cli_parse_simple, NULL },
1842 { { "quit", NULL }, NULL, cli_parse_simple, NULL },
Willy Tarreau2af99412016-11-23 11:10:59 +01001843 { { "set", "maxconn", "global", NULL }, "set maxconn global : change the per-process maxconn setting", cli_parse_set_maxconn_global, NULL },
Willy Tarreau45c742b2016-11-24 14:51:17 +01001844 { { "set", "rate-limit", NULL }, "set rate-limit : change a rate limiting value", cli_parse_set_ratelimit, NULL },
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001845 { { "set", "severity-output", NULL }, "set severity-output [none|number|string] : set presence of severity level in feedback information", cli_parse_set_severity_output, NULL, NULL },
Willy Tarreau599852e2016-11-22 20:33:32 +01001846 { { "set", "timeout", NULL }, "set timeout : change a timeout setting", cli_parse_set_timeout, NULL, NULL },
Willy Tarreau0a739292016-11-22 20:21:23 +01001847 { { "show", "env", NULL }, "show env [var] : dump environment variables known to the process", cli_parse_show_env, cli_io_handler_show_env, NULL },
William Lallemandeceddf72016-12-15 18:06:44 +01001848 { { "show", "cli", "sockets", NULL }, "show cli sockets : dump list of cli sockets", cli_parse_default, cli_io_handler_show_cli_sock, NULL },
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001849 { { "show", "fd", NULL }, "show fd [num] : dump list of file descriptors in use", cli_parse_show_fd, cli_io_handler_show_fd, NULL },
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001850 { { "show", "activity", NULL }, "show activity : show per-thread activity stats (for support/developers)", cli_parse_default, cli_io_handler_show_activity, NULL },
Olivier Houchardf886e342017-04-05 22:24:59 +02001851 { { "_getsocks", NULL }, NULL, _getsocks, NULL },
Willy Tarreau0a739292016-11-22 20:21:23 +01001852 {{},}
1853}};
1854
William Lallemand74c24fb2016-11-21 17:18:36 +01001855static struct cfg_kw_list cfg_kws = {ILH, {
1856 { CFG_GLOBAL, "stats", stats_parse_global },
1857 { 0, NULL, NULL },
1858}};
1859
1860static struct bind_kw_list bind_kws = { "STAT", { }, {
William Lallemandf6975e92017-05-26 17:42:10 +02001861 { "level", bind_parse_level, 1 }, /* set the unix socket admin level */
1862 { "expose-fd", bind_parse_expose_fd, 1 }, /* set the unix socket expose fd rights */
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001863 { "severity-output", bind_parse_severity_output, 1 }, /* set the severity output format */
William Lallemand74c24fb2016-11-21 17:18:36 +01001864 { NULL, NULL, 0 },
1865}};
1866
1867__attribute__((constructor))
1868static void __dumpstats_module_init(void)
1869{
1870 cfg_register_keywords(&cfg_kws);
Willy Tarreau0a739292016-11-22 20:21:23 +01001871 cli_register_kw(&cli_kws);
William Lallemand74c24fb2016-11-21 17:18:36 +01001872 bind_register_keywords(&bind_kws);
1873}
1874
1875/*
1876 * Local variables:
1877 * c-indent-level: 8
1878 * c-basic-offset: 8
1879 * End:
1880 */