blob: 9fa50779c3ae20cb4349bf0ae7f186ae5620ce78 [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>
Willy Tarreau0108d902018-11-25 19:14:37 +010033#include <common/initcall.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010034#include <common/memory.h>
35#include <common/mini-clist.h>
36#include <common/standard.h>
37#include <common/ticks.h>
38#include <common/time.h>
39#include <common/uri_auth.h>
40#include <common/version.h>
41#include <common/base64.h>
42
43#include <types/applet.h>
William Lallemand9ed62032016-11-21 17:49:11 +010044#include <types/cli.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010045#include <types/global.h>
46#include <types/dns.h>
William Lallemand9ed62032016-11-21 17:49:11 +010047#include <types/stats.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010048
Willy Tarreau609aad92018-11-22 08:31:09 +010049#include <proto/activity.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010050#include <proto/backend.h>
51#include <proto/channel.h>
52#include <proto/checks.h>
53#include <proto/compression.h>
William Lallemand9ed62032016-11-21 17:49:11 +010054#include <proto/stats.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010055#include <proto/fd.h>
56#include <proto/freq_ctr.h>
57#include <proto/frontend.h>
58#include <proto/log.h>
59#include <proto/pattern.h>
60#include <proto/pipe.h>
William Lallemandce83b4a2018-10-26 14:47:30 +020061#include <proto/protocol.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010062#include <proto/listener.h>
63#include <proto/map.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010064#include <proto/proxy.h>
65#include <proto/sample.h>
66#include <proto/session.h>
67#include <proto/stream.h>
68#include <proto/server.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010069#include <proto/stream_interface.h>
70#include <proto/task.h>
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +020071#include <proto/proto_udp.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010072
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +020073#define PAYLOAD_PATTERN "<<"
74
William Lallemand74c24fb2016-11-21 17:18:36 +010075static struct applet cli_applet;
76
77static const char stats_sock_usage_msg[] =
78 "Unknown command. Please enter one of the following commands only :\n"
William Lallemand74c24fb2016-11-21 17:18:36 +010079 " help : this message\n"
80 " prompt : toggle interactive mode with prompt\n"
81 " quit : disconnect\n"
William Lallemand74c24fb2016-11-21 17:18:36 +010082 "";
83
84static const char stats_permission_denied_msg[] =
85 "Permission denied\n"
86 "";
87
88
Christopher Faulet1bc04c72017-10-29 20:14:08 +010089static THREAD_LOCAL char *dynamic_usage_msg = NULL;
William Lallemand74c24fb2016-11-21 17:18:36 +010090
91/* List head of cli keywords */
92static struct cli_kw_list cli_keywords = {
93 .list = LIST_HEAD_INIT(cli_keywords.list)
94};
95
96extern const char *stat_status_codes[];
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{
Willy Tarreaude57a572016-11-23 17:01:39 +0100384
William Lallemandf630d012018-12-13 09:05:44 +0100385 if ((appctx->cli_level & ACCESS_LVL_MASK) < level) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +0200386 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreaude57a572016-11-23 17:01:39 +0100387 appctx->ctx.cli.msg = stats_permission_denied_msg;
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100388 appctx->st0 = CLI_ST_PRINT;
Willy Tarreaude57a572016-11-23 17:01:39 +0100389 return 0;
390 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100391 return 1;
392}
393
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200394/* Returns severity_output for the current session if set, or default for the socket */
395static int cli_get_severity_output(struct appctx *appctx)
396{
397 if (appctx->cli_severity_output)
398 return appctx->cli_severity_output;
399 return strm_li(si_strm(appctx->owner))->bind_conf->severity_output;
400}
William Lallemand74c24fb2016-11-21 17:18:36 +0100401
Willy Tarreau41908562016-11-24 16:23:38 +0100402/* Processes the CLI interpreter on the stats socket. This function is called
403 * from the CLI's IO handler running in an appctx context. The function returns 1
404 * if the request was understood, otherwise zero. It is called with appctx->st0
405 * set to CLI_ST_GETREQ and presets ->st2 to 0 so that parsers don't have to do
406 * it. It will possilbly leave st0 to CLI_ST_CALLBACK if the keyword needs to
407 * have its own I/O handler called again. Most of the time, parsers will only
408 * set st0 to CLI_ST_PRINT and put their message to be displayed into cli.msg.
Willy Tarreaueaffde32016-12-16 17:59:25 +0100409 * If a keyword parser is NULL and an I/O handler is declared, the I/O handler
410 * will automatically be used.
William Lallemand74c24fb2016-11-21 17:18:36 +0100411 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200412static int cli_parse_request(struct appctx *appctx)
William Lallemand74c24fb2016-11-21 17:18:36 +0100413{
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200414 char *args[MAX_STATS_ARGS + 1], *p, *end, *payload = NULL;
415 int i = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100416 struct cli_kw *kw;
William Lallemand74c24fb2016-11-21 17:18:36 +0100417
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200418 appctx->st2 = 0;
419 memset(&appctx->ctx.cli, 0, sizeof(appctx->ctx.cli));
William Lallemand74c24fb2016-11-21 17:18:36 +0100420
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200421 p = appctx->chunk->area;
422 end = p + appctx->chunk->data;
William Lallemand74c24fb2016-11-21 17:18:36 +0100423
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200424 /*
425 * Get the payload start if there is one.
426 * For the sake of simplicity, the payload pattern is looked up
427 * everywhere from the start of the input but it can only be found
428 * at the end of the first line if APPCTX_CLI_ST1_PAYLOAD is set.
429 *
430 * The input string was zero terminated so it is safe to use
431 * the str*() functions throughout the parsing
432 */
433 if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) {
434 payload = strstr(p, PAYLOAD_PATTERN);
435 end = payload;
436 /* skip the pattern */
437 payload += strlen(PAYLOAD_PATTERN);
438 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100439
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200440 /*
441 * Get pointers on words.
442 * One extra slot is reserved to store a pointer on a null byte.
443 */
444 while (i < MAX_STATS_ARGS && p < end) {
445 int j, k;
William Lallemand74c24fb2016-11-21 17:18:36 +0100446
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200447 /* skip leading spaces/tabs */
448 p += strspn(p, " \t");
449 if (!*p)
450 break;
William Lallemand74c24fb2016-11-21 17:18:36 +0100451
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200452 args[i] = p;
453 p += strcspn(p, " \t");
454 *p++ = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100455
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200456 /* unescape backslashes (\) */
457 for (j = 0, k = 0; args[i][k]; k++) {
458 if (args[i][k] == '\\') {
459 if (args[i][k + 1] == '\\')
460 k++;
Dragan Dosena1c35ab2016-11-24 11:33:12 +0100461 else
462 continue;
463 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200464 args[i][j] = args[i][k];
William Lallemand74c24fb2016-11-21 17:18:36 +0100465 j++;
466 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200467 args[i][j] = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100468
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200469 i++;
470 }
471 /* fill unused slots */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200472 p = appctx->chunk->area + appctx->chunk->data;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200473 for (; i < MAX_STATS_ARGS + 1; i++)
474 args[i] = p;
Willy Tarreau41908562016-11-24 16:23:38 +0100475
476 kw = cli_find_kw(args);
Willy Tarreaueaffde32016-12-16 17:59:25 +0100477 if (!kw)
Willy Tarreau41908562016-11-24 16:23:38 +0100478 return 0;
479
William Lallemand14721be2018-10-26 14:47:37 +0200480 /* in a worker or normal process, don't display master only commands */
481 if (master == 0 && (kw->level & ACCESS_MASTER_ONLY))
482 return 0;
483
484 /* in master don't displays if we don't have the master bits */
485 if (master == 1 && !(kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)))
486 return 0;
487
Willy Tarreau41908562016-11-24 16:23:38 +0100488 appctx->io_handler = kw->io_handler;
Emeric Brund6871f72017-06-29 19:54:13 +0200489 appctx->io_release = kw->io_release;
490 /* kw->parse could set its own io_handler or ip_release handler */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200491 if ((!kw->parse || kw->parse(args, payload, appctx, kw->private) == 0) && appctx->io_handler) {
Willy Tarreau41908562016-11-24 16:23:38 +0100492 appctx->st0 = CLI_ST_CALLBACK;
William Lallemand74c24fb2016-11-21 17:18:36 +0100493 }
Willy Tarreau41908562016-11-24 16:23:38 +0100494 return 1;
William Lallemand74c24fb2016-11-21 17:18:36 +0100495}
496
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200497/* prepends then outputs the argument msg with a syslog-type severity depending on severity_output value */
498static int cli_output_msg(struct channel *chn, const char *msg, int severity, int severity_output)
499{
Willy Tarreau83061a82018-07-13 11:56:34 +0200500 struct buffer *tmp;
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200501
502 if (likely(severity_output == CLI_SEVERITY_NONE))
Willy Tarreau06d80a92017-10-19 14:32:15 +0200503 return ci_putblk(chn, msg, strlen(msg));
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200504
505 tmp = get_trash_chunk();
506 chunk_reset(tmp);
507
508 if (severity < 0 || severity > 7) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100509 ha_warning("socket command feedback with invalid severity %d", severity);
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200510 chunk_printf(tmp, "[%d]: ", severity);
511 }
512 else {
513 switch (severity_output) {
514 case CLI_SEVERITY_NUMBER:
515 chunk_printf(tmp, "[%d]: ", severity);
516 break;
517 case CLI_SEVERITY_STRING:
518 chunk_printf(tmp, "[%s]: ", log_levels[severity]);
519 break;
520 default:
Christopher Faulet767a84b2017-11-24 16:50:31 +0100521 ha_warning("Unrecognized severity output %d", severity_output);
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200522 }
523 }
524 chunk_appendf(tmp, "%s", msg);
525
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200526 return ci_putblk(chn, tmp->area, strlen(tmp->area));
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200527}
528
William Lallemand74c24fb2016-11-21 17:18:36 +0100529/* This I/O handler runs as an applet embedded in a stream interface. It is
530 * used to processes I/O from/to the stats unix socket. The system relies on a
531 * state machine handling requests and various responses. We read a request,
532 * then we process it and send the response, and we possibly display a prompt.
533 * Then we can read again. The state is stored in appctx->st0 and is one of the
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100534 * CLI_ST_* constants. appctx->st1 is used to indicate whether prompt is enabled
William Lallemand74c24fb2016-11-21 17:18:36 +0100535 * or not.
536 */
537static void cli_io_handler(struct appctx *appctx)
538{
539 struct stream_interface *si = appctx->owner;
540 struct channel *req = si_oc(si);
541 struct channel *res = si_ic(si);
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200542 struct bind_conf *bind_conf = strm_li(si_strm(si))->bind_conf;
William Lallemand74c24fb2016-11-21 17:18:36 +0100543 int reql;
544 int len;
545
546 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
547 goto out;
548
Joseph Herlant008b3ce2018-11-25 12:51:45 -0800549 /* Check if the input buffer is available. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200550 if (res->buf.size == 0) {
Willy Tarreau4b962a42018-11-15 11:03:21 +0100551 /* buf.size==0 means we failed to get a buffer and were
552 * already subscribed to a wait list to get a buffer.
553 */
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100554 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 Lallemandf630d012018-12-13 09:05:44 +0100564 appctx->cli_level = bind_conf->level;
William Lallemand74c24fb2016-11-21 17:18:36 +0100565 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100566 else if (appctx->st0 == CLI_ST_END) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100567 /* Let's close for real now. We just close the request
568 * side, the conditions below will complete if needed.
569 */
570 si_shutw(si);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200571 free_trash_chunk(appctx->chunk);
William Lallemand74c24fb2016-11-21 17:18:36 +0100572 break;
573 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100574 else if (appctx->st0 == CLI_ST_GETREQ) {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200575 char *str;
576
577 /* use a trash chunk to store received data */
578 if (!appctx->chunk) {
579 appctx->chunk = alloc_trash_chunk();
580 if (!appctx->chunk) {
581 appctx->st0 = CLI_ST_END;
582 continue;
583 }
584 }
585
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200586 str = appctx->chunk->area + appctx->chunk->data;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200587
William Lallemand74c24fb2016-11-21 17:18:36 +0100588 /* ensure we have some output room left in the event we
589 * would want to return some info right after parsing.
590 */
591 if (buffer_almost_full(si_ib(si))) {
Willy Tarreaudb398432018-11-15 11:08:52 +0100592 si_rx_room_blk(si);
William Lallemand74c24fb2016-11-21 17:18:36 +0100593 break;
594 }
595
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200596 /* '- 1' is to ensure a null byte can always be inserted at the end */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200597 reql = co_getline(si_oc(si), str,
598 appctx->chunk->size - appctx->chunk->data - 1);
William Lallemand74c24fb2016-11-21 17:18:36 +0100599 if (reql <= 0) { /* closed or EOL not found */
600 if (reql == 0)
601 break;
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100602 appctx->st0 = CLI_ST_END;
William Lallemand74c24fb2016-11-21 17:18:36 +0100603 continue;
604 }
605
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200606 if (!(appctx->st1 & APPCTX_CLI_ST1_PAYLOAD)) {
607 /* seek for a possible unescaped semi-colon. If we find
608 * one, we replace it with an LF and skip only this part.
609 */
610 for (len = 0; len < reql; len++) {
611 if (str[len] == '\\') {
612 len++;
613 continue;
614 }
615 if (str[len] == ';') {
616 str[len] = '\n';
617 reql = len + 1;
618 break;
619 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100620 }
621 }
622
623 /* now it is time to check that we have a full line,
624 * remove the trailing \n and possibly \r, then cut the
625 * line.
626 */
627 len = reql - 1;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200628 if (str[len] != '\n') {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100629 appctx->st0 = CLI_ST_END;
William Lallemand74c24fb2016-11-21 17:18:36 +0100630 continue;
631 }
632
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200633 if (len && str[len-1] == '\r')
William Lallemand74c24fb2016-11-21 17:18:36 +0100634 len--;
635
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200636 str[len] = '\0';
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200637 appctx->chunk->data += len;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200638
639 if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200640 appctx->chunk->area[appctx->chunk->data] = '\n';
641 appctx->chunk->area[appctx->chunk->data + 1] = 0;
642 appctx->chunk->data++;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200643 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100644
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100645 appctx->st0 = CLI_ST_PROMPT;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200646
647 if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) {
648 /* empty line */
649 if (!len) {
650 /* remove the last two \n */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200651 appctx->chunk->data -= 2;
652 appctx->chunk->area[appctx->chunk->data] = 0;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200653
654 if (!cli_parse_request(appctx))
655 cli_gen_usage_msg(appctx);
656
657 chunk_reset(appctx->chunk);
658 /* NB: cli_sock_parse_request() may have put
659 * another CLI_ST_O_* into appctx->st0.
660 */
661
662 appctx->st1 &= ~APPCTX_CLI_ST1_PAYLOAD;
William Lallemand74c24fb2016-11-21 17:18:36 +0100663 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100664 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200665 else {
666 /*
667 * Look for the "payload start" pattern at the end of a line
668 * Its location is not remembered here, this is just to switch
669 * to a gathering mode.
William Lallemand74c24fb2016-11-21 17:18:36 +0100670 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200671 if (!strcmp(appctx->chunk->area + appctx->chunk->data - strlen(PAYLOAD_PATTERN), PAYLOAD_PATTERN))
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200672 appctx->st1 |= APPCTX_CLI_ST1_PAYLOAD;
Andjelko Iharosc3680ec2017-07-20 16:49:14 +0200673 else {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200674 /* no payload, the command is complete: parse the request */
675 if (!cli_parse_request(appctx))
676 cli_gen_usage_msg(appctx);
677
678 chunk_reset(appctx->chunk);
Andjelko Iharosc3680ec2017-07-20 16:49:14 +0200679 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100680 }
681
682 /* re-adjust req buffer */
Willy Tarreau06d80a92017-10-19 14:32:15 +0200683 co_skip(si_oc(si), reql);
William Lallemand74c24fb2016-11-21 17:18:36 +0100684 req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
685 }
686 else { /* output functions */
687 switch (appctx->st0) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100688 case CLI_ST_PROMPT:
William Lallemand74c24fb2016-11-21 17:18:36 +0100689 break;
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100690 case CLI_ST_PRINT:
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200691 if (cli_output_msg(res, appctx->ctx.cli.msg, appctx->ctx.cli.severity,
692 cli_get_severity_output(appctx)) != -1)
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100693 appctx->st0 = CLI_ST_PROMPT;
William Lallemand74c24fb2016-11-21 17:18:36 +0100694 else
Willy Tarreaudb398432018-11-15 11:08:52 +0100695 si_rx_room_blk(si);
William Lallemand74c24fb2016-11-21 17:18:36 +0100696 break;
Aurélien Nephtalic511b7c2018-04-16 18:50:19 +0200697 case CLI_ST_PRINT_FREE: {
698 const char *msg = appctx->ctx.cli.err;
699
700 if (!msg)
701 msg = "Out of memory.\n";
702
703 if (cli_output_msg(res, msg, LOG_ERR, cli_get_severity_output(appctx)) != -1) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100704 free(appctx->ctx.cli.err);
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100705 appctx->st0 = CLI_ST_PROMPT;
William Lallemand74c24fb2016-11-21 17:18:36 +0100706 }
707 else
Willy Tarreaudb398432018-11-15 11:08:52 +0100708 si_rx_room_blk(si);
William Lallemand74c24fb2016-11-21 17:18:36 +0100709 break;
Aurélien Nephtalic511b7c2018-04-16 18:50:19 +0200710 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100711 case CLI_ST_CALLBACK: /* use custom pointer */
William Lallemand74c24fb2016-11-21 17:18:36 +0100712 if (appctx->io_handler)
713 if (appctx->io_handler(appctx)) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100714 appctx->st0 = CLI_ST_PROMPT;
William Lallemand74c24fb2016-11-21 17:18:36 +0100715 if (appctx->io_release) {
716 appctx->io_release(appctx);
717 appctx->io_release = NULL;
718 }
719 }
720 break;
721 default: /* abnormal state */
722 si->flags |= SI_FL_ERR;
723 break;
724 }
725
726 /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100727 if (appctx->st0 == CLI_ST_PROMPT) {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200728 const char *prompt = "";
729
730 if (appctx->st1 & APPCTX_CLI_ST1_PROMPT) {
731 /*
732 * when entering a payload with interactive mode, change the prompt
733 * to emphasize that more data can still be sent
734 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200735 if (appctx->chunk->data && appctx->st1 & APPCTX_CLI_ST1_PAYLOAD)
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200736 prompt = "+ ";
737 else
738 prompt = "\n> ";
739 }
740 else {
741 if (!(appctx->st1 & APPCTX_CLI_ST1_PAYLOAD))
742 prompt = "\n";
743 }
744
745 if (ci_putstr(si_ic(si), prompt) != -1)
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100746 appctx->st0 = CLI_ST_GETREQ;
William Lallemand74c24fb2016-11-21 17:18:36 +0100747 else
Willy Tarreaudb398432018-11-15 11:08:52 +0100748 si_rx_room_blk(si);
William Lallemand74c24fb2016-11-21 17:18:36 +0100749 }
750
751 /* If the output functions are still there, it means they require more room. */
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100752 if (appctx->st0 >= CLI_ST_OUTPUT)
William Lallemand74c24fb2016-11-21 17:18:36 +0100753 break;
754
755 /* Now we close the output if one of the writers did so,
756 * or if we're not in interactive mode and the request
757 * buffer is empty. This still allows pipelined requests
758 * to be sent in non-interactive mode.
759 */
William Lallemand3de09d52018-12-11 16:10:56 +0100760 if (((res->flags & (CF_SHUTW|CF_SHUTW_NOW))) ||
761 (!(appctx->st1 & APPCTX_CLI_ST1_PROMPT) && !co_data(req) && (!(appctx->st1 & APPCTX_CLI_ST1_PAYLOAD)))) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100762 appctx->st0 = CLI_ST_END;
William Lallemand74c24fb2016-11-21 17:18:36 +0100763 continue;
764 }
765
766 /* switch state back to GETREQ to read next requests */
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100767 appctx->st0 = CLI_ST_GETREQ;
William Lallemand74c24fb2016-11-21 17:18:36 +0100768 }
769 }
770
771 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST)) {
772 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
773 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
774 /* Other side has closed, let's abort if we have no more processing to do
775 * and nothing more to consume. This is comparable to a broken pipe, so
776 * we forward the close to the request side so that it flows upstream to
777 * the client.
778 */
779 si_shutw(si);
780 }
781
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100782 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST) && (appctx->st0 < CLI_ST_OUTPUT)) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100783 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
784 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
785 /* We have no more processing to do, and nothing more to send, and
786 * the client side has closed. So we'll forward this state downstream
787 * on the response buffer.
788 */
789 si_shutr(si);
790 res->flags |= CF_READ_NULL;
791 }
792
793 out:
Christopher Faulet45073512018-07-20 10:16:29 +0200794 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 +0100795 __FUNCTION__, __LINE__,
Christopher Faulet45073512018-07-20 10:16:29 +0200796 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 +0100797}
798
William Lallemand74c24fb2016-11-21 17:18:36 +0100799/* This is called when the stream interface is closed. For instance, upon an
800 * external abort, we won't call the i/o handler anymore so we may need to
801 * remove back references to the stream currently being dumped.
802 */
803static void cli_release_handler(struct appctx *appctx)
804{
805 if (appctx->io_release) {
806 appctx->io_release(appctx);
807 appctx->io_release = NULL;
808 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100809 else if (appctx->st0 == CLI_ST_PRINT_FREE) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100810 free(appctx->ctx.cli.err);
811 appctx->ctx.cli.err = NULL;
812 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100813}
814
815/* This function dumps all environmnent variables to the buffer. It returns 0
816 * if the output buffer is full and it needs to be called again, otherwise
Willy Tarreauf6710f82016-12-16 17:45:44 +0100817 * non-zero. Dumps only one entry if st2 == STAT_ST_END. It uses cli.p0 as the
818 * pointer to the current variable.
William Lallemand74c24fb2016-11-21 17:18:36 +0100819 */
Willy Tarreau0a739292016-11-22 20:21:23 +0100820static int cli_io_handler_show_env(struct appctx *appctx)
William Lallemand74c24fb2016-11-21 17:18:36 +0100821{
Willy Tarreau0a739292016-11-22 20:21:23 +0100822 struct stream_interface *si = appctx->owner;
Willy Tarreauf6710f82016-12-16 17:45:44 +0100823 char **var = appctx->ctx.cli.p0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100824
825 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
826 return 1;
827
828 chunk_reset(&trash);
829
830 /* we have two inner loops here, one for the proxy, the other one for
831 * the buffer.
832 */
Willy Tarreauf6710f82016-12-16 17:45:44 +0100833 while (*var) {
834 chunk_printf(&trash, "%s\n", *var);
William Lallemand74c24fb2016-11-21 17:18:36 +0100835
Willy Tarreau06d80a92017-10-19 14:32:15 +0200836 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +0100837 si_rx_room_blk(si);
William Lallemand74c24fb2016-11-21 17:18:36 +0100838 return 0;
839 }
840 if (appctx->st2 == STAT_ST_END)
841 break;
Willy Tarreauf6710f82016-12-16 17:45:44 +0100842 var++;
843 appctx->ctx.cli.p0 = var;
William Lallemand74c24fb2016-11-21 17:18:36 +0100844 }
845
846 /* dump complete */
847 return 1;
848}
849
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200850/* This function dumps all file descriptors states (or the requested one) to
851 * the buffer. It returns 0 if the output buffer is full and it needs to be
852 * called again, otherwise non-zero. Dumps only one entry if st2 == STAT_ST_END.
853 * It uses cli.i0 as the fd number to restart from.
854 */
855static int cli_io_handler_show_fd(struct appctx *appctx)
856{
857 struct stream_interface *si = appctx->owner;
858 int fd = appctx->ctx.cli.i0;
859
860 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
861 return 1;
862
863 chunk_reset(&trash);
864
865 /* we have two inner loops here, one for the proxy, the other one for
866 * the buffer.
867 */
Aurélien Nephtali498a1152018-03-09 18:51:16 +0100868 while (fd >= 0 && fd < global.maxsock) {
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200869 struct fdtab fdt;
Willy Tarreau286ec682017-08-09 16:35:44 +0200870 struct listener *li = NULL;
871 struct server *sv = NULL;
872 struct proxy *px = NULL;
Willy Tarreaua833cd92018-03-29 13:19:37 +0200873 const struct mux_ops *mux = NULL;
Willy Tarreau35b1b482018-03-28 18:41:30 +0200874 void *ctx = NULL;
Willy Tarreau286ec682017-08-09 16:35:44 +0200875 uint32_t conn_flags = 0;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200876
Willy Tarreaubf9fd652018-08-02 11:05:48 +0200877 thread_isolate();
878
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200879 fdt = fdtab[fd];
880
Willy Tarreaubf9fd652018-08-02 11:05:48 +0200881 if (!fdt.owner) {
882 thread_release();
Willy Tarreau017af242017-10-04 20:24:54 +0200883 goto skip; // closed
Willy Tarreaubf9fd652018-08-02 11:05:48 +0200884 }
Willy Tarreau017af242017-10-04 20:24:54 +0200885
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200886 if (fdt.iocb == conn_fd_handler) {
887 conn_flags = ((struct connection *)fdt.owner)->flags;
Willy Tarreau35b1b482018-03-28 18:41:30 +0200888 mux = ((struct connection *)fdt.owner)->mux;
889 ctx = ((struct connection *)fdt.owner)->mux_ctx;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200890 li = objt_listener(((struct connection *)fdt.owner)->target);
891 sv = objt_server(((struct connection *)fdt.owner)->target);
892 px = objt_proxy(((struct connection *)fdt.owner)->target);
893 }
894 else if (fdt.iocb == listener_accept)
895 li = fdt.owner;
896
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200897 chunk_printf(&trash,
Willy Tarreauc754b342018-03-30 15:00:15 +0200898 " %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 +0200899 fd,
900 fdt.state,
901 (fdt.state & FD_EV_POLLED_R) ? 'P' : 'p',
902 (fdt.state & FD_EV_READY_R) ? 'R' : 'r',
903 (fdt.state & FD_EV_ACTIVE_R) ? 'A' : 'a',
904 (fdt.state & FD_EV_POLLED_W) ? 'P' : 'p',
905 (fdt.state & FD_EV_READY_W) ? 'R' : 'r',
906 (fdt.state & FD_EV_ACTIVE_W) ? 'A' : 'a',
907 fdt.ev,
908 (fdt.ev & FD_POLL_HUP) ? 'H' : 'h',
909 (fdt.ev & FD_POLL_ERR) ? 'E' : 'e',
910 (fdt.ev & FD_POLL_OUT) ? 'O' : 'o',
911 (fdt.ev & FD_POLL_PRI) ? 'P' : 'p',
912 (fdt.ev & FD_POLL_IN) ? 'I' : 'i',
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200913 fdt.linger_risk ? 'L' : 'l',
914 fdt.cloned ? 'C' : 'c',
Willy Tarreauc754b342018-03-30 15:00:15 +0200915 fdt.cache.next,
916 fdt.cache.prev,
917 fdt.thread_mask, fdt.update_mask,
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200918 fdt.owner,
919 fdt.iocb,
920 (fdt.iocb == conn_fd_handler) ? "conn_fd_handler" :
921 (fdt.iocb == dgram_fd_handler) ? "dgram_fd_handler" :
922 (fdt.iocb == listener_accept) ? "listener_accept" :
Olivier Houchard79321b92018-07-26 17:55:11 +0200923 (fdt.iocb == poller_pipe_io_handler) ? "poller_pipe_io_handler" :
William Lallemanddb6bdfb2018-11-20 17:36:51 +0100924 (fdt.iocb == mworker_accept_wrapper) ? "mworker_accept_wrapper" :
Willy Tarreauc754b342018-03-30 15:00:15 +0200925 "unknown");
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200926
927 if (fdt.iocb == conn_fd_handler) {
928 chunk_appendf(&trash, " cflg=0x%08x", conn_flags);
929 if (px)
930 chunk_appendf(&trash, " px=%s", px->id);
931 else if (sv)
932 chunk_appendf(&trash, " sv=%s/%s", sv->id, sv->proxy->id);
933 else if (li)
934 chunk_appendf(&trash, " fe=%s", li->bind_conf->frontend->id);
Willy Tarreau35b1b482018-03-28 18:41:30 +0200935
Willy Tarreaub011d8f2018-03-30 14:41:19 +0200936 if (mux) {
Willy Tarreau35b1b482018-03-28 18:41:30 +0200937 chunk_appendf(&trash, " mux=%s mux_ctx=%p", mux->name, ctx);
Willy Tarreaub011d8f2018-03-30 14:41:19 +0200938 if (mux->show_fd)
939 mux->show_fd(&trash, fdt.owner);
940 }
Willy Tarreau35b1b482018-03-28 18:41:30 +0200941 else
942 chunk_appendf(&trash, " nomux");
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200943 }
944 else if (fdt.iocb == listener_accept) {
945 chunk_appendf(&trash, " l.st=%s fe=%s",
946 listener_state_str(li),
947 li->bind_conf->frontend->id);
948 }
949
Willy Tarreaubf9fd652018-08-02 11:05:48 +0200950 thread_release();
951
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200952 chunk_appendf(&trash, "\n");
953
Willy Tarreau06d80a92017-10-19 14:32:15 +0200954 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +0100955 si_rx_room_blk(si);
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +0200956 return 0;
957 }
958 skip:
959 if (appctx->st2 == STAT_ST_END)
960 break;
961
962 fd++;
963 appctx->ctx.cli.i0 = fd;
964 }
965
966 /* dump complete */
967 return 1;
968}
969
Willy Tarreaud80cb4e2018-01-20 19:30:13 +0100970/* This function dumps some activity counters used by developers and support to
971 * rule out some hypothesis during bug reports. It returns 0 if the output
972 * buffer is full and it needs to be called again, otherwise non-zero. It dumps
973 * everything at once in the buffer and is not designed to do it in multiple
974 * passes.
975 */
976static int cli_io_handler_show_activity(struct appctx *appctx)
977{
978 struct stream_interface *si = appctx->owner;
979 int thr;
980
981 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
982 return 1;
983
984 chunk_reset(&trash);
985
986 chunk_appendf(&trash, "thread_id: %u", tid);
987 chunk_appendf(&trash, "\ndate_now: %lu.%06lu", (long)now.tv_sec, (long)now.tv_usec);
988 chunk_appendf(&trash, "\nloops:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].loops);
989 chunk_appendf(&trash, "\nwake_cache:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].wake_cache);
990 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 +0100991 chunk_appendf(&trash, "\nwake_signal:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].wake_signal);
992 chunk_appendf(&trash, "\npoll_exp:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].poll_exp);
993 chunk_appendf(&trash, "\npoll_drop:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].poll_drop);
994 chunk_appendf(&trash, "\npoll_dead:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].poll_dead);
995 chunk_appendf(&trash, "\npoll_skip:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].poll_skip);
996 chunk_appendf(&trash, "\nfd_skip:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].fd_skip);
997 chunk_appendf(&trash, "\nfd_lock:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].fd_lock);
998 chunk_appendf(&trash, "\nfd_del:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].fd_del);
999 chunk_appendf(&trash, "\nconn_dead:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].conn_dead);
1000 chunk_appendf(&trash, "\nstream:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].stream);
1001 chunk_appendf(&trash, "\nempty_rq:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].empty_rq);
1002 chunk_appendf(&trash, "\nlong_rq:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].long_rq);
Willy Tarreau4f93e0c2018-11-22 16:13:17 +01001003 chunk_appendf(&trash, "\ncpust_ms_tot:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", activity[thr].cpust_total/2);
1004 chunk_appendf(&trash, "\ncpust_ms_1s:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", read_freq_ctr(&activity[thr].cpust_1s)/2);
1005 chunk_appendf(&trash, "\ncpust_ms_15s:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", read_freq_ctr_period(&activity[thr].cpust_15s, 15000)/2);
Willy Tarreaubaba82f2018-11-22 08:42:42 +01001006 chunk_appendf(&trash, "\navg_loop_us:"); for (thr = 0; thr < global.nbthread; thr++) chunk_appendf(&trash, " %u", swrate_avg(activity[thr].avg_loop_us, TIME_STATS_SAMPLES));
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001007
1008 chunk_appendf(&trash, "\n");
1009
1010 if (ci_putchk(si_ic(si), &trash) == -1) {
1011 chunk_reset(&trash);
1012 chunk_printf(&trash, "[output too large, cannot dump]\n");
Willy Tarreaudb398432018-11-15 11:08:52 +01001013 si_rx_room_blk(si);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001014 }
1015
1016 /* dump complete */
1017 return 1;
1018}
1019
William Lallemandeceddf72016-12-15 18:06:44 +01001020/*
Willy Tarreau3af9d832016-12-16 12:58:09 +01001021 * CLI IO handler for `show cli sockets`.
1022 * Uses ctx.cli.p0 to store the restart pointer.
William Lallemandeceddf72016-12-15 18:06:44 +01001023 */
1024static int cli_io_handler_show_cli_sock(struct appctx *appctx)
1025{
1026 struct bind_conf *bind_conf;
1027 struct stream_interface *si = appctx->owner;
1028
1029 chunk_reset(&trash);
1030
1031 switch (appctx->st2) {
1032 case STAT_ST_INIT:
1033 chunk_printf(&trash, "# socket lvl processes\n");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001034 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001035 si_rx_room_blk(si);
William Lallemandeceddf72016-12-15 18:06:44 +01001036 return 0;
1037 }
William Lallemandeceddf72016-12-15 18:06:44 +01001038 appctx->st2 = STAT_ST_LIST;
1039
1040 case STAT_ST_LIST:
1041 if (global.stats_fe) {
1042 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
1043 struct listener *l;
1044
1045 /*
Willy Tarreau3af9d832016-12-16 12:58:09 +01001046 * get the latest dumped node in appctx->ctx.cli.p0
William Lallemandeceddf72016-12-15 18:06:44 +01001047 * if the current node is the first of the list
1048 */
1049
Willy Tarreau3af9d832016-12-16 12:58:09 +01001050 if (appctx->ctx.cli.p0 &&
1051 &bind_conf->by_fe == (&global.stats_fe->conf.bind)->n) {
William Lallemandeceddf72016-12-15 18:06:44 +01001052 /* change the current node to the latest dumped and continue the loop */
Willy Tarreau3af9d832016-12-16 12:58:09 +01001053 bind_conf = LIST_ELEM(appctx->ctx.cli.p0, typeof(bind_conf), by_fe);
William Lallemandeceddf72016-12-15 18:06:44 +01001054 continue;
1055 }
1056
1057 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
1058
1059 char addr[46];
1060 char port[6];
1061
1062 if (l->addr.ss_family == AF_UNIX) {
1063 const struct sockaddr_un *un;
1064
1065 un = (struct sockaddr_un *)&l->addr;
1066 chunk_appendf(&trash, "%s ", un->sun_path);
1067 } else if (l->addr.ss_family == AF_INET) {
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 if (l->addr.ss_family == AF_INET6) {
1072 addr_to_str(&l->addr, addr, sizeof(addr));
1073 port_to_str(&l->addr, port, sizeof(port));
1074 chunk_appendf(&trash, "[%s]:%s ", addr, port);
William Lallemand26314342018-10-26 14:47:41 +02001075 } else if (l->addr.ss_family == AF_CUST_SOCKPAIR) {
1076 chunk_appendf(&trash, "sockpair@%d ", ((struct sockaddr_in *)&l->addr)->sin_addr.s_addr);
William Lallemandeceddf72016-12-15 18:06:44 +01001077 } else
William Lallemand26314342018-10-26 14:47:41 +02001078 chunk_appendf(&trash, "unknown ");
William Lallemandeceddf72016-12-15 18:06:44 +01001079
William Lallemand07a62f72017-05-24 00:57:40 +02001080 if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_ADMIN)
William Lallemandeceddf72016-12-15 18:06:44 +01001081 chunk_appendf(&trash, "admin ");
William Lallemand07a62f72017-05-24 00:57:40 +02001082 else if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_OPER)
1083 chunk_appendf(&trash, "operator ");
1084 else if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_USER)
1085 chunk_appendf(&trash, "user ");
William Lallemandeceddf72016-12-15 18:06:44 +01001086 else
1087 chunk_appendf(&trash, " ");
1088
1089 if (bind_conf->bind_proc != 0) {
1090 int pos;
Willy Tarreau20c5e522016-12-16 12:50:55 +01001091 for (pos = 0; pos < 8 * sizeof(bind_conf->bind_proc); pos++) {
Willy Tarreau4305ac72016-12-16 12:56:31 +01001092 if (bind_conf->bind_proc & (1UL << pos)) {
William Lallemandeceddf72016-12-15 18:06:44 +01001093 chunk_appendf(&trash, "%d,", pos+1);
1094 }
1095 }
1096 /* replace the latest comma by a newline */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001097 trash.area[trash.data-1] = '\n';
William Lallemandeceddf72016-12-15 18:06:44 +01001098
1099 } else {
1100 chunk_appendf(&trash, "all\n");
1101 }
1102
Willy Tarreau06d80a92017-10-19 14:32:15 +02001103 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001104 si_rx_room_blk(si);
William Lallemandeceddf72016-12-15 18:06:44 +01001105 return 0;
1106 }
1107 }
Willy Tarreau3af9d832016-12-16 12:58:09 +01001108 appctx->ctx.cli.p0 = &bind_conf->by_fe; /* store the latest list node dumped */
William Lallemandeceddf72016-12-15 18:06:44 +01001109 }
1110 }
1111 default:
1112 appctx->st2 = STAT_ST_FIN;
1113 return 1;
1114 }
1115}
1116
1117
Willy Tarreau0a739292016-11-22 20:21:23 +01001118/* parse a "show env" CLI request. Returns 0 if it needs to continue, 1 if it
Willy Tarreauf6710f82016-12-16 17:45:44 +01001119 * wants to stop here. It puts the variable to be dumped into cli.p0 if a single
1120 * variable is requested otherwise puts environ there.
Willy Tarreau0a739292016-11-22 20:21:23 +01001121 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001122static int cli_parse_show_env(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau0a739292016-11-22 20:21:23 +01001123{
1124 extern char **environ;
Willy Tarreauf6710f82016-12-16 17:45:44 +01001125 char **var;
Willy Tarreau0a739292016-11-22 20:21:23 +01001126
1127 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1128 return 1;
1129
Willy Tarreauf6710f82016-12-16 17:45:44 +01001130 var = environ;
Willy Tarreau0a739292016-11-22 20:21:23 +01001131
1132 if (*args[2]) {
1133 int len = strlen(args[2]);
1134
Willy Tarreauf6710f82016-12-16 17:45:44 +01001135 for (; *var; var++) {
1136 if (strncmp(*var, args[2], len) == 0 &&
1137 (*var)[len] == '=')
Willy Tarreau0a739292016-11-22 20:21:23 +01001138 break;
1139 }
Willy Tarreauf6710f82016-12-16 17:45:44 +01001140 if (!*var) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001141 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau0a739292016-11-22 20:21:23 +01001142 appctx->ctx.cli.msg = "Variable not found\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001143 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau0a739292016-11-22 20:21:23 +01001144 return 1;
1145 }
1146 appctx->st2 = STAT_ST_END;
1147 }
Willy Tarreauf6710f82016-12-16 17:45:44 +01001148 appctx->ctx.cli.p0 = var;
Willy Tarreau0a739292016-11-22 20:21:23 +01001149 return 0;
1150}
1151
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001152/* parse a "show fd" CLI request. Returns 0 if it needs to continue, 1 if it
1153 * wants to stop here. It puts the FD number into cli.i0 if a specific FD is
1154 * requested and sets st2 to STAT_ST_END, otherwise leaves 0 in i0.
1155 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001156static int cli_parse_show_fd(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001157{
1158 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1159 return 1;
1160
1161 appctx->ctx.cli.i0 = 0;
1162
1163 if (*args[2]) {
1164 appctx->ctx.cli.i0 = atoi(args[2]);
1165 appctx->st2 = STAT_ST_END;
1166 }
1167 return 0;
1168}
1169
Willy Tarreau599852e2016-11-22 20:33:32 +01001170/* parse a "set timeout" CLI request. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001171static int cli_parse_set_timeout(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau599852e2016-11-22 20:33:32 +01001172{
1173 struct stream_interface *si = appctx->owner;
1174 struct stream *s = si_strm(si);
1175
1176 if (strcmp(args[2], "cli") == 0) {
1177 unsigned timeout;
1178 const char *res;
1179
1180 if (!*args[3]) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001181 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau599852e2016-11-22 20:33:32 +01001182 appctx->ctx.cli.msg = "Expects an integer value.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001183 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau599852e2016-11-22 20:33:32 +01001184 return 1;
1185 }
1186
1187 res = parse_time_err(args[3], &timeout, TIME_UNIT_S);
1188 if (res || timeout < 1) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001189 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau599852e2016-11-22 20:33:32 +01001190 appctx->ctx.cli.msg = "Invalid timeout value.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001191 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau599852e2016-11-22 20:33:32 +01001192 return 1;
1193 }
1194
1195 s->req.rto = s->res.wto = 1 + MS_TO_TICKS(timeout*1000);
1196 task_wakeup(s->task, TASK_WOKEN_MSG); // recompute timeouts
1197 return 1;
1198 }
1199 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001200 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau599852e2016-11-22 20:33:32 +01001201 appctx->ctx.cli.msg = "'set timeout' only supports 'cli'.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001202 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau599852e2016-11-22 20:33:32 +01001203 return 1;
1204 }
1205}
1206
Willy Tarreau2af99412016-11-23 11:10:59 +01001207/* parse a "set maxconn global" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001208static int cli_parse_set_maxconn_global(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2af99412016-11-23 11:10:59 +01001209{
1210 int v;
1211
1212 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1213 return 1;
1214
1215 if (!*args[3]) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001216 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau2af99412016-11-23 11:10:59 +01001217 appctx->ctx.cli.msg = "Expects an integer value.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001218 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau2af99412016-11-23 11:10:59 +01001219 return 1;
1220 }
1221
1222 v = atoi(args[3]);
1223 if (v > global.hardmaxconn) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001224 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau2af99412016-11-23 11:10:59 +01001225 appctx->ctx.cli.msg = "Value out of range.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001226 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau2af99412016-11-23 11:10:59 +01001227 return 1;
1228 }
1229
1230 /* check for unlimited values */
1231 if (v <= 0)
1232 v = global.hardmaxconn;
1233
1234 global.maxconn = v;
1235
1236 /* Dequeues all of the listeners waiting for a resource */
1237 if (!LIST_ISEMPTY(&global_listener_queue))
1238 dequeue_all_listeners(&global_listener_queue);
1239
1240 return 1;
1241}
1242
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001243static int set_severity_output(int *target, char *argument)
1244{
1245 if (!strcmp(argument, "none")) {
1246 *target = CLI_SEVERITY_NONE;
1247 return 1;
1248 }
1249 else if (!strcmp(argument, "number")) {
1250 *target = CLI_SEVERITY_NUMBER;
1251 return 1;
1252 }
1253 else if (!strcmp(argument, "string")) {
1254 *target = CLI_SEVERITY_STRING;
1255 return 1;
1256 }
1257 return 0;
1258}
1259
1260/* parse a "set severity-output" command. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001261static int cli_parse_set_severity_output(char **args, char *payload, struct appctx *appctx, void *private)
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001262{
1263 if (*args[2] && set_severity_output(&appctx->cli_severity_output, args[2]))
1264 return 0;
1265
1266 appctx->ctx.cli.severity = LOG_ERR;
Aurélien Nephtali6e8a41d2018-03-15 21:48:50 +01001267 appctx->ctx.cli.msg = "one of 'none', 'number', 'string' is a required argument\n";
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001268 appctx->st0 = CLI_ST_PRINT;
1269 return 1;
1270}
William Lallemandeceddf72016-12-15 18:06:44 +01001271
William Lallemand67a234f2018-12-13 09:05:45 +01001272
1273/* show the level of the current CLI session */
1274static int cli_parse_show_lvl(char **args, char *payload, struct appctx *appctx, void *private)
1275{
1276
1277 appctx->ctx.cli.severity = LOG_INFO;
1278 if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_ADMIN)
1279 appctx->ctx.cli.msg = "admin\n";
1280 else if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_OPER)
1281 appctx->ctx.cli.msg = "operator\n";
1282 else if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_USER)
1283 appctx->ctx.cli.msg = "user\n";
1284 else
1285 appctx->ctx.cli.msg = "unknown\n";
1286
1287 appctx->st0 = CLI_ST_PRINT;
1288 return 1;
1289
1290}
1291
1292/* parse and set the CLI level dynamically */
1293static int cli_parse_set_lvl(char **args, char *payload, struct appctx *appctx, void *private)
1294{
1295 if (!strcmp(args[0], "operator")) {
1296 if (!cli_has_level(appctx, ACCESS_LVL_OPER)) {
1297 return 1;
1298 }
1299 appctx->cli_level &= ~ACCESS_LVL_MASK;
1300 appctx->cli_level |= ACCESS_LVL_OPER;
1301
1302 } else if (!strcmp(args[0], "user")) {
1303 if (!cli_has_level(appctx, ACCESS_LVL_USER)) {
1304 return 1;
1305 }
1306 appctx->cli_level &= ~ACCESS_LVL_MASK;
1307 appctx->cli_level |= ACCESS_LVL_USER;
1308 }
1309 return 1;
1310}
1311
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001312int cli_parse_default(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemandeceddf72016-12-15 18:06:44 +01001313{
1314 return 0;
1315}
1316
Willy Tarreau45c742b2016-11-24 14:51:17 +01001317/* parse a "set rate-limit" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001318static int cli_parse_set_ratelimit(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau45c742b2016-11-24 14:51:17 +01001319{
1320 int v;
1321 int *res;
1322 int mul = 1;
1323
1324 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1325 return 1;
1326
1327 if (strcmp(args[2], "connections") == 0 && strcmp(args[3], "global") == 0)
1328 res = &global.cps_lim;
1329 else if (strcmp(args[2], "sessions") == 0 && strcmp(args[3], "global") == 0)
1330 res = &global.sps_lim;
1331#ifdef USE_OPENSSL
1332 else if (strcmp(args[2], "ssl-sessions") == 0 && strcmp(args[3], "global") == 0)
1333 res = &global.ssl_lim;
1334#endif
1335 else if (strcmp(args[2], "http-compression") == 0 && strcmp(args[3], "global") == 0) {
1336 res = &global.comp_rate_lim;
1337 mul = 1024;
1338 }
1339 else {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001340 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau45c742b2016-11-24 14:51:17 +01001341 appctx->ctx.cli.msg =
1342 "'set rate-limit' only supports :\n"
1343 " - 'connections global' to set the per-process maximum connection rate\n"
1344 " - 'sessions global' to set the per-process maximum session rate\n"
1345#ifdef USE_OPENSSL
Aurélien Nephtalib53e2082018-03-11 16:55:02 +01001346 " - 'ssl-sessions global' to set the per-process maximum SSL session rate\n"
Willy Tarreau45c742b2016-11-24 14:51:17 +01001347#endif
1348 " - 'http-compression global' to set the per-process maximum compression speed in kB/s\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001349 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau45c742b2016-11-24 14:51:17 +01001350 return 1;
1351 }
1352
1353 if (!*args[4]) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001354 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau45c742b2016-11-24 14:51:17 +01001355 appctx->ctx.cli.msg = "Expects an integer value.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001356 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau45c742b2016-11-24 14:51:17 +01001357 return 1;
1358 }
1359
1360 v = atoi(args[4]);
1361 if (v < 0) {
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001362 appctx->ctx.cli.severity = LOG_ERR;
Willy Tarreau45c742b2016-11-24 14:51:17 +01001363 appctx->ctx.cli.msg = "Value out of range.\n";
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001364 appctx->st0 = CLI_ST_PRINT;
Willy Tarreau45c742b2016-11-24 14:51:17 +01001365 return 1;
1366 }
1367
1368 *res = v * mul;
1369
1370 /* Dequeues all of the listeners waiting for a resource */
1371 if (!LIST_ISEMPTY(&global_listener_queue))
1372 dequeue_all_listeners(&global_listener_queue);
1373
1374 return 1;
1375}
1376
William Lallemandf6975e92017-05-26 17:42:10 +02001377/* parse the "expose-fd" argument on the bind lines */
1378static int bind_parse_expose_fd(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1379{
1380 if (!*args[cur_arg + 1]) {
1381 memprintf(err, "'%s' : missing fd type", args[cur_arg]);
1382 return ERR_ALERT | ERR_FATAL;
1383 }
1384 if (!strcmp(args[cur_arg+1], "listeners")) {
1385 conf->level |= ACCESS_FD_LISTENERS;
1386 } else {
1387 memprintf(err, "'%s' only supports 'listeners' (got '%s')",
1388 args[cur_arg], args[cur_arg+1]);
1389 return ERR_ALERT | ERR_FATAL;
1390 }
1391
1392 return 0;
1393}
1394
William Lallemand74c24fb2016-11-21 17:18:36 +01001395/* parse the "level" argument on the bind lines */
1396static int bind_parse_level(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1397{
1398 if (!*args[cur_arg + 1]) {
1399 memprintf(err, "'%s' : missing level", args[cur_arg]);
1400 return ERR_ALERT | ERR_FATAL;
1401 }
1402
William Lallemand07a62f72017-05-24 00:57:40 +02001403 if (!strcmp(args[cur_arg+1], "user")) {
1404 conf->level &= ~ACCESS_LVL_MASK;
1405 conf->level |= ACCESS_LVL_USER;
1406 } else if (!strcmp(args[cur_arg+1], "operator")) {
1407 conf->level &= ~ACCESS_LVL_MASK;
1408 conf->level |= ACCESS_LVL_OPER;
1409 } else if (!strcmp(args[cur_arg+1], "admin")) {
1410 conf->level &= ~ACCESS_LVL_MASK;
1411 conf->level |= ACCESS_LVL_ADMIN;
1412 } else {
William Lallemand74c24fb2016-11-21 17:18:36 +01001413 memprintf(err, "'%s' only supports 'user', 'operator', and 'admin' (got '%s')",
1414 args[cur_arg], args[cur_arg+1]);
1415 return ERR_ALERT | ERR_FATAL;
1416 }
1417
1418 return 0;
1419}
1420
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001421static int bind_parse_severity_output(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1422{
1423 if (!*args[cur_arg + 1]) {
1424 memprintf(err, "'%s' : missing severity format", args[cur_arg]);
1425 return ERR_ALERT | ERR_FATAL;
1426 }
1427
1428 if (set_severity_output(&conf->severity_output, args[cur_arg+1]))
1429 return 0;
1430 else {
1431 memprintf(err, "'%s' only supports 'none', 'number', and 'string' (got '%s')",
1432 args[cur_arg], args[cur_arg+1]);
1433 return ERR_ALERT | ERR_FATAL;
1434 }
1435}
1436
William Lallemandb9f9e3b2018-10-26 14:47:39 +02001437
1438 /* Displays workers and processes */
1439static int cli_io_handler_show_proc(struct appctx *appctx)
1440{
1441 struct stream_interface *si = appctx->owner;
1442 struct mworker_proc *child;
William Lallemande09cdc62018-11-19 18:46:16 +01001443 int old = 0;
William Lallemand16dd1b32018-11-19 18:46:18 +01001444 int up = now.tv_sec - proc_self->timestamp;
William Lallemandb9f9e3b2018-10-26 14:47:39 +02001445
1446 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
1447 return 1;
1448
1449 chunk_reset(&trash);
1450
William Lallemande3683302018-11-19 18:46:17 +01001451 chunk_printf(&trash, "#%-14s %-15s %-15s %-15s %s\n", "<PID>", "<type>", "<relative PID>", "<reloads>", "<uptime>");
William Lallemand16dd1b32018-11-19 18:46:18 +01001452 chunk_appendf(&trash, "%-15u %-15s %-15u %-15d %dd %02dh%02dm%02ds\n", getpid(), "master", 0, proc_self->reloads, up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60));
William Lallemandb9f9e3b2018-10-26 14:47:39 +02001453
William Lallemande09cdc62018-11-19 18:46:16 +01001454 /* displays current processes */
William Lallemandb9f9e3b2018-10-26 14:47:39 +02001455
William Lallemande09cdc62018-11-19 18:46:16 +01001456 chunk_appendf(&trash, "# workers\n");
William Lallemandb9f9e3b2018-10-26 14:47:39 +02001457 list_for_each_entry(child, &proc_list, list) {
William Lallemand16dd1b32018-11-19 18:46:18 +01001458 up = now.tv_sec - child->timestamp;
1459
1460 if (child->type != 'w')
1461 continue;
William Lallemande09cdc62018-11-19 18:46:16 +01001462
1463 if (child->reloads > 0) {
1464 old++;
1465 continue;
1466 }
William Lallemande3683302018-11-19 18:46:17 +01001467 chunk_appendf(&trash, "%-15u %-15s %-15u %-15d %dd %02dh%02dm%02ds\n", child->pid, "worker", child->relative_pid, child->reloads, up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60));
William Lallemand256bf0d2018-12-12 13:45:57 +01001468 }
William Lallemande09cdc62018-11-19 18:46:16 +01001469
1470 /* displays old processes */
1471
1472 if (old) {
William Lallemand256bf0d2018-12-12 13:45:57 +01001473 char *msg = NULL;
1474
William Lallemande09cdc62018-11-19 18:46:16 +01001475 chunk_appendf(&trash, "# old workers\n");
1476 list_for_each_entry(child, &proc_list, list) {
William Lallemand16dd1b32018-11-19 18:46:18 +01001477 up = now.tv_sec - child->timestamp;
1478
1479 if (child->type != 'w')
1480 continue;
1481
William Lallemand256bf0d2018-12-12 13:45:57 +01001482 if (child->reloads > 0) {
1483 memprintf(&msg, "[was: %u]", child->relative_pid);
1484 chunk_appendf(&trash, "%-15u %-15s %-15s %-15d %dd %02dh%02dm%02ds\n", child->pid, "worker", msg, child->reloads, up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60));
1485 }
William Lallemande09cdc62018-11-19 18:46:16 +01001486 }
William Lallemand256bf0d2018-12-12 13:45:57 +01001487 free(msg);
William Lallemandb9f9e3b2018-10-26 14:47:39 +02001488 }
1489
1490 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001491 si_rx_room_blk(si);
William Lallemandb9f9e3b2018-10-26 14:47:39 +02001492 return 0;
1493 }
1494
1495 /* dump complete */
1496 return 1;
1497}
1498
Olivier Houchardf886e342017-04-05 22:24:59 +02001499/* Send all the bound sockets, always returns 1 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001500static int _getsocks(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchardf886e342017-04-05 22:24:59 +02001501{
1502 char *cmsgbuf = NULL;
1503 unsigned char *tmpbuf = NULL;
1504 struct cmsghdr *cmsg;
1505 struct stream_interface *si = appctx->owner;
William Lallemandf6975e92017-05-26 17:42:10 +02001506 struct stream *s = si_strm(si);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001507 struct connection *remote = cs_conn(objt_cs(si_opposite(si)->end));
Olivier Houchardf886e342017-04-05 22:24:59 +02001508 struct msghdr msghdr;
1509 struct iovec iov;
Olivier Houchard54740872017-04-06 14:45:14 +02001510 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Olivier Houchardf886e342017-04-05 22:24:59 +02001511 int *tmpfd;
1512 int tot_fd_nb = 0;
1513 struct proxy *px;
1514 int i = 0;
Willy Tarreauc2b7f802018-09-20 11:22:29 +02001515 int fd = -1;
Olivier Houchardf886e342017-04-05 22:24:59 +02001516 int curoff = 0;
Willy Tarreauc2b7f802018-09-20 11:22:29 +02001517 int old_fcntl = -1;
Olivier Houchardf886e342017-04-05 22:24:59 +02001518 int ret;
1519
Willy Tarreauc2b7f802018-09-20 11:22:29 +02001520 if (!remote) {
1521 ha_warning("Only works on real connections\n");
1522 goto out;
1523 }
1524
1525 fd = remote->handle.fd;
1526
Olivier Houchardf886e342017-04-05 22:24:59 +02001527 /* Temporary set the FD in blocking mode, that will make our life easier */
1528 old_fcntl = fcntl(fd, F_GETFL);
1529 if (old_fcntl < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001530 ha_warning("Couldn't get the flags for the unix socket\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001531 goto out;
1532 }
1533 cmsgbuf = malloc(CMSG_SPACE(sizeof(int) * MAX_SEND_FD));
1534 if (!cmsgbuf) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001535 ha_warning("Failed to allocate memory to send sockets\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001536 goto out;
1537 }
1538 if (fcntl(fd, F_SETFL, old_fcntl &~ O_NONBLOCK) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001539 ha_warning("Cannot make the unix socket blocking\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001540 goto out;
1541 }
Olivier Houchard54740872017-04-06 14:45:14 +02001542 setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf886e342017-04-05 22:24:59 +02001543 iov.iov_base = &tot_fd_nb;
1544 iov.iov_len = sizeof(tot_fd_nb);
William Lallemandf6975e92017-05-26 17:42:10 +02001545 if (!(strm_li(s)->bind_conf->level & ACCESS_FD_LISTENERS))
Olivier Houchardf886e342017-04-05 22:24:59 +02001546 goto out;
1547 memset(&msghdr, 0, sizeof(msghdr));
1548 /*
1549 * First, calculates the total number of FD, so that we can let
1550 * the caller know how much he should expects.
1551 */
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001552 px = proxies_list;
Olivier Houchardf886e342017-04-05 22:24:59 +02001553 while (px) {
1554 struct listener *l;
1555
1556 list_for_each_entry(l, &px->conf.listeners, by_fe) {
Olivier Houchard1fc05162017-04-06 01:05:05 +02001557 /* Only transfer IPv4/IPv6/UNIX sockets */
1558 if (l->state >= LI_ZOMBIE &&
1559 (l->proto->sock_family == AF_INET ||
Olivier Houchardf886e342017-04-05 22:24:59 +02001560 l->proto->sock_family == AF_INET6 ||
Olivier Houchard1fc05162017-04-06 01:05:05 +02001561 l->proto->sock_family == AF_UNIX))
Olivier Houchardf886e342017-04-05 22:24:59 +02001562 tot_fd_nb++;
1563 }
1564 px = px->next;
1565 }
1566 if (tot_fd_nb == 0)
1567 goto out;
1568
1569 /* First send the total number of file descriptors, so that the
1570 * receiving end knows what to expect.
1571 */
1572 msghdr.msg_iov = &iov;
1573 msghdr.msg_iovlen = 1;
1574 ret = sendmsg(fd, &msghdr, 0);
1575 if (ret != sizeof(tot_fd_nb)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001576 ha_warning("Failed to send the number of sockets to send\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001577 goto out;
1578 }
1579
1580 /* Now send the fds */
1581 msghdr.msg_control = cmsgbuf;
1582 msghdr.msg_controllen = CMSG_SPACE(sizeof(int) * MAX_SEND_FD);
1583 cmsg = CMSG_FIRSTHDR(&msghdr);
1584 cmsg->cmsg_len = CMSG_LEN(MAX_SEND_FD * sizeof(int));
1585 cmsg->cmsg_level = SOL_SOCKET;
1586 cmsg->cmsg_type = SCM_RIGHTS;
1587 tmpfd = (int *)CMSG_DATA(cmsg);
1588
Olivier Houchardfbc74e82017-11-24 16:54:05 +01001589 px = proxies_list;
Olivier Houchardf886e342017-04-05 22:24:59 +02001590 /* For each socket, e message is sent, containing the following :
1591 * Size of the namespace name (or 0 if none), as an unsigned char.
1592 * The namespace name, if any
1593 * Size of the interface name (or 0 if none), as an unsigned char
1594 * The interface name, if any
1595 * Listener options, as an int.
1596 */
1597 /* We will send sockets MAX_SEND_FD per MAX_SEND_FD, allocate a
1598 * buffer big enough to store the socket informations.
1599 */
Olivier Houchardf143b802017-11-04 15:13:01 +01001600 tmpbuf = malloc(MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf886e342017-04-05 22:24:59 +02001601 if (tmpbuf == NULL) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001602 ha_warning("Failed to allocate memory to transfer socket informations\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001603 goto out;
1604 }
1605 iov.iov_base = tmpbuf;
1606 while (px) {
1607 struct listener *l;
1608
1609 list_for_each_entry(l, &px->conf.listeners, by_fe) {
1610 int ret;
1611 /* Only transfer IPv4/IPv6 sockets */
Olivier Houchard1fc05162017-04-06 01:05:05 +02001612 if (l->state >= LI_ZOMBIE &&
Olivier Houchardf886e342017-04-05 22:24:59 +02001613 (l->proto->sock_family == AF_INET ||
1614 l->proto->sock_family == AF_INET6 ||
1615 l->proto->sock_family == AF_UNIX)) {
1616 memcpy(&tmpfd[i % MAX_SEND_FD], &l->fd, sizeof(l->fd));
1617 if (!l->netns)
1618 tmpbuf[curoff++] = 0;
1619#ifdef CONFIG_HAP_NS
1620 else {
1621 char *name = l->netns->node.key;
1622 unsigned char len = l->netns->name_len;
1623 tmpbuf[curoff++] = len;
1624 memcpy(tmpbuf + curoff, name, len);
1625 curoff += len;
1626 }
1627#endif
1628 if (l->interface) {
1629 unsigned char len = strlen(l->interface);
1630 tmpbuf[curoff++] = len;
1631 memcpy(tmpbuf + curoff, l->interface, len);
1632 curoff += len;
1633 } else
1634 tmpbuf[curoff++] = 0;
1635 memcpy(tmpbuf + curoff, &l->options,
1636 sizeof(l->options));
1637 curoff += sizeof(l->options);
1638
1639
1640 i++;
1641 } else
1642 continue;
1643 if ((!(i % MAX_SEND_FD))) {
1644 iov.iov_len = curoff;
1645 if (sendmsg(fd, &msghdr, 0) != curoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001646 ha_warning("Failed to transfer sockets\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001647 goto out;
1648 }
1649 /* Wait for an ack */
1650 do {
1651 ret = recv(fd, &tot_fd_nb,
1652 sizeof(tot_fd_nb), 0);
1653 } while (ret == -1 && errno == EINTR);
1654 if (ret <= 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001655 ha_warning("Unexpected error while transferring sockets\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001656 goto out;
1657 }
1658 curoff = 0;
1659 }
1660
1661 }
1662 px = px->next;
1663 }
1664 if (i % MAX_SEND_FD) {
1665 iov.iov_len = curoff;
1666 cmsg->cmsg_len = CMSG_LEN((i % MAX_SEND_FD) * sizeof(int));
1667 msghdr.msg_controllen = CMSG_SPACE(sizeof(int) * (i % MAX_SEND_FD));
1668 if (sendmsg(fd, &msghdr, 0) != curoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001669 ha_warning("Failed to transfer sockets\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001670 goto out;
1671 }
1672 }
1673
1674out:
Willy Tarreauc2b7f802018-09-20 11:22:29 +02001675 if (fd >= 0 && old_fcntl >= 0 && fcntl(fd, F_SETFL, old_fcntl) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001676 ha_warning("Cannot make the unix socket non-blocking\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001677 goto out;
1678 }
1679 appctx->st0 = CLI_ST_END;
1680 free(cmsgbuf);
1681 free(tmpbuf);
1682 return 1;
1683}
1684
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001685static int cli_parse_simple(char **args, char *payload, struct appctx *appctx, void *private)
1686{
1687 if (*args[0] == 'h')
1688 /* help */
1689 cli_gen_usage_msg(appctx);
1690 else if (*args[0] == 'p')
1691 /* prompt */
1692 appctx->st1 ^= APPCTX_CLI_ST1_PROMPT;
1693 else if (*args[0] == 'q')
1694 /* quit */
1695 appctx->st0 = CLI_ST_END;
1696
1697 return 1;
1698}
Olivier Houchardf886e342017-04-05 22:24:59 +02001699
William Lallemand2f4ce202018-10-26 14:47:47 +02001700void pcli_write_prompt(struct stream *s)
1701{
1702 struct buffer *msg = get_trash_chunk();
1703 struct channel *oc = si_oc(&s->si[0]);
1704
William Lallemand459e18e2018-12-11 16:10:58 +01001705 if (!(s->pcli_flags & APPCTX_CLI_ST1_PROMPT))
William Lallemand5b80fa22018-12-11 16:10:54 +01001706 return;
1707
William Lallemandebf61802018-12-11 16:10:57 +01001708 if (s->pcli_flags & APPCTX_CLI_ST1_PAYLOAD) {
1709 chunk_appendf(msg, "+ ");
1710 } else {
1711 if (s->pcli_next_pid == 0)
1712 chunk_appendf(msg, "master> ");
1713 else
1714 chunk_appendf(msg, "%d> ", s->pcli_next_pid);
1715 }
William Lallemand2f4ce202018-10-26 14:47:47 +02001716 co_inject(oc, msg->area, msg->data);
1717}
1718
William Lallemand291810d2018-10-26 14:47:38 +02001719
William Lallemandcf62f7e2018-10-26 14:47:40 +02001720/* The pcli_* functions are used for the CLI proxy in the master */
1721
William Lallemanddeeaa592018-10-26 14:47:48 +02001722void pcli_reply_and_close(struct stream *s, const char *msg)
1723{
1724 struct buffer *buf = get_trash_chunk();
1725
1726 chunk_initstr(buf, msg);
1727 stream_int_retnclose(&s->si[0], buf);
1728}
1729
William Lallemand291810d2018-10-26 14:47:38 +02001730static enum obj_type *pcli_pid_to_server(int proc_pid)
1731{
1732 struct mworker_proc *child;
1733
William Lallemandbddd33a2018-12-11 16:10:53 +01001734 /* return the CLI applet of the master */
1735 if (proc_pid == 0)
1736 return &cli_applet.obj_type;
1737
William Lallemand291810d2018-10-26 14:47:38 +02001738 list_for_each_entry(child, &proc_list, list) {
1739 if (child->pid == proc_pid){
1740 return &child->srv->obj_type;
1741 }
1742 }
1743 return NULL;
1744}
1745
1746/* Take a CLI prefix in argument (eg: @!1234 @master @1)
1747 * Return:
1748 * 0: master
1749 * > 0: pid of a worker
1750 * < 0: didn't find a worker
1751 */
1752static int pcli_prefix_to_pid(const char *prefix)
1753{
1754 int proc_pid;
1755 struct mworker_proc *child;
1756 char *errtol = NULL;
1757
1758 if (*prefix != '@') /* not a prefix, should not happen */
1759 return -1;
1760
1761 prefix++;
1762 if (!*prefix) /* sent @ alone, return the master */
1763 return 0;
1764
1765 if (strcmp("master", prefix) == 0) {
1766 return 0;
1767 } else if (*prefix == '!') {
1768 prefix++;
1769 if (!*prefix)
1770 return -1;
1771
1772 proc_pid = strtol(prefix, &errtol, 10);
1773 if (*errtol != '\0')
1774 return -1;
1775 list_for_each_entry(child, &proc_list, list) {
William Lallemand16dd1b32018-11-19 18:46:18 +01001776 if (child->type != 'w')
1777 continue;
William Lallemand291810d2018-10-26 14:47:38 +02001778 if (child->pid == proc_pid){
1779 return child->pid;
1780 }
1781 }
1782 } else {
1783 struct mworker_proc *chosen = NULL;
1784 /* this is a relative pid */
1785
1786 proc_pid = strtol(prefix, &errtol, 10);
1787 if (*errtol != '\0')
1788 return -1;
1789
1790 if (proc_pid == 0) /* return the master */
1791 return 0;
1792
1793 /* chose the right process, the current one is the one with the
1794 least number of reloads */
1795 list_for_each_entry(child, &proc_list, list) {
William Lallemand16dd1b32018-11-19 18:46:18 +01001796 if (child->type != 'w')
1797 continue;
William Lallemand291810d2018-10-26 14:47:38 +02001798 if (child->relative_pid == proc_pid){
1799 if (child->reloads == 0)
1800 return child->pid;
1801 else if (chosen == NULL || child->reloads < chosen->reloads)
1802 chosen = child;
1803 }
1804 }
1805 if (chosen)
1806 return chosen->pid;
1807 }
1808 return -1;
1809}
1810
William Lallemandbddd33a2018-12-11 16:10:53 +01001811/* Return::
1812 * >= 0 : number of words to escape
1813 * = -1 : error
1814 */
1815
1816int pcli_find_and_exec_kw(struct stream *s, char **args, int argl, char **errmsg, int *next_pid)
1817{
1818 if (argl < 1)
1819 return 0;
1820
1821 /* there is a prefix */
1822 if (args[0][0] == '@') {
1823 int target_pid = pcli_prefix_to_pid(args[0]);
1824
1825 if (target_pid == -1) {
1826 memprintf(errmsg, "Can't find the target PID matching the prefix '%s'\n", args[0]);
1827 return -1;
1828 }
1829
1830 /* if the prefix is alone, define a default target */
1831 if (argl == 1)
1832 s->pcli_next_pid = target_pid;
1833 else
1834 *next_pid = target_pid;
1835 return 1;
William Lallemand5b80fa22018-12-11 16:10:54 +01001836 } else if (!strcmp("prompt", args[0])) {
William Lallemand459e18e2018-12-11 16:10:58 +01001837 s->pcli_flags ^= APPCTX_CLI_ST1_PROMPT;
William Lallemand5b80fa22018-12-11 16:10:54 +01001838 return argl; /* return the number of elements in the array */
William Lallemand5f610682018-12-11 16:10:55 +01001839
1840 } else if (!strcmp("quit", args[0])) {
1841 channel_shutr_now(&s->req);
1842 channel_shutw_now(&s->res);
1843 return argl; /* return the number of elements in the array */
William Lallemandbddd33a2018-12-11 16:10:53 +01001844 }
1845
1846 return 0;
1847}
1848
1849/*
1850 * Parse the CLI request:
1851 * - It does basically the same as the cli_io_handler, but as a proxy
1852 * - It can exec a command and strip non forwardable commands
William Lallemandcf62f7e2018-10-26 14:47:40 +02001853 *
1854 * Return:
William Lallemandbddd33a2018-12-11 16:10:53 +01001855 * - the number of characters to forward or
1856 * - 1 if there is an error or not enough data
William Lallemandcf62f7e2018-10-26 14:47:40 +02001857 */
William Lallemandbddd33a2018-12-11 16:10:53 +01001858int pcli_parse_request(struct stream *s, struct channel *req, char **errmsg, int *next_pid)
William Lallemandcf62f7e2018-10-26 14:47:40 +02001859{
William Lallemandbddd33a2018-12-11 16:10:53 +01001860 char *str = (char *)ci_head(req);
1861 char *end = (char *)ci_stop(req);
1862 char *args[MAX_STATS_ARGS + 1]; /* +1 for storing a NULL */
1863 int argl; /* number of args */
1864 char *p;
1865 char *trim = NULL;
William Lallemandebf61802018-12-11 16:10:57 +01001866 char *payload = NULL;
William Lallemandbddd33a2018-12-11 16:10:53 +01001867 int wtrim = 0; /* number of words to trim */
1868 int reql = 0;
1869 int i = 0;
1870
1871 p = str;
William Lallemandcf62f7e2018-10-26 14:47:40 +02001872
William Lallemandebf61802018-12-11 16:10:57 +01001873 if (!(s->pcli_flags & APPCTX_CLI_ST1_PAYLOAD)) {
1874
1875 /* Looks for the end of one command */
1876 while (p+reql < end) {
1877 /* handle escaping */
1878 if (p[reql] == '\\') {
1879 reql++;
1880 continue;
1881 }
1882 if (p[reql] == ';' || p[reql] == '\n') {
1883 /* found the end of the command */
1884 p[reql] = '\n';
1885 reql++;
1886 break;
1887 }
William Lallemandbddd33a2018-12-11 16:10:53 +01001888 reql++;
William Lallemandbddd33a2018-12-11 16:10:53 +01001889 }
William Lallemandebf61802018-12-11 16:10:57 +01001890 } else {
1891 while (p+reql < end) {
1892 if (p[reql] == '\n') {
1893 /* found the end of the line */
1894 reql++;
1895 break;
1896 }
William Lallemandbddd33a2018-12-11 16:10:53 +01001897 reql++;
William Lallemandbddd33a2018-12-11 16:10:53 +01001898 }
William Lallemandbddd33a2018-12-11 16:10:53 +01001899 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02001900
William Lallemandbddd33a2018-12-11 16:10:53 +01001901 /* set end to first byte after the end of the command */
1902 end = p + reql;
William Lallemandcf62f7e2018-10-26 14:47:40 +02001903
William Lallemandbddd33a2018-12-11 16:10:53 +01001904 /* there is no end to this command, need more to parse ! */
1905 if (*(end-1) != '\n') {
1906 return -1;
1907 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02001908
William Lallemandebf61802018-12-11 16:10:57 +01001909 /* last line of the payload */
1910 if ((s->pcli_flags & APPCTX_CLI_ST1_PAYLOAD) && (reql == 1)) {
1911 s->pcli_flags &= ~APPCTX_CLI_ST1_PAYLOAD;
1912 return reql;
1913 }
1914
1915 payload = strstr(p, PAYLOAD_PATTERN);
1916 if ((end - 1) == (payload + strlen(PAYLOAD_PATTERN))) {
1917 /* if the payload pattern is at the end */
1918 s->pcli_flags |= APPCTX_CLI_ST1_PAYLOAD;
1919 return reql;
1920 }
1921
William Lallemandbddd33a2018-12-11 16:10:53 +01001922 *(end-1) = '\0';
William Lallemandcf62f7e2018-10-26 14:47:40 +02001923
William Lallemandbddd33a2018-12-11 16:10:53 +01001924 /* splits the command in words */
1925 while (i < MAX_STATS_ARGS && p < end) {
1926 int j, k;
William Lallemandcf62f7e2018-10-26 14:47:40 +02001927
William Lallemandbddd33a2018-12-11 16:10:53 +01001928 /* skip leading spaces/tabs */
1929 p += strspn(p, " \t");
1930 if (!*p)
William Lallemandcf62f7e2018-10-26 14:47:40 +02001931 break;
1932
William Lallemandbddd33a2018-12-11 16:10:53 +01001933 args[i] = p;
1934 p += strcspn(p, " \t");
1935 *p++ = 0;
William Lallemandcf62f7e2018-10-26 14:47:40 +02001936
William Lallemandbddd33a2018-12-11 16:10:53 +01001937 /* unescape backslashes (\) */
1938 for (j = 0, k = 0; args[i][k]; k++) {
1939 if (args[i][k] == '\\') {
1940 if (args[i][k + 1] == '\\')
1941 k++;
1942 else
1943 continue;
1944 }
1945 args[i][j] = args[i][k];
1946 j++;
William Lallemandcf62f7e2018-10-26 14:47:40 +02001947 }
William Lallemandbddd33a2018-12-11 16:10:53 +01001948 args[i][j] = 0;
1949 i++;
William Lallemandcf62f7e2018-10-26 14:47:40 +02001950 }
1951
William Lallemandbddd33a2018-12-11 16:10:53 +01001952 argl = i;
William Lallemandcf62f7e2018-10-26 14:47:40 +02001953
William Lallemandbddd33a2018-12-11 16:10:53 +01001954 for (; i < MAX_STATS_ARGS + 1; i++)
1955 args[i] = NULL;
1956
1957 wtrim = pcli_find_and_exec_kw(s, args, argl, errmsg, next_pid);
1958
1959 /* End of words are ending by \0, we need to replace the \0s by spaces
19601 before forwarding them */
1961 p = str;
1962 while (p < end) {
1963 if (*p == '\0')
1964 *p = ' ';
1965 p++;
William Lallemandcf62f7e2018-10-26 14:47:40 +02001966 }
1967
William Lallemandbddd33a2018-12-11 16:10:53 +01001968 *(end-1) = '\n';
William Lallemandcf62f7e2018-10-26 14:47:40 +02001969
William Lallemandbddd33a2018-12-11 16:10:53 +01001970 if (wtrim > 0) {
1971 trim = &args[wtrim][0];
1972 if (trim == NULL) /* if this was the last word in the table */
1973 trim = end;
William Lallemandcf62f7e2018-10-26 14:47:40 +02001974
William Lallemandbddd33a2018-12-11 16:10:53 +01001975 b_del(&req->buf, trim - str);
1976
1977 return end - trim;
1978 } else if (wtrim < 0) {
1979 /* parsing error */
1980 return -1;
1981 }
1982
1983 /* foward the whole comand */
1984 return end - str;
1985
William Lallemandcf62f7e2018-10-26 14:47:40 +02001986}
1987
1988int pcli_wait_for_request(struct stream *s, struct channel *req, int an_bit)
1989{
William Lallemandbddd33a2018-12-11 16:10:53 +01001990 int next_pid = -1;
William Lallemandcf62f7e2018-10-26 14:47:40 +02001991 int to_forward;
William Lallemandbddd33a2018-12-11 16:10:53 +01001992 char *errmsg = NULL;
William Lallemandcf62f7e2018-10-26 14:47:40 +02001993
1994read_again:
1995 /* if the channel is closed for read, we won't receive any more data
1996 from the client, but we don't want to forward this close to the
1997 server */
1998 channel_dont_close(req);
1999
2000 /* We don't know yet to which server we will connect */
2001 channel_dont_connect(req);
2002
2003
2004 /* we are not waiting for a response, there is no more request and we
2005 * receive a close from the client, we can leave */
2006 if (!(ci_data(req)) && req->flags & CF_SHUTR) {
2007 channel_shutw_now(&s->res);
2008 s->req.analysers &= ~AN_REQ_WAIT_CLI;
2009 return 1;
2010 }
2011
2012 req->flags |= CF_READ_DONTWAIT;
2013
2014 /* need more data */
2015 if (!ci_data(req))
2016 return 0;
2017
2018 /* If there is data available for analysis, log the end of the idle time. */
2019 if (c_data(req) && s->logs.t_idle == -1)
2020 s->logs.t_idle = tv_ms_elapsed(&s->logs.tv_accept, &now) - s->logs.t_handshake;
2021
William Lallemandbddd33a2018-12-11 16:10:53 +01002022 to_forward = pcli_parse_request(s, req, &errmsg, &next_pid);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002023 if (to_forward > 0) {
William Lallemandbddd33a2018-12-11 16:10:53 +01002024 int target_pid;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002025 /* enough data */
2026
William Lallemandcf62f7e2018-10-26 14:47:40 +02002027 /* forward only 1 command */
2028 channel_forward(req, to_forward);
William Lallemandebf61802018-12-11 16:10:57 +01002029
2030 if (!(s->pcli_flags & APPCTX_CLI_ST1_PAYLOAD)) {
2031 /* we send only 1 command per request, and we write close after it */
2032 channel_shutw_now(req);
2033 } else {
2034 pcli_write_prompt(s);
2035 }
2036
2037 s->res.flags |= CF_WAKE_ONCE; /* need to be called again */
William Lallemandcf62f7e2018-10-26 14:47:40 +02002038
2039 /* remove the XFER_DATA analysers, which forwards all
2040 * the data, we don't want to forward the next requests
2041 * We need to add CF_FLT_ANALYZE to abort the forward too.
2042 */
2043 req->analysers &= ~(AN_REQ_FLT_XFER_DATA|AN_REQ_WAIT_CLI);
2044 req->analysers |= AN_REQ_FLT_END|CF_FLT_ANALYZE;
2045 s->res.analysers |= AN_RES_WAIT_CLI;
2046
William Lallemandebf61802018-12-11 16:10:57 +01002047 if (!(s->flags & SF_ASSIGNED)) {
2048 if (next_pid > -1)
2049 target_pid = next_pid;
2050 else
2051 target_pid = s->pcli_next_pid;
2052 /* we can connect now */
2053 s->target = pcli_pid_to_server(target_pid);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002054
William Lallemandebf61802018-12-11 16:10:57 +01002055 s->flags |= (SF_DIRECT | SF_ASSIGNED);
2056 channel_auto_connect(req);
2057 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002058
2059 } else if (to_forward == 0) {
William Lallemandcf62f7e2018-10-26 14:47:40 +02002060 /* we trimmed things but we might have other commands to consume */
William Lallemandbddd33a2018-12-11 16:10:53 +01002061 pcli_write_prompt(s);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002062 goto read_again;
William Lallemandbddd33a2018-12-11 16:10:53 +01002063 } else if (to_forward == -1 && errmsg) {
2064 /* there was an error during the parsing */
2065 pcli_reply_and_close(s, errmsg);
2066 return 0;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002067 } else if (to_forward == -1 && channel_full(req, global.tune.maxrewrite)) {
2068 /* buffer is full and we didn't catch the end of a command */
2069 goto send_help;
2070 }
2071
2072 return 0;
2073
2074send_help:
2075 b_reset(&req->buf);
2076 b_putblk(&req->buf, "help\n", 5);
2077 goto read_again;
2078}
2079
2080int pcli_wait_for_response(struct stream *s, struct channel *rep, int an_bit)
2081{
2082 struct proxy *fe = strm_fe(s);
2083 struct proxy *be = s->be;
2084
William Lallemand6b7cd0a2018-11-06 17:37:11 +01002085 if (rep->flags & CF_READ_ERROR) {
2086 pcli_reply_and_close(s, "Can't connect to the target CLI!\n");
2087 s->res.analysers &= ~AN_RES_WAIT_CLI;
2088 return 0;
2089 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002090 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
2091 rep->flags |= CF_NEVER_WAIT;
2092
2093 /* don't forward the close */
2094 channel_dont_close(&s->res);
2095 channel_dont_close(&s->req);
2096
William Lallemandebf61802018-12-11 16:10:57 +01002097 if (s->pcli_flags & APPCTX_CLI_ST1_PAYLOAD) {
2098 s->req.analysers |= AN_REQ_WAIT_CLI;
2099 s->res.analysers &= ~AN_RES_WAIT_CLI;
2100 s->req.flags |= CF_WAKE_ONCE; /* need to be called again if there is some command left in the request */
2101 return 0;
2102 }
2103
William Lallemandcf62f7e2018-10-26 14:47:40 +02002104 /* forward the data */
2105 if (ci_data(rep)) {
2106 c_adv(rep, ci_data(rep));
2107 return 0;
2108 }
2109
2110 if ((rep->flags & (CF_SHUTR|CF_READ_NULL))) {
2111 /* stream cleanup */
2112
William Lallemand2f4ce202018-10-26 14:47:47 +02002113 pcli_write_prompt(s);
2114
William Lallemandcf62f7e2018-10-26 14:47:40 +02002115 s->si[1].flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
2116 si_shutr(&s->si[1]);
2117 si_shutw(&s->si[1]);
2118
2119 /*
2120 * starting from there this the same code as
2121 * http_end_txn_clean_session().
2122 *
2123 * It allows to do frontend keepalive while reconnecting to a
2124 * new server for each request.
2125 */
2126
2127 if (s->flags & SF_BE_ASSIGNED) {
2128 HA_ATOMIC_SUB(&be->beconn, 1);
2129 if (unlikely(s->srv_conn))
2130 sess_change_server(s, NULL);
2131 }
2132
2133 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2134 stream_process_counters(s);
2135
2136 /* don't count other requests' data */
2137 s->logs.bytes_in -= ci_data(&s->req);
2138 s->logs.bytes_out -= ci_data(&s->res);
2139
2140 /* we may need to know the position in the queue */
2141 pendconn_free(s);
2142
2143 /* let's do a final log if we need it */
2144 if (!LIST_ISEMPTY(&fe->logformat) && s->logs.logwait &&
2145 !(s->flags & SF_MONITOR) &&
2146 (!(fe->options & PR_O_NULLNOLOG) || s->req.total)) {
2147 s->do_log(s);
2148 }
2149
2150 /* stop tracking content-based counters */
2151 stream_stop_content_counters(s);
2152 stream_update_time_stats(s);
2153
2154 s->logs.accept_date = date; /* user-visible date for logging */
2155 s->logs.tv_accept = now; /* corrected date for internal use */
2156 s->logs.t_handshake = 0; /* There are no handshake in keep alive connection. */
2157 s->logs.t_idle = -1;
2158 tv_zero(&s->logs.tv_request);
2159 s->logs.t_queue = -1;
2160 s->logs.t_connect = -1;
2161 s->logs.t_data = -1;
2162 s->logs.t_close = 0;
2163 s->logs.prx_queue_pos = 0; /* we get the number of pending conns before us */
2164 s->logs.srv_queue_pos = 0; /* we will get this number soon */
2165
2166 s->logs.bytes_in = s->req.total = ci_data(&s->req);
2167 s->logs.bytes_out = s->res.total = ci_data(&s->res);
2168
2169 stream_del_srv_conn(s);
2170 if (objt_server(s->target)) {
2171 if (s->flags & SF_CURR_SESS) {
2172 s->flags &= ~SF_CURR_SESS;
Willy Tarreaub54c40a2018-12-02 19:28:41 +01002173 HA_ATOMIC_SUB(&__objt_server(s->target)->cur_sess, 1);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002174 }
Willy Tarreaub54c40a2018-12-02 19:28:41 +01002175 if (may_dequeue_tasks(__objt_server(s->target), be))
2176 process_srv_queue(__objt_server(s->target));
William Lallemandcf62f7e2018-10-26 14:47:40 +02002177 }
2178
2179 s->target = NULL;
2180
2181 /* only release our endpoint if we don't intend to reuse the
2182 * connection.
2183 */
2184 if (!si_conn_ready(&s->si[1])) {
2185 si_release_endpoint(&s->si[1]);
2186 s->srv_conn = NULL;
2187 }
2188
2189 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
2190 s->si[1].err_type = SI_ET_NONE;
2191 s->si[1].conn_retries = 0; /* used for logging too */
2192 s->si[1].exp = TICK_ETERNITY;
2193 s->si[1].flags &= SI_FL_ISBACK | SI_FL_DONT_WAKE; /* we're in the context of process_stream */
2194 s->req.flags &= ~(CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CONNECT|CF_WRITE_ERROR|CF_STREAMER|CF_STREAMER_FAST|CF_NEVER_WAIT|CF_WAKE_CONNECT|CF_WROTE_DATA);
2195 s->res.flags &= ~(CF_SHUTR|CF_SHUTR_NOW|CF_READ_ATTACHED|CF_READ_ERROR|CF_READ_NOEXP|CF_STREAMER|CF_STREAMER_FAST|CF_WRITE_PARTIAL|CF_NEVER_WAIT|CF_WROTE_DATA);
2196 s->flags &= ~(SF_DIRECT|SF_ASSIGNED|SF_ADDR_SET|SF_BE_ASSIGNED|SF_FORCE_PRST|SF_IGNORE_PRST);
2197 s->flags &= ~(SF_CURR_SESS|SF_REDIRECTABLE|SF_SRV_REUSED);
2198 s->flags &= ~(SF_ERR_MASK|SF_FINST_MASK|SF_REDISP);
2199 /* reinitialise the current rule list pointer to NULL. We are sure that
2200 * any rulelist match the NULL pointer.
2201 */
2202 s->current_rule_list = NULL;
2203
2204 s->be = strm_fe(s);
2205 s->logs.logwait = strm_fe(s)->to_log;
2206 s->logs.level = 0;
2207 stream_del_srv_conn(s);
2208 s->target = NULL;
2209 /* re-init store persistence */
2210 s->store_count = 0;
2211 s->uniq_id = global.req_count++;
2212
2213 s->req.flags |= CF_READ_DONTWAIT; /* one read is usually enough */
2214
2215 s->req.flags |= CF_WAKE_ONCE; /* need to be called again if there is some command left in the request */
2216
2217 s->req.analysers |= AN_REQ_WAIT_CLI;
2218 s->res.analysers &= ~AN_RES_WAIT_CLI;
2219
2220 /* We must trim any excess data from the response buffer, because we
2221 * may have blocked an invalid response from a server that we don't
Joseph Herlant008b3ce2018-11-25 12:51:45 -08002222 * want to accidently forward once we disable the analysers, nor do
William Lallemandcf62f7e2018-10-26 14:47:40 +02002223 * we want those data to come along with next response. A typical
2224 * example of such data would be from a buggy server responding to
2225 * a HEAD with some data, or sending more than the advertised
2226 * content-length.
2227 */
2228 if (unlikely(ci_data(&s->res)))
2229 b_set_data(&s->res.buf, co_data(&s->res));
2230
2231 /* Now we can realign the response buffer */
2232 c_realign_if_empty(&s->res);
2233
2234 s->req.rto = strm_fe(s)->timeout.client;
2235 s->req.wto = TICK_ETERNITY;
2236
2237 s->res.rto = TICK_ETERNITY;
2238 s->res.wto = strm_fe(s)->timeout.client;
2239
2240 s->req.rex = TICK_ETERNITY;
2241 s->req.wex = TICK_ETERNITY;
2242 s->req.analyse_exp = TICK_ETERNITY;
2243 s->res.rex = TICK_ETERNITY;
2244 s->res.wex = TICK_ETERNITY;
2245 s->res.analyse_exp = TICK_ETERNITY;
2246 s->si[1].hcto = TICK_ETERNITY;
2247
2248 /* we're removing the analysers, we MUST re-enable events detection.
2249 * We don't enable close on the response channel since it's either
2250 * already closed, or in keep-alive with an idle connection handler.
2251 */
2252 channel_auto_read(&s->req);
2253 channel_auto_close(&s->req);
2254 channel_auto_read(&s->res);
2255
2256
2257 return 1;
2258 }
2259 return 0;
2260}
2261
William Lallemand8a022572018-10-26 14:47:35 +02002262/*
2263 * The mworker functions are used to initialize the CLI in the master process
2264 */
2265
William Lallemand309dc9a2018-10-26 14:47:45 +02002266 /*
2267 * Stop the mworker proxy
2268 */
2269void mworker_cli_proxy_stop()
2270{
William Lallemand550db6d2018-11-06 17:37:12 +01002271 if (mworker_proxy)
2272 stop_proxy(mworker_proxy);
William Lallemand309dc9a2018-10-26 14:47:45 +02002273}
2274
William Lallemand8a022572018-10-26 14:47:35 +02002275/*
2276 * Create the mworker CLI proxy
2277 */
2278int mworker_cli_proxy_create()
2279{
2280 struct mworker_proc *child;
William Lallemand744a0892018-11-22 16:46:51 +01002281 char *msg = NULL;
2282 char *errmsg = NULL;
William Lallemand8a022572018-10-26 14:47:35 +02002283
2284 mworker_proxy = calloc(1, sizeof(*mworker_proxy));
2285 if (!mworker_proxy)
2286 return -1;
2287
2288 init_new_proxy(mworker_proxy);
2289 mworker_proxy->next = proxies_list;
2290 proxies_list = mworker_proxy;
2291 mworker_proxy->id = strdup("MASTER");
William Lallemandcf62f7e2018-10-26 14:47:40 +02002292 mworker_proxy->mode = PR_MODE_CLI;
William Lallemand8a022572018-10-26 14:47:35 +02002293 mworker_proxy->state = PR_STNEW;
2294 mworker_proxy->last_change = now.tv_sec;
2295 mworker_proxy->cap = PR_CAP_LISTEN; /* this is a listen section */
2296 mworker_proxy->maxconn = 10; /* default to 10 concurrent connections */
2297 mworker_proxy->timeout.client = 0; /* no timeout */
2298 mworker_proxy->conf.file = strdup("MASTER");
2299 mworker_proxy->conf.line = 0;
2300 mworker_proxy->accept = frontend_accept;
2301 mworker_proxy-> lbprm.algo = BE_LB_ALGO_NONE;
2302
2303 /* Does not init the default target the CLI applet, but must be done in
2304 * the request parsing code */
2305 mworker_proxy->default_target = NULL;
2306
2307 /* the check_config_validity() will get an ID for the proxy */
2308 mworker_proxy->uuid = -1;
2309
2310 proxy_store_name(mworker_proxy);
2311
2312 /* create all servers using the mworker_proc list */
2313 list_for_each_entry(child, &proc_list, list) {
William Lallemand8a022572018-10-26 14:47:35 +02002314 struct server *newsrv = NULL;
2315 struct sockaddr_storage *sk;
2316 int port1, port2, port;
2317 struct protocol *proto;
William Lallemand8a022572018-10-26 14:47:35 +02002318
2319 newsrv = new_server(mworker_proxy);
2320 if (!newsrv)
William Lallemand744a0892018-11-22 16:46:51 +01002321 goto error;
William Lallemand8a022572018-10-26 14:47:35 +02002322
2323 /* we don't know the new pid yet */
2324 if (child->pid == -1)
2325 memprintf(&msg, "cur-%d", child->relative_pid);
2326 else
2327 memprintf(&msg, "old-%d", child->pid);
2328
2329 newsrv->next = mworker_proxy->srv;
2330 mworker_proxy->srv = newsrv;
2331 newsrv->conf.file = strdup(msg);
2332 newsrv->id = strdup(msg);
2333 newsrv->conf.line = 0;
2334
2335 memprintf(&msg, "sockpair@%d", child->ipc_fd[0]);
Tim Duesterhus4cae3b22018-11-22 16:46:50 +01002336 if ((sk = str2sa_range(msg, &port, &port1, &port2, &errmsg, NULL, NULL, 0)) == 0) {
William Lallemand744a0892018-11-22 16:46:51 +01002337 goto error;
Tim Duesterhus4cae3b22018-11-22 16:46:50 +01002338 }
2339 free(msg);
2340 msg = NULL;
William Lallemand8a022572018-10-26 14:47:35 +02002341
2342 proto = protocol_by_family(sk->ss_family);
2343 if (!proto || !proto->connect) {
William Lallemand744a0892018-11-22 16:46:51 +01002344 goto error;
William Lallemand8a022572018-10-26 14:47:35 +02002345 }
2346
2347 /* no port specified */
2348 newsrv->flags |= SRV_F_MAPPORTS;
2349 newsrv->addr = *sk;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002350 /* don't let the server participate to load balancing */
2351 newsrv->iweight = 0;
2352 newsrv->uweight = 0;
William Lallemand8a022572018-10-26 14:47:35 +02002353 srv_lb_commit_status(newsrv);
William Lallemand291810d2018-10-26 14:47:38 +02002354
2355 child->srv = newsrv;
William Lallemand8a022572018-10-26 14:47:35 +02002356 }
2357 return 0;
William Lallemand744a0892018-11-22 16:46:51 +01002358
2359error:
2360 ha_alert("%s\n", errmsg);
2361
2362 list_for_each_entry(child, &proc_list, list) {
2363 free((char *)child->srv->conf.file); /* cast because of const char * */
2364 free(child->srv->id);
2365 free(child->srv);
2366 child->srv = NULL;
2367 }
2368 free(mworker_proxy->id);
2369 free(mworker_proxy->conf.file);
2370 free(mworker_proxy);
2371 mworker_proxy = NULL;
2372 free(errmsg);
2373 free(msg);
2374
2375 return -1;
William Lallemand8a022572018-10-26 14:47:35 +02002376}
Olivier Houchardf886e342017-04-05 22:24:59 +02002377
William Lallemandce83b4a2018-10-26 14:47:30 +02002378/*
William Lallemande7361152018-10-26 14:47:36 +02002379 * Create a new listener for the master CLI proxy
2380 */
2381int mworker_cli_proxy_new_listener(char *line)
2382{
2383 struct bind_conf *bind_conf;
2384 struct listener *l;
2385 char *err = NULL;
2386 char *args[MAX_LINE_ARGS + 1];
2387 int arg;
2388 int cur_arg;
2389
2390 arg = 0;
2391 args[0] = line;
2392
2393 /* args is a bind configuration with spaces replaced by commas */
2394 while (*line && arg < MAX_LINE_ARGS) {
2395
2396 if (*line == ',') {
2397 *line++ = '\0';
2398 while (*line == ',')
2399 line++;
2400 args[++arg] = line;
2401 }
2402 line++;
2403 }
2404
2405 args[++arg] = "\0";
2406
2407 bind_conf = bind_conf_alloc(mworker_proxy, "master-socket", 0, "", xprt_get(XPRT_RAW));
William Lallemand744a0892018-11-22 16:46:51 +01002408 if (!bind_conf)
2409 goto err;
William Lallemande7361152018-10-26 14:47:36 +02002410
2411 bind_conf->level &= ~ACCESS_LVL_MASK;
2412 bind_conf->level |= ACCESS_LVL_ADMIN;
2413
2414 if (!str2listener(args[0], mworker_proxy, bind_conf, "master-socket", 0, &err)) {
2415 ha_alert("Cannot create the listener of the master CLI\n");
William Lallemand744a0892018-11-22 16:46:51 +01002416 goto err;
William Lallemande7361152018-10-26 14:47:36 +02002417 }
2418
2419 cur_arg = 1;
2420
2421 while (*args[cur_arg]) {
2422 static int bind_dumped;
2423 struct bind_kw *kw;
2424
2425 kw = bind_find_kw(args[cur_arg]);
2426 if (kw) {
2427 if (!kw->parse) {
2428 memprintf(&err, "'%s %s' : '%s' option is not implemented in this version (check build options).",
2429 args[0], args[1], args[cur_arg]);
2430 goto err;
2431 }
2432
2433 if (kw->parse(args, cur_arg, global.stats_fe, bind_conf, &err) != 0) {
2434 if (err)
2435 memprintf(&err, "'%s %s' : '%s'", args[0], args[1], err);
2436 else
2437 memprintf(&err, "'%s %s' : error encountered while processing '%s'",
2438 args[0], args[1], args[cur_arg]);
2439 goto err;
2440 }
2441
2442 cur_arg += 1 + kw->skip;
2443 continue;
2444 }
2445
2446 if (!bind_dumped) {
2447 bind_dump_kws(&err);
2448 indent_msg(&err, 4);
2449 bind_dumped = 1;
2450 }
2451
2452 memprintf(&err, "'%s %s' : unknown keyword '%s'.%s%s",
2453 args[0], args[1], args[cur_arg],
2454 err ? " Registered keywords :" : "", err ? err : "");
2455 goto err;
2456 }
2457
2458
2459 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
2460 l->maxconn = 10;
2461 l->backlog = 10;
2462 l->accept = session_accept_fd;
2463 l->default_target = mworker_proxy->default_target;
2464 /* don't make the peers subject to global limits and don't close it in the master */
2465 l->options |= (LI_O_UNLIMITED|LI_O_MWORKER); /* we are keeping this FD in the master */
2466 l->nice = -64; /* we want to boost priority for local stats */
2467 global.maxsock += l->maxconn;
2468 }
2469
2470 return 0;
2471
2472err:
2473 ha_alert("%s\n", err);
William Lallemand744a0892018-11-22 16:46:51 +01002474 free(err);
2475 free(bind_conf);
William Lallemande7361152018-10-26 14:47:36 +02002476 return -1;
2477
2478}
2479
2480/*
William Lallemandce83b4a2018-10-26 14:47:30 +02002481 * Create a new CLI socket using a socketpair for a worker process
2482 * <mworker_proc> is the process structure, and <proc> is the process number
2483 */
2484int mworker_cli_sockpair_new(struct mworker_proc *mworker_proc, int proc)
2485{
2486 struct bind_conf *bind_conf;
2487 struct listener *l;
2488 char *path = NULL;
2489 char *err = NULL;
2490
2491 /* master pipe to ensure the master is still alive */
2492 if (socketpair(AF_UNIX, SOCK_STREAM, 0, mworker_proc->ipc_fd) < 0) {
2493 ha_alert("Cannot create worker socketpair.\n");
2494 return -1;
2495 }
2496
2497 /* XXX: we might want to use a separate frontend at some point */
2498 if (!global.stats_fe) {
2499 if ((global.stats_fe = alloc_stats_fe("GLOBAL", "master-socket", 0)) == NULL) {
2500 ha_alert("out of memory trying to allocate the stats frontend");
William Lallemand744a0892018-11-22 16:46:51 +01002501 goto error;
William Lallemandce83b4a2018-10-26 14:47:30 +02002502 }
2503 }
2504
2505 bind_conf = bind_conf_alloc(global.stats_fe, "master-socket", 0, "", xprt_get(XPRT_RAW));
William Lallemand744a0892018-11-22 16:46:51 +01002506 if (!bind_conf)
2507 goto error;
2508
William Lallemandce83b4a2018-10-26 14:47:30 +02002509 bind_conf->level &= ~ACCESS_LVL_MASK;
2510 bind_conf->level |= ACCESS_LVL_ADMIN; /* TODO: need to lower the rights with a CLI keyword*/
2511
2512 bind_conf->bind_proc = 1UL << proc;
2513 global.stats_fe->bind_proc = 0; /* XXX: we should be careful with that, it can be removed by configuration */
2514
2515 if (!memprintf(&path, "sockpair@%d", mworker_proc->ipc_fd[1])) {
2516 ha_alert("Cannot allocate listener.\n");
William Lallemand744a0892018-11-22 16:46:51 +01002517 goto error;
William Lallemandce83b4a2018-10-26 14:47:30 +02002518 }
2519
2520 if (!str2listener(path, global.stats_fe, bind_conf, "master-socket", 0, &err)) {
Tim Duesterhus4cae3b22018-11-22 16:46:50 +01002521 free(path);
William Lallemandce83b4a2018-10-26 14:47:30 +02002522 ha_alert("Cannot create a CLI sockpair listener for process #%d\n", proc);
William Lallemand744a0892018-11-22 16:46:51 +01002523 goto error;
William Lallemandce83b4a2018-10-26 14:47:30 +02002524 }
Tim Duesterhus4cae3b22018-11-22 16:46:50 +01002525 free(path);
2526 path = NULL;
William Lallemandce83b4a2018-10-26 14:47:30 +02002527
2528 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
2529 l->maxconn = global.stats_fe->maxconn;
2530 l->backlog = global.stats_fe->backlog;
2531 l->accept = session_accept_fd;
2532 l->default_target = global.stats_fe->default_target;
William Lallemanda3372292018-11-16 16:57:22 +01002533 l->options |= (LI_O_UNLIMITED | LI_O_NOSTOP);
William Lallemandce83b4a2018-10-26 14:47:30 +02002534 /* it's a sockpair but we don't want to keep the fd in the master */
2535 l->options &= ~LI_O_INHERITED;
2536 l->nice = -64; /* we want to boost priority for local stats */
2537 global.maxsock += l->maxconn;
2538 }
2539
2540 return 0;
William Lallemand744a0892018-11-22 16:46:51 +01002541
2542error:
2543 close(mworker_proc->ipc_fd[0]);
2544 close(mworker_proc->ipc_fd[1]);
2545 free(err);
2546
2547 return -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02002548}
2549
William Lallemand74c24fb2016-11-21 17:18:36 +01002550static struct applet cli_applet = {
2551 .obj_type = OBJ_TYPE_APPLET,
2552 .name = "<CLI>", /* used for logging */
2553 .fct = cli_io_handler,
2554 .release = cli_release_handler,
2555};
2556
Willy Tarreau0a739292016-11-22 20:21:23 +01002557/* register cli keywords */
2558static struct cli_kw_list cli_kws = {{ },{
William Lallemand4e8450b2018-10-26 14:47:43 +02002559 { { "@<relative pid>", NULL }, "@<relative pid> : send a command to the <relative pid> process", NULL, cli_io_handler_show_proc, NULL, NULL, ACCESS_MASTER_ONLY},
2560 { { "@!<pid>", NULL }, "@!<pid> : send a command to the <pid> process", cli_parse_default, NULL, NULL, NULL, ACCESS_MASTER_ONLY},
2561 { { "@master", NULL }, "@master : send a command to the master process", cli_parse_default, NULL, NULL, NULL, ACCESS_MASTER_ONLY},
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002562 { { "help", NULL }, NULL, cli_parse_simple, NULL },
2563 { { "prompt", NULL }, NULL, cli_parse_simple, NULL },
2564 { { "quit", NULL }, NULL, cli_parse_simple, NULL },
Willy Tarreau2af99412016-11-23 11:10:59 +01002565 { { "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 +01002566 { { "set", "rate-limit", NULL }, "set rate-limit : change a rate limiting value", cli_parse_set_ratelimit, NULL },
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02002567 { { "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 +01002568 { { "set", "timeout", NULL }, "set timeout : change a timeout setting", cli_parse_set_timeout, NULL, NULL },
Willy Tarreau0a739292016-11-22 20:21:23 +01002569 { { "show", "env", NULL }, "show env [var] : dump environment variables known to the process", cli_parse_show_env, cli_io_handler_show_env, NULL },
William Lallemand35851fb2018-10-26 14:47:42 +02002570 { { "show", "cli", "sockets", NULL }, "show cli sockets : dump list of cli sockets", cli_parse_default, cli_io_handler_show_cli_sock, NULL, NULL, ACCESS_MASTER },
William Lallemand67a234f2018-12-13 09:05:45 +01002571 { { "show", "cli", "level", NULL }, "show cli level : display the level of the current CLI session", cli_parse_show_lvl, NULL, NULL, NULL, ACCESS_MASTER},
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02002572 { { "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 +01002573 { { "show", "activity", NULL }, "show activity : show per-thread activity stats (for support/developers)", cli_parse_default, cli_io_handler_show_activity, NULL },
William Lallemandb9f9e3b2018-10-26 14:47:39 +02002574 { { "show", "proc", NULL }, "show proc : show processes status", cli_parse_default, cli_io_handler_show_proc, NULL, NULL, ACCESS_MASTER_ONLY},
William Lallemand67a234f2018-12-13 09:05:45 +01002575 { { "operator", NULL }, "operator : lower the level of the current CLI session to operator", cli_parse_set_lvl, NULL, NULL, NULL, ACCESS_MASTER},
2576 { { "user", NULL }, "user : lower the level of the current CLI session to user", cli_parse_set_lvl, NULL, NULL, NULL, ACCESS_MASTER},
Olivier Houchardf886e342017-04-05 22:24:59 +02002577 { { "_getsocks", NULL }, NULL, _getsocks, NULL },
Willy Tarreau0a739292016-11-22 20:21:23 +01002578 {{},}
2579}};
2580
Willy Tarreau0108d902018-11-25 19:14:37 +01002581INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
2582
William Lallemand74c24fb2016-11-21 17:18:36 +01002583static struct cfg_kw_list cfg_kws = {ILH, {
2584 { CFG_GLOBAL, "stats", stats_parse_global },
2585 { 0, NULL, NULL },
2586}};
2587
Willy Tarreau0108d902018-11-25 19:14:37 +01002588INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
2589
William Lallemand74c24fb2016-11-21 17:18:36 +01002590static struct bind_kw_list bind_kws = { "STAT", { }, {
William Lallemandf6975e92017-05-26 17:42:10 +02002591 { "level", bind_parse_level, 1 }, /* set the unix socket admin level */
2592 { "expose-fd", bind_parse_expose_fd, 1 }, /* set the unix socket expose fd rights */
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02002593 { "severity-output", bind_parse_severity_output, 1 }, /* set the severity output format */
William Lallemand74c24fb2016-11-21 17:18:36 +01002594 { NULL, NULL, 0 },
2595}};
2596
Willy Tarreau0108d902018-11-25 19:14:37 +01002597INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
William Lallemand74c24fb2016-11-21 17:18:36 +01002598
2599/*
2600 * Local variables:
2601 * c-indent-level: 8
2602 * c-basic-offset: 8
2603 * End:
2604 */