blob: 6859ad6b66a7eb99a591716736d0725447054097 [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
Willy Tarreaub2551052020-06-09 09:07:15 +020029#include <haproxy/activity.h>
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020030#include <haproxy/api.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020031#include <haproxy/applet-t.h>
32#include <haproxy/base64.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020033#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020034#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020035#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020036#include <haproxy/cli.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020037#include <haproxy/compression.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020038#include <haproxy/dns-t.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020039#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020040#include <haproxy/fd.h>
41#include <haproxy/freq_ctr.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020042#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020043#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020044#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020045#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020046#include <haproxy/log.h>
Willy Tarreaub5abe5b2020-06-04 14:07:37 +020047#include <haproxy/mworker-t.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020048#include <haproxy/pattern-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020049#include <haproxy/peers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020050#include <haproxy/pipe.h>
51#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020052#include <haproxy/proxy.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020053#include <haproxy/sample-t.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020054#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020055#include <haproxy/session.h>
Willy Tarreaua74cb382020-10-15 21:29:49 +020056#include <haproxy/sock.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020057#include <haproxy/stats-t.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020058#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020059#include <haproxy/stream_interface.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020060#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020061#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020062#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020063#include <haproxy/tools.h>
Willy Tarreaud6788052020-05-27 15:59:00 +020064#include <haproxy/version.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010065
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +020066#define PAYLOAD_PATTERN "<<"
67
William Lallemand74c24fb2016-11-21 17:18:36 +010068static struct applet cli_applet;
William Lallemand99e0bb92020-11-05 10:28:53 +010069static struct applet mcli_applet;
William Lallemand74c24fb2016-11-21 17:18:36 +010070
William Lallemand74c24fb2016-11-21 17:18:36 +010071static const char stats_permission_denied_msg[] =
72 "Permission denied\n"
73 "";
74
75
Christopher Faulet1bc04c72017-10-29 20:14:08 +010076static THREAD_LOCAL char *dynamic_usage_msg = NULL;
William Lallemand74c24fb2016-11-21 17:18:36 +010077
78/* List head of cli keywords */
79static struct cli_kw_list cli_keywords = {
80 .list = LIST_HEAD_INIT(cli_keywords.list)
81};
82
83extern const char *stat_status_codes[];
84
William Lallemand8a022572018-10-26 14:47:35 +020085static struct proxy *mworker_proxy; /* CLI proxy of the master */
86
Willy Tarreaub96a74c2021-03-12 17:13:28 +010087/* This will show the help message and list the commands supported at the
88 * current level that match all of the first words of <args> if args is not
89 * NULL, or all args if none matches or if args is null.
90 */
91static char *cli_gen_usage_msg(struct appctx *appctx, char * const *args)
William Lallemand74c24fb2016-11-21 17:18:36 +010092{
93 struct cli_kw_list *kw_list;
94 struct cli_kw *kw;
Willy Tarreau83061a82018-07-13 11:56:34 +020095 struct buffer *tmp = get_trash_chunk();
96 struct buffer out;
Willy Tarreaub7364582021-03-12 18:24:46 +010097 struct { struct cli_kw *kw; int dist; } matches[CLI_MAX_MATCHES], swp;
Willy Tarreaub96a74c2021-03-12 17:13:28 +010098 int idx;
99 int length = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100100
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100101 ha_free(&dynamic_usage_msg);
William Lallemand74c24fb2016-11-21 17:18:36 +0100102
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100103 /* first, let's measure the longest match */
104 list_for_each_entry(kw_list, &cli_keywords.list, list) {
105 for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) {
106 if (kw->level & ~appctx->cli_level & (ACCESS_MASTER_ONLY|ACCESS_EXPERT))
107 continue;
108 if ((appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) ==
109 (ACCESS_MASTER_ONLY|ACCESS_MASTER))
110 continue;
111
112 /* OK this command is visible */
113 for (idx = 0; idx < CLI_PREFIX_KW_NB; idx++) {
114 if (!kw->str_kw[idx])
115 break; // end of keyword
116 if (!args || !args[idx] || !*args[idx])
117 break; // end of command line
118 if (strcmp(kw->str_kw[idx], args[idx]) != 0)
119 break;
120 if (idx + 1 > length)
121 length = idx + 1;
122 }
123 }
124 }
125
Willy Tarreaub7364582021-03-12 18:24:46 +0100126 /* now <length> equals the number of exactly matching words */
William Lallemand74c24fb2016-11-21 17:18:36 +0100127 chunk_reset(tmp);
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100128 if (!args) // this is the help message.
129 chunk_strcat(tmp, "The following commands are valid at this level:\n");
Willy Tarreaub7364582021-03-12 18:24:46 +0100130 else if (!length && (!*args || !**args)) // no match
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100131 chunk_strcat(tmp, "Unknown command. Please enter one of the following commands only:\n");
132 else // partial match
133 chunk_strcat(tmp, "Unknown command, but maybe one of the following ones is a better match:\n");
134
Willy Tarreaub7364582021-03-12 18:24:46 +0100135 for (idx = 0; idx < CLI_MAX_MATCHES; idx++) {
136 matches[idx].kw = NULL;
137 matches[idx].dist = INT_MAX;
138 }
139
140 /* In case of partial match we'll look for the best matching entries
141 * starting from position <length>
142 */
143 if (args[length] && *args[length]) {
144 list_for_each_entry(kw_list, &cli_keywords.list, list) {
145 for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) {
146 if (kw->level & ~appctx->cli_level & (ACCESS_MASTER_ONLY|ACCESS_EXPERT))
147 continue;
148 if ((appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) ==
149 (ACCESS_MASTER_ONLY|ACCESS_MASTER))
150 continue;
151
152 for (idx = 0; idx < length; idx++) {
153 if (!kw->str_kw[idx])
154 break; // end of keyword
155 if (!args || !args[idx] || !*args[idx])
156 break; // end of command line
157 if (strcmp(kw->str_kw[idx], args[idx]) != 0)
158 break;
159 }
160
161 /* extra non-matching words are fuzzy-matched */
162 if (kw->usage && idx == length && args[idx] && *args[idx]) {
163 uint8_t word_sig[1024];
164 uint8_t list_sig[1024];
165 int dist = 0;
166 int totlen = 0;
167
168 /* this one matches, let's compute the distance between the two
169 * on the remaining words
170 */
Willy Tarreauc57dcfe2021-03-12 19:01:59 +0100171 memset(word_sig, 0, sizeof(word_sig));
172 memset(list_sig, 0, sizeof(list_sig));
173
Willy Tarreaub7364582021-03-12 18:24:46 +0100174 while (idx < CLI_PREFIX_KW_NB && kw->str_kw[idx] && args[idx] && *args[idx]) {
Willy Tarreauc57dcfe2021-03-12 19:01:59 +0100175 update_word_fingerprint(word_sig, args[idx]);
176 update_word_fingerprint(list_sig, kw->str_kw[idx]);
Willy Tarreaub7364582021-03-12 18:24:46 +0100177 totlen += strlen(args[idx]) + strlen(kw->str_kw[idx]);
Willy Tarreaub7364582021-03-12 18:24:46 +0100178 idx++;
179 }
Willy Tarreauc57dcfe2021-03-12 19:01:59 +0100180 dist = word_fingerprint_distance(word_sig, list_sig);
Willy Tarreaub7364582021-03-12 18:24:46 +0100181
182 /* insert this one at its place if relevant, in order to keep only
183 * the best matches.
184 */
185 swp.kw = kw; swp.dist = dist;
186 if (dist < totlen && dist < matches[CLI_MAX_MATCHES-1].dist) {
187 matches[CLI_MAX_MATCHES-1] = swp;
188 for (idx = CLI_MAX_MATCHES - 1; --idx >= 0;) {
189 if (matches[idx+1].dist >= matches[idx].dist)
190 break;
191 matches[idx+1] = matches[idx];
192 matches[idx] = swp;
193 }
194 }
195 }
196 }
197 }
198 }
199
William Lallemand74c24fb2016-11-21 17:18:36 +0100200 list_for_each_entry(kw_list, &cli_keywords.list, list) {
Willy Tarreau91bc3592021-03-12 15:20:39 +0100201 for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) {
William Lallemand14721be2018-10-26 14:47:37 +0200202
Willy Tarreau91bc3592021-03-12 15:20:39 +0100203 /* in a worker or normal process, don't display master-only commands
204 * nor expert mode commands if not in this mode.
205 */
206 if (kw->level & ~appctx->cli_level & (ACCESS_MASTER_ONLY|ACCESS_EXPERT))
207 continue;
William Lallemand14721be2018-10-26 14:47:37 +0200208
Willy Tarreau91bc3592021-03-12 15:20:39 +0100209 /* in master don't display commands that have neither the master bit
210 * nor the master-only bit.
211 */
212 if ((appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) ==
213 (ACCESS_MASTER_ONLY|ACCESS_MASTER))
214 continue;
Willy Tarreauabb9f9b2019-10-24 17:55:53 +0200215
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100216 for (idx = 0; idx < length; idx++) {
217 if (!kw->str_kw[idx])
218 break; // end of keyword
219 if (!args || !args[idx] || !*args[idx])
220 break; // end of command line
221 if (strcmp(kw->str_kw[idx], args[idx]) != 0)
222 break;
223 }
224
Willy Tarreaub7364582021-03-12 18:24:46 +0100225 if (kw->usage && idx == length) {
226 /* if we've filled some fuzzy matches, let's compare them. We'll
227 * just set the idx to their position if they're found and are no
228 * further than twice the distance of the best match, otherwise
229 * idx will be CLI_MAX_MATCHES, indicating "not found".
230 */
231 for (idx = 0; matches[0].kw && idx < CLI_MAX_MATCHES; idx++)
232 if (kw == matches[idx].kw && matches[idx].dist <= 2*matches[0].dist)
233 break;
234
235 if (idx < CLI_MAX_MATCHES)
236 chunk_appendf(tmp, " %s\n", kw->usage);
237 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100238 }
239 }
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100240
241 /* always show the prompt/help/quit commands */
242 chunk_strcat(tmp,
243 " help : full commands list\n"
244 " prompt : toggle interactive mode with prompt\n"
245 " quit : disconnect\n");
246
William Lallemand74c24fb2016-11-21 17:18:36 +0100247 chunk_init(&out, NULL, 0);
248 chunk_dup(&out, tmp);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200249 dynamic_usage_msg = out.area;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200250
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100251 appctx->ctx.cli.severity = LOG_INFO;
252 appctx->ctx.cli.msg = dynamic_usage_msg;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200253 appctx->st0 = CLI_ST_PRINT;
254
William Lallemand74c24fb2016-11-21 17:18:36 +0100255 return dynamic_usage_msg;
256}
257
258struct cli_kw* cli_find_kw(char **args)
259{
260 struct cli_kw_list *kw_list;
261 struct cli_kw *kw;/* current cli_kw */
262 char **tmp_args;
263 const char **tmp_str_kw;
264 int found = 0;
265
266 if (LIST_ISEMPTY(&cli_keywords.list))
267 return NULL;
268
269 list_for_each_entry(kw_list, &cli_keywords.list, list) {
270 kw = &kw_list->kw[0];
271 while (*kw->str_kw) {
272 tmp_args = args;
273 tmp_str_kw = kw->str_kw;
274 while (*tmp_str_kw) {
275 if (strcmp(*tmp_str_kw, *tmp_args) == 0) {
276 found = 1;
277 } else {
278 found = 0;
279 break;
280 }
281 tmp_args++;
282 tmp_str_kw++;
283 }
284 if (found)
285 return (kw);
286 kw++;
287 }
288 }
289 return NULL;
290}
291
Thierry Fourniera51a1fd2020-11-28 20:10:08 +0100292struct cli_kw* cli_find_kw_exact(char **args)
293{
294 struct cli_kw_list *kw_list;
295 int found = 0;
296 int i;
297 int j;
298
299 if (LIST_ISEMPTY(&cli_keywords.list))
300 return NULL;
301
302 list_for_each_entry(kw_list, &cli_keywords.list, list) {
303 for (i = 0; kw_list->kw[i].str_kw[0]; i++) {
304 found = 1;
305 for (j = 0; j < CLI_PREFIX_KW_NB; j++) {
306 if (args[j] == NULL && kw_list->kw[i].str_kw[j] == NULL) {
307 break;
308 }
309 if (args[j] == NULL || kw_list->kw[i].str_kw[j] == NULL) {
310 found = 0;
311 break;
312 }
313 if (strcmp(args[j], kw_list->kw[i].str_kw[j]) != 0) {
314 found = 0;
315 break;
316 }
317 }
318 if (found)
319 return &kw_list->kw[i];
320 }
321 }
322 return NULL;
323}
324
William Lallemand74c24fb2016-11-21 17:18:36 +0100325void cli_register_kw(struct cli_kw_list *kw_list)
326{
327 LIST_ADDQ(&cli_keywords.list, &kw_list->list);
328}
329
330
331/* allocate a new stats frontend named <name>, and return it
332 * (or NULL in case of lack of memory).
333 */
334static struct proxy *alloc_stats_fe(const char *name, const char *file, int line)
335{
336 struct proxy *fe;
337
338 fe = calloc(1, sizeof(*fe));
339 if (!fe)
340 return NULL;
341
342 init_new_proxy(fe);
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100343 fe->next = proxies_list;
344 proxies_list = fe;
William Lallemand74c24fb2016-11-21 17:18:36 +0100345 fe->last_change = now.tv_sec;
346 fe->id = strdup("GLOBAL");
347 fe->cap = PR_CAP_FE;
348 fe->maxconn = 10; /* default to 10 concurrent connections */
349 fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
350 fe->conf.file = strdup(file);
351 fe->conf.line = line;
352 fe->accept = frontend_accept;
353 fe->default_target = &cli_applet.obj_type;
354
355 /* the stats frontend is the only one able to assign ID #0 */
356 fe->conf.id.key = fe->uuid = 0;
357 eb32_insert(&used_proxy_id, &fe->conf.id);
358 return fe;
359}
360
361/* This function parses a "stats" statement in the "global" section. It returns
362 * -1 if there is any error, otherwise zero. If it returns -1, it will write an
363 * error message into the <err> buffer which will be preallocated. The trailing
364 * '\n' must not be written. The function must be called with <args> pointing to
365 * the first word after "stats".
366 */
367static int stats_parse_global(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +0100368 const struct proxy *defpx, const char *file, int line,
William Lallemand74c24fb2016-11-21 17:18:36 +0100369 char **err)
370{
371 struct bind_conf *bind_conf;
372 struct listener *l;
373
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100374 if (strcmp(args[1], "socket") == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100375 int cur_arg;
376
377 if (*args[2] == 0) {
378 memprintf(err, "'%s %s' in global section expects an address or a path to a UNIX socket", args[0], args[1]);
379 return -1;
380 }
381
382 if (!global.stats_fe) {
383 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
384 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
385 return -1;
386 }
387 }
388
Willy Tarreaua261e9b2016-12-22 20:44:00 +0100389 bind_conf = bind_conf_alloc(global.stats_fe, file, line, args[2], xprt_get(XPRT_RAW));
William Lallemand07a62f72017-05-24 00:57:40 +0200390 bind_conf->level &= ~ACCESS_LVL_MASK;
391 bind_conf->level |= ACCESS_LVL_OPER; /* default access level */
William Lallemand74c24fb2016-11-21 17:18:36 +0100392
393 if (!str2listener(args[2], global.stats_fe, bind_conf, file, line, err)) {
394 memprintf(err, "parsing [%s:%d] : '%s %s' : %s\n",
395 file, line, args[0], args[1], err && *err ? *err : "error");
396 return -1;
397 }
398
399 cur_arg = 3;
400 while (*args[cur_arg]) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100401 struct bind_kw *kw;
Willy Tarreau433b05f2021-03-12 10:14:07 +0100402 const char *best;
William Lallemand74c24fb2016-11-21 17:18:36 +0100403
404 kw = bind_find_kw(args[cur_arg]);
405 if (kw) {
406 if (!kw->parse) {
407 memprintf(err, "'%s %s' : '%s' option is not implemented in this version (check build options).",
408 args[0], args[1], args[cur_arg]);
409 return -1;
410 }
411
412 if (kw->parse(args, cur_arg, global.stats_fe, bind_conf, err) != 0) {
413 if (err && *err)
414 memprintf(err, "'%s %s' : '%s'", args[0], args[1], *err);
415 else
416 memprintf(err, "'%s %s' : error encountered while processing '%s'",
417 args[0], args[1], args[cur_arg]);
418 return -1;
419 }
420
421 cur_arg += 1 + kw->skip;
422 continue;
423 }
424
Willy Tarreau433b05f2021-03-12 10:14:07 +0100425 best = bind_find_best_kw(args[cur_arg]);
426 if (best)
427 memprintf(err, "'%s %s' : unknown keyword '%s'. Did you mean '%s' maybe ?",
428 args[0], args[1], args[cur_arg], best);
429 else
430 memprintf(err, "'%s %s' : unknown keyword '%s'.",
431 args[0], args[1], args[cur_arg]);
William Lallemand74c24fb2016-11-21 17:18:36 +0100432 return -1;
433 }
434
435 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100436 l->accept = session_accept_fd;
William Lallemand74c24fb2016-11-21 17:18:36 +0100437 l->default_target = global.stats_fe->default_target;
438 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
439 l->nice = -64; /* we want to boost priority for local stats */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100440 global.maxsock++; /* for the listening socket */
William Lallemand74c24fb2016-11-21 17:18:36 +0100441 }
442 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100443 else if (strcmp(args[1], "timeout") == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100444 unsigned timeout;
445 const char *res = parse_time_err(args[2], &timeout, TIME_UNIT_MS);
446
Willy Tarreau9faebe32019-06-07 19:00:37 +0200447 if (res == PARSE_TIME_OVER) {
448 memprintf(err, "timer overflow in argument '%s' to '%s %s' (maximum value is 2147483647 ms or ~24.8 days)",
449 args[2], args[0], args[1]);
450 return -1;
451 }
452 else if (res == PARSE_TIME_UNDER) {
453 memprintf(err, "timer underflow in argument '%s' to '%s %s' (minimum non-null value is 1 ms)",
454 args[2], args[0], args[1]);
455 return -1;
456 }
457 else if (res) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100458 memprintf(err, "'%s %s' : unexpected character '%c'", args[0], args[1], *res);
459 return -1;
460 }
461
462 if (!timeout) {
463 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
464 return -1;
465 }
466 if (!global.stats_fe) {
467 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
468 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
469 return -1;
470 }
471 }
472 global.stats_fe->timeout.client = MS_TO_TICKS(timeout);
473 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100474 else if (strcmp(args[1], "maxconn") == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100475 int maxconn = atol(args[2]);
476
477 if (maxconn <= 0) {
478 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
479 return -1;
480 }
481
482 if (!global.stats_fe) {
483 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
484 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
485 return -1;
486 }
487 }
488 global.stats_fe->maxconn = maxconn;
489 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100490 else if (strcmp(args[1], "bind-process") == 0) { /* enable the socket only on some processes */
William Lallemand74c24fb2016-11-21 17:18:36 +0100491 int cur_arg = 2;
492 unsigned long set = 0;
493
494 if (!global.stats_fe) {
495 if ((global.stats_fe = alloc_stats_fe("GLOBAL", file, line)) == NULL) {
496 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
497 return -1;
498 }
499 }
500
501 while (*args[cur_arg]) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100502 if (strcmp(args[cur_arg], "all") == 0) {
503 set = 0;
504 break;
505 }
Willy Tarreauff9c9142019-02-07 10:39:36 +0100506 if (parse_process_number(args[cur_arg], &set, MAX_PROCS, NULL, err)) {
Christopher Fauletf1f0c5f2017-11-22 12:06:43 +0100507 memprintf(err, "'%s %s' : %s", args[0], args[1], *err);
William Lallemand74c24fb2016-11-21 17:18:36 +0100508 return -1;
509 }
510 cur_arg++;
511 }
512 global.stats_fe->bind_proc = set;
513 }
514 else {
515 memprintf(err, "'%s' only supports 'socket', 'maxconn', 'bind-process' and 'timeout' (got '%s')", args[0], args[1]);
516 return -1;
517 }
518 return 0;
519}
520
William Lallemand33d29e22019-04-01 11:30:06 +0200521/*
William Lallemand9a37fd02019-04-12 16:09:24 +0200522 * This function exports the bound addresses of a <frontend> in the environment
523 * variable <varname>. Those addresses are separated by semicolons and prefixed
524 * with their type (abns@, unix@, sockpair@ etc)
525 * Return -1 upon error, 0 otherwise
William Lallemand33d29e22019-04-01 11:30:06 +0200526 */
William Lallemand9a37fd02019-04-12 16:09:24 +0200527int listeners_setenv(struct proxy *frontend, const char *varname)
William Lallemand33d29e22019-04-01 11:30:06 +0200528{
529 struct buffer *trash = get_trash_chunk();
530 struct bind_conf *bind_conf;
531
William Lallemand9a37fd02019-04-12 16:09:24 +0200532 if (frontend) {
533 list_for_each_entry(bind_conf, &frontend->conf.bind, by_fe) {
William Lallemand33d29e22019-04-01 11:30:06 +0200534 struct listener *l;
535
536 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
537 char addr[46];
538 char port[6];
539
William Lallemand620072b2019-04-12 16:09:25 +0200540 /* separate listener by semicolons */
541 if (trash->data)
542 chunk_appendf(trash, ";");
543
Willy Tarreau37159062020-08-27 07:48:42 +0200544 if (l->rx.addr.ss_family == AF_UNIX) {
William Lallemand33d29e22019-04-01 11:30:06 +0200545 const struct sockaddr_un *un;
546
Willy Tarreau37159062020-08-27 07:48:42 +0200547 un = (struct sockaddr_un *)&l->rx.addr;
William Lallemand33d29e22019-04-01 11:30:06 +0200548 if (un->sun_path[0] == '\0') {
549 chunk_appendf(trash, "abns@%s", un->sun_path+1);
550 } else {
551 chunk_appendf(trash, "unix@%s", un->sun_path);
552 }
Willy Tarreau37159062020-08-27 07:48:42 +0200553 } else if (l->rx.addr.ss_family == AF_INET) {
554 addr_to_str(&l->rx.addr, addr, sizeof(addr));
555 port_to_str(&l->rx.addr, port, sizeof(port));
William Lallemand33d29e22019-04-01 11:30:06 +0200556 chunk_appendf(trash, "ipv4@%s:%s", addr, port);
Willy Tarreau37159062020-08-27 07:48:42 +0200557 } else if (l->rx.addr.ss_family == AF_INET6) {
558 addr_to_str(&l->rx.addr, addr, sizeof(addr));
559 port_to_str(&l->rx.addr, port, sizeof(port));
William Lallemand33d29e22019-04-01 11:30:06 +0200560 chunk_appendf(trash, "ipv6@[%s]:%s", addr, port);
Willy Tarreau37159062020-08-27 07:48:42 +0200561 } else if (l->rx.addr.ss_family == AF_CUST_SOCKPAIR) {
562 chunk_appendf(trash, "sockpair@%d", ((struct sockaddr_in *)&l->rx.addr)->sin_addr.s_addr);
William Lallemand33d29e22019-04-01 11:30:06 +0200563 }
William Lallemand33d29e22019-04-01 11:30:06 +0200564 }
565 }
566 trash->area[trash->data++] = '\0';
William Lallemand9a37fd02019-04-12 16:09:24 +0200567 if (setenv(varname, trash->area, 1) < 0)
William Lallemand33d29e22019-04-01 11:30:06 +0200568 return -1;
569 }
570
571 return 0;
572}
573
William Lallemand9a37fd02019-04-12 16:09:24 +0200574int cli_socket_setenv()
575{
576 if (listeners_setenv(global.stats_fe, "HAPROXY_CLI") < 0)
577 return -1;
578 if (listeners_setenv(mworker_proxy, "HAPROXY_MASTER_CLI") < 0)
579 return -1;
580
581 return 0;
582}
583
William Lallemand33d29e22019-04-01 11:30:06 +0200584REGISTER_CONFIG_POSTPARSER("cli", cli_socket_setenv);
585
Willy Tarreaude57a572016-11-23 17:01:39 +0100586/* Verifies that the CLI at least has a level at least as high as <level>
587 * (typically ACCESS_LVL_ADMIN). Returns 1 if OK, otherwise 0. In case of
588 * failure, an error message is prepared and the appctx's state is adjusted
589 * to print it so that a return 1 is enough to abort any processing.
590 */
591int cli_has_level(struct appctx *appctx, int level)
592{
Willy Tarreaude57a572016-11-23 17:01:39 +0100593
William Lallemandf630d012018-12-13 09:05:44 +0100594 if ((appctx->cli_level & ACCESS_LVL_MASK) < level) {
Willy Tarreau9d008692019-08-09 11:21:01 +0200595 cli_err(appctx, stats_permission_denied_msg);
Willy Tarreaude57a572016-11-23 17:01:39 +0100596 return 0;
597 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100598 return 1;
599}
600
William Lallemandb7ea1412018-12-13 09:05:47 +0100601/* same as cli_has_level but for the CLI proxy and without error message */
602int pcli_has_level(struct stream *s, int level)
603{
604 if ((s->pcli_flags & ACCESS_LVL_MASK) < level) {
605 return 0;
606 }
607 return 1;
608}
609
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200610/* Returns severity_output for the current session if set, or default for the socket */
611static int cli_get_severity_output(struct appctx *appctx)
612{
613 if (appctx->cli_severity_output)
614 return appctx->cli_severity_output;
615 return strm_li(si_strm(appctx->owner))->bind_conf->severity_output;
616}
William Lallemand74c24fb2016-11-21 17:18:36 +0100617
Willy Tarreau41908562016-11-24 16:23:38 +0100618/* Processes the CLI interpreter on the stats socket. This function is called
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100619 * from the CLI's IO handler running in an appctx context. The function returns
620 * 1 if the request was understood, otherwise zero (in which case an error
621 * message will be displayed). It is called with appctx->st0
Willy Tarreau41908562016-11-24 16:23:38 +0100622 * set to CLI_ST_GETREQ and presets ->st2 to 0 so that parsers don't have to do
623 * it. It will possilbly leave st0 to CLI_ST_CALLBACK if the keyword needs to
624 * have its own I/O handler called again. Most of the time, parsers will only
625 * set st0 to CLI_ST_PRINT and put their message to be displayed into cli.msg.
Willy Tarreaueaffde32016-12-16 17:59:25 +0100626 * If a keyword parser is NULL and an I/O handler is declared, the I/O handler
627 * will automatically be used.
William Lallemand74c24fb2016-11-21 17:18:36 +0100628 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200629static int cli_parse_request(struct appctx *appctx)
William Lallemand74c24fb2016-11-21 17:18:36 +0100630{
Willy Tarreauf14c7572021-03-13 10:59:23 +0100631 char *args[MAX_CLI_ARGS + 1], *p, *end, *payload = NULL;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200632 int i = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100633 struct cli_kw *kw;
William Lallemand74c24fb2016-11-21 17:18:36 +0100634
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200635 appctx->st2 = 0;
636 memset(&appctx->ctx.cli, 0, sizeof(appctx->ctx.cli));
William Lallemand74c24fb2016-11-21 17:18:36 +0100637
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200638 p = appctx->chunk->area;
639 end = p + appctx->chunk->data;
William Lallemand74c24fb2016-11-21 17:18:36 +0100640
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200641 /*
642 * Get the payload start if there is one.
643 * For the sake of simplicity, the payload pattern is looked up
644 * everywhere from the start of the input but it can only be found
645 * at the end of the first line if APPCTX_CLI_ST1_PAYLOAD is set.
646 *
647 * The input string was zero terminated so it is safe to use
648 * the str*() functions throughout the parsing
649 */
650 if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) {
651 payload = strstr(p, PAYLOAD_PATTERN);
652 end = payload;
653 /* skip the pattern */
654 payload += strlen(PAYLOAD_PATTERN);
655 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100656
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200657 /*
658 * Get pointers on words.
659 * One extra slot is reserved to store a pointer on a null byte.
660 */
Willy Tarreauf14c7572021-03-13 10:59:23 +0100661 while (i < MAX_CLI_ARGS && p < end) {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200662 int j, k;
William Lallemand74c24fb2016-11-21 17:18:36 +0100663
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200664 /* skip leading spaces/tabs */
665 p += strspn(p, " \t");
666 if (!*p)
667 break;
William Lallemand74c24fb2016-11-21 17:18:36 +0100668
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200669 args[i] = p;
Yves Lafonb08c6d02020-06-08 16:08:06 +0200670 while (1) {
671 p += strcspn(p, " \t\\");
672 /* escaped chars using backlashes (\) */
673 if (*p == '\\') {
674 if (!*++p)
675 break;
676 if (!*++p)
677 break;
678 } else {
679 break;
680 }
681 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200682 *p++ = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100683
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200684 /* unescape backslashes (\) */
685 for (j = 0, k = 0; args[i][k]; k++) {
686 if (args[i][k] == '\\') {
687 if (args[i][k + 1] == '\\')
688 k++;
Dragan Dosena1c35ab2016-11-24 11:33:12 +0100689 else
690 continue;
691 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200692 args[i][j] = args[i][k];
William Lallemand74c24fb2016-11-21 17:18:36 +0100693 j++;
694 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200695 args[i][j] = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100696
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200697 i++;
698 }
699 /* fill unused slots */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200700 p = appctx->chunk->area + appctx->chunk->data;
Willy Tarreauf14c7572021-03-13 10:59:23 +0100701 for (; i < MAX_CLI_ARGS + 1; i++)
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200702 args[i] = p;
Willy Tarreau41908562016-11-24 16:23:38 +0100703
704 kw = cli_find_kw(args);
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100705 if (!kw ||
706 (kw->level & ~appctx->cli_level & ACCESS_MASTER_ONLY) ||
707 (appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) == (ACCESS_MASTER_ONLY|ACCESS_MASTER)) {
708 /* keyword not found in this mode */
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100709 cli_gen_usage_msg(appctx, args);
Willy Tarreau41908562016-11-24 16:23:38 +0100710 return 0;
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100711 }
William Lallemand14721be2018-10-26 14:47:37 +0200712
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100713 /* don't handle expert mode commands if not in this mode. */
714 if (kw->level & ~appctx->cli_level & ACCESS_EXPERT) {
715 cli_err(appctx, "This command is restricted to expert mode only.\n");
Willy Tarreauabb9f9b2019-10-24 17:55:53 +0200716 return 0;
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100717 }
Willy Tarreauabb9f9b2019-10-24 17:55:53 +0200718
Willy Tarreau41908562016-11-24 16:23:38 +0100719 appctx->io_handler = kw->io_handler;
Emeric Brund6871f72017-06-29 19:54:13 +0200720 appctx->io_release = kw->io_release;
William Lallemand90b098c2019-10-25 21:10:14 +0200721
722 if (kw->parse && kw->parse(args, payload, appctx, kw->private) != 0)
723 goto fail;
724
725 /* kw->parse could set its own io_handler or io_release handler */
726 if (!appctx->io_handler)
727 goto fail;
728
729 appctx->st0 = CLI_ST_CALLBACK;
730 return 1;
731fail:
732 appctx->io_handler = NULL;
733 appctx->io_release = NULL;
Willy Tarreau41908562016-11-24 16:23:38 +0100734 return 1;
William Lallemand74c24fb2016-11-21 17:18:36 +0100735}
736
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200737/* prepends then outputs the argument msg with a syslog-type severity depending on severity_output value */
738static int cli_output_msg(struct channel *chn, const char *msg, int severity, int severity_output)
739{
Willy Tarreau83061a82018-07-13 11:56:34 +0200740 struct buffer *tmp;
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200741
742 if (likely(severity_output == CLI_SEVERITY_NONE))
Willy Tarreau06d80a92017-10-19 14:32:15 +0200743 return ci_putblk(chn, msg, strlen(msg));
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200744
745 tmp = get_trash_chunk();
746 chunk_reset(tmp);
747
748 if (severity < 0 || severity > 7) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100749 ha_warning("socket command feedback with invalid severity %d", severity);
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200750 chunk_printf(tmp, "[%d]: ", severity);
751 }
752 else {
753 switch (severity_output) {
754 case CLI_SEVERITY_NUMBER:
755 chunk_printf(tmp, "[%d]: ", severity);
756 break;
757 case CLI_SEVERITY_STRING:
758 chunk_printf(tmp, "[%s]: ", log_levels[severity]);
759 break;
760 default:
Christopher Faulet767a84b2017-11-24 16:50:31 +0100761 ha_warning("Unrecognized severity output %d", severity_output);
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200762 }
763 }
764 chunk_appendf(tmp, "%s", msg);
765
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200766 return ci_putblk(chn, tmp->area, strlen(tmp->area));
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200767}
768
William Lallemand74c24fb2016-11-21 17:18:36 +0100769/* This I/O handler runs as an applet embedded in a stream interface. It is
770 * used to processes I/O from/to the stats unix socket. The system relies on a
771 * state machine handling requests and various responses. We read a request,
772 * then we process it and send the response, and we possibly display a prompt.
773 * Then we can read again. The state is stored in appctx->st0 and is one of the
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100774 * CLI_ST_* constants. appctx->st1 is used to indicate whether prompt is enabled
William Lallemand74c24fb2016-11-21 17:18:36 +0100775 * or not.
776 */
777static void cli_io_handler(struct appctx *appctx)
778{
779 struct stream_interface *si = appctx->owner;
780 struct channel *req = si_oc(si);
781 struct channel *res = si_ic(si);
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200782 struct bind_conf *bind_conf = strm_li(si_strm(si))->bind_conf;
William Lallemand74c24fb2016-11-21 17:18:36 +0100783 int reql;
784 int len;
785
786 if (unlikely(si->state == SI_ST_DIS || si->state == SI_ST_CLO))
787 goto out;
788
Joseph Herlant008b3ce2018-11-25 12:51:45 -0800789 /* Check if the input buffer is available. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200790 if (res->buf.size == 0) {
Willy Tarreau4b962a42018-11-15 11:03:21 +0100791 /* buf.size==0 means we failed to get a buffer and were
792 * already subscribed to a wait list to get a buffer.
793 */
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100794 goto out;
795 }
796
William Lallemand74c24fb2016-11-21 17:18:36 +0100797 while (1) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100798 if (appctx->st0 == CLI_ST_INIT) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100799 /* Stats output not initialized yet */
800 memset(&appctx->ctx.stats, 0, sizeof(appctx->ctx.stats));
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200801 /* reset severity to default at init */
802 appctx->cli_severity_output = bind_conf->severity_output;
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100803 appctx->st0 = CLI_ST_GETREQ;
William Lallemandf630d012018-12-13 09:05:44 +0100804 appctx->cli_level = bind_conf->level;
William Lallemand74c24fb2016-11-21 17:18:36 +0100805 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100806 else if (appctx->st0 == CLI_ST_END) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100807 /* Let's close for real now. We just close the request
808 * side, the conditions below will complete if needed.
809 */
810 si_shutw(si);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200811 free_trash_chunk(appctx->chunk);
William Lallemand74c24fb2016-11-21 17:18:36 +0100812 break;
813 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100814 else if (appctx->st0 == CLI_ST_GETREQ) {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200815 char *str;
816
817 /* use a trash chunk to store received data */
818 if (!appctx->chunk) {
819 appctx->chunk = alloc_trash_chunk();
820 if (!appctx->chunk) {
821 appctx->st0 = CLI_ST_END;
822 continue;
823 }
824 }
825
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200826 str = appctx->chunk->area + appctx->chunk->data;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200827
William Lallemand74c24fb2016-11-21 17:18:36 +0100828 /* ensure we have some output room left in the event we
829 * would want to return some info right after parsing.
830 */
831 if (buffer_almost_full(si_ib(si))) {
Willy Tarreaudb398432018-11-15 11:08:52 +0100832 si_rx_room_blk(si);
William Lallemand74c24fb2016-11-21 17:18:36 +0100833 break;
834 }
835
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200836 /* '- 1' is to ensure a null byte can always be inserted at the end */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200837 reql = co_getline(si_oc(si), str,
838 appctx->chunk->size - appctx->chunk->data - 1);
William Lallemand74c24fb2016-11-21 17:18:36 +0100839 if (reql <= 0) { /* closed or EOL not found */
840 if (reql == 0)
841 break;
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100842 appctx->st0 = CLI_ST_END;
William Lallemand74c24fb2016-11-21 17:18:36 +0100843 continue;
844 }
845
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200846 if (!(appctx->st1 & APPCTX_CLI_ST1_PAYLOAD)) {
847 /* seek for a possible unescaped semi-colon. If we find
848 * one, we replace it with an LF and skip only this part.
849 */
850 for (len = 0; len < reql; len++) {
851 if (str[len] == '\\') {
852 len++;
853 continue;
854 }
855 if (str[len] == ';') {
856 str[len] = '\n';
857 reql = len + 1;
858 break;
859 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100860 }
861 }
862
863 /* now it is time to check that we have a full line,
864 * remove the trailing \n and possibly \r, then cut the
865 * line.
866 */
867 len = reql - 1;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200868 if (str[len] != '\n') {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100869 appctx->st0 = CLI_ST_END;
William Lallemand74c24fb2016-11-21 17:18:36 +0100870 continue;
871 }
872
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200873 if (len && str[len-1] == '\r')
William Lallemand74c24fb2016-11-21 17:18:36 +0100874 len--;
875
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200876 str[len] = '\0';
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200877 appctx->chunk->data += len;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200878
879 if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200880 appctx->chunk->area[appctx->chunk->data] = '\n';
881 appctx->chunk->area[appctx->chunk->data + 1] = 0;
882 appctx->chunk->data++;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200883 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100884
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100885 appctx->st0 = CLI_ST_PROMPT;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200886
887 if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) {
888 /* empty line */
889 if (!len) {
890 /* remove the last two \n */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200891 appctx->chunk->data -= 2;
892 appctx->chunk->area[appctx->chunk->data] = 0;
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100893 cli_parse_request(appctx);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200894 chunk_reset(appctx->chunk);
895 /* NB: cli_sock_parse_request() may have put
896 * another CLI_ST_O_* into appctx->st0.
897 */
898
899 appctx->st1 &= ~APPCTX_CLI_ST1_PAYLOAD;
William Lallemand74c24fb2016-11-21 17:18:36 +0100900 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100901 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200902 else {
903 /*
904 * Look for the "payload start" pattern at the end of a line
905 * Its location is not remembered here, this is just to switch
906 * to a gathering mode.
William Lallemand74c24fb2016-11-21 17:18:36 +0100907 */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100908 if (strcmp(appctx->chunk->area + appctx->chunk->data - strlen(PAYLOAD_PATTERN), PAYLOAD_PATTERN) == 0)
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200909 appctx->st1 |= APPCTX_CLI_ST1_PAYLOAD;
Andjelko Iharosc3680ec2017-07-20 16:49:14 +0200910 else {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200911 /* no payload, the command is complete: parse the request */
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100912 cli_parse_request(appctx);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200913 chunk_reset(appctx->chunk);
Andjelko Iharosc3680ec2017-07-20 16:49:14 +0200914 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100915 }
916
917 /* re-adjust req buffer */
Willy Tarreau06d80a92017-10-19 14:32:15 +0200918 co_skip(si_oc(si), reql);
William Lallemand74c24fb2016-11-21 17:18:36 +0100919 req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
920 }
921 else { /* output functions */
Willy Tarreaud50c7fe2019-08-09 09:57:36 +0200922 const char *msg;
923 int sev;
924
William Lallemand74c24fb2016-11-21 17:18:36 +0100925 switch (appctx->st0) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100926 case CLI_ST_PROMPT:
William Lallemand74c24fb2016-11-21 17:18:36 +0100927 break;
Willy Tarreaud50c7fe2019-08-09 09:57:36 +0200928 case CLI_ST_PRINT: /* print const message in msg */
929 case CLI_ST_PRINT_ERR: /* print const error in msg */
930 case CLI_ST_PRINT_DYN: /* print dyn message in msg, free */
931 case CLI_ST_PRINT_FREE: /* print dyn error in err, free */
932 if (appctx->st0 == CLI_ST_PRINT || appctx->st0 == CLI_ST_PRINT_ERR) {
933 sev = appctx->st0 == CLI_ST_PRINT_ERR ?
934 LOG_ERR : appctx->ctx.cli.severity;
935 msg = appctx->ctx.cli.msg;
936 }
937 else if (appctx->st0 == CLI_ST_PRINT_DYN || appctx->st0 == CLI_ST_PRINT_FREE) {
938 sev = appctx->st0 == CLI_ST_PRINT_FREE ?
939 LOG_ERR : appctx->ctx.cli.severity;
940 msg = appctx->ctx.cli.err;
941 if (!msg) {
942 sev = LOG_ERR;
943 msg = "Out of memory.\n";
944 }
945 }
946 else {
947 sev = LOG_ERR;
948 msg = "Internal error.\n";
949 }
Aurélien Nephtalic511b7c2018-04-16 18:50:19 +0200950
Willy Tarreaud50c7fe2019-08-09 09:57:36 +0200951 if (cli_output_msg(res, msg, sev, cli_get_severity_output(appctx)) != -1) {
952 if (appctx->st0 == CLI_ST_PRINT_FREE ||
953 appctx->st0 == CLI_ST_PRINT_DYN) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100954 ha_free(&appctx->ctx.cli.err);
Willy Tarreaud50c7fe2019-08-09 09:57:36 +0200955 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100956 appctx->st0 = CLI_ST_PROMPT;
William Lallemand74c24fb2016-11-21 17:18:36 +0100957 }
958 else
Willy Tarreaudb398432018-11-15 11:08:52 +0100959 si_rx_room_blk(si);
William Lallemand74c24fb2016-11-21 17:18:36 +0100960 break;
Willy Tarreaud50c7fe2019-08-09 09:57:36 +0200961
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100962 case CLI_ST_CALLBACK: /* use custom pointer */
William Lallemand74c24fb2016-11-21 17:18:36 +0100963 if (appctx->io_handler)
964 if (appctx->io_handler(appctx)) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100965 appctx->st0 = CLI_ST_PROMPT;
William Lallemand74c24fb2016-11-21 17:18:36 +0100966 if (appctx->io_release) {
967 appctx->io_release(appctx);
968 appctx->io_release = NULL;
969 }
970 }
971 break;
972 default: /* abnormal state */
973 si->flags |= SI_FL_ERR;
974 break;
975 }
976
977 /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100978 if (appctx->st0 == CLI_ST_PROMPT) {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200979 const char *prompt = "";
980
981 if (appctx->st1 & APPCTX_CLI_ST1_PROMPT) {
982 /*
983 * when entering a payload with interactive mode, change the prompt
984 * to emphasize that more data can still be sent
985 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200986 if (appctx->chunk->data && appctx->st1 & APPCTX_CLI_ST1_PAYLOAD)
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200987 prompt = "+ ";
988 else
989 prompt = "\n> ";
990 }
991 else {
William Lallemandad032882019-07-01 10:56:15 +0200992 if (!(appctx->st1 & (APPCTX_CLI_ST1_PAYLOAD|APPCTX_CLI_ST1_NOLF)))
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200993 prompt = "\n";
994 }
995
996 if (ci_putstr(si_ic(si), prompt) != -1)
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100997 appctx->st0 = CLI_ST_GETREQ;
William Lallemand74c24fb2016-11-21 17:18:36 +0100998 else
Willy Tarreaudb398432018-11-15 11:08:52 +0100999 si_rx_room_blk(si);
William Lallemand74c24fb2016-11-21 17:18:36 +01001000 }
1001
1002 /* If the output functions are still there, it means they require more room. */
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001003 if (appctx->st0 >= CLI_ST_OUTPUT)
William Lallemand74c24fb2016-11-21 17:18:36 +01001004 break;
1005
1006 /* Now we close the output if one of the writers did so,
1007 * or if we're not in interactive mode and the request
1008 * buffer is empty. This still allows pipelined requests
1009 * to be sent in non-interactive mode.
1010 */
William Lallemand3de09d52018-12-11 16:10:56 +01001011 if (((res->flags & (CF_SHUTW|CF_SHUTW_NOW))) ||
1012 (!(appctx->st1 & APPCTX_CLI_ST1_PROMPT) && !co_data(req) && (!(appctx->st1 & APPCTX_CLI_ST1_PAYLOAD)))) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001013 appctx->st0 = CLI_ST_END;
William Lallemand74c24fb2016-11-21 17:18:36 +01001014 continue;
1015 }
1016
1017 /* switch state back to GETREQ to read next requests */
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001018 appctx->st0 = CLI_ST_GETREQ;
William Lallemandad032882019-07-01 10:56:15 +02001019 /* reactivate the \n at the end of the response for the next command */
1020 appctx->st1 &= ~APPCTX_CLI_ST1_NOLF;
William Lallemand74c24fb2016-11-21 17:18:36 +01001021 }
1022 }
1023
1024 if ((res->flags & CF_SHUTR) && (si->state == SI_ST_EST)) {
1025 DPRINTF(stderr, "%s@%d: si to buf closed. req=%08x, res=%08x, st=%d\n",
1026 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
1027 /* Other side has closed, let's abort if we have no more processing to do
1028 * and nothing more to consume. This is comparable to a broken pipe, so
1029 * we forward the close to the request side so that it flows upstream to
1030 * the client.
1031 */
1032 si_shutw(si);
1033 }
1034
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001035 if ((req->flags & CF_SHUTW) && (si->state == SI_ST_EST) && (appctx->st0 < CLI_ST_OUTPUT)) {
William Lallemand74c24fb2016-11-21 17:18:36 +01001036 DPRINTF(stderr, "%s@%d: buf to si closed. req=%08x, res=%08x, st=%d\n",
1037 __FUNCTION__, __LINE__, req->flags, res->flags, si->state);
1038 /* We have no more processing to do, and nothing more to send, and
1039 * the client side has closed. So we'll forward this state downstream
1040 * on the response buffer.
1041 */
1042 si_shutr(si);
1043 res->flags |= CF_READ_NULL;
1044 }
1045
1046 out:
Christopher Faulet45073512018-07-20 10:16:29 +02001047 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 +01001048 __FUNCTION__, __LINE__,
Christopher Faulet45073512018-07-20 10:16:29 +02001049 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 +01001050}
1051
William Lallemand74c24fb2016-11-21 17:18:36 +01001052/* This is called when the stream interface is closed. For instance, upon an
1053 * external abort, we won't call the i/o handler anymore so we may need to
1054 * remove back references to the stream currently being dumped.
1055 */
1056static void cli_release_handler(struct appctx *appctx)
1057{
1058 if (appctx->io_release) {
1059 appctx->io_release(appctx);
1060 appctx->io_release = NULL;
1061 }
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001062 else if (appctx->st0 == CLI_ST_PRINT_FREE || appctx->st0 == CLI_ST_PRINT_DYN) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +01001063 ha_free(&appctx->ctx.cli.err);
William Lallemand74c24fb2016-11-21 17:18:36 +01001064 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001065}
1066
1067/* This function dumps all environmnent variables to the buffer. It returns 0
1068 * if the output buffer is full and it needs to be called again, otherwise
Willy Tarreauf6710f82016-12-16 17:45:44 +01001069 * non-zero. Dumps only one entry if st2 == STAT_ST_END. It uses cli.p0 as the
1070 * pointer to the current variable.
William Lallemand74c24fb2016-11-21 17:18:36 +01001071 */
Willy Tarreau0a739292016-11-22 20:21:23 +01001072static int cli_io_handler_show_env(struct appctx *appctx)
William Lallemand74c24fb2016-11-21 17:18:36 +01001073{
Willy Tarreau0a739292016-11-22 20:21:23 +01001074 struct stream_interface *si = appctx->owner;
Willy Tarreauf6710f82016-12-16 17:45:44 +01001075 char **var = appctx->ctx.cli.p0;
William Lallemand74c24fb2016-11-21 17:18:36 +01001076
1077 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
1078 return 1;
1079
1080 chunk_reset(&trash);
1081
1082 /* we have two inner loops here, one for the proxy, the other one for
1083 * the buffer.
1084 */
Willy Tarreauf6710f82016-12-16 17:45:44 +01001085 while (*var) {
1086 chunk_printf(&trash, "%s\n", *var);
William Lallemand74c24fb2016-11-21 17:18:36 +01001087
Willy Tarreau06d80a92017-10-19 14:32:15 +02001088 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001089 si_rx_room_blk(si);
William Lallemand74c24fb2016-11-21 17:18:36 +01001090 return 0;
1091 }
1092 if (appctx->st2 == STAT_ST_END)
1093 break;
Willy Tarreauf6710f82016-12-16 17:45:44 +01001094 var++;
1095 appctx->ctx.cli.p0 = var;
William Lallemand74c24fb2016-11-21 17:18:36 +01001096 }
1097
1098 /* dump complete */
1099 return 1;
1100}
1101
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001102/* This function dumps all file descriptors states (or the requested one) to
1103 * the buffer. It returns 0 if the output buffer is full and it needs to be
1104 * called again, otherwise non-zero. Dumps only one entry if st2 == STAT_ST_END.
1105 * It uses cli.i0 as the fd number to restart from.
1106 */
1107static int cli_io_handler_show_fd(struct appctx *appctx)
1108{
1109 struct stream_interface *si = appctx->owner;
1110 int fd = appctx->ctx.cli.i0;
Willy Tarreauca1b1572018-12-18 15:45:11 +01001111 int ret = 1;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001112
1113 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreauca1b1572018-12-18 15:45:11 +01001114 goto end;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001115
1116 chunk_reset(&trash);
1117
Willy Tarreauca1b1572018-12-18 15:45:11 +01001118 /* isolate the threads once per round. We're limited to a buffer worth
1119 * of output anyway, it cannot last very long.
1120 */
1121 thread_isolate();
1122
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001123 /* we have two inner loops here, one for the proxy, the other one for
1124 * the buffer.
1125 */
Aurélien Nephtali498a1152018-03-09 18:51:16 +01001126 while (fd >= 0 && fd < global.maxsock) {
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001127 struct fdtab fdt;
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001128 const struct listener *li = NULL;
1129 const struct server *sv = NULL;
1130 const struct proxy *px = NULL;
1131 const struct connection *conn = NULL;
Willy Tarreaua833cd92018-03-29 13:19:37 +02001132 const struct mux_ops *mux = NULL;
Willy Tarreau37be9532021-01-20 14:40:04 +01001133 const struct xprt_ops *xprt = NULL;
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001134 const void *ctx = NULL;
Willy Tarreau37be9532021-01-20 14:40:04 +01001135 const void *xprt_ctx = NULL;
Willy Tarreau286ec682017-08-09 16:35:44 +02001136 uint32_t conn_flags = 0;
Willy Tarreaue9ca8072018-12-19 18:40:58 +01001137 int is_back = 0;
Willy Tarreau8050efe2021-01-21 08:26:06 +01001138 int suspicious = 0;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001139
1140 fdt = fdtab[fd];
1141
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001142 /* When DEBUG_FD is set, we also report closed FDs that have a
1143 * non-null event count to detect stuck ones.
1144 */
Willy Tarreau13c1a012020-06-29 14:23:31 +02001145 if (!fdt.owner) {
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001146#ifdef DEBUG_FD
Willy Tarreau13c1a012020-06-29 14:23:31 +02001147 if (!fdt.event_count)
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001148#endif
Willy Tarreau13c1a012020-06-29 14:23:31 +02001149 goto skip; // closed
1150 }
Willy Tarreau586f71b2020-12-11 15:54:36 +01001151 else if (fdt.iocb == sock_conn_iocb) {
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001152 conn = (const struct connection *)fdt.owner;
1153 conn_flags = conn->flags;
1154 mux = conn->mux;
1155 ctx = conn->ctx;
Willy Tarreau37be9532021-01-20 14:40:04 +01001156 xprt = conn->xprt;
1157 xprt_ctx = conn->xprt_ctx;
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001158 li = objt_listener(conn->target);
1159 sv = objt_server(conn->target);
1160 px = objt_proxy(conn->target);
1161 is_back = conn_is_back(conn);
Willy Tarreaudacfde42021-01-21 09:07:29 +01001162 if (atleast2(fdt.thread_mask))
1163 suspicious = 1;
1164 if (conn->handle.fd != fd)
1165 suspicious = 1;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001166 }
Willy Tarreaua74cb382020-10-15 21:29:49 +02001167 else if (fdt.iocb == sock_accept_iocb)
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001168 li = fdt.owner;
1169
Willy Tarreaudacfde42021-01-21 09:07:29 +01001170 if (!fdt.thread_mask)
1171 suspicious = 1;
1172
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001173 chunk_printf(&trash,
Willy Tarreaucf12f2e2020-03-03 17:29:58 +01001174 " %5d : st=0x%02x(R:%c%c W:%c%c) ev=0x%02x(%c%c%c%c%c) [%c%c] tmask=0x%lx umask=0x%lx owner=%p iocb=%p(",
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001175 fd,
1176 fdt.state,
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001177 (fdt.state & FD_EV_READY_R) ? 'R' : 'r',
1178 (fdt.state & FD_EV_ACTIVE_R) ? 'A' : 'a',
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001179 (fdt.state & FD_EV_READY_W) ? 'R' : 'r',
1180 (fdt.state & FD_EV_ACTIVE_W) ? 'A' : 'a',
1181 fdt.ev,
1182 (fdt.ev & FD_POLL_HUP) ? 'H' : 'h',
1183 (fdt.ev & FD_POLL_ERR) ? 'E' : 'e',
1184 (fdt.ev & FD_POLL_OUT) ? 'O' : 'o',
1185 (fdt.ev & FD_POLL_PRI) ? 'P' : 'p',
1186 (fdt.ev & FD_POLL_IN) ? 'I' : 'i',
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001187 fdt.linger_risk ? 'L' : 'l',
1188 fdt.cloned ? 'C' : 'c',
Willy Tarreauc754b342018-03-30 15:00:15 +02001189 fdt.thread_mask, fdt.update_mask,
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001190 fdt.owner,
Willy Tarreaucf12f2e2020-03-03 17:29:58 +01001191 fdt.iocb);
1192 resolve_sym_name(&trash, NULL, fdt.iocb);
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001193
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001194 if (!fdt.owner) {
1195 chunk_appendf(&trash, ")");
1196 }
Willy Tarreau586f71b2020-12-11 15:54:36 +01001197 else if (fdt.iocb == sock_conn_iocb) {
Willy Tarreaucf12f2e2020-03-03 17:29:58 +01001198 chunk_appendf(&trash, ") back=%d cflg=0x%08x", is_back, conn_flags);
Willy Tarreaudacfde42021-01-21 09:07:29 +01001199
1200 if (conn->handle.fd != fd) {
1201 chunk_appendf(&trash, " fd=%d(BOGUS)", conn->handle.fd);
1202 suspicious = 1;
Willy Tarreaued989202021-02-05 10:54:52 +01001203 } else {
1204 struct sockaddr_storage sa;
1205 socklen_t salen;
1206
1207 salen = sizeof(sa);
1208 if (getsockname(fd, (struct sockaddr *)&sa, &salen) != -1) {
1209 if (sa.ss_family == AF_INET)
1210 chunk_appendf(&trash, " fam=ipv4 lport=%d", ntohs(((const struct sockaddr_in *)&sa)->sin_port));
1211 else if (sa.ss_family == AF_INET6)
1212 chunk_appendf(&trash, " fam=ipv6 lport=%d", ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port));
1213 else if (sa.ss_family == AF_UNIX)
1214 chunk_appendf(&trash, " fam=unix");
1215 }
1216
1217 salen = sizeof(sa);
1218 if (getpeername(fd, (struct sockaddr *)&sa, &salen) != -1) {
1219 if (sa.ss_family == AF_INET)
1220 chunk_appendf(&trash, " rport=%d", ntohs(((const struct sockaddr_in *)&sa)->sin_port));
1221 else if (sa.ss_family == AF_INET6)
1222 chunk_appendf(&trash, " rport=%d", ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port));
1223 }
Willy Tarreaudacfde42021-01-21 09:07:29 +01001224 }
1225
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001226 if (px)
1227 chunk_appendf(&trash, " px=%s", px->id);
1228 else if (sv)
1229 chunk_appendf(&trash, " sv=%s/%s", sv->id, sv->proxy->id);
1230 else if (li)
1231 chunk_appendf(&trash, " fe=%s", li->bind_conf->frontend->id);
Willy Tarreau35b1b482018-03-28 18:41:30 +02001232
Willy Tarreaub011d8f2018-03-30 14:41:19 +02001233 if (mux) {
Willy Tarreau3d2ee552018-12-19 14:12:10 +01001234 chunk_appendf(&trash, " mux=%s ctx=%p", mux->name, ctx);
Willy Tarreaudacfde42021-01-21 09:07:29 +01001235 if (!ctx)
1236 suspicious = 1;
Willy Tarreaub011d8f2018-03-30 14:41:19 +02001237 if (mux->show_fd)
Willy Tarreau8050efe2021-01-21 08:26:06 +01001238 suspicious |= mux->show_fd(&trash, fdt.owner);
Willy Tarreaub011d8f2018-03-30 14:41:19 +02001239 }
Willy Tarreau35b1b482018-03-28 18:41:30 +02001240 else
1241 chunk_appendf(&trash, " nomux");
Willy Tarreau37be9532021-01-20 14:40:04 +01001242
1243 chunk_appendf(&trash, " xprt=%s", xprt ? xprt->name : "");
Willy Tarreau108a2712021-01-20 15:30:56 +01001244 if (xprt) {
1245 if (xprt_ctx || xprt->show_fd)
1246 chunk_appendf(&trash, " xprt_ctx=%p", xprt_ctx);
1247 if (xprt->show_fd)
Willy Tarreau8050efe2021-01-21 08:26:06 +01001248 suspicious |= xprt->show_fd(&trash, conn, xprt_ctx);
Willy Tarreau108a2712021-01-20 15:30:56 +01001249 }
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001250 }
Willy Tarreaua74cb382020-10-15 21:29:49 +02001251 else if (fdt.iocb == sock_accept_iocb) {
Willy Tarreaued989202021-02-05 10:54:52 +01001252 struct sockaddr_storage sa;
1253 socklen_t salen;
1254
Willy Tarreaucf12f2e2020-03-03 17:29:58 +01001255 chunk_appendf(&trash, ") l.st=%s fe=%s",
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001256 listener_state_str(li),
1257 li->bind_conf->frontend->id);
Willy Tarreaued989202021-02-05 10:54:52 +01001258
1259 salen = sizeof(sa);
1260 if (getsockname(fd, (struct sockaddr *)&sa, &salen) != -1) {
1261 if (sa.ss_family == AF_INET)
1262 chunk_appendf(&trash, " fam=ipv4 lport=%d", ntohs(((const struct sockaddr_in *)&sa)->sin_port));
1263 else if (sa.ss_family == AF_INET6)
1264 chunk_appendf(&trash, " fam=ipv6 lport=%d", ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port));
1265 else if (sa.ss_family == AF_UNIX)
1266 chunk_appendf(&trash, " fam=unix");
1267 }
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001268 }
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001269 else
1270 chunk_appendf(&trash, ")");
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001271
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001272#ifdef DEBUG_FD
1273 chunk_appendf(&trash, " evcnt=%u", fdtab[fd].event_count);
Willy Tarreaudacfde42021-01-21 09:07:29 +01001274 if (fdtab[fd].event_count >= 1000000)
1275 suspicious = 1;
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001276#endif
Willy Tarreau8050efe2021-01-21 08:26:06 +01001277 chunk_appendf(&trash, "%s\n", suspicious ? " !" : "");
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001278
Willy Tarreau06d80a92017-10-19 14:32:15 +02001279 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001280 si_rx_room_blk(si);
Willy Tarreauca1b1572018-12-18 15:45:11 +01001281 appctx->ctx.cli.i0 = fd;
1282 ret = 0;
1283 break;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001284 }
1285 skip:
1286 if (appctx->st2 == STAT_ST_END)
1287 break;
1288
1289 fd++;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001290 }
1291
Willy Tarreauca1b1572018-12-18 15:45:11 +01001292 end:
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001293 /* dump complete */
Willy Tarreauca1b1572018-12-18 15:45:11 +01001294
1295 thread_release();
1296 return ret;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001297}
1298
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001299/* This function dumps some activity counters used by developers and support to
1300 * rule out some hypothesis during bug reports. It returns 0 if the output
1301 * buffer is full and it needs to be called again, otherwise non-zero. It dumps
1302 * everything at once in the buffer and is not designed to do it in multiple
1303 * passes.
1304 */
1305static int cli_io_handler_show_activity(struct appctx *appctx)
1306{
1307 struct stream_interface *si = appctx->owner;
1308 int thr;
1309
1310 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
1311 return 1;
1312
1313 chunk_reset(&trash);
1314
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001315#undef SHOW_TOT
1316#define SHOW_TOT(t, x) \
Willy Tarreaua0211b82019-05-28 15:09:08 +02001317 do { \
1318 unsigned int _v[MAX_THREADS]; \
1319 unsigned int _tot; \
1320 const unsigned int _nbt = global.nbthread; \
1321 for (_tot = t = 0; t < _nbt; t++) \
1322 _tot += _v[t] = (x); \
1323 if (_nbt == 1) { \
1324 chunk_appendf(&trash, " %u\n", _tot); \
1325 break; \
1326 } \
1327 chunk_appendf(&trash, " %u [", _tot); \
1328 for (t = 0; t < _nbt; t++) \
1329 chunk_appendf(&trash, " %u", _v[t]); \
1330 chunk_appendf(&trash, " ]\n"); \
1331 } while (0)
1332
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001333#undef SHOW_AVG
1334#define SHOW_AVG(t, x) \
1335 do { \
1336 unsigned int _v[MAX_THREADS]; \
1337 unsigned int _tot; \
1338 const unsigned int _nbt = global.nbthread; \
1339 for (_tot = t = 0; t < _nbt; t++) \
1340 _tot += _v[t] = (x); \
1341 if (_nbt == 1) { \
1342 chunk_appendf(&trash, " %u\n", _tot); \
1343 break; \
1344 } \
1345 chunk_appendf(&trash, " %u [", (_tot + _nbt/2) / _nbt); \
1346 for (t = 0; t < _nbt; t++) \
1347 chunk_appendf(&trash, " %u", _v[t]); \
1348 chunk_appendf(&trash, " ]\n"); \
1349 } while (0)
1350
Willy Tarreaua0211b82019-05-28 15:09:08 +02001351 chunk_appendf(&trash, "thread_id: %u (%u..%u)\n", tid + 1, 1, global.nbthread);
1352 chunk_appendf(&trash, "date_now: %lu.%06lu\n", (long)now.tv_sec, (long)now.tv_usec);
Willy Tarreaua00cf9b2020-06-17 20:44:28 +02001353 chunk_appendf(&trash, "ctxsw:"); SHOW_TOT(thr, activity[thr].ctxsw);
1354 chunk_appendf(&trash, "tasksw:"); SHOW_TOT(thr, activity[thr].tasksw);
1355 chunk_appendf(&trash, "empty_rq:"); SHOW_TOT(thr, activity[thr].empty_rq);
1356 chunk_appendf(&trash, "long_rq:"); SHOW_TOT(thr, activity[thr].long_rq);
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001357 chunk_appendf(&trash, "loops:"); SHOW_TOT(thr, activity[thr].loops);
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001358 chunk_appendf(&trash, "wake_tasks:"); SHOW_TOT(thr, activity[thr].wake_tasks);
1359 chunk_appendf(&trash, "wake_signal:"); SHOW_TOT(thr, activity[thr].wake_signal);
Willy Tarreaue5451532020-06-17 20:25:18 +02001360 chunk_appendf(&trash, "poll_io:"); SHOW_TOT(thr, activity[thr].poll_io);
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001361 chunk_appendf(&trash, "poll_exp:"); SHOW_TOT(thr, activity[thr].poll_exp);
Willy Tarreaue4063862020-06-17 20:35:33 +02001362 chunk_appendf(&trash, "poll_drop_fd:"); SHOW_TOT(thr, activity[thr].poll_drop_fd);
1363 chunk_appendf(&trash, "poll_dead_fd:"); SHOW_TOT(thr, activity[thr].poll_dead_fd);
1364 chunk_appendf(&trash, "poll_skip_fd:"); SHOW_TOT(thr, activity[thr].poll_skip_fd);
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001365 chunk_appendf(&trash, "conn_dead:"); SHOW_TOT(thr, activity[thr].conn_dead);
Willy Tarreau7af4fa92020-06-17 20:49:49 +02001366 chunk_appendf(&trash, "stream_calls:"); SHOW_TOT(thr, activity[thr].stream_calls);
Willy Tarreaua8b2ce02019-05-28 17:04:16 +02001367 chunk_appendf(&trash, "pool_fail:"); SHOW_TOT(thr, activity[thr].pool_fail);
1368 chunk_appendf(&trash, "buf_wait:"); SHOW_TOT(thr, activity[thr].buf_wait);
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001369 chunk_appendf(&trash, "cpust_ms_tot:"); SHOW_TOT(thr, activity[thr].cpust_total / 2);
1370 chunk_appendf(&trash, "cpust_ms_1s:"); SHOW_TOT(thr, read_freq_ctr(&activity[thr].cpust_1s) / 2);
1371 chunk_appendf(&trash, "cpust_ms_15s:"); SHOW_TOT(thr, read_freq_ctr_period(&activity[thr].cpust_15s, 15000) / 2);
1372 chunk_appendf(&trash, "avg_loop_us:"); SHOW_AVG(thr, swrate_avg(activity[thr].avg_loop_us, TIME_STATS_SAMPLES));
1373 chunk_appendf(&trash, "accepted:"); SHOW_TOT(thr, activity[thr].accepted);
1374 chunk_appendf(&trash, "accq_pushed:"); SHOW_TOT(thr, activity[thr].accq_pushed);
1375 chunk_appendf(&trash, "accq_full:"); SHOW_TOT(thr, activity[thr].accq_full);
Willy Tarreaue6182842019-04-15 18:54:10 +02001376#ifdef USE_THREAD
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001377 chunk_appendf(&trash, "accq_ring:"); SHOW_TOT(thr, (accept_queue_rings[thr].tail - accept_queue_rings[thr].head + ACCEPT_QUEUE_SIZE) % ACCEPT_QUEUE_SIZE);
Willy Tarreaub1591322020-06-29 14:17:59 +02001378 chunk_appendf(&trash, "fd_takeover:"); SHOW_TOT(thr, activity[thr].fd_takeover);
Willy Tarreaue6182842019-04-15 18:54:10 +02001379#endif
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001380
Willy Tarreaud6a78502019-05-27 07:03:38 +02001381#if defined(DEBUG_DEV)
1382 /* keep these ones at the end */
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001383 chunk_appendf(&trash, "ctr0:"); SHOW_TOT(thr, activity[thr].ctr0);
1384 chunk_appendf(&trash, "ctr1:"); SHOW_TOT(thr, activity[thr].ctr1);
1385 chunk_appendf(&trash, "ctr2:"); SHOW_TOT(thr, activity[thr].ctr2);
Willy Tarreaud6a78502019-05-27 07:03:38 +02001386#endif
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001387
1388 if (ci_putchk(si_ic(si), &trash) == -1) {
1389 chunk_reset(&trash);
1390 chunk_printf(&trash, "[output too large, cannot dump]\n");
Willy Tarreaudb398432018-11-15 11:08:52 +01001391 si_rx_room_blk(si);
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001392 }
1393
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001394#undef SHOW_AVG
1395#undef SHOW_TOT
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001396 /* dump complete */
1397 return 1;
1398}
1399
William Lallemandeceddf72016-12-15 18:06:44 +01001400/*
Willy Tarreau3af9d832016-12-16 12:58:09 +01001401 * CLI IO handler for `show cli sockets`.
1402 * Uses ctx.cli.p0 to store the restart pointer.
William Lallemandeceddf72016-12-15 18:06:44 +01001403 */
1404static int cli_io_handler_show_cli_sock(struct appctx *appctx)
1405{
1406 struct bind_conf *bind_conf;
1407 struct stream_interface *si = appctx->owner;
1408
1409 chunk_reset(&trash);
1410
1411 switch (appctx->st2) {
1412 case STAT_ST_INIT:
1413 chunk_printf(&trash, "# socket lvl processes\n");
Willy Tarreau06d80a92017-10-19 14:32:15 +02001414 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001415 si_rx_room_blk(si);
William Lallemandeceddf72016-12-15 18:06:44 +01001416 return 0;
1417 }
William Lallemandeceddf72016-12-15 18:06:44 +01001418 appctx->st2 = STAT_ST_LIST;
Tim Duesterhus588b3142020-05-29 14:35:51 +02001419 /* fall through */
William Lallemandeceddf72016-12-15 18:06:44 +01001420
1421 case STAT_ST_LIST:
1422 if (global.stats_fe) {
1423 list_for_each_entry(bind_conf, &global.stats_fe->conf.bind, by_fe) {
1424 struct listener *l;
1425
1426 /*
Willy Tarreau3af9d832016-12-16 12:58:09 +01001427 * get the latest dumped node in appctx->ctx.cli.p0
William Lallemandeceddf72016-12-15 18:06:44 +01001428 * if the current node is the first of the list
1429 */
1430
Willy Tarreau3af9d832016-12-16 12:58:09 +01001431 if (appctx->ctx.cli.p0 &&
1432 &bind_conf->by_fe == (&global.stats_fe->conf.bind)->n) {
William Lallemandeceddf72016-12-15 18:06:44 +01001433 /* change the current node to the latest dumped and continue the loop */
Willy Tarreau3af9d832016-12-16 12:58:09 +01001434 bind_conf = LIST_ELEM(appctx->ctx.cli.p0, typeof(bind_conf), by_fe);
William Lallemandeceddf72016-12-15 18:06:44 +01001435 continue;
1436 }
1437
1438 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
1439
1440 char addr[46];
1441 char port[6];
1442
Willy Tarreau37159062020-08-27 07:48:42 +02001443 if (l->rx.addr.ss_family == AF_UNIX) {
William Lallemandeceddf72016-12-15 18:06:44 +01001444 const struct sockaddr_un *un;
1445
Willy Tarreau37159062020-08-27 07:48:42 +02001446 un = (struct sockaddr_un *)&l->rx.addr;
William Lallemande58915f2019-04-01 11:30:05 +02001447 if (un->sun_path[0] == '\0') {
William Lallemand75812a72019-04-01 11:30:04 +02001448 chunk_appendf(&trash, "abns@%s ", un->sun_path+1);
William Lallemande58915f2019-04-01 11:30:05 +02001449 } else {
1450 chunk_appendf(&trash, "unix@%s ", un->sun_path);
1451 }
Willy Tarreau37159062020-08-27 07:48:42 +02001452 } else if (l->rx.addr.ss_family == AF_INET) {
1453 addr_to_str(&l->rx.addr, addr, sizeof(addr));
1454 port_to_str(&l->rx.addr, port, sizeof(port));
William Lallemande58915f2019-04-01 11:30:05 +02001455 chunk_appendf(&trash, "ipv4@%s:%s ", addr, port);
Willy Tarreau37159062020-08-27 07:48:42 +02001456 } else if (l->rx.addr.ss_family == AF_INET6) {
1457 addr_to_str(&l->rx.addr, addr, sizeof(addr));
1458 port_to_str(&l->rx.addr, port, sizeof(port));
William Lallemande58915f2019-04-01 11:30:05 +02001459 chunk_appendf(&trash, "ipv6@[%s]:%s ", addr, port);
Willy Tarreau37159062020-08-27 07:48:42 +02001460 } else if (l->rx.addr.ss_family == AF_CUST_SOCKPAIR) {
1461 chunk_appendf(&trash, "sockpair@%d ", ((struct sockaddr_in *)&l->rx.addr)->sin_addr.s_addr);
William Lallemandeceddf72016-12-15 18:06:44 +01001462 } else
William Lallemand26314342018-10-26 14:47:41 +02001463 chunk_appendf(&trash, "unknown ");
William Lallemandeceddf72016-12-15 18:06:44 +01001464
William Lallemand07a62f72017-05-24 00:57:40 +02001465 if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_ADMIN)
William Lallemandeceddf72016-12-15 18:06:44 +01001466 chunk_appendf(&trash, "admin ");
William Lallemand07a62f72017-05-24 00:57:40 +02001467 else if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_OPER)
1468 chunk_appendf(&trash, "operator ");
1469 else if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_USER)
1470 chunk_appendf(&trash, "user ");
William Lallemandeceddf72016-12-15 18:06:44 +01001471 else
1472 chunk_appendf(&trash, " ");
1473
Willy Tarreaue26993c2020-09-03 07:18:55 +02001474 if (bind_conf->settings.bind_proc != 0) {
William Lallemandeceddf72016-12-15 18:06:44 +01001475 int pos;
Willy Tarreaue26993c2020-09-03 07:18:55 +02001476 for (pos = 0; pos < 8 * sizeof(bind_conf->settings.bind_proc); pos++) {
1477 if (bind_conf->settings.bind_proc & (1UL << pos)) {
William Lallemandeceddf72016-12-15 18:06:44 +01001478 chunk_appendf(&trash, "%d,", pos+1);
1479 }
1480 }
1481 /* replace the latest comma by a newline */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001482 trash.area[trash.data-1] = '\n';
William Lallemandeceddf72016-12-15 18:06:44 +01001483
1484 } else {
1485 chunk_appendf(&trash, "all\n");
1486 }
1487
Willy Tarreau06d80a92017-10-19 14:32:15 +02001488 if (ci_putchk(si_ic(si), &trash) == -1) {
Willy Tarreaudb398432018-11-15 11:08:52 +01001489 si_rx_room_blk(si);
William Lallemandeceddf72016-12-15 18:06:44 +01001490 return 0;
1491 }
1492 }
Willy Tarreau3af9d832016-12-16 12:58:09 +01001493 appctx->ctx.cli.p0 = &bind_conf->by_fe; /* store the latest list node dumped */
William Lallemandeceddf72016-12-15 18:06:44 +01001494 }
1495 }
Tim Duesterhus588b3142020-05-29 14:35:51 +02001496 /* fall through */
William Lallemandeceddf72016-12-15 18:06:44 +01001497 default:
1498 appctx->st2 = STAT_ST_FIN;
1499 return 1;
1500 }
1501}
1502
1503
Willy Tarreau0a739292016-11-22 20:21:23 +01001504/* parse a "show env" CLI request. Returns 0 if it needs to continue, 1 if it
Willy Tarreauf6710f82016-12-16 17:45:44 +01001505 * wants to stop here. It puts the variable to be dumped into cli.p0 if a single
1506 * variable is requested otherwise puts environ there.
Willy Tarreau0a739292016-11-22 20:21:23 +01001507 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001508static int cli_parse_show_env(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau0a739292016-11-22 20:21:23 +01001509{
1510 extern char **environ;
Willy Tarreauf6710f82016-12-16 17:45:44 +01001511 char **var;
Willy Tarreau0a739292016-11-22 20:21:23 +01001512
1513 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1514 return 1;
1515
Willy Tarreauf6710f82016-12-16 17:45:44 +01001516 var = environ;
Willy Tarreau0a739292016-11-22 20:21:23 +01001517
1518 if (*args[2]) {
1519 int len = strlen(args[2]);
1520
Willy Tarreauf6710f82016-12-16 17:45:44 +01001521 for (; *var; var++) {
1522 if (strncmp(*var, args[2], len) == 0 &&
1523 (*var)[len] == '=')
Willy Tarreau0a739292016-11-22 20:21:23 +01001524 break;
1525 }
Willy Tarreau9d008692019-08-09 11:21:01 +02001526 if (!*var)
1527 return cli_err(appctx, "Variable not found\n");
1528
Willy Tarreau0a739292016-11-22 20:21:23 +01001529 appctx->st2 = STAT_ST_END;
1530 }
Willy Tarreauf6710f82016-12-16 17:45:44 +01001531 appctx->ctx.cli.p0 = var;
Willy Tarreau0a739292016-11-22 20:21:23 +01001532 return 0;
1533}
1534
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001535/* parse a "show fd" CLI request. Returns 0 if it needs to continue, 1 if it
1536 * wants to stop here. It puts the FD number into cli.i0 if a specific FD is
1537 * requested and sets st2 to STAT_ST_END, otherwise leaves 0 in i0.
1538 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001539static int cli_parse_show_fd(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001540{
1541 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1542 return 1;
1543
1544 appctx->ctx.cli.i0 = 0;
1545
1546 if (*args[2]) {
1547 appctx->ctx.cli.i0 = atoi(args[2]);
1548 appctx->st2 = STAT_ST_END;
1549 }
1550 return 0;
1551}
1552
Willy Tarreau599852e2016-11-22 20:33:32 +01001553/* parse a "set timeout" CLI request. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001554static int cli_parse_set_timeout(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau599852e2016-11-22 20:33:32 +01001555{
1556 struct stream_interface *si = appctx->owner;
1557 struct stream *s = si_strm(si);
1558
1559 if (strcmp(args[2], "cli") == 0) {
1560 unsigned timeout;
1561 const char *res;
1562
Willy Tarreau9d008692019-08-09 11:21:01 +02001563 if (!*args[3])
1564 return cli_err(appctx, "Expects an integer value.\n");
Willy Tarreau599852e2016-11-22 20:33:32 +01001565
1566 res = parse_time_err(args[3], &timeout, TIME_UNIT_S);
Willy Tarreau9d008692019-08-09 11:21:01 +02001567 if (res || timeout < 1)
1568 return cli_err(appctx, "Invalid timeout value.\n");
Willy Tarreau599852e2016-11-22 20:33:32 +01001569
1570 s->req.rto = s->res.wto = 1 + MS_TO_TICKS(timeout*1000);
1571 task_wakeup(s->task, TASK_WOKEN_MSG); // recompute timeouts
1572 return 1;
1573 }
Willy Tarreau9d008692019-08-09 11:21:01 +02001574
1575 return cli_err(appctx, "'set timeout' only supports 'cli'.\n");
Willy Tarreau599852e2016-11-22 20:33:32 +01001576}
1577
Willy Tarreau2af99412016-11-23 11:10:59 +01001578/* parse a "set maxconn global" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001579static int cli_parse_set_maxconn_global(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2af99412016-11-23 11:10:59 +01001580{
1581 int v;
1582
1583 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1584 return 1;
1585
Willy Tarreau9d008692019-08-09 11:21:01 +02001586 if (!*args[3])
1587 return cli_err(appctx, "Expects an integer value.\n");
Willy Tarreau2af99412016-11-23 11:10:59 +01001588
1589 v = atoi(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02001590 if (v > global.hardmaxconn)
1591 return cli_err(appctx, "Value out of range.\n");
Willy Tarreau2af99412016-11-23 11:10:59 +01001592
1593 /* check for unlimited values */
1594 if (v <= 0)
1595 v = global.hardmaxconn;
1596
1597 global.maxconn = v;
1598
1599 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001600 dequeue_all_listeners();
Willy Tarreau2af99412016-11-23 11:10:59 +01001601
1602 return 1;
1603}
1604
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001605static int set_severity_output(int *target, char *argument)
1606{
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001607 if (strcmp(argument, "none") == 0) {
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001608 *target = CLI_SEVERITY_NONE;
1609 return 1;
1610 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001611 else if (strcmp(argument, "number") == 0) {
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001612 *target = CLI_SEVERITY_NUMBER;
1613 return 1;
1614 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001615 else if (strcmp(argument, "string") == 0) {
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001616 *target = CLI_SEVERITY_STRING;
1617 return 1;
1618 }
1619 return 0;
1620}
1621
1622/* parse a "set severity-output" command. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001623static int cli_parse_set_severity_output(char **args, char *payload, struct appctx *appctx, void *private)
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001624{
1625 if (*args[2] && set_severity_output(&appctx->cli_severity_output, args[2]))
1626 return 0;
1627
Willy Tarreau9d008692019-08-09 11:21:01 +02001628 return cli_err(appctx, "one of 'none', 'number', 'string' is a required argument\n");
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001629}
William Lallemandeceddf72016-12-15 18:06:44 +01001630
William Lallemand67a234f2018-12-13 09:05:45 +01001631
1632/* show the level of the current CLI session */
1633static int cli_parse_show_lvl(char **args, char *payload, struct appctx *appctx, void *private)
1634{
William Lallemand67a234f2018-12-13 09:05:45 +01001635 if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_ADMIN)
Willy Tarreau9d008692019-08-09 11:21:01 +02001636 return cli_msg(appctx, LOG_INFO, "admin\n");
William Lallemand67a234f2018-12-13 09:05:45 +01001637 else if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_OPER)
Willy Tarreau9d008692019-08-09 11:21:01 +02001638 return cli_msg(appctx, LOG_INFO, "operator\n");
William Lallemand67a234f2018-12-13 09:05:45 +01001639 else if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_USER)
Willy Tarreau9d008692019-08-09 11:21:01 +02001640 return cli_msg(appctx, LOG_INFO, "user\n");
William Lallemand67a234f2018-12-13 09:05:45 +01001641 else
Willy Tarreau9d008692019-08-09 11:21:01 +02001642 return cli_msg(appctx, LOG_INFO, "unknown\n");
William Lallemand67a234f2018-12-13 09:05:45 +01001643}
1644
1645/* parse and set the CLI level dynamically */
1646static int cli_parse_set_lvl(char **args, char *payload, struct appctx *appctx, void *private)
1647{
William Lallemandad032882019-07-01 10:56:15 +02001648 /* this will ask the applet to not output a \n after the command */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001649 if (strcmp(args[1], "-") == 0)
William Lallemandad032882019-07-01 10:56:15 +02001650 appctx->st1 |= APPCTX_CLI_ST1_NOLF;
1651
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001652 if (strcmp(args[0], "operator") == 0) {
William Lallemand67a234f2018-12-13 09:05:45 +01001653 if (!cli_has_level(appctx, ACCESS_LVL_OPER)) {
1654 return 1;
1655 }
1656 appctx->cli_level &= ~ACCESS_LVL_MASK;
1657 appctx->cli_level |= ACCESS_LVL_OPER;
1658
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001659 } else if (strcmp(args[0], "user") == 0) {
William Lallemand67a234f2018-12-13 09:05:45 +01001660 if (!cli_has_level(appctx, ACCESS_LVL_USER)) {
1661 return 1;
1662 }
1663 appctx->cli_level &= ~ACCESS_LVL_MASK;
1664 appctx->cli_level |= ACCESS_LVL_USER;
1665 }
Willy Tarreauabb9f9b2019-10-24 17:55:53 +02001666 appctx->cli_level &= ~ACCESS_EXPERT;
1667 return 1;
1668}
1669
1670
1671/* parse and set the CLI expert-mode dynamically */
1672static int cli_parse_expert_mode(char **args, char *payload, struct appctx *appctx, void *private)
1673{
1674 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1675 return 1;
1676
1677 if (!*args[1])
1678 return (appctx->cli_level & ACCESS_EXPERT)
1679 ? cli_msg(appctx, LOG_INFO, "expert-mode is ON\n")
1680 : cli_msg(appctx, LOG_INFO, "expert-mode is OFF\n");
1681
1682 appctx->cli_level &= ~ACCESS_EXPERT;
1683 if (strcmp(args[1], "on") == 0)
1684 appctx->cli_level |= ACCESS_EXPERT;
William Lallemand67a234f2018-12-13 09:05:45 +01001685 return 1;
1686}
1687
William Lallemanda57b7e32018-12-14 21:11:31 +01001688
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001689int cli_parse_default(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemandeceddf72016-12-15 18:06:44 +01001690{
1691 return 0;
1692}
1693
Willy Tarreau45c742b2016-11-24 14:51:17 +01001694/* parse a "set rate-limit" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001695static int cli_parse_set_ratelimit(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau45c742b2016-11-24 14:51:17 +01001696{
1697 int v;
1698 int *res;
1699 int mul = 1;
1700
1701 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1702 return 1;
1703
1704 if (strcmp(args[2], "connections") == 0 && strcmp(args[3], "global") == 0)
1705 res = &global.cps_lim;
1706 else if (strcmp(args[2], "sessions") == 0 && strcmp(args[3], "global") == 0)
1707 res = &global.sps_lim;
1708#ifdef USE_OPENSSL
1709 else if (strcmp(args[2], "ssl-sessions") == 0 && strcmp(args[3], "global") == 0)
1710 res = &global.ssl_lim;
1711#endif
1712 else if (strcmp(args[2], "http-compression") == 0 && strcmp(args[3], "global") == 0) {
1713 res = &global.comp_rate_lim;
1714 mul = 1024;
1715 }
1716 else {
Willy Tarreau9d008692019-08-09 11:21:01 +02001717 return cli_err(appctx,
Willy Tarreau45c742b2016-11-24 14:51:17 +01001718 "'set rate-limit' only supports :\n"
1719 " - 'connections global' to set the per-process maximum connection rate\n"
1720 " - 'sessions global' to set the per-process maximum session rate\n"
1721#ifdef USE_OPENSSL
Aurélien Nephtalib53e2082018-03-11 16:55:02 +01001722 " - 'ssl-sessions global' to set the per-process maximum SSL session rate\n"
Willy Tarreau45c742b2016-11-24 14:51:17 +01001723#endif
Willy Tarreau9d008692019-08-09 11:21:01 +02001724 " - 'http-compression global' to set the per-process maximum compression speed in kB/s\n");
Willy Tarreau45c742b2016-11-24 14:51:17 +01001725 }
1726
Willy Tarreau9d008692019-08-09 11:21:01 +02001727 if (!*args[4])
1728 return cli_err(appctx, "Expects an integer value.\n");
Willy Tarreau45c742b2016-11-24 14:51:17 +01001729
1730 v = atoi(args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02001731 if (v < 0)
1732 return cli_err(appctx, "Value out of range.\n");
Willy Tarreau45c742b2016-11-24 14:51:17 +01001733
1734 *res = v * mul;
1735
1736 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001737 dequeue_all_listeners();
Willy Tarreau45c742b2016-11-24 14:51:17 +01001738
1739 return 1;
1740}
1741
William Lallemandf6975e92017-05-26 17:42:10 +02001742/* parse the "expose-fd" argument on the bind lines */
1743static int bind_parse_expose_fd(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1744{
1745 if (!*args[cur_arg + 1]) {
1746 memprintf(err, "'%s' : missing fd type", args[cur_arg]);
1747 return ERR_ALERT | ERR_FATAL;
1748 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001749 if (strcmp(args[cur_arg + 1], "listeners") == 0) {
William Lallemandf6975e92017-05-26 17:42:10 +02001750 conf->level |= ACCESS_FD_LISTENERS;
1751 } else {
1752 memprintf(err, "'%s' only supports 'listeners' (got '%s')",
1753 args[cur_arg], args[cur_arg+1]);
1754 return ERR_ALERT | ERR_FATAL;
1755 }
1756
1757 return 0;
1758}
1759
William Lallemand74c24fb2016-11-21 17:18:36 +01001760/* parse the "level" argument on the bind lines */
1761static int bind_parse_level(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1762{
1763 if (!*args[cur_arg + 1]) {
1764 memprintf(err, "'%s' : missing level", args[cur_arg]);
1765 return ERR_ALERT | ERR_FATAL;
1766 }
1767
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001768 if (strcmp(args[cur_arg + 1], "user") == 0) {
William Lallemand07a62f72017-05-24 00:57:40 +02001769 conf->level &= ~ACCESS_LVL_MASK;
1770 conf->level |= ACCESS_LVL_USER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001771 } else if (strcmp(args[cur_arg + 1], "operator") == 0) {
William Lallemand07a62f72017-05-24 00:57:40 +02001772 conf->level &= ~ACCESS_LVL_MASK;
1773 conf->level |= ACCESS_LVL_OPER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001774 } else if (strcmp(args[cur_arg + 1], "admin") == 0) {
William Lallemand07a62f72017-05-24 00:57:40 +02001775 conf->level &= ~ACCESS_LVL_MASK;
1776 conf->level |= ACCESS_LVL_ADMIN;
1777 } else {
William Lallemand74c24fb2016-11-21 17:18:36 +01001778 memprintf(err, "'%s' only supports 'user', 'operator', and 'admin' (got '%s')",
1779 args[cur_arg], args[cur_arg+1]);
1780 return ERR_ALERT | ERR_FATAL;
1781 }
1782
1783 return 0;
1784}
1785
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001786static int bind_parse_severity_output(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1787{
1788 if (!*args[cur_arg + 1]) {
1789 memprintf(err, "'%s' : missing severity format", args[cur_arg]);
1790 return ERR_ALERT | ERR_FATAL;
1791 }
1792
1793 if (set_severity_output(&conf->severity_output, args[cur_arg+1]))
1794 return 0;
1795 else {
1796 memprintf(err, "'%s' only supports 'none', 'number', and 'string' (got '%s')",
1797 args[cur_arg], args[cur_arg+1]);
1798 return ERR_ALERT | ERR_FATAL;
1799 }
1800}
1801
Olivier Houchardf886e342017-04-05 22:24:59 +02001802/* Send all the bound sockets, always returns 1 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001803static int _getsocks(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchardf886e342017-04-05 22:24:59 +02001804{
1805 char *cmsgbuf = NULL;
1806 unsigned char *tmpbuf = NULL;
1807 struct cmsghdr *cmsg;
1808 struct stream_interface *si = appctx->owner;
William Lallemandf6975e92017-05-26 17:42:10 +02001809 struct stream *s = si_strm(si);
Olivier Houchard9aaf7782017-09-13 18:30:23 +02001810 struct connection *remote = cs_conn(objt_cs(si_opposite(si)->end));
Olivier Houchardf886e342017-04-05 22:24:59 +02001811 struct msghdr msghdr;
1812 struct iovec iov;
Olivier Houchard54740872017-04-06 14:45:14 +02001813 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02001814 const char *ns_name, *if_name;
1815 unsigned char ns_nlen, if_nlen;
1816 int nb_queued;
1817 int cur_fd = 0;
Olivier Houchardf886e342017-04-05 22:24:59 +02001818 int *tmpfd;
1819 int tot_fd_nb = 0;
Willy Tarreauc2b7f802018-09-20 11:22:29 +02001820 int fd = -1;
Olivier Houchardf886e342017-04-05 22:24:59 +02001821 int curoff = 0;
Willy Tarreauc2b7f802018-09-20 11:22:29 +02001822 int old_fcntl = -1;
Olivier Houchardf886e342017-04-05 22:24:59 +02001823 int ret;
1824
Willy Tarreauc2b7f802018-09-20 11:22:29 +02001825 if (!remote) {
1826 ha_warning("Only works on real connections\n");
1827 goto out;
1828 }
1829
1830 fd = remote->handle.fd;
1831
Olivier Houchardf886e342017-04-05 22:24:59 +02001832 /* Temporary set the FD in blocking mode, that will make our life easier */
1833 old_fcntl = fcntl(fd, F_GETFL);
1834 if (old_fcntl < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001835 ha_warning("Couldn't get the flags for the unix socket\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001836 goto out;
1837 }
1838 cmsgbuf = malloc(CMSG_SPACE(sizeof(int) * MAX_SEND_FD));
1839 if (!cmsgbuf) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001840 ha_warning("Failed to allocate memory to send sockets\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001841 goto out;
1842 }
1843 if (fcntl(fd, F_SETFL, old_fcntl &~ O_NONBLOCK) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001844 ha_warning("Cannot make the unix socket blocking\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001845 goto out;
1846 }
Olivier Houchard54740872017-04-06 14:45:14 +02001847 setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf886e342017-04-05 22:24:59 +02001848 iov.iov_base = &tot_fd_nb;
1849 iov.iov_len = sizeof(tot_fd_nb);
William Lallemandf6975e92017-05-26 17:42:10 +02001850 if (!(strm_li(s)->bind_conf->level & ACCESS_FD_LISTENERS))
Olivier Houchardf886e342017-04-05 22:24:59 +02001851 goto out;
1852 memset(&msghdr, 0, sizeof(msghdr));
1853 /*
1854 * First, calculates the total number of FD, so that we can let
Jackie Tapia749f74c2020-07-22 18:59:40 -05001855 * the caller know how much it should expect.
Olivier Houchardf886e342017-04-05 22:24:59 +02001856 */
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02001857 for (cur_fd = 0;cur_fd < global.maxsock; cur_fd++)
1858 tot_fd_nb += fdtab[cur_fd].exported;
William Lallemand5fd3b282020-01-16 15:32:08 +01001859
Olivier Houchardf886e342017-04-05 22:24:59 +02001860 if (tot_fd_nb == 0)
1861 goto out;
1862
1863 /* First send the total number of file descriptors, so that the
1864 * receiving end knows what to expect.
1865 */
1866 msghdr.msg_iov = &iov;
1867 msghdr.msg_iovlen = 1;
1868 ret = sendmsg(fd, &msghdr, 0);
1869 if (ret != sizeof(tot_fd_nb)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001870 ha_warning("Failed to send the number of sockets to send\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001871 goto out;
1872 }
1873
1874 /* Now send the fds */
1875 msghdr.msg_control = cmsgbuf;
1876 msghdr.msg_controllen = CMSG_SPACE(sizeof(int) * MAX_SEND_FD);
1877 cmsg = CMSG_FIRSTHDR(&msghdr);
1878 cmsg->cmsg_len = CMSG_LEN(MAX_SEND_FD * sizeof(int));
1879 cmsg->cmsg_level = SOL_SOCKET;
1880 cmsg->cmsg_type = SCM_RIGHTS;
1881 tmpfd = (int *)CMSG_DATA(cmsg);
1882
Olivier Houchardf886e342017-04-05 22:24:59 +02001883 /* For each socket, e message is sent, containing the following :
1884 * Size of the namespace name (or 0 if none), as an unsigned char.
1885 * The namespace name, if any
1886 * Size of the interface name (or 0 if none), as an unsigned char
1887 * The interface name, if any
Willy Tarreaucf1f1932020-08-26 10:30:09 +02001888 * 32 bits of zeroes (used to be listener options).
Olivier Houchardf886e342017-04-05 22:24:59 +02001889 */
1890 /* We will send sockets MAX_SEND_FD per MAX_SEND_FD, allocate a
Ilya Shipitsind4259502020-04-08 01:07:56 +05001891 * buffer big enough to store the socket information.
Olivier Houchardf886e342017-04-05 22:24:59 +02001892 */
Olivier Houchardf143b802017-11-04 15:13:01 +01001893 tmpbuf = malloc(MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf886e342017-04-05 22:24:59 +02001894 if (tmpbuf == NULL) {
Ilya Shipitsind4259502020-04-08 01:07:56 +05001895 ha_warning("Failed to allocate memory to transfer socket information\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001896 goto out;
1897 }
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02001898
1899 nb_queued = 0;
Olivier Houchardf886e342017-04-05 22:24:59 +02001900 iov.iov_base = tmpbuf;
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02001901 for (cur_fd = 0; cur_fd < global.maxsock; cur_fd++) {
1902 if (!(fdtab[cur_fd].exported))
1903 continue;
1904
1905 ns_name = if_name = "";
1906 ns_nlen = if_nlen = 0;
1907
1908 /* for now we can only retrieve namespaces and interfaces from
1909 * pure listeners.
1910 */
Willy Tarreaua74cb382020-10-15 21:29:49 +02001911 if (fdtab[cur_fd].iocb == sock_accept_iocb) {
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02001912 const struct listener *l = fdtab[cur_fd].owner;
1913
Willy Tarreau818a92e2020-09-03 07:50:19 +02001914 if (l->rx.settings->interface) {
1915 if_name = l->rx.settings->interface;
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02001916 if_nlen = strlen(if_name);
1917 }
1918
1919#ifdef USE_NS
Willy Tarreau818a92e2020-09-03 07:50:19 +02001920 if (l->rx.settings->netns) {
1921 ns_name = l->rx.settings->netns->node.key;
1922 ns_nlen = l->rx.settings->netns->name_len;
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02001923 }
1924#endif
1925 }
1926
1927 /* put the FD into the CMSG_DATA */
1928 tmpfd[nb_queued++] = cur_fd;
1929
1930 /* first block is <ns_name_len> <ns_name> */
1931 tmpbuf[curoff++] = ns_nlen;
1932 if (ns_nlen)
1933 memcpy(tmpbuf + curoff, ns_name, ns_nlen);
1934 curoff += ns_nlen;
1935
1936 /* second block is <if_name_len> <if_name> */
1937 tmpbuf[curoff++] = if_nlen;
1938 if (if_nlen)
1939 memcpy(tmpbuf + curoff, if_name, if_nlen);
1940 curoff += if_nlen;
1941
1942 /* we used to send the listener options here before 2.3 */
1943 memset(tmpbuf + curoff, 0, sizeof(int));
1944 curoff += sizeof(int);
1945
1946 /* there's a limit to how many FDs may be sent at once */
1947 if (nb_queued == MAX_SEND_FD) {
1948 iov.iov_len = curoff;
1949 if (sendmsg(fd, &msghdr, 0) != curoff) {
1950 ha_warning("Failed to transfer sockets\n");
1951 return -1;
1952 }
1953
1954 /* Wait for an ack */
1955 do {
1956 ret = recv(fd, &tot_fd_nb, sizeof(tot_fd_nb), 0);
1957 } while (ret == -1 && errno == EINTR);
1958
1959 if (ret <= 0) {
1960 ha_warning("Unexpected error while transferring sockets\n");
1961 return -1;
1962 }
1963 curoff = 0;
1964 nb_queued = 0;
1965 }
William Lallemand5fd3b282020-01-16 15:32:08 +01001966 }
1967
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02001968 /* flush pending stuff */
1969 if (nb_queued) {
Olivier Houchardf886e342017-04-05 22:24:59 +02001970 iov.iov_len = curoff;
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02001971 cmsg->cmsg_len = CMSG_LEN(nb_queued * sizeof(int));
1972 msghdr.msg_controllen = CMSG_SPACE(nb_queued * sizeof(int));
Olivier Houchardf886e342017-04-05 22:24:59 +02001973 if (sendmsg(fd, &msghdr, 0) != curoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001974 ha_warning("Failed to transfer sockets\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001975 goto out;
1976 }
1977 }
1978
1979out:
Willy Tarreauc2b7f802018-09-20 11:22:29 +02001980 if (fd >= 0 && old_fcntl >= 0 && fcntl(fd, F_SETFL, old_fcntl) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01001981 ha_warning("Cannot make the unix socket non-blocking\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02001982 goto out;
1983 }
1984 appctx->st0 = CLI_ST_END;
1985 free(cmsgbuf);
1986 free(tmpbuf);
1987 return 1;
1988}
1989
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001990static int cli_parse_simple(char **args, char *payload, struct appctx *appctx, void *private)
1991{
1992 if (*args[0] == 'h')
1993 /* help */
Willy Tarreaub96a74c2021-03-12 17:13:28 +01001994 cli_gen_usage_msg(appctx, NULL);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001995 else if (*args[0] == 'p')
1996 /* prompt */
1997 appctx->st1 ^= APPCTX_CLI_ST1_PROMPT;
1998 else if (*args[0] == 'q')
1999 /* quit */
2000 appctx->st0 = CLI_ST_END;
2001
2002 return 1;
2003}
Olivier Houchardf886e342017-04-05 22:24:59 +02002004
William Lallemand2f4ce202018-10-26 14:47:47 +02002005void pcli_write_prompt(struct stream *s)
2006{
2007 struct buffer *msg = get_trash_chunk();
2008 struct channel *oc = si_oc(&s->si[0]);
2009
William Lallemanddc12c2e2018-12-13 09:05:46 +01002010 if (!(s->pcli_flags & PCLI_F_PROMPT))
William Lallemand5b80fa22018-12-11 16:10:54 +01002011 return;
2012
William Lallemanddc12c2e2018-12-13 09:05:46 +01002013 if (s->pcli_flags & PCLI_F_PAYLOAD) {
William Lallemandebf61802018-12-11 16:10:57 +01002014 chunk_appendf(msg, "+ ");
2015 } else {
2016 if (s->pcli_next_pid == 0)
Willy Tarreau52880f92018-12-15 13:30:03 +01002017 chunk_appendf(msg, "master%s> ",
2018 (global.mode & MODE_MWORKER_WAIT) ? "[ReloadFailed]" : "");
William Lallemandebf61802018-12-11 16:10:57 +01002019 else
2020 chunk_appendf(msg, "%d> ", s->pcli_next_pid);
2021 }
William Lallemand2f4ce202018-10-26 14:47:47 +02002022 co_inject(oc, msg->area, msg->data);
2023}
2024
William Lallemand291810d2018-10-26 14:47:38 +02002025
William Lallemandcf62f7e2018-10-26 14:47:40 +02002026/* The pcli_* functions are used for the CLI proxy in the master */
2027
William Lallemanddeeaa592018-10-26 14:47:48 +02002028void pcli_reply_and_close(struct stream *s, const char *msg)
2029{
2030 struct buffer *buf = get_trash_chunk();
2031
2032 chunk_initstr(buf, msg);
Willy Tarreau14bfe9a2018-12-19 15:19:27 +01002033 si_retnclose(&s->si[0], buf);
William Lallemanddeeaa592018-10-26 14:47:48 +02002034}
2035
William Lallemand291810d2018-10-26 14:47:38 +02002036static enum obj_type *pcli_pid_to_server(int proc_pid)
2037{
2038 struct mworker_proc *child;
2039
William Lallemand99e0bb92020-11-05 10:28:53 +01002040 /* return the mCLI applet of the master */
William Lallemandbddd33a2018-12-11 16:10:53 +01002041 if (proc_pid == 0)
William Lallemand99e0bb92020-11-05 10:28:53 +01002042 return &mcli_applet.obj_type;
William Lallemandbddd33a2018-12-11 16:10:53 +01002043
William Lallemand291810d2018-10-26 14:47:38 +02002044 list_for_each_entry(child, &proc_list, list) {
2045 if (child->pid == proc_pid){
2046 return &child->srv->obj_type;
2047 }
2048 }
2049 return NULL;
2050}
2051
2052/* Take a CLI prefix in argument (eg: @!1234 @master @1)
2053 * Return:
2054 * 0: master
2055 * > 0: pid of a worker
2056 * < 0: didn't find a worker
2057 */
2058static int pcli_prefix_to_pid(const char *prefix)
2059{
2060 int proc_pid;
2061 struct mworker_proc *child;
2062 char *errtol = NULL;
2063
2064 if (*prefix != '@') /* not a prefix, should not happen */
2065 return -1;
2066
2067 prefix++;
2068 if (!*prefix) /* sent @ alone, return the master */
2069 return 0;
2070
2071 if (strcmp("master", prefix) == 0) {
2072 return 0;
2073 } else if (*prefix == '!') {
2074 prefix++;
2075 if (!*prefix)
2076 return -1;
2077
2078 proc_pid = strtol(prefix, &errtol, 10);
2079 if (*errtol != '\0')
2080 return -1;
2081 list_for_each_entry(child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +02002082 if (!(child->options & PROC_O_TYPE_WORKER))
William Lallemand16dd1b32018-11-19 18:46:18 +01002083 continue;
William Lallemand291810d2018-10-26 14:47:38 +02002084 if (child->pid == proc_pid){
2085 return child->pid;
2086 }
2087 }
2088 } else {
2089 struct mworker_proc *chosen = NULL;
2090 /* this is a relative pid */
2091
2092 proc_pid = strtol(prefix, &errtol, 10);
2093 if (*errtol != '\0')
2094 return -1;
2095
2096 if (proc_pid == 0) /* return the master */
2097 return 0;
2098
2099 /* chose the right process, the current one is the one with the
2100 least number of reloads */
2101 list_for_each_entry(child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +02002102 if (!(child->options & PROC_O_TYPE_WORKER))
William Lallemand16dd1b32018-11-19 18:46:18 +01002103 continue;
William Lallemand291810d2018-10-26 14:47:38 +02002104 if (child->relative_pid == proc_pid){
2105 if (child->reloads == 0)
2106 return child->pid;
2107 else if (chosen == NULL || child->reloads < chosen->reloads)
2108 chosen = child;
2109 }
2110 }
2111 if (chosen)
2112 return chosen->pid;
2113 }
2114 return -1;
2115}
2116
William Lallemandbddd33a2018-12-11 16:10:53 +01002117/* Return::
2118 * >= 0 : number of words to escape
2119 * = -1 : error
2120 */
2121
2122int pcli_find_and_exec_kw(struct stream *s, char **args, int argl, char **errmsg, int *next_pid)
2123{
2124 if (argl < 1)
2125 return 0;
2126
2127 /* there is a prefix */
2128 if (args[0][0] == '@') {
2129 int target_pid = pcli_prefix_to_pid(args[0]);
2130
2131 if (target_pid == -1) {
2132 memprintf(errmsg, "Can't find the target PID matching the prefix '%s'\n", args[0]);
2133 return -1;
2134 }
2135
2136 /* if the prefix is alone, define a default target */
2137 if (argl == 1)
2138 s->pcli_next_pid = target_pid;
2139 else
2140 *next_pid = target_pid;
2141 return 1;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002142 } else if (strcmp("prompt", args[0]) == 0) {
William Lallemanddc12c2e2018-12-13 09:05:46 +01002143 s->pcli_flags ^= PCLI_F_PROMPT;
William Lallemand5b80fa22018-12-11 16:10:54 +01002144 return argl; /* return the number of elements in the array */
William Lallemand5f610682018-12-11 16:10:55 +01002145
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002146 } else if (strcmp("quit", args[0]) == 0) {
William Lallemand5f610682018-12-11 16:10:55 +01002147 channel_shutr_now(&s->req);
2148 channel_shutw_now(&s->res);
2149 return argl; /* return the number of elements in the array */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002150 } else if (strcmp(args[0], "operator") == 0) {
William Lallemandb7ea1412018-12-13 09:05:47 +01002151 if (!pcli_has_level(s, ACCESS_LVL_OPER)) {
2152 memprintf(errmsg, "Permission denied!\n");
2153 return -1;
2154 }
2155 s->pcli_flags &= ~ACCESS_LVL_MASK;
2156 s->pcli_flags |= ACCESS_LVL_OPER;
2157 return argl;
2158
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002159 } else if (strcmp(args[0], "user") == 0) {
William Lallemandb7ea1412018-12-13 09:05:47 +01002160 if (!pcli_has_level(s, ACCESS_LVL_USER)) {
2161 memprintf(errmsg, "Permission denied!\n");
2162 return -1;
2163 }
2164 s->pcli_flags &= ~ACCESS_LVL_MASK;
2165 s->pcli_flags |= ACCESS_LVL_USER;
2166 return argl;
William Lallemandbddd33a2018-12-11 16:10:53 +01002167 }
2168
2169 return 0;
2170}
2171
2172/*
2173 * Parse the CLI request:
2174 * - It does basically the same as the cli_io_handler, but as a proxy
2175 * - It can exec a command and strip non forwardable commands
William Lallemandcf62f7e2018-10-26 14:47:40 +02002176 *
2177 * Return:
William Lallemandbddd33a2018-12-11 16:10:53 +01002178 * - the number of characters to forward or
2179 * - 1 if there is an error or not enough data
William Lallemandcf62f7e2018-10-26 14:47:40 +02002180 */
William Lallemandbddd33a2018-12-11 16:10:53 +01002181int pcli_parse_request(struct stream *s, struct channel *req, char **errmsg, int *next_pid)
William Lallemandcf62f7e2018-10-26 14:47:40 +02002182{
William Lallemandbddd33a2018-12-11 16:10:53 +01002183 char *str = (char *)ci_head(req);
2184 char *end = (char *)ci_stop(req);
Willy Tarreauf14c7572021-03-13 10:59:23 +01002185 char *args[MAX_CLI_ARGS + 1]; /* +1 for storing a NULL */
William Lallemandbddd33a2018-12-11 16:10:53 +01002186 int argl; /* number of args */
2187 char *p;
2188 char *trim = NULL;
William Lallemandebf61802018-12-11 16:10:57 +01002189 char *payload = NULL;
William Lallemandbddd33a2018-12-11 16:10:53 +01002190 int wtrim = 0; /* number of words to trim */
2191 int reql = 0;
William Lallemandb7ea1412018-12-13 09:05:47 +01002192 int ret;
William Lallemandbddd33a2018-12-11 16:10:53 +01002193 int i = 0;
2194
2195 p = str;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002196
William Lallemanddc12c2e2018-12-13 09:05:46 +01002197 if (!(s->pcli_flags & PCLI_F_PAYLOAD)) {
William Lallemandebf61802018-12-11 16:10:57 +01002198
2199 /* Looks for the end of one command */
2200 while (p+reql < end) {
2201 /* handle escaping */
2202 if (p[reql] == '\\') {
William Lallemand02c255e2020-06-18 18:45:04 +02002203 reql+=2;
William Lallemandebf61802018-12-11 16:10:57 +01002204 continue;
2205 }
2206 if (p[reql] == ';' || p[reql] == '\n') {
2207 /* found the end of the command */
2208 p[reql] = '\n';
2209 reql++;
2210 break;
2211 }
William Lallemandbddd33a2018-12-11 16:10:53 +01002212 reql++;
William Lallemandbddd33a2018-12-11 16:10:53 +01002213 }
William Lallemandebf61802018-12-11 16:10:57 +01002214 } else {
2215 while (p+reql < end) {
2216 if (p[reql] == '\n') {
2217 /* found the end of the line */
2218 reql++;
2219 break;
2220 }
William Lallemandbddd33a2018-12-11 16:10:53 +01002221 reql++;
William Lallemandbddd33a2018-12-11 16:10:53 +01002222 }
William Lallemandbddd33a2018-12-11 16:10:53 +01002223 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002224
William Lallemandbddd33a2018-12-11 16:10:53 +01002225 /* set end to first byte after the end of the command */
2226 end = p + reql;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002227
William Lallemandbddd33a2018-12-11 16:10:53 +01002228 /* there is no end to this command, need more to parse ! */
2229 if (*(end-1) != '\n') {
2230 return -1;
2231 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002232
William Lallemand3301f3e2018-12-13 09:05:48 +01002233 if (s->pcli_flags & PCLI_F_PAYLOAD) {
2234 if (reql == 1) /* last line of the payload */
2235 s->pcli_flags &= ~PCLI_F_PAYLOAD;
William Lallemandebf61802018-12-11 16:10:57 +01002236 return reql;
2237 }
2238
William Lallemandbddd33a2018-12-11 16:10:53 +01002239 *(end-1) = '\0';
William Lallemandcf62f7e2018-10-26 14:47:40 +02002240
William Lallemandbddd33a2018-12-11 16:10:53 +01002241 /* splits the command in words */
Willy Tarreauf14c7572021-03-13 10:59:23 +01002242 while (i < MAX_CLI_ARGS && p < end) {
William Lallemandbddd33a2018-12-11 16:10:53 +01002243 /* skip leading spaces/tabs */
2244 p += strspn(p, " \t");
2245 if (!*p)
William Lallemandcf62f7e2018-10-26 14:47:40 +02002246 break;
2247
William Lallemandbddd33a2018-12-11 16:10:53 +01002248 args[i] = p;
William Lallemandfe249c32020-06-18 18:03:57 +02002249 while (1) {
2250 p += strcspn(p, " \t\\");
2251 /* escaped chars using backlashes (\) */
2252 if (*p == '\\') {
2253 if (!*++p)
2254 break;
2255 if (!*++p)
2256 break;
2257 } else {
2258 break;
William Lallemandbddd33a2018-12-11 16:10:53 +01002259 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002260 }
William Lallemandfe249c32020-06-18 18:03:57 +02002261 *p++ = 0;
William Lallemandbddd33a2018-12-11 16:10:53 +01002262 i++;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002263 }
2264
William Lallemandbddd33a2018-12-11 16:10:53 +01002265 argl = i;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002266
Willy Tarreauf14c7572021-03-13 10:59:23 +01002267 for (; i < MAX_CLI_ARGS + 1; i++)
William Lallemandbddd33a2018-12-11 16:10:53 +01002268 args[i] = NULL;
2269
2270 wtrim = pcli_find_and_exec_kw(s, args, argl, errmsg, next_pid);
2271
2272 /* End of words are ending by \0, we need to replace the \0s by spaces
22731 before forwarding them */
2274 p = str;
William Lallemand3301f3e2018-12-13 09:05:48 +01002275 while (p < end-1) {
William Lallemandbddd33a2018-12-11 16:10:53 +01002276 if (*p == '\0')
2277 *p = ' ';
2278 p++;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002279 }
2280
William Lallemand3301f3e2018-12-13 09:05:48 +01002281 payload = strstr(str, PAYLOAD_PATTERN);
2282 if ((end - 1) == (payload + strlen(PAYLOAD_PATTERN))) {
2283 /* if the payload pattern is at the end */
2284 s->pcli_flags |= PCLI_F_PAYLOAD;
William Lallemand3301f3e2018-12-13 09:05:48 +01002285 }
2286
William Lallemandbddd33a2018-12-11 16:10:53 +01002287 *(end-1) = '\n';
William Lallemandcf62f7e2018-10-26 14:47:40 +02002288
William Lallemandbddd33a2018-12-11 16:10:53 +01002289 if (wtrim > 0) {
2290 trim = &args[wtrim][0];
2291 if (trim == NULL) /* if this was the last word in the table */
2292 trim = end;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002293
William Lallemandbddd33a2018-12-11 16:10:53 +01002294 b_del(&req->buf, trim - str);
2295
William Lallemandb7ea1412018-12-13 09:05:47 +01002296 ret = end - trim;
William Lallemandbddd33a2018-12-11 16:10:53 +01002297 } else if (wtrim < 0) {
2298 /* parsing error */
2299 return -1;
William Lallemandb7ea1412018-12-13 09:05:47 +01002300 } else {
2301 /* the whole string */
2302 ret = end - str;
William Lallemandbddd33a2018-12-11 16:10:53 +01002303 }
2304
William Lallemandb7ea1412018-12-13 09:05:47 +01002305 if (ret > 1) {
2306 if (pcli_has_level(s, ACCESS_LVL_ADMIN)) {
2307 goto end;
2308 } else if (pcli_has_level(s, ACCESS_LVL_OPER)) {
William Lallemandad032882019-07-01 10:56:15 +02002309 ci_insert_line2(req, 0, "operator -", strlen("operator -"));
2310 ret += strlen("operator -") + 2;
William Lallemandb7ea1412018-12-13 09:05:47 +01002311 } else if (pcli_has_level(s, ACCESS_LVL_USER)) {
William Lallemandad032882019-07-01 10:56:15 +02002312 ci_insert_line2(req, 0, "user -", strlen("user -"));
2313 ret += strlen("user -") + 2;
William Lallemandb7ea1412018-12-13 09:05:47 +01002314 }
2315 }
2316end:
William Lallemandbddd33a2018-12-11 16:10:53 +01002317
William Lallemandb7ea1412018-12-13 09:05:47 +01002318 return ret;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002319}
2320
2321int pcli_wait_for_request(struct stream *s, struct channel *req, int an_bit)
2322{
William Lallemandbddd33a2018-12-11 16:10:53 +01002323 int next_pid = -1;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002324 int to_forward;
William Lallemandbddd33a2018-12-11 16:10:53 +01002325 char *errmsg = NULL;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002326
William Lallemandb7ea1412018-12-13 09:05:47 +01002327 if ((s->pcli_flags & ACCESS_LVL_MASK) == ACCESS_LVL_NONE)
2328 s->pcli_flags |= strm_li(s)->bind_conf->level & ACCESS_LVL_MASK;
2329
William Lallemandcf62f7e2018-10-26 14:47:40 +02002330read_again:
2331 /* if the channel is closed for read, we won't receive any more data
2332 from the client, but we don't want to forward this close to the
2333 server */
2334 channel_dont_close(req);
2335
2336 /* We don't know yet to which server we will connect */
2337 channel_dont_connect(req);
2338
2339
2340 /* we are not waiting for a response, there is no more request and we
2341 * receive a close from the client, we can leave */
2342 if (!(ci_data(req)) && req->flags & CF_SHUTR) {
2343 channel_shutw_now(&s->res);
2344 s->req.analysers &= ~AN_REQ_WAIT_CLI;
2345 return 1;
2346 }
2347
2348 req->flags |= CF_READ_DONTWAIT;
2349
2350 /* need more data */
2351 if (!ci_data(req))
2352 return 0;
2353
2354 /* If there is data available for analysis, log the end of the idle time. */
2355 if (c_data(req) && s->logs.t_idle == -1)
2356 s->logs.t_idle = tv_ms_elapsed(&s->logs.tv_accept, &now) - s->logs.t_handshake;
2357
William Lallemandbddd33a2018-12-11 16:10:53 +01002358 to_forward = pcli_parse_request(s, req, &errmsg, &next_pid);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002359 if (to_forward > 0) {
William Lallemandbddd33a2018-12-11 16:10:53 +01002360 int target_pid;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002361 /* enough data */
2362
William Lallemandcf62f7e2018-10-26 14:47:40 +02002363 /* forward only 1 command */
2364 channel_forward(req, to_forward);
William Lallemandebf61802018-12-11 16:10:57 +01002365
William Lallemanddc12c2e2018-12-13 09:05:46 +01002366 if (!(s->pcli_flags & PCLI_F_PAYLOAD)) {
William Lallemandebf61802018-12-11 16:10:57 +01002367 /* we send only 1 command per request, and we write close after it */
2368 channel_shutw_now(req);
2369 } else {
2370 pcli_write_prompt(s);
2371 }
2372
2373 s->res.flags |= CF_WAKE_ONCE; /* need to be called again */
William Lallemandcf62f7e2018-10-26 14:47:40 +02002374
2375 /* remove the XFER_DATA analysers, which forwards all
2376 * the data, we don't want to forward the next requests
2377 * We need to add CF_FLT_ANALYZE to abort the forward too.
2378 */
2379 req->analysers &= ~(AN_REQ_FLT_XFER_DATA|AN_REQ_WAIT_CLI);
2380 req->analysers |= AN_REQ_FLT_END|CF_FLT_ANALYZE;
2381 s->res.analysers |= AN_RES_WAIT_CLI;
2382
William Lallemandebf61802018-12-11 16:10:57 +01002383 if (!(s->flags & SF_ASSIGNED)) {
2384 if (next_pid > -1)
2385 target_pid = next_pid;
2386 else
2387 target_pid = s->pcli_next_pid;
2388 /* we can connect now */
2389 s->target = pcli_pid_to_server(target_pid);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002390
William Lallemandebf61802018-12-11 16:10:57 +01002391 s->flags |= (SF_DIRECT | SF_ASSIGNED);
2392 channel_auto_connect(req);
2393 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002394
2395 } else if (to_forward == 0) {
William Lallemandcf62f7e2018-10-26 14:47:40 +02002396 /* we trimmed things but we might have other commands to consume */
William Lallemandbddd33a2018-12-11 16:10:53 +01002397 pcli_write_prompt(s);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002398 goto read_again;
William Lallemandbddd33a2018-12-11 16:10:53 +01002399 } else if (to_forward == -1 && errmsg) {
2400 /* there was an error during the parsing */
2401 pcli_reply_and_close(s, errmsg);
2402 return 0;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002403 } else if (to_forward == -1 && channel_full(req, global.tune.maxrewrite)) {
2404 /* buffer is full and we didn't catch the end of a command */
2405 goto send_help;
2406 }
2407
2408 return 0;
2409
2410send_help:
2411 b_reset(&req->buf);
2412 b_putblk(&req->buf, "help\n", 5);
2413 goto read_again;
2414}
2415
2416int pcli_wait_for_response(struct stream *s, struct channel *rep, int an_bit)
2417{
2418 struct proxy *fe = strm_fe(s);
2419 struct proxy *be = s->be;
2420
William Lallemand6b7cd0a2018-11-06 17:37:11 +01002421 if (rep->flags & CF_READ_ERROR) {
2422 pcli_reply_and_close(s, "Can't connect to the target CLI!\n");
2423 s->res.analysers &= ~AN_RES_WAIT_CLI;
2424 return 0;
2425 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002426 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
2427 rep->flags |= CF_NEVER_WAIT;
2428
2429 /* don't forward the close */
2430 channel_dont_close(&s->res);
2431 channel_dont_close(&s->req);
2432
William Lallemanddc12c2e2018-12-13 09:05:46 +01002433 if (s->pcli_flags & PCLI_F_PAYLOAD) {
William Lallemandebf61802018-12-11 16:10:57 +01002434 s->req.analysers |= AN_REQ_WAIT_CLI;
2435 s->res.analysers &= ~AN_RES_WAIT_CLI;
2436 s->req.flags |= CF_WAKE_ONCE; /* need to be called again if there is some command left in the request */
2437 return 0;
2438 }
2439
William Lallemandcf62f7e2018-10-26 14:47:40 +02002440 /* forward the data */
2441 if (ci_data(rep)) {
2442 c_adv(rep, ci_data(rep));
2443 return 0;
2444 }
2445
2446 if ((rep->flags & (CF_SHUTR|CF_READ_NULL))) {
2447 /* stream cleanup */
2448
William Lallemand2f4ce202018-10-26 14:47:47 +02002449 pcli_write_prompt(s);
2450
William Lallemandcf62f7e2018-10-26 14:47:40 +02002451 s->si[1].flags |= SI_FL_NOLINGER | SI_FL_NOHALF;
2452 si_shutr(&s->si[1]);
2453 si_shutw(&s->si[1]);
2454
2455 /*
2456 * starting from there this the same code as
2457 * http_end_txn_clean_session().
2458 *
2459 * It allows to do frontend keepalive while reconnecting to a
2460 * new server for each request.
2461 */
2462
2463 if (s->flags & SF_BE_ASSIGNED) {
2464 HA_ATOMIC_SUB(&be->beconn, 1);
2465 if (unlikely(s->srv_conn))
2466 sess_change_server(s, NULL);
2467 }
2468
2469 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2470 stream_process_counters(s);
2471
2472 /* don't count other requests' data */
2473 s->logs.bytes_in -= ci_data(&s->req);
2474 s->logs.bytes_out -= ci_data(&s->res);
2475
2476 /* we may need to know the position in the queue */
2477 pendconn_free(s);
2478
2479 /* let's do a final log if we need it */
2480 if (!LIST_ISEMPTY(&fe->logformat) && s->logs.logwait &&
2481 !(s->flags & SF_MONITOR) &&
2482 (!(fe->options & PR_O_NULLNOLOG) || s->req.total)) {
2483 s->do_log(s);
2484 }
2485
2486 /* stop tracking content-based counters */
2487 stream_stop_content_counters(s);
2488 stream_update_time_stats(s);
2489
2490 s->logs.accept_date = date; /* user-visible date for logging */
2491 s->logs.tv_accept = now; /* corrected date for internal use */
2492 s->logs.t_handshake = 0; /* There are no handshake in keep alive connection. */
2493 s->logs.t_idle = -1;
2494 tv_zero(&s->logs.tv_request);
2495 s->logs.t_queue = -1;
2496 s->logs.t_connect = -1;
2497 s->logs.t_data = -1;
2498 s->logs.t_close = 0;
2499 s->logs.prx_queue_pos = 0; /* we get the number of pending conns before us */
2500 s->logs.srv_queue_pos = 0; /* we will get this number soon */
2501
2502 s->logs.bytes_in = s->req.total = ci_data(&s->req);
2503 s->logs.bytes_out = s->res.total = ci_data(&s->res);
2504
2505 stream_del_srv_conn(s);
2506 if (objt_server(s->target)) {
2507 if (s->flags & SF_CURR_SESS) {
2508 s->flags &= ~SF_CURR_SESS;
Willy Tarreaub54c40a2018-12-02 19:28:41 +01002509 HA_ATOMIC_SUB(&__objt_server(s->target)->cur_sess, 1);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002510 }
Willy Tarreaub54c40a2018-12-02 19:28:41 +01002511 if (may_dequeue_tasks(__objt_server(s->target), be))
2512 process_srv_queue(__objt_server(s->target));
William Lallemandcf62f7e2018-10-26 14:47:40 +02002513 }
2514
2515 s->target = NULL;
2516
2517 /* only release our endpoint if we don't intend to reuse the
2518 * connection.
2519 */
2520 if (!si_conn_ready(&s->si[1])) {
2521 si_release_endpoint(&s->si[1]);
2522 s->srv_conn = NULL;
2523 }
2524
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002525 sockaddr_free(&s->target_addr);
2526
William Lallemandcf62f7e2018-10-26 14:47:40 +02002527 s->si[1].state = s->si[1].prev_state = SI_ST_INI;
2528 s->si[1].err_type = SI_ET_NONE;
2529 s->si[1].conn_retries = 0; /* used for logging too */
2530 s->si[1].exp = TICK_ETERNITY;
2531 s->si[1].flags &= SI_FL_ISBACK | SI_FL_DONT_WAKE; /* we're in the context of process_stream */
Christopher Faulet22dc2482019-07-16 14:43:08 +02002532 s->req.flags &= ~(CF_SHUTW|CF_SHUTW_NOW|CF_AUTO_CONNECT|CF_WRITE_ERROR|CF_STREAMER|CF_STREAMER_FAST|CF_NEVER_WAIT|CF_WROTE_DATA);
William Lallemand19338012019-06-25 18:00:19 +02002533 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|CF_READ_NULL);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002534 s->flags &= ~(SF_DIRECT|SF_ASSIGNED|SF_ADDR_SET|SF_BE_ASSIGNED|SF_FORCE_PRST|SF_IGNORE_PRST);
2535 s->flags &= ~(SF_CURR_SESS|SF_REDIRECTABLE|SF_SRV_REUSED);
2536 s->flags &= ~(SF_ERR_MASK|SF_FINST_MASK|SF_REDISP);
2537 /* reinitialise the current rule list pointer to NULL. We are sure that
2538 * any rulelist match the NULL pointer.
2539 */
2540 s->current_rule_list = NULL;
2541
2542 s->be = strm_fe(s);
2543 s->logs.logwait = strm_fe(s)->to_log;
2544 s->logs.level = 0;
2545 stream_del_srv_conn(s);
2546 s->target = NULL;
2547 /* re-init store persistence */
2548 s->store_count = 0;
2549 s->uniq_id = global.req_count++;
2550
2551 s->req.flags |= CF_READ_DONTWAIT; /* one read is usually enough */
2552
2553 s->req.flags |= CF_WAKE_ONCE; /* need to be called again if there is some command left in the request */
2554
2555 s->req.analysers |= AN_REQ_WAIT_CLI;
2556 s->res.analysers &= ~AN_RES_WAIT_CLI;
2557
2558 /* We must trim any excess data from the response buffer, because we
2559 * may have blocked an invalid response from a server that we don't
Ilya Shipitsind4259502020-04-08 01:07:56 +05002560 * want to accidentally forward once we disable the analysers, nor do
William Lallemandcf62f7e2018-10-26 14:47:40 +02002561 * we want those data to come along with next response. A typical
2562 * example of such data would be from a buggy server responding to
2563 * a HEAD with some data, or sending more than the advertised
2564 * content-length.
2565 */
2566 if (unlikely(ci_data(&s->res)))
2567 b_set_data(&s->res.buf, co_data(&s->res));
2568
2569 /* Now we can realign the response buffer */
2570 c_realign_if_empty(&s->res);
2571
2572 s->req.rto = strm_fe(s)->timeout.client;
2573 s->req.wto = TICK_ETERNITY;
2574
2575 s->res.rto = TICK_ETERNITY;
2576 s->res.wto = strm_fe(s)->timeout.client;
2577
2578 s->req.rex = TICK_ETERNITY;
2579 s->req.wex = TICK_ETERNITY;
2580 s->req.analyse_exp = TICK_ETERNITY;
2581 s->res.rex = TICK_ETERNITY;
2582 s->res.wex = TICK_ETERNITY;
2583 s->res.analyse_exp = TICK_ETERNITY;
2584 s->si[1].hcto = TICK_ETERNITY;
2585
2586 /* we're removing the analysers, we MUST re-enable events detection.
2587 * We don't enable close on the response channel since it's either
2588 * already closed, or in keep-alive with an idle connection handler.
2589 */
2590 channel_auto_read(&s->req);
2591 channel_auto_close(&s->req);
2592 channel_auto_read(&s->res);
2593
2594
2595 return 1;
2596 }
2597 return 0;
2598}
2599
William Lallemand8a022572018-10-26 14:47:35 +02002600/*
2601 * The mworker functions are used to initialize the CLI in the master process
2602 */
2603
William Lallemand309dc9a2018-10-26 14:47:45 +02002604 /*
2605 * Stop the mworker proxy
2606 */
2607void mworker_cli_proxy_stop()
2608{
William Lallemand550db6d2018-11-06 17:37:12 +01002609 if (mworker_proxy)
2610 stop_proxy(mworker_proxy);
William Lallemand309dc9a2018-10-26 14:47:45 +02002611}
2612
William Lallemand8a022572018-10-26 14:47:35 +02002613/*
2614 * Create the mworker CLI proxy
2615 */
2616int mworker_cli_proxy_create()
2617{
2618 struct mworker_proc *child;
William Lallemand744a0892018-11-22 16:46:51 +01002619 char *msg = NULL;
2620 char *errmsg = NULL;
William Lallemand8a022572018-10-26 14:47:35 +02002621
2622 mworker_proxy = calloc(1, sizeof(*mworker_proxy));
2623 if (!mworker_proxy)
2624 return -1;
2625
2626 init_new_proxy(mworker_proxy);
2627 mworker_proxy->next = proxies_list;
2628 proxies_list = mworker_proxy;
2629 mworker_proxy->id = strdup("MASTER");
William Lallemandcf62f7e2018-10-26 14:47:40 +02002630 mworker_proxy->mode = PR_MODE_CLI;
William Lallemand8a022572018-10-26 14:47:35 +02002631 mworker_proxy->last_change = now.tv_sec;
2632 mworker_proxy->cap = PR_CAP_LISTEN; /* this is a listen section */
2633 mworker_proxy->maxconn = 10; /* default to 10 concurrent connections */
2634 mworker_proxy->timeout.client = 0; /* no timeout */
2635 mworker_proxy->conf.file = strdup("MASTER");
2636 mworker_proxy->conf.line = 0;
2637 mworker_proxy->accept = frontend_accept;
2638 mworker_proxy-> lbprm.algo = BE_LB_ALGO_NONE;
2639
2640 /* Does not init the default target the CLI applet, but must be done in
2641 * the request parsing code */
2642 mworker_proxy->default_target = NULL;
2643
2644 /* the check_config_validity() will get an ID for the proxy */
2645 mworker_proxy->uuid = -1;
2646
2647 proxy_store_name(mworker_proxy);
2648
2649 /* create all servers using the mworker_proc list */
2650 list_for_each_entry(child, &proc_list, list) {
William Lallemand8a022572018-10-26 14:47:35 +02002651 struct server *newsrv = NULL;
2652 struct sockaddr_storage *sk;
2653 int port1, port2, port;
2654 struct protocol *proto;
William Lallemand8a022572018-10-26 14:47:35 +02002655
William Lallemanda31b09e2020-01-14 15:25:02 +01002656 /* only the workers support the master CLI */
2657 if (!(child->options & PROC_O_TYPE_WORKER))
2658 continue;
2659
William Lallemand8a022572018-10-26 14:47:35 +02002660 newsrv = new_server(mworker_proxy);
2661 if (!newsrv)
William Lallemand744a0892018-11-22 16:46:51 +01002662 goto error;
William Lallemand8a022572018-10-26 14:47:35 +02002663
2664 /* we don't know the new pid yet */
2665 if (child->pid == -1)
2666 memprintf(&msg, "cur-%d", child->relative_pid);
2667 else
2668 memprintf(&msg, "old-%d", child->pid);
2669
2670 newsrv->next = mworker_proxy->srv;
2671 mworker_proxy->srv = newsrv;
2672 newsrv->conf.file = strdup(msg);
2673 newsrv->id = strdup(msg);
2674 newsrv->conf.line = 0;
2675
2676 memprintf(&msg, "sockpair@%d", child->ipc_fd[0]);
Willy Tarreau5fc93282020-09-16 18:25:03 +02002677 if ((sk = str2sa_range(msg, &port, &port1, &port2, NULL, &proto,
Willy Tarreaua93e5c72020-09-15 14:01:16 +02002678 &errmsg, NULL, NULL, PA_O_STREAM)) == 0) {
William Lallemand744a0892018-11-22 16:46:51 +01002679 goto error;
Tim Duesterhus4cae3b22018-11-22 16:46:50 +01002680 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002681 ha_free(&msg);
William Lallemand8a022572018-10-26 14:47:35 +02002682
Willy Tarreau5fc93282020-09-16 18:25:03 +02002683 if (!proto->connect) {
William Lallemand744a0892018-11-22 16:46:51 +01002684 goto error;
William Lallemand8a022572018-10-26 14:47:35 +02002685 }
2686
2687 /* no port specified */
2688 newsrv->flags |= SRV_F_MAPPORTS;
2689 newsrv->addr = *sk;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002690 /* don't let the server participate to load balancing */
2691 newsrv->iweight = 0;
2692 newsrv->uweight = 0;
William Lallemand8a022572018-10-26 14:47:35 +02002693 srv_lb_commit_status(newsrv);
William Lallemand291810d2018-10-26 14:47:38 +02002694
2695 child->srv = newsrv;
William Lallemand8a022572018-10-26 14:47:35 +02002696 }
2697 return 0;
William Lallemand744a0892018-11-22 16:46:51 +01002698
2699error:
2700 ha_alert("%s\n", errmsg);
2701
2702 list_for_each_entry(child, &proc_list, list) {
2703 free((char *)child->srv->conf.file); /* cast because of const char * */
2704 free(child->srv->id);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002705 ha_free(&child->srv);
William Lallemand744a0892018-11-22 16:46:51 +01002706 }
2707 free(mworker_proxy->id);
2708 free(mworker_proxy->conf.file);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002709 ha_free(&mworker_proxy);
William Lallemand744a0892018-11-22 16:46:51 +01002710 free(errmsg);
2711 free(msg);
2712
2713 return -1;
William Lallemand8a022572018-10-26 14:47:35 +02002714}
Olivier Houchardf886e342017-04-05 22:24:59 +02002715
William Lallemandce83b4a2018-10-26 14:47:30 +02002716/*
William Lallemande7361152018-10-26 14:47:36 +02002717 * Create a new listener for the master CLI proxy
2718 */
2719int mworker_cli_proxy_new_listener(char *line)
2720{
2721 struct bind_conf *bind_conf;
2722 struct listener *l;
2723 char *err = NULL;
2724 char *args[MAX_LINE_ARGS + 1];
2725 int arg;
2726 int cur_arg;
2727
William Lallemand2e945c82019-11-25 09:58:37 +01002728 arg = 1;
William Lallemande7361152018-10-26 14:47:36 +02002729 args[0] = line;
2730
2731 /* args is a bind configuration with spaces replaced by commas */
2732 while (*line && arg < MAX_LINE_ARGS) {
2733
2734 if (*line == ',') {
2735 *line++ = '\0';
2736 while (*line == ',')
2737 line++;
William Lallemand2e945c82019-11-25 09:58:37 +01002738 args[arg++] = line;
William Lallemande7361152018-10-26 14:47:36 +02002739 }
2740 line++;
2741 }
2742
William Lallemand2e945c82019-11-25 09:58:37 +01002743 args[arg] = "\0";
William Lallemande7361152018-10-26 14:47:36 +02002744
2745 bind_conf = bind_conf_alloc(mworker_proxy, "master-socket", 0, "", xprt_get(XPRT_RAW));
William Lallemand744a0892018-11-22 16:46:51 +01002746 if (!bind_conf)
2747 goto err;
William Lallemande7361152018-10-26 14:47:36 +02002748
2749 bind_conf->level &= ~ACCESS_LVL_MASK;
2750 bind_conf->level |= ACCESS_LVL_ADMIN;
Willy Tarreaue283ee62021-03-12 15:00:57 +01002751 bind_conf->level |= ACCESS_MASTER | ACCESS_MASTER_ONLY;
William Lallemande7361152018-10-26 14:47:36 +02002752
2753 if (!str2listener(args[0], mworker_proxy, bind_conf, "master-socket", 0, &err)) {
2754 ha_alert("Cannot create the listener of the master CLI\n");
William Lallemand744a0892018-11-22 16:46:51 +01002755 goto err;
William Lallemande7361152018-10-26 14:47:36 +02002756 }
2757
2758 cur_arg = 1;
2759
2760 while (*args[cur_arg]) {
William Lallemande7361152018-10-26 14:47:36 +02002761 struct bind_kw *kw;
Willy Tarreau433b05f2021-03-12 10:14:07 +01002762 const char *best;
William Lallemande7361152018-10-26 14:47:36 +02002763
2764 kw = bind_find_kw(args[cur_arg]);
2765 if (kw) {
2766 if (!kw->parse) {
2767 memprintf(&err, "'%s %s' : '%s' option is not implemented in this version (check build options).",
2768 args[0], args[1], args[cur_arg]);
2769 goto err;
2770 }
2771
2772 if (kw->parse(args, cur_arg, global.stats_fe, bind_conf, &err) != 0) {
2773 if (err)
2774 memprintf(&err, "'%s %s' : '%s'", args[0], args[1], err);
2775 else
2776 memprintf(&err, "'%s %s' : error encountered while processing '%s'",
2777 args[0], args[1], args[cur_arg]);
2778 goto err;
2779 }
2780
2781 cur_arg += 1 + kw->skip;
2782 continue;
2783 }
2784
Willy Tarreau433b05f2021-03-12 10:14:07 +01002785 best = bind_find_best_kw(args[cur_arg]);
2786 if (best)
2787 memprintf(&err, "'%s %s' : unknown keyword '%s'. Did you mean '%s' maybe ?",
2788 args[0], args[1], args[cur_arg], best);
2789 else
2790 memprintf(&err, "'%s %s' : unknown keyword '%s'.",
2791 args[0], args[1], args[cur_arg]);
William Lallemande7361152018-10-26 14:47:36 +02002792 goto err;
2793 }
2794
2795
2796 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
William Lallemande7361152018-10-26 14:47:36 +02002797 l->accept = session_accept_fd;
2798 l->default_target = mworker_proxy->default_target;
2799 /* don't make the peers subject to global limits and don't close it in the master */
Willy Tarreau18c20d22020-10-09 16:11:46 +02002800 l->options |= LI_O_UNLIMITED;
2801 l->rx.flags |= RX_F_MWORKER; /* we are keeping this FD in the master */
William Lallemande7361152018-10-26 14:47:36 +02002802 l->nice = -64; /* we want to boost priority for local stats */
Willy Tarreau18215cb2019-02-27 16:25:28 +01002803 global.maxsock++; /* for the listening socket */
William Lallemande7361152018-10-26 14:47:36 +02002804 }
Willy Tarreau18215cb2019-02-27 16:25:28 +01002805 global.maxsock += mworker_proxy->maxconn;
William Lallemande7361152018-10-26 14:47:36 +02002806
2807 return 0;
2808
2809err:
2810 ha_alert("%s\n", err);
William Lallemand744a0892018-11-22 16:46:51 +01002811 free(err);
2812 free(bind_conf);
William Lallemande7361152018-10-26 14:47:36 +02002813 return -1;
2814
2815}
2816
2817/*
William Lallemandce83b4a2018-10-26 14:47:30 +02002818 * Create a new CLI socket using a socketpair for a worker process
2819 * <mworker_proc> is the process structure, and <proc> is the process number
2820 */
2821int mworker_cli_sockpair_new(struct mworker_proc *mworker_proc, int proc)
2822{
2823 struct bind_conf *bind_conf;
2824 struct listener *l;
2825 char *path = NULL;
2826 char *err = NULL;
2827
2828 /* master pipe to ensure the master is still alive */
2829 if (socketpair(AF_UNIX, SOCK_STREAM, 0, mworker_proc->ipc_fd) < 0) {
2830 ha_alert("Cannot create worker socketpair.\n");
2831 return -1;
2832 }
2833
2834 /* XXX: we might want to use a separate frontend at some point */
2835 if (!global.stats_fe) {
2836 if ((global.stats_fe = alloc_stats_fe("GLOBAL", "master-socket", 0)) == NULL) {
2837 ha_alert("out of memory trying to allocate the stats frontend");
William Lallemand744a0892018-11-22 16:46:51 +01002838 goto error;
William Lallemandce83b4a2018-10-26 14:47:30 +02002839 }
2840 }
2841
2842 bind_conf = bind_conf_alloc(global.stats_fe, "master-socket", 0, "", xprt_get(XPRT_RAW));
William Lallemand744a0892018-11-22 16:46:51 +01002843 if (!bind_conf)
2844 goto error;
2845
William Lallemandce83b4a2018-10-26 14:47:30 +02002846 bind_conf->level &= ~ACCESS_LVL_MASK;
2847 bind_conf->level |= ACCESS_LVL_ADMIN; /* TODO: need to lower the rights with a CLI keyword*/
2848
Willy Tarreaue26993c2020-09-03 07:18:55 +02002849 bind_conf->settings.bind_proc = 1UL << proc;
William Lallemandce83b4a2018-10-26 14:47:30 +02002850 global.stats_fe->bind_proc = 0; /* XXX: we should be careful with that, it can be removed by configuration */
2851
2852 if (!memprintf(&path, "sockpair@%d", mworker_proc->ipc_fd[1])) {
2853 ha_alert("Cannot allocate listener.\n");
William Lallemand744a0892018-11-22 16:46:51 +01002854 goto error;
William Lallemandce83b4a2018-10-26 14:47:30 +02002855 }
2856
2857 if (!str2listener(path, global.stats_fe, bind_conf, "master-socket", 0, &err)) {
Tim Duesterhus4cae3b22018-11-22 16:46:50 +01002858 free(path);
William Lallemandce83b4a2018-10-26 14:47:30 +02002859 ha_alert("Cannot create a CLI sockpair listener for process #%d\n", proc);
William Lallemand744a0892018-11-22 16:46:51 +01002860 goto error;
William Lallemandce83b4a2018-10-26 14:47:30 +02002861 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01002862 ha_free(&path);
William Lallemandce83b4a2018-10-26 14:47:30 +02002863
2864 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
William Lallemandce83b4a2018-10-26 14:47:30 +02002865 l->accept = session_accept_fd;
2866 l->default_target = global.stats_fe->default_target;
William Lallemanda3372292018-11-16 16:57:22 +01002867 l->options |= (LI_O_UNLIMITED | LI_O_NOSTOP);
Willy Tarreau455585e2020-10-09 18:25:14 +02002868 HA_ATOMIC_ADD(&unstoppable_jobs, 1);
William Lallemandce83b4a2018-10-26 14:47:30 +02002869 /* it's a sockpair but we don't want to keep the fd in the master */
Willy Tarreau43046fa2020-09-01 15:41:59 +02002870 l->rx.flags &= ~RX_F_INHERITED;
William Lallemandce83b4a2018-10-26 14:47:30 +02002871 l->nice = -64; /* we want to boost priority for local stats */
Willy Tarreau18215cb2019-02-27 16:25:28 +01002872 global.maxsock++; /* for the listening socket */
William Lallemandce83b4a2018-10-26 14:47:30 +02002873 }
2874
2875 return 0;
William Lallemand744a0892018-11-22 16:46:51 +01002876
2877error:
2878 close(mworker_proc->ipc_fd[0]);
2879 close(mworker_proc->ipc_fd[1]);
2880 free(err);
2881
2882 return -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02002883}
2884
William Lallemand74c24fb2016-11-21 17:18:36 +01002885static struct applet cli_applet = {
2886 .obj_type = OBJ_TYPE_APPLET,
2887 .name = "<CLI>", /* used for logging */
2888 .fct = cli_io_handler,
2889 .release = cli_release_handler,
2890};
2891
William Lallemand99e0bb92020-11-05 10:28:53 +01002892/* master CLI */
2893static struct applet mcli_applet = {
2894 .obj_type = OBJ_TYPE_APPLET,
2895 .name = "<MCLI>", /* used for logging */
2896 .fct = cli_io_handler,
2897 .release = cli_release_handler,
2898};
2899
Willy Tarreau0a739292016-11-22 20:21:23 +01002900/* register cli keywords */
2901static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau0609c9b2021-03-12 17:03:33 +01002902 { { "help", NULL }, NULL, cli_parse_simple, NULL, NULL, NULL, ACCESS_MASTER },
2903 { { "prompt", NULL }, NULL, cli_parse_simple, NULL, NULL, NULL, ACCESS_MASTER },
2904 { { "quit", NULL }, NULL, cli_parse_simple, NULL, NULL, NULL, ACCESS_MASTER },
Willy Tarreau2af99412016-11-23 11:10:59 +01002905 { { "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 +01002906 { { "set", "rate-limit", NULL }, "set rate-limit : change a rate limiting value", cli_parse_set_ratelimit, NULL },
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02002907 { { "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 +01002908 { { "set", "timeout", NULL }, "set timeout : change a timeout setting", cli_parse_set_timeout, NULL, NULL },
Willy Tarreau0a739292016-11-22 20:21:23 +01002909 { { "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 +02002910 { { "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 +01002911 { { "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 +02002912 { { "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 +01002913 { { "show", "activity", NULL }, "show activity : show per-thread activity stats (for support/developers)", cli_parse_default, cli_io_handler_show_activity, NULL },
William Lallemand67a234f2018-12-13 09:05:45 +01002914 { { "operator", NULL }, "operator : lower the level of the current CLI session to operator", cli_parse_set_lvl, NULL, NULL, NULL, ACCESS_MASTER},
2915 { { "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 +02002916 { { "_getsocks", NULL }, NULL, _getsocks, NULL },
Willy Tarreauabb9f9b2019-10-24 17:55:53 +02002917 { { "expert-mode", NULL }, NULL, cli_parse_expert_mode, NULL }, // not listed
Willy Tarreau0a739292016-11-22 20:21:23 +01002918 {{},}
2919}};
2920
Willy Tarreau0108d902018-11-25 19:14:37 +01002921INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
2922
William Lallemand74c24fb2016-11-21 17:18:36 +01002923static struct cfg_kw_list cfg_kws = {ILH, {
2924 { CFG_GLOBAL, "stats", stats_parse_global },
2925 { 0, NULL, NULL },
2926}};
2927
Willy Tarreau0108d902018-11-25 19:14:37 +01002928INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
2929
William Lallemand74c24fb2016-11-21 17:18:36 +01002930static struct bind_kw_list bind_kws = { "STAT", { }, {
William Lallemandf6975e92017-05-26 17:42:10 +02002931 { "level", bind_parse_level, 1 }, /* set the unix socket admin level */
2932 { "expose-fd", bind_parse_expose_fd, 1 }, /* set the unix socket expose fd rights */
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02002933 { "severity-output", bind_parse_severity_output, 1 }, /* set the severity output format */
William Lallemand74c24fb2016-11-21 17:18:36 +01002934 { NULL, NULL, 0 },
2935}};
2936
Willy Tarreau0108d902018-11-25 19:14:37 +01002937INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
William Lallemand74c24fb2016-11-21 17:18:36 +01002938
2939/*
2940 * Local variables:
2941 * c-indent-level: 8
2942 * c-basic-offset: 8
2943 * End:
2944 */