blob: d238a23a1f430f9c24f8340616903592f118844c [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>
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +020031#include <haproxy/applet.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020032#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>
William Lallemand3ba7c7b2021-11-10 10:57:18 +010047#include <haproxy/mworker.h>
Willy Tarreaub5abe5b2020-06-04 14:07:37 +020048#include <haproxy/mworker-t.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020049#include <haproxy/pattern-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020050#include <haproxy/peers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020051#include <haproxy/pipe.h>
52#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020053#include <haproxy/proxy.h>
Willy Tarreaue6ce10b2020-06-04 15:33:47 +020054#include <haproxy/sample-t.h>
Willy Tarreau5edca2f2022-05-27 09:25:10 +020055#include <haproxy/sc_strm.h>
Willy Tarreau1e56f922020-06-04 23:20:13 +020056#include <haproxy/server.h>
Willy Tarreau48d25b32020-06-04 18:58:52 +020057#include <haproxy/session.h>
Willy Tarreaua74cb382020-10-15 21:29:49 +020058#include <haproxy/sock.h>
Willy Tarreau2eec9b52020-06-04 19:58:55 +020059#include <haproxy/stats-t.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020060#include <haproxy/stconn.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020061#include <haproxy/stream.h>
Willy Tarreaucea0e1b2020-06-04 17:25:40 +020062#include <haproxy/task.h>
Willy Tarreauc2f7c582020-06-02 18:15:32 +020063#include <haproxy/ticks.h>
Willy Tarreau92b4f132020-06-01 11:05:15 +020064#include <haproxy/time.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020065#include <haproxy/tools.h>
Willy Tarreaud6788052020-05-27 15:59:00 +020066#include <haproxy/version.h>
William Lallemand74c24fb2016-11-21 17:18:36 +010067
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +020068#define PAYLOAD_PATTERN "<<"
69
William Lallemand74c24fb2016-11-21 17:18:36 +010070static struct applet cli_applet;
William Lallemand99e0bb92020-11-05 10:28:53 +010071static struct applet mcli_applet;
William Lallemand74c24fb2016-11-21 17:18:36 +010072
Willy Tarreau4975d142021-03-13 11:00:33 +010073static const char cli_permission_denied_msg[] =
William Lallemand74c24fb2016-11-21 17:18:36 +010074 "Permission denied\n"
75 "";
76
77
Christopher Faulet1bc04c72017-10-29 20:14:08 +010078static THREAD_LOCAL char *dynamic_usage_msg = NULL;
William Lallemand74c24fb2016-11-21 17:18:36 +010079
80/* List head of cli keywords */
81static struct cli_kw_list cli_keywords = {
82 .list = LIST_HEAD_INIT(cli_keywords.list)
83};
84
85extern const char *stat_status_codes[];
86
Eric Salama1b8dacc2021-03-16 15:12:17 +010087struct proxy *mworker_proxy; /* CLI proxy of the master */
William Lallemand8a022572018-10-26 14:47:35 +020088
Willy Tarreau9a7fa902022-07-15 16:51:16 +020089/* CLI context for the "show activity" command */
90struct show_activity_ctx {
91 int thr; /* thread ID to show or -1 for all */
92};
93
Willy Tarreau307dbb32022-05-05 17:45:52 +020094/* CLI context for the "show env" command */
95struct show_env_ctx {
96 char **var; /* first variable to show */
97 int show_one; /* stop after showing the first one */
98};
99
Willy Tarreau741a5a92022-05-05 17:56:58 +0200100/* CLI context for the "show fd" command */
101struct show_fd_ctx {
102 int fd; /* first FD to show */
103 int show_one; /* stop after showing one FD */
104};
105
Willy Tarreaub128f492022-05-05 19:11:05 +0200106/* CLI context for the "show cli sockets" command */
107struct show_sock_ctx {
108 struct bind_conf *bind_conf;
109 struct listener *listener;
110};
111
Willy Tarreau92fbbcc2021-05-09 21:45:29 +0200112static int cmp_kw_entries(const void *a, const void *b)
113{
114 const struct cli_kw *l = *(const struct cli_kw **)a;
115 const struct cli_kw *r = *(const struct cli_kw **)b;
116
117 return strcmp(l->usage ? l->usage : "", r->usage ? r->usage : "");
118}
119
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100120/* This will show the help message and list the commands supported at the
121 * current level that match all of the first words of <args> if args is not
122 * NULL, or all args if none matches or if args is null.
123 */
124static char *cli_gen_usage_msg(struct appctx *appctx, char * const *args)
William Lallemand74c24fb2016-11-21 17:18:36 +0100125{
Willy Tarreau92fbbcc2021-05-09 21:45:29 +0200126 struct cli_kw *entries[CLI_MAX_HELP_ENTRIES];
William Lallemand74c24fb2016-11-21 17:18:36 +0100127 struct cli_kw_list *kw_list;
128 struct cli_kw *kw;
Willy Tarreau83061a82018-07-13 11:56:34 +0200129 struct buffer *tmp = get_trash_chunk();
130 struct buffer out;
Willy Tarreaub7364582021-03-12 18:24:46 +0100131 struct { struct cli_kw *kw; int dist; } matches[CLI_MAX_MATCHES], swp;
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100132 int idx;
Willy Tarreau0b1b8302021-05-09 20:59:23 +0200133 int ishelp = 0;
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100134 int length = 0;
Willy Tarreau92fbbcc2021-05-09 21:45:29 +0200135 int help_entries = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100136
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100137 ha_free(&dynamic_usage_msg);
William Lallemand74c24fb2016-11-21 17:18:36 +0100138
Willy Tarreau0b1b8302021-05-09 20:59:23 +0200139 if (args && *args && strcmp(*args, "help") == 0) {
140 args++;
141 ishelp = 1;
142 }
143
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100144 /* first, let's measure the longest match */
145 list_for_each_entry(kw_list, &cli_keywords.list, list) {
146 for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) {
Amaury Denoyelle18487fb2021-03-18 15:32:53 +0100147 if (kw->level & ~appctx->cli_level & (ACCESS_MASTER_ONLY|ACCESS_EXPERT|ACCESS_EXPERIMENTAL))
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100148 continue;
William Lallemand2a171912022-02-02 11:43:20 +0100149 if (!(appctx->cli_level & ACCESS_MCLI_DEBUG) &&
150 (appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) ==
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100151 (ACCESS_MASTER_ONLY|ACCESS_MASTER))
152 continue;
153
154 /* OK this command is visible */
155 for (idx = 0; idx < CLI_PREFIX_KW_NB; idx++) {
156 if (!kw->str_kw[idx])
157 break; // end of keyword
158 if (!args || !args[idx] || !*args[idx])
159 break; // end of command line
160 if (strcmp(kw->str_kw[idx], args[idx]) != 0)
161 break;
162 if (idx + 1 > length)
163 length = idx + 1;
164 }
165 }
166 }
167
Willy Tarreaub7364582021-03-12 18:24:46 +0100168 /* now <length> equals the number of exactly matching words */
William Lallemand74c24fb2016-11-21 17:18:36 +0100169 chunk_reset(tmp);
Willy Tarreau0b1b8302021-05-09 20:59:23 +0200170 if (ishelp) // this is the help message.
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100171 chunk_strcat(tmp, "The following commands are valid at this level:\n");
Willy Tarreau5db446d2021-05-10 07:47:05 +0200172 else if (!length && (!args || !*args || !**args)) // no match
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100173 chunk_strcat(tmp, "Unknown command. Please enter one of the following commands only:\n");
174 else // partial match
175 chunk_strcat(tmp, "Unknown command, but maybe one of the following ones is a better match:\n");
176
Willy Tarreaub7364582021-03-12 18:24:46 +0100177 for (idx = 0; idx < CLI_MAX_MATCHES; idx++) {
178 matches[idx].kw = NULL;
179 matches[idx].dist = INT_MAX;
180 }
181
182 /* In case of partial match we'll look for the best matching entries
183 * starting from position <length>
184 */
Willy Tarreau9c187472021-03-13 12:25:43 +0100185 if (args && args[length] && *args[length]) {
Willy Tarreaub7364582021-03-12 18:24:46 +0100186 list_for_each_entry(kw_list, &cli_keywords.list, list) {
187 for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) {
Amaury Denoyelle18487fb2021-03-18 15:32:53 +0100188 if (kw->level & ~appctx->cli_level & (ACCESS_MASTER_ONLY|ACCESS_EXPERT|ACCESS_EXPERIMENTAL))
Willy Tarreaub7364582021-03-12 18:24:46 +0100189 continue;
William Lallemand2a171912022-02-02 11:43:20 +0100190 if (!(appctx->cli_level & ACCESS_MCLI_DEBUG) &&
191 ((appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) ==
192 (ACCESS_MASTER_ONLY|ACCESS_MASTER)))
Willy Tarreaub7364582021-03-12 18:24:46 +0100193 continue;
194
195 for (idx = 0; idx < length; idx++) {
196 if (!kw->str_kw[idx])
197 break; // end of keyword
198 if (!args || !args[idx] || !*args[idx])
199 break; // end of command line
200 if (strcmp(kw->str_kw[idx], args[idx]) != 0)
201 break;
202 }
203
204 /* extra non-matching words are fuzzy-matched */
205 if (kw->usage && idx == length && args[idx] && *args[idx]) {
206 uint8_t word_sig[1024];
207 uint8_t list_sig[1024];
208 int dist = 0;
209 int totlen = 0;
Willy Tarreaua9aa6282021-03-15 10:00:29 +0100210 int i;
Willy Tarreaub7364582021-03-12 18:24:46 +0100211
212 /* this one matches, let's compute the distance between the two
Willy Tarreaua9aa6282021-03-15 10:00:29 +0100213 * on the remaining words. For this we're computing the signature
214 * of everything that remains and the cumulated length of the
215 * strings.
Willy Tarreaub7364582021-03-12 18:24:46 +0100216 */
Willy Tarreauc57dcfe2021-03-12 19:01:59 +0100217 memset(word_sig, 0, sizeof(word_sig));
Willy Tarreaua9aa6282021-03-15 10:00:29 +0100218 for (i = idx; i < CLI_PREFIX_KW_NB && args[i] && *args[i]; i++) {
219 update_word_fingerprint(word_sig, args[i]);
220 totlen += strlen(args[i]);
221 }
Willy Tarreauc57dcfe2021-03-12 19:01:59 +0100222
Willy Tarreaua9aa6282021-03-15 10:00:29 +0100223 memset(list_sig, 0, sizeof(list_sig));
224 for (i = idx; i < CLI_PREFIX_KW_NB && kw->str_kw[i]; i++) {
225 update_word_fingerprint(list_sig, kw->str_kw[i]);
226 totlen += strlen(kw->str_kw[i]);
Willy Tarreaub7364582021-03-12 18:24:46 +0100227 }
Willy Tarreaua9aa6282021-03-15 10:00:29 +0100228
Willy Tarreauc57dcfe2021-03-12 19:01:59 +0100229 dist = word_fingerprint_distance(word_sig, list_sig);
Willy Tarreaub7364582021-03-12 18:24:46 +0100230
231 /* insert this one at its place if relevant, in order to keep only
232 * the best matches.
233 */
234 swp.kw = kw; swp.dist = dist;
Willy Tarreaua9aa6282021-03-15 10:00:29 +0100235 if (dist < 5*totlen/2 && dist < matches[CLI_MAX_MATCHES-1].dist) {
Willy Tarreaub7364582021-03-12 18:24:46 +0100236 matches[CLI_MAX_MATCHES-1] = swp;
237 for (idx = CLI_MAX_MATCHES - 1; --idx >= 0;) {
238 if (matches[idx+1].dist >= matches[idx].dist)
239 break;
240 matches[idx+1] = matches[idx];
241 matches[idx] = swp;
242 }
243 }
244 }
245 }
246 }
247 }
248
Willy Tarreauec197e82021-03-15 10:35:04 +0100249 if (matches[0].kw) {
250 /* we have fuzzy matches, let's propose them */
251 for (idx = 0; idx < CLI_MAX_MATCHES; idx++) {
252 kw = matches[idx].kw;
253 if (!kw)
254 break;
255
256 /* stop the dump if some words look very unlikely candidates */
257 if (matches[idx].dist > 5*matches[0].dist/2)
258 break;
259
Willy Tarreau92fbbcc2021-05-09 21:45:29 +0200260 if (help_entries < CLI_MAX_HELP_ENTRIES)
261 entries[help_entries++] = kw;
Willy Tarreauec197e82021-03-15 10:35:04 +0100262 }
263 }
264
William Lallemand74c24fb2016-11-21 17:18:36 +0100265 list_for_each_entry(kw_list, &cli_keywords.list, list) {
Willy Tarreauec197e82021-03-15 10:35:04 +0100266 /* no full dump if we've already found nice candidates */
267 if (matches[0].kw)
268 break;
269
Willy Tarreau91bc3592021-03-12 15:20:39 +0100270 for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) {
William Lallemand14721be2018-10-26 14:47:37 +0200271
Willy Tarreau91bc3592021-03-12 15:20:39 +0100272 /* in a worker or normal process, don't display master-only commands
Amaury Denoyelle18487fb2021-03-18 15:32:53 +0100273 * nor expert/experimental mode commands if not in this mode.
Willy Tarreau91bc3592021-03-12 15:20:39 +0100274 */
Amaury Denoyelle18487fb2021-03-18 15:32:53 +0100275 if (kw->level & ~appctx->cli_level & (ACCESS_MASTER_ONLY|ACCESS_EXPERT|ACCESS_EXPERIMENTAL))
Willy Tarreau91bc3592021-03-12 15:20:39 +0100276 continue;
William Lallemand14721be2018-10-26 14:47:37 +0200277
William Lallemand2a171912022-02-02 11:43:20 +0100278 /* in master, if the CLI don't have the
279 * ACCESS_MCLI_DEBUG don't display commands that have
280 * neither the master bit nor the master-only bit.
Willy Tarreau91bc3592021-03-12 15:20:39 +0100281 */
William Lallemand2a171912022-02-02 11:43:20 +0100282 if (!(appctx->cli_level & ACCESS_MCLI_DEBUG) &&
283 ((appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) ==
284 (ACCESS_MASTER_ONLY|ACCESS_MASTER)))
Willy Tarreau91bc3592021-03-12 15:20:39 +0100285 continue;
Willy Tarreauabb9f9b2019-10-24 17:55:53 +0200286
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100287 for (idx = 0; idx < length; idx++) {
288 if (!kw->str_kw[idx])
289 break; // end of keyword
290 if (!args || !args[idx] || !*args[idx])
291 break; // end of command line
292 if (strcmp(kw->str_kw[idx], args[idx]) != 0)
293 break;
294 }
295
Willy Tarreau92fbbcc2021-05-09 21:45:29 +0200296 if (kw->usage && idx == length && help_entries < CLI_MAX_HELP_ENTRIES)
297 entries[help_entries++] = kw;
William Lallemand74c24fb2016-11-21 17:18:36 +0100298 }
299 }
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100300
Willy Tarreau92fbbcc2021-05-09 21:45:29 +0200301 qsort(entries, help_entries, sizeof(*entries), cmp_kw_entries);
302
303 for (idx = 0; idx < help_entries; idx++)
304 chunk_appendf(tmp, " %s\n", entries[idx]->usage);
305
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100306 /* always show the prompt/help/quit commands */
307 chunk_strcat(tmp,
Willy Tarreau0b1b8302021-05-09 20:59:23 +0200308 " help [<command>] : list matching or all commands\n"
Willy Tarreaub205bfd2021-05-07 11:38:37 +0200309 " prompt : toggle interactive mode with prompt\n"
310 " quit : disconnect\n");
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100311
William Lallemand74c24fb2016-11-21 17:18:36 +0100312 chunk_init(&out, NULL, 0);
313 chunk_dup(&out, tmp);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200314 dynamic_usage_msg = out.area;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200315
Willy Tarreau1c0715b2022-05-06 17:16:35 +0200316 cli_msg(appctx, LOG_INFO, dynamic_usage_msg);
William Lallemand74c24fb2016-11-21 17:18:36 +0100317 return dynamic_usage_msg;
318}
319
320struct cli_kw* cli_find_kw(char **args)
321{
322 struct cli_kw_list *kw_list;
323 struct cli_kw *kw;/* current cli_kw */
324 char **tmp_args;
325 const char **tmp_str_kw;
326 int found = 0;
327
328 if (LIST_ISEMPTY(&cli_keywords.list))
329 return NULL;
330
331 list_for_each_entry(kw_list, &cli_keywords.list, list) {
332 kw = &kw_list->kw[0];
333 while (*kw->str_kw) {
334 tmp_args = args;
335 tmp_str_kw = kw->str_kw;
336 while (*tmp_str_kw) {
337 if (strcmp(*tmp_str_kw, *tmp_args) == 0) {
338 found = 1;
339 } else {
340 found = 0;
341 break;
342 }
343 tmp_args++;
344 tmp_str_kw++;
345 }
346 if (found)
347 return (kw);
348 kw++;
349 }
350 }
351 return NULL;
352}
353
Thierry Fourniera51a1fd2020-11-28 20:10:08 +0100354struct cli_kw* cli_find_kw_exact(char **args)
355{
356 struct cli_kw_list *kw_list;
357 int found = 0;
358 int i;
359 int j;
360
361 if (LIST_ISEMPTY(&cli_keywords.list))
362 return NULL;
363
364 list_for_each_entry(kw_list, &cli_keywords.list, list) {
365 for (i = 0; kw_list->kw[i].str_kw[0]; i++) {
366 found = 1;
367 for (j = 0; j < CLI_PREFIX_KW_NB; j++) {
368 if (args[j] == NULL && kw_list->kw[i].str_kw[j] == NULL) {
369 break;
370 }
371 if (args[j] == NULL || kw_list->kw[i].str_kw[j] == NULL) {
372 found = 0;
373 break;
374 }
375 if (strcmp(args[j], kw_list->kw[i].str_kw[j]) != 0) {
376 found = 0;
377 break;
378 }
379 }
380 if (found)
381 return &kw_list->kw[i];
382 }
383 }
384 return NULL;
385}
386
William Lallemand74c24fb2016-11-21 17:18:36 +0100387void cli_register_kw(struct cli_kw_list *kw_list)
388{
Willy Tarreau2b718102021-04-21 07:32:39 +0200389 LIST_APPEND(&cli_keywords.list, &kw_list->list);
William Lallemand74c24fb2016-11-21 17:18:36 +0100390}
391
Willy Tarreau06d0e2e2022-03-29 15:25:30 +0200392/* list all known keywords on stdout, one per line */
393void cli_list_keywords(void)
394{
395 struct cli_kw_list *kw_list;
Willy Tarreau44651712022-03-30 12:02:35 +0200396 struct cli_kw *kwp, *kwn, *kw;
Willy Tarreau06d0e2e2022-03-29 15:25:30 +0200397 int idx;
398
Willy Tarreau44651712022-03-30 12:02:35 +0200399 for (kwn = kwp = NULL;; kwp = kwn) {
400 list_for_each_entry(kw_list, &cli_keywords.list, list) {
401 /* note: we sort based on the usage message when available,
402 * otherwise we fall back to the first keyword.
403 */
404 for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) {
405 if (strordered(kwp ? kwp->usage ? kwp->usage : kwp->str_kw[0] : NULL,
406 kw->usage ? kw->usage : kw->str_kw[0],
407 kwn != kwp ? kwn->usage ? kwn->usage : kwn->str_kw[0] : NULL))
408 kwn = kw;
Willy Tarreau06d0e2e2022-03-29 15:25:30 +0200409 }
Willy Tarreau44651712022-03-30 12:02:35 +0200410 }
411
412 if (kwn == kwp)
413 break;
414
415 for (idx = 0; kwn->str_kw[idx]; idx++) {
416 printf("%s ", kwn->str_kw[idx]);
Willy Tarreau06d0e2e2022-03-29 15:25:30 +0200417 }
Willy Tarreau44651712022-03-30 12:02:35 +0200418 if (kwn->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER))
419 printf("[MASTER] ");
420 if (!(kwn->level & ACCESS_MASTER_ONLY))
421 printf("[WORKER] ");
422 if (kwn->level & ACCESS_EXPERT)
423 printf("[EXPERT] ");
424 if (kwn->level & ACCESS_EXPERIMENTAL)
425 printf("[EXPERIM] ");
426 printf("\n");
Willy Tarreau06d0e2e2022-03-29 15:25:30 +0200427 }
428}
William Lallemand74c24fb2016-11-21 17:18:36 +0100429
430/* allocate a new stats frontend named <name>, and return it
431 * (or NULL in case of lack of memory).
432 */
Willy Tarreau4975d142021-03-13 11:00:33 +0100433static struct proxy *cli_alloc_fe(const char *name, const char *file, int line)
William Lallemand74c24fb2016-11-21 17:18:36 +0100434{
435 struct proxy *fe;
436
437 fe = calloc(1, sizeof(*fe));
438 if (!fe)
439 return NULL;
440
441 init_new_proxy(fe);
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100442 fe->next = proxies_list;
443 proxies_list = fe;
William Lallemand74c24fb2016-11-21 17:18:36 +0100444 fe->last_change = now.tv_sec;
445 fe->id = strdup("GLOBAL");
William Lallemand6640dbb2021-08-13 15:31:33 +0200446 fe->cap = PR_CAP_FE|PR_CAP_INT;
William Lallemand74c24fb2016-11-21 17:18:36 +0100447 fe->maxconn = 10; /* default to 10 concurrent connections */
448 fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
449 fe->conf.file = strdup(file);
450 fe->conf.line = line;
451 fe->accept = frontend_accept;
452 fe->default_target = &cli_applet.obj_type;
453
454 /* the stats frontend is the only one able to assign ID #0 */
455 fe->conf.id.key = fe->uuid = 0;
456 eb32_insert(&used_proxy_id, &fe->conf.id);
457 return fe;
458}
459
460/* This function parses a "stats" statement in the "global" section. It returns
461 * -1 if there is any error, otherwise zero. If it returns -1, it will write an
462 * error message into the <err> buffer which will be preallocated. The trailing
463 * '\n' must not be written. The function must be called with <args> pointing to
464 * the first word after "stats".
465 */
Willy Tarreau4975d142021-03-13 11:00:33 +0100466static int cli_parse_global(char **args, int section_type, struct proxy *curpx,
467 const struct proxy *defpx, const char *file, int line,
468 char **err)
William Lallemand74c24fb2016-11-21 17:18:36 +0100469{
470 struct bind_conf *bind_conf;
471 struct listener *l;
472
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100473 if (strcmp(args[1], "socket") == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100474 int cur_arg;
475
476 if (*args[2] == 0) {
477 memprintf(err, "'%s %s' in global section expects an address or a path to a UNIX socket", args[0], args[1]);
478 return -1;
479 }
480
Willy Tarreau4975d142021-03-13 11:00:33 +0100481 if (!global.cli_fe) {
482 if ((global.cli_fe = cli_alloc_fe("GLOBAL", file, line)) == NULL) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100483 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
484 return -1;
485 }
486 }
487
Willy Tarreau4975d142021-03-13 11:00:33 +0100488 bind_conf = bind_conf_alloc(global.cli_fe, file, line, args[2], xprt_get(XPRT_RAW));
Christopher Faulet0c6d1dc2021-04-12 16:56:37 +0200489 if (!bind_conf) {
490 memprintf(err, "'%s %s' : out of memory trying to allocate a bind_conf", args[0], args[1]);
491 return -1;
492 }
William Lallemand07a62f72017-05-24 00:57:40 +0200493 bind_conf->level &= ~ACCESS_LVL_MASK;
494 bind_conf->level |= ACCESS_LVL_OPER; /* default access level */
Willy Tarreau6bdf9452022-07-06 11:52:24 +0200495 bind_conf->bind_tgroup = 1; // bind to a single group in any case
William Lallemand74c24fb2016-11-21 17:18:36 +0100496
Willy Tarreau4975d142021-03-13 11:00:33 +0100497 if (!str2listener(args[2], global.cli_fe, bind_conf, file, line, err)) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100498 memprintf(err, "parsing [%s:%d] : '%s %s' : %s\n",
499 file, line, args[0], args[1], err && *err ? *err : "error");
500 return -1;
501 }
502
503 cur_arg = 3;
504 while (*args[cur_arg]) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100505 struct bind_kw *kw;
Willy Tarreau433b05f2021-03-12 10:14:07 +0100506 const char *best;
Willy Tarreau0a1e1cb2021-11-20 20:10:41 +0100507 int code;
William Lallemand74c24fb2016-11-21 17:18:36 +0100508
509 kw = bind_find_kw(args[cur_arg]);
510 if (kw) {
511 if (!kw->parse) {
512 memprintf(err, "'%s %s' : '%s' option is not implemented in this version (check build options).",
513 args[0], args[1], args[cur_arg]);
514 return -1;
515 }
516
Willy Tarreau0a1e1cb2021-11-20 20:10:41 +0100517 code = kw->parse(args, cur_arg, global.cli_fe, bind_conf, err);
518
519 /* FIXME: this is ugly, we don't have a way to collect warnings,
520 * yet some important bind keywords may report warnings that we
521 * must display.
522 */
523 if (((code & (ERR_WARN|ERR_FATAL|ERR_ALERT)) == ERR_WARN) && err && *err) {
524 indent_msg(err, 2);
525 ha_warning("parsing [%s:%d] : '%s %s' : %s\n", file, line, args[0], args[1], *err);
526 ha_free(err);
527 }
528
529 if (code & ~ERR_WARN) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100530 if (err && *err)
531 memprintf(err, "'%s %s' : '%s'", args[0], args[1], *err);
532 else
533 memprintf(err, "'%s %s' : error encountered while processing '%s'",
534 args[0], args[1], args[cur_arg]);
535 return -1;
536 }
537
538 cur_arg += 1 + kw->skip;
539 continue;
540 }
541
Willy Tarreau433b05f2021-03-12 10:14:07 +0100542 best = bind_find_best_kw(args[cur_arg]);
543 if (best)
544 memprintf(err, "'%s %s' : unknown keyword '%s'. Did you mean '%s' maybe ?",
545 args[0], args[1], args[cur_arg], best);
546 else
547 memprintf(err, "'%s %s' : unknown keyword '%s'.",
548 args[0], args[1], args[cur_arg]);
William Lallemand74c24fb2016-11-21 17:18:36 +0100549 return -1;
550 }
551
552 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100553 l->accept = session_accept_fd;
Willy Tarreau4975d142021-03-13 11:00:33 +0100554 l->default_target = global.cli_fe->default_target;
William Lallemand74c24fb2016-11-21 17:18:36 +0100555 l->options |= LI_O_UNLIMITED; /* don't make the peers subject to global limits */
556 l->nice = -64; /* we want to boost priority for local stats */
Willy Tarreau18215cb2019-02-27 16:25:28 +0100557 global.maxsock++; /* for the listening socket */
William Lallemand74c24fb2016-11-21 17:18:36 +0100558 }
559 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100560 else if (strcmp(args[1], "timeout") == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100561 unsigned timeout;
562 const char *res = parse_time_err(args[2], &timeout, TIME_UNIT_MS);
563
Willy Tarreau9faebe32019-06-07 19:00:37 +0200564 if (res == PARSE_TIME_OVER) {
565 memprintf(err, "timer overflow in argument '%s' to '%s %s' (maximum value is 2147483647 ms or ~24.8 days)",
566 args[2], args[0], args[1]);
567 return -1;
568 }
569 else if (res == PARSE_TIME_UNDER) {
570 memprintf(err, "timer underflow in argument '%s' to '%s %s' (minimum non-null value is 1 ms)",
571 args[2], args[0], args[1]);
572 return -1;
573 }
574 else if (res) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100575 memprintf(err, "'%s %s' : unexpected character '%c'", args[0], args[1], *res);
576 return -1;
577 }
578
579 if (!timeout) {
580 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
581 return -1;
582 }
Willy Tarreau4975d142021-03-13 11:00:33 +0100583 if (!global.cli_fe) {
584 if ((global.cli_fe = cli_alloc_fe("GLOBAL", file, line)) == NULL) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100585 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
586 return -1;
587 }
588 }
Willy Tarreau4975d142021-03-13 11:00:33 +0100589 global.cli_fe->timeout.client = MS_TO_TICKS(timeout);
William Lallemand74c24fb2016-11-21 17:18:36 +0100590 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100591 else if (strcmp(args[1], "maxconn") == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100592 int maxconn = atol(args[2]);
593
594 if (maxconn <= 0) {
595 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
596 return -1;
597 }
598
Willy Tarreau4975d142021-03-13 11:00:33 +0100599 if (!global.cli_fe) {
600 if ((global.cli_fe = cli_alloc_fe("GLOBAL", file, line)) == NULL) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100601 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
602 return -1;
603 }
604 }
Willy Tarreau4975d142021-03-13 11:00:33 +0100605 global.cli_fe->maxconn = maxconn;
William Lallemand74c24fb2016-11-21 17:18:36 +0100606 }
Willy Tarreau94f763b2022-07-15 17:14:40 +0200607 else if (strcmp(args[1], "bind-process") == 0) {
608 memprintf(err, "'%s' is not supported anymore.", args[0]);
609 return -1;
William Lallemand74c24fb2016-11-21 17:18:36 +0100610 }
611 else {
612 memprintf(err, "'%s' only supports 'socket', 'maxconn', 'bind-process' and 'timeout' (got '%s')", args[0], args[1]);
613 return -1;
614 }
615 return 0;
616}
617
William Lallemand33d29e22019-04-01 11:30:06 +0200618/*
William Lallemand9a37fd02019-04-12 16:09:24 +0200619 * This function exports the bound addresses of a <frontend> in the environment
620 * variable <varname>. Those addresses are separated by semicolons and prefixed
621 * with their type (abns@, unix@, sockpair@ etc)
622 * Return -1 upon error, 0 otherwise
William Lallemand33d29e22019-04-01 11:30:06 +0200623 */
William Lallemand9a37fd02019-04-12 16:09:24 +0200624int listeners_setenv(struct proxy *frontend, const char *varname)
William Lallemand33d29e22019-04-01 11:30:06 +0200625{
626 struct buffer *trash = get_trash_chunk();
627 struct bind_conf *bind_conf;
628
William Lallemand9a37fd02019-04-12 16:09:24 +0200629 if (frontend) {
630 list_for_each_entry(bind_conf, &frontend->conf.bind, by_fe) {
William Lallemand33d29e22019-04-01 11:30:06 +0200631 struct listener *l;
632
633 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
634 char addr[46];
635 char port[6];
636
William Lallemand620072b2019-04-12 16:09:25 +0200637 /* separate listener by semicolons */
638 if (trash->data)
639 chunk_appendf(trash, ";");
640
Willy Tarreau37159062020-08-27 07:48:42 +0200641 if (l->rx.addr.ss_family == AF_UNIX) {
William Lallemand33d29e22019-04-01 11:30:06 +0200642 const struct sockaddr_un *un;
643
Willy Tarreau37159062020-08-27 07:48:42 +0200644 un = (struct sockaddr_un *)&l->rx.addr;
William Lallemand33d29e22019-04-01 11:30:06 +0200645 if (un->sun_path[0] == '\0') {
646 chunk_appendf(trash, "abns@%s", un->sun_path+1);
647 } else {
648 chunk_appendf(trash, "unix@%s", un->sun_path);
649 }
Willy Tarreau37159062020-08-27 07:48:42 +0200650 } else if (l->rx.addr.ss_family == AF_INET) {
651 addr_to_str(&l->rx.addr, addr, sizeof(addr));
652 port_to_str(&l->rx.addr, port, sizeof(port));
William Lallemand33d29e22019-04-01 11:30:06 +0200653 chunk_appendf(trash, "ipv4@%s:%s", addr, port);
Willy Tarreau37159062020-08-27 07:48:42 +0200654 } else if (l->rx.addr.ss_family == AF_INET6) {
655 addr_to_str(&l->rx.addr, addr, sizeof(addr));
656 port_to_str(&l->rx.addr, port, sizeof(port));
William Lallemand33d29e22019-04-01 11:30:06 +0200657 chunk_appendf(trash, "ipv6@[%s]:%s", addr, port);
Willy Tarreau37159062020-08-27 07:48:42 +0200658 } else if (l->rx.addr.ss_family == AF_CUST_SOCKPAIR) {
659 chunk_appendf(trash, "sockpair@%d", ((struct sockaddr_in *)&l->rx.addr)->sin_addr.s_addr);
William Lallemand33d29e22019-04-01 11:30:06 +0200660 }
William Lallemand33d29e22019-04-01 11:30:06 +0200661 }
662 }
663 trash->area[trash->data++] = '\0';
William Lallemand9a37fd02019-04-12 16:09:24 +0200664 if (setenv(varname, trash->area, 1) < 0)
William Lallemand33d29e22019-04-01 11:30:06 +0200665 return -1;
666 }
667
668 return 0;
669}
670
William Lallemand9a37fd02019-04-12 16:09:24 +0200671int cli_socket_setenv()
672{
Willy Tarreau4975d142021-03-13 11:00:33 +0100673 if (listeners_setenv(global.cli_fe, "HAPROXY_CLI") < 0)
William Lallemand9a37fd02019-04-12 16:09:24 +0200674 return -1;
675 if (listeners_setenv(mworker_proxy, "HAPROXY_MASTER_CLI") < 0)
676 return -1;
677
678 return 0;
679}
680
William Lallemand33d29e22019-04-01 11:30:06 +0200681REGISTER_CONFIG_POSTPARSER("cli", cli_socket_setenv);
682
Willy Tarreaude57a572016-11-23 17:01:39 +0100683/* Verifies that the CLI at least has a level at least as high as <level>
684 * (typically ACCESS_LVL_ADMIN). Returns 1 if OK, otherwise 0. In case of
685 * failure, an error message is prepared and the appctx's state is adjusted
686 * to print it so that a return 1 is enough to abort any processing.
687 */
688int cli_has_level(struct appctx *appctx, int level)
689{
Willy Tarreaude57a572016-11-23 17:01:39 +0100690
William Lallemandf630d012018-12-13 09:05:44 +0100691 if ((appctx->cli_level & ACCESS_LVL_MASK) < level) {
Willy Tarreau4975d142021-03-13 11:00:33 +0100692 cli_err(appctx, cli_permission_denied_msg);
Willy Tarreaude57a572016-11-23 17:01:39 +0100693 return 0;
694 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100695 return 1;
696}
697
William Lallemandb7ea1412018-12-13 09:05:47 +0100698/* same as cli_has_level but for the CLI proxy and without error message */
699int pcli_has_level(struct stream *s, int level)
700{
701 if ((s->pcli_flags & ACCESS_LVL_MASK) < level) {
702 return 0;
703 }
704 return 1;
705}
706
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200707/* Returns severity_output for the current session if set, or default for the socket */
708static int cli_get_severity_output(struct appctx *appctx)
709{
710 if (appctx->cli_severity_output)
711 return appctx->cli_severity_output;
Willy Tarreau0698c802022-05-11 14:09:57 +0200712 return strm_li(appctx_strm(appctx))->bind_conf->severity_output;
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200713}
William Lallemand74c24fb2016-11-21 17:18:36 +0100714
Willy Tarreau41908562016-11-24 16:23:38 +0100715/* Processes the CLI interpreter on the stats socket. This function is called
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100716 * from the CLI's IO handler running in an appctx context. The function returns
717 * 1 if the request was understood, otherwise zero (in which case an error
718 * message will be displayed). It is called with appctx->st0
Willy Tarreau41908562016-11-24 16:23:38 +0100719 * set to CLI_ST_GETREQ and presets ->st2 to 0 so that parsers don't have to do
720 * it. It will possilbly leave st0 to CLI_ST_CALLBACK if the keyword needs to
721 * have its own I/O handler called again. Most of the time, parsers will only
722 * set st0 to CLI_ST_PRINT and put their message to be displayed into cli.msg.
Willy Tarreaueaffde32016-12-16 17:59:25 +0100723 * If a keyword parser is NULL and an I/O handler is declared, the I/O handler
724 * will automatically be used.
William Lallemand74c24fb2016-11-21 17:18:36 +0100725 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200726static int cli_parse_request(struct appctx *appctx)
William Lallemand74c24fb2016-11-21 17:18:36 +0100727{
Willy Tarreauf14c7572021-03-13 10:59:23 +0100728 char *args[MAX_CLI_ARGS + 1], *p, *end, *payload = NULL;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200729 int i = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100730 struct cli_kw *kw;
William Lallemand74c24fb2016-11-21 17:18:36 +0100731
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200732 p = appctx->chunk->area;
733 end = p + appctx->chunk->data;
William Lallemand74c24fb2016-11-21 17:18:36 +0100734
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200735 /*
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200736 * Get pointers on words.
737 * One extra slot is reserved to store a pointer on a null byte.
738 */
Willy Tarreauf14c7572021-03-13 10:59:23 +0100739 while (i < MAX_CLI_ARGS && p < end) {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200740 int j, k;
William Lallemand74c24fb2016-11-21 17:18:36 +0100741
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200742 /* skip leading spaces/tabs */
743 p += strspn(p, " \t");
744 if (!*p)
745 break;
Willy Tarreauf2dda522021-09-17 11:07:45 +0200746
747 if (strcmp(p, PAYLOAD_PATTERN) == 0) {
748 /* payload pattern recognized here, this is not an arg anymore,
749 * the payload starts at the first byte that follows the zero
750 * after the pattern.
751 */
752 payload = p + strlen(PAYLOAD_PATTERN) + 1;
753 break;
754 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100755
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200756 args[i] = p;
Yves Lafonb08c6d02020-06-08 16:08:06 +0200757 while (1) {
758 p += strcspn(p, " \t\\");
759 /* escaped chars using backlashes (\) */
760 if (*p == '\\') {
761 if (!*++p)
762 break;
763 if (!*++p)
764 break;
765 } else {
766 break;
767 }
768 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200769 *p++ = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100770
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200771 /* unescape backslashes (\) */
772 for (j = 0, k = 0; args[i][k]; k++) {
773 if (args[i][k] == '\\') {
774 if (args[i][k + 1] == '\\')
775 k++;
Dragan Dosena1c35ab2016-11-24 11:33:12 +0100776 else
777 continue;
778 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200779 args[i][j] = args[i][k];
William Lallemand74c24fb2016-11-21 17:18:36 +0100780 j++;
781 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200782 args[i][j] = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100783
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200784 i++;
785 }
786 /* fill unused slots */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200787 p = appctx->chunk->area + appctx->chunk->data;
Willy Tarreauf14c7572021-03-13 10:59:23 +0100788 for (; i < MAX_CLI_ARGS + 1; i++)
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200789 args[i] = p;
Willy Tarreau41908562016-11-24 16:23:38 +0100790
791 kw = cli_find_kw(args);
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100792 if (!kw ||
793 (kw->level & ~appctx->cli_level & ACCESS_MASTER_ONLY) ||
William Lallemand2a171912022-02-02 11:43:20 +0100794 (!(appctx->cli_level & ACCESS_MCLI_DEBUG) &&
795 (appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) == (ACCESS_MASTER_ONLY|ACCESS_MASTER))) {
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100796 /* keyword not found in this mode */
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100797 cli_gen_usage_msg(appctx, args);
Willy Tarreau41908562016-11-24 16:23:38 +0100798 return 0;
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100799 }
William Lallemand14721be2018-10-26 14:47:37 +0200800
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100801 /* don't handle expert mode commands if not in this mode. */
802 if (kw->level & ~appctx->cli_level & ACCESS_EXPERT) {
803 cli_err(appctx, "This command is restricted to expert mode only.\n");
Willy Tarreauabb9f9b2019-10-24 17:55:53 +0200804 return 0;
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100805 }
Willy Tarreauabb9f9b2019-10-24 17:55:53 +0200806
Amaury Denoyelle18487fb2021-03-18 15:32:53 +0100807 if (kw->level & ~appctx->cli_level & ACCESS_EXPERIMENTAL) {
808 cli_err(appctx, "This command is restricted to experimental mode only.\n");
809 return 0;
810 }
811
Amaury Denoyellef4929922021-05-05 16:29:23 +0200812 if (kw->level == ACCESS_EXPERT)
813 mark_tainted(TAINTED_CLI_EXPERT_MODE);
814 else if (kw->level == ACCESS_EXPERIMENTAL)
815 mark_tainted(TAINTED_CLI_EXPERIMENTAL_MODE);
816
Willy Tarreau41908562016-11-24 16:23:38 +0100817 appctx->io_handler = kw->io_handler;
Emeric Brund6871f72017-06-29 19:54:13 +0200818 appctx->io_release = kw->io_release;
William Lallemand90b098c2019-10-25 21:10:14 +0200819
820 if (kw->parse && kw->parse(args, payload, appctx, kw->private) != 0)
821 goto fail;
822
823 /* kw->parse could set its own io_handler or io_release handler */
824 if (!appctx->io_handler)
825 goto fail;
826
827 appctx->st0 = CLI_ST_CALLBACK;
828 return 1;
829fail:
830 appctx->io_handler = NULL;
831 appctx->io_release = NULL;
Willy Tarreau41908562016-11-24 16:23:38 +0100832 return 1;
William Lallemand74c24fb2016-11-21 17:18:36 +0100833}
834
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200835/* prepends then outputs the argument msg with a syslog-type severity depending on severity_output value */
836static int cli_output_msg(struct channel *chn, const char *msg, int severity, int severity_output)
837{
Willy Tarreau83061a82018-07-13 11:56:34 +0200838 struct buffer *tmp;
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200839
840 if (likely(severity_output == CLI_SEVERITY_NONE))
Willy Tarreau06d80a92017-10-19 14:32:15 +0200841 return ci_putblk(chn, msg, strlen(msg));
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200842
843 tmp = get_trash_chunk();
844 chunk_reset(tmp);
845
846 if (severity < 0 || severity > 7) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100847 ha_warning("socket command feedback with invalid severity %d", severity);
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200848 chunk_printf(tmp, "[%d]: ", severity);
849 }
850 else {
851 switch (severity_output) {
852 case CLI_SEVERITY_NUMBER:
853 chunk_printf(tmp, "[%d]: ", severity);
854 break;
855 case CLI_SEVERITY_STRING:
856 chunk_printf(tmp, "[%s]: ", log_levels[severity]);
857 break;
858 default:
Christopher Faulet767a84b2017-11-24 16:50:31 +0100859 ha_warning("Unrecognized severity output %d", severity_output);
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200860 }
861 }
862 chunk_appendf(tmp, "%s", msg);
863
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200864 return ci_putblk(chn, tmp->area, strlen(tmp->area));
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200865}
866
Willy Tarreau4596fe22022-05-17 19:07:51 +0200867/* This I/O handler runs as an applet embedded in a stream connector. It is
William Lallemand74c24fb2016-11-21 17:18:36 +0100868 * used to processes I/O from/to the stats unix socket. The system relies on a
869 * state machine handling requests and various responses. We read a request,
870 * then we process it and send the response, and we possibly display a prompt.
871 * Then we can read again. The state is stored in appctx->st0 and is one of the
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100872 * CLI_ST_* constants. appctx->st1 is used to indicate whether prompt is enabled
William Lallemand74c24fb2016-11-21 17:18:36 +0100873 * or not.
874 */
875static void cli_io_handler(struct appctx *appctx)
876{
Willy Tarreauc12b3212022-05-27 11:08:15 +0200877 struct stconn *sc = appctx_sc(appctx);
Willy Tarreau475e4632022-05-27 10:26:46 +0200878 struct channel *req = sc_oc(sc);
879 struct channel *res = sc_ic(sc);
880 struct bind_conf *bind_conf = strm_li(__sc_strm(sc))->bind_conf;
William Lallemand74c24fb2016-11-21 17:18:36 +0100881 int reql;
882 int len;
883
Willy Tarreau475e4632022-05-27 10:26:46 +0200884 if (unlikely(sc->state == SC_ST_DIS || sc->state == SC_ST_CLO))
William Lallemand74c24fb2016-11-21 17:18:36 +0100885 goto out;
886
Joseph Herlant008b3ce2018-11-25 12:51:45 -0800887 /* Check if the input buffer is available. */
Willy Tarreauc9fa0482018-07-10 17:43:27 +0200888 if (res->buf.size == 0) {
Willy Tarreau4b962a42018-11-15 11:03:21 +0100889 /* buf.size==0 means we failed to get a buffer and were
890 * already subscribed to a wait list to get a buffer.
891 */
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100892 goto out;
893 }
894
William Lallemand74c24fb2016-11-21 17:18:36 +0100895 while (1) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100896 if (appctx->st0 == CLI_ST_INIT) {
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200897 /* reset severity to default at init */
898 appctx->cli_severity_output = bind_conf->severity_output;
Willy Tarreau1addf8b2022-08-18 18:04:37 +0200899 applet_reset_svcctx(appctx);
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100900 appctx->st0 = CLI_ST_GETREQ;
William Lallemandf630d012018-12-13 09:05:44 +0100901 appctx->cli_level = bind_conf->level;
William Lallemand74c24fb2016-11-21 17:18:36 +0100902 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100903 else if (appctx->st0 == CLI_ST_END) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100904 /* Let's close for real now. We just close the request
905 * side, the conditions below will complete if needed.
906 */
Willy Tarreau475e4632022-05-27 10:26:46 +0200907 sc_shutw(sc);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200908 free_trash_chunk(appctx->chunk);
Willy Tarreau18b2a9d2021-05-04 16:27:45 +0200909 appctx->chunk = NULL;
William Lallemand74c24fb2016-11-21 17:18:36 +0100910 break;
911 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100912 else if (appctx->st0 == CLI_ST_GETREQ) {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200913 char *str;
914
915 /* use a trash chunk to store received data */
916 if (!appctx->chunk) {
917 appctx->chunk = alloc_trash_chunk();
918 if (!appctx->chunk) {
919 appctx->st0 = CLI_ST_END;
920 continue;
921 }
922 }
923
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200924 str = appctx->chunk->area + appctx->chunk->data;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200925
William Lallemand74c24fb2016-11-21 17:18:36 +0100926 /* ensure we have some output room left in the event we
927 * would want to return some info right after parsing.
928 */
Willy Tarreau475e4632022-05-27 10:26:46 +0200929 if (buffer_almost_full(sc_ib(sc))) {
930 sc_need_room(sc);
William Lallemand74c24fb2016-11-21 17:18:36 +0100931 break;
932 }
933
Willy Tarreau0011c252022-01-19 17:23:52 +0100934 /* payload doesn't take escapes nor does it end on semi-colons, so
935 * we use the regular getline. Normal mode however must stop on
936 * LFs and semi-colons that are not prefixed by a backslash. Note
937 * that we reserve one byte at the end to insert a trailing nul byte.
938 */
939
940 if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD)
Willy Tarreau475e4632022-05-27 10:26:46 +0200941 reql = co_getline(sc_oc(sc), str,
Willy Tarreau0011c252022-01-19 17:23:52 +0100942 appctx->chunk->size - appctx->chunk->data - 1);
943 else
Willy Tarreau475e4632022-05-27 10:26:46 +0200944 reql = co_getdelim(sc_oc(sc), str,
Willy Tarreau0011c252022-01-19 17:23:52 +0100945 appctx->chunk->size - appctx->chunk->data - 1,
946 "\n;", '\\');
947
William Lallemand74c24fb2016-11-21 17:18:36 +0100948 if (reql <= 0) { /* closed or EOL not found */
949 if (reql == 0)
950 break;
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100951 appctx->st0 = CLI_ST_END;
William Lallemand74c24fb2016-11-21 17:18:36 +0100952 continue;
953 }
954
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200955 if (!(appctx->st1 & APPCTX_CLI_ST1_PAYLOAD)) {
956 /* seek for a possible unescaped semi-colon. If we find
957 * one, we replace it with an LF and skip only this part.
958 */
959 for (len = 0; len < reql; len++) {
960 if (str[len] == '\\') {
961 len++;
962 continue;
963 }
964 if (str[len] == ';') {
965 str[len] = '\n';
966 reql = len + 1;
967 break;
968 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100969 }
970 }
971
972 /* now it is time to check that we have a full line,
973 * remove the trailing \n and possibly \r, then cut the
974 * line.
975 */
976 len = reql - 1;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200977 if (str[len] != '\n') {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100978 appctx->st0 = CLI_ST_END;
William Lallemand74c24fb2016-11-21 17:18:36 +0100979 continue;
980 }
981
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200982 if (len && str[len-1] == '\r')
William Lallemand74c24fb2016-11-21 17:18:36 +0100983 len--;
984
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200985 str[len] = '\0';
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200986 appctx->chunk->data += len;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200987
988 if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200989 appctx->chunk->area[appctx->chunk->data] = '\n';
990 appctx->chunk->area[appctx->chunk->data + 1] = 0;
991 appctx->chunk->data++;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200992 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100993
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100994 appctx->st0 = CLI_ST_PROMPT;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200995
996 if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) {
997 /* empty line */
998 if (!len) {
999 /* remove the last two \n */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001000 appctx->chunk->data -= 2;
1001 appctx->chunk->area[appctx->chunk->data] = 0;
Willy Tarreauf3697dd2021-03-12 15:57:47 +01001002 cli_parse_request(appctx);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001003 chunk_reset(appctx->chunk);
1004 /* NB: cli_sock_parse_request() may have put
1005 * another CLI_ST_O_* into appctx->st0.
1006 */
1007
1008 appctx->st1 &= ~APPCTX_CLI_ST1_PAYLOAD;
William Lallemand74c24fb2016-11-21 17:18:36 +01001009 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001010 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001011 else {
1012 /*
1013 * Look for the "payload start" pattern at the end of a line
1014 * Its location is not remembered here, this is just to switch
1015 * to a gathering mode.
William Lallemand74c24fb2016-11-21 17:18:36 +01001016 */
Willy Tarreauf2dda522021-09-17 11:07:45 +02001017 if (strcmp(appctx->chunk->area + appctx->chunk->data - strlen(PAYLOAD_PATTERN), PAYLOAD_PATTERN) == 0) {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001018 appctx->st1 |= APPCTX_CLI_ST1_PAYLOAD;
Willy Tarreauf2dda522021-09-17 11:07:45 +02001019 appctx->chunk->data++; // keep the trailing \0 after '<<'
1020 }
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001021 else {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001022 /* no payload, the command is complete: parse the request */
Willy Tarreauf3697dd2021-03-12 15:57:47 +01001023 cli_parse_request(appctx);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001024 chunk_reset(appctx->chunk);
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001025 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001026 }
1027
1028 /* re-adjust req buffer */
Willy Tarreau475e4632022-05-27 10:26:46 +02001029 co_skip(sc_oc(sc), reql);
William Lallemand74c24fb2016-11-21 17:18:36 +01001030 req->flags |= CF_READ_DONTWAIT; /* we plan to read small requests */
1031 }
1032 else { /* output functions */
Willy Tarreau1c0715b2022-05-06 17:16:35 +02001033 struct cli_print_ctx *ctx;
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001034 const char *msg;
1035 int sev;
1036
William Lallemand74c24fb2016-11-21 17:18:36 +01001037 switch (appctx->st0) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001038 case CLI_ST_PROMPT:
William Lallemand74c24fb2016-11-21 17:18:36 +01001039 break;
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001040 case CLI_ST_PRINT: /* print const message in msg */
1041 case CLI_ST_PRINT_ERR: /* print const error in msg */
1042 case CLI_ST_PRINT_DYN: /* print dyn message in msg, free */
1043 case CLI_ST_PRINT_FREE: /* print dyn error in err, free */
Willy Tarreau1c0715b2022-05-06 17:16:35 +02001044 /* the message is in the svcctx */
1045 ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001046 if (appctx->st0 == CLI_ST_PRINT || appctx->st0 == CLI_ST_PRINT_ERR) {
1047 sev = appctx->st0 == CLI_ST_PRINT_ERR ?
Willy Tarreau1c0715b2022-05-06 17:16:35 +02001048 LOG_ERR : ctx->severity;
1049 msg = ctx->msg;
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001050 }
1051 else if (appctx->st0 == CLI_ST_PRINT_DYN || appctx->st0 == CLI_ST_PRINT_FREE) {
1052 sev = appctx->st0 == CLI_ST_PRINT_FREE ?
Willy Tarreau1c0715b2022-05-06 17:16:35 +02001053 LOG_ERR : ctx->severity;
1054 msg = ctx->err;
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001055 if (!msg) {
1056 sev = LOG_ERR;
1057 msg = "Out of memory.\n";
1058 }
1059 }
1060 else {
1061 sev = LOG_ERR;
1062 msg = "Internal error.\n";
1063 }
Aurélien Nephtalic511b7c2018-04-16 18:50:19 +02001064
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001065 if (cli_output_msg(res, msg, sev, cli_get_severity_output(appctx)) != -1) {
1066 if (appctx->st0 == CLI_ST_PRINT_FREE ||
1067 appctx->st0 == CLI_ST_PRINT_DYN) {
Willy Tarreau1c0715b2022-05-06 17:16:35 +02001068 ha_free(&ctx->err);
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001069 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001070 appctx->st0 = CLI_ST_PROMPT;
William Lallemand74c24fb2016-11-21 17:18:36 +01001071 }
1072 else
Willy Tarreau475e4632022-05-27 10:26:46 +02001073 sc_need_room(sc);
William Lallemand74c24fb2016-11-21 17:18:36 +01001074 break;
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001075
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001076 case CLI_ST_CALLBACK: /* use custom pointer */
William Lallemand74c24fb2016-11-21 17:18:36 +01001077 if (appctx->io_handler)
1078 if (appctx->io_handler(appctx)) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001079 appctx->st0 = CLI_ST_PROMPT;
William Lallemand74c24fb2016-11-21 17:18:36 +01001080 if (appctx->io_release) {
1081 appctx->io_release(appctx);
1082 appctx->io_release = NULL;
1083 }
1084 }
1085 break;
1086 default: /* abnormal state */
Willy Tarreaud869e132022-05-17 18:05:31 +02001087 se_fl_set(appctx->sedesc, SE_FL_ERROR);
William Lallemand74c24fb2016-11-21 17:18:36 +01001088 break;
1089 }
1090
1091 /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001092 if (appctx->st0 == CLI_ST_PROMPT) {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001093 const char *prompt = "";
1094
1095 if (appctx->st1 & APPCTX_CLI_ST1_PROMPT) {
1096 /*
1097 * when entering a payload with interactive mode, change the prompt
1098 * to emphasize that more data can still be sent
1099 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001100 if (appctx->chunk->data && appctx->st1 & APPCTX_CLI_ST1_PAYLOAD)
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001101 prompt = "+ ";
1102 else
1103 prompt = "\n> ";
1104 }
1105 else {
William Lallemandad032882019-07-01 10:56:15 +02001106 if (!(appctx->st1 & (APPCTX_CLI_ST1_PAYLOAD|APPCTX_CLI_ST1_NOLF)))
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001107 prompt = "\n";
1108 }
1109
Willy Tarreau1addf8b2022-08-18 18:04:37 +02001110 if (applet_putstr(appctx, prompt) != -1) {
1111 applet_reset_svcctx(appctx);
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001112 appctx->st0 = CLI_ST_GETREQ;
Willy Tarreau1addf8b2022-08-18 18:04:37 +02001113 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001114 }
1115
1116 /* If the output functions are still there, it means they require more room. */
Christopher Faulet4167e052022-06-01 17:25:42 +02001117 if (appctx->st0 >= CLI_ST_OUTPUT) {
1118 applet_wont_consume(appctx);
William Lallemand74c24fb2016-11-21 17:18:36 +01001119 break;
Christopher Faulet4167e052022-06-01 17:25:42 +02001120 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001121
1122 /* Now we close the output if one of the writers did so,
1123 * or if we're not in interactive mode and the request
1124 * buffer is empty. This still allows pipelined requests
1125 * to be sent in non-interactive mode.
1126 */
William Lallemand3de09d52018-12-11 16:10:56 +01001127 if (((res->flags & (CF_SHUTW|CF_SHUTW_NOW))) ||
1128 (!(appctx->st1 & APPCTX_CLI_ST1_PROMPT) && !co_data(req) && (!(appctx->st1 & APPCTX_CLI_ST1_PAYLOAD)))) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001129 appctx->st0 = CLI_ST_END;
William Lallemand74c24fb2016-11-21 17:18:36 +01001130 continue;
1131 }
1132
1133 /* switch state back to GETREQ to read next requests */
Willy Tarreau1addf8b2022-08-18 18:04:37 +02001134 applet_reset_svcctx(appctx);
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001135 appctx->st0 = CLI_ST_GETREQ;
Christopher Faulet4167e052022-06-01 17:25:42 +02001136 applet_will_consume(appctx);
1137
William Lallemandad032882019-07-01 10:56:15 +02001138 /* reactivate the \n at the end of the response for the next command */
1139 appctx->st1 &= ~APPCTX_CLI_ST1_NOLF;
Willy Tarreaufa7b4f62022-01-19 17:11:36 +01001140
1141 /* this forces us to yield between pipelined commands and
1142 * avoid extremely long latencies (e.g. "del map" etc). In
1143 * addition this increases the likelihood that the stream
1144 * refills the buffer with new bytes in non-interactive
1145 * mode, avoiding to close on apparently empty commands.
1146 */
Willy Tarreau475e4632022-05-27 10:26:46 +02001147 if (co_data(sc_oc(sc))) {
Willy Tarreaufa7b4f62022-01-19 17:11:36 +01001148 appctx_wakeup(appctx);
1149 goto out;
1150 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001151 }
1152 }
1153
Willy Tarreau475e4632022-05-27 10:26:46 +02001154 if ((res->flags & CF_SHUTR) && (sc->state == SC_ST_EST)) {
1155 DPRINTF(stderr, "%s@%d: sc to buf closed. req=%08x, res=%08x, st=%d\n",
1156 __FUNCTION__, __LINE__, req->flags, res->flags, sc->state);
William Lallemand74c24fb2016-11-21 17:18:36 +01001157 /* Other side has closed, let's abort if we have no more processing to do
1158 * and nothing more to consume. This is comparable to a broken pipe, so
1159 * we forward the close to the request side so that it flows upstream to
1160 * the client.
1161 */
Willy Tarreau475e4632022-05-27 10:26:46 +02001162 sc_shutw(sc);
William Lallemand74c24fb2016-11-21 17:18:36 +01001163 }
1164
Willy Tarreau475e4632022-05-27 10:26:46 +02001165 if ((req->flags & CF_SHUTW) && (sc->state == SC_ST_EST) && (appctx->st0 < CLI_ST_OUTPUT)) {
1166 DPRINTF(stderr, "%s@%d: buf to sc closed. req=%08x, res=%08x, st=%d\n",
1167 __FUNCTION__, __LINE__, req->flags, res->flags, sc->state);
William Lallemand74c24fb2016-11-21 17:18:36 +01001168 /* We have no more processing to do, and nothing more to send, and
1169 * the client side has closed. So we'll forward this state downstream
1170 * on the response buffer.
1171 */
Willy Tarreau475e4632022-05-27 10:26:46 +02001172 sc_shutr(sc);
William Lallemand74c24fb2016-11-21 17:18:36 +01001173 res->flags |= CF_READ_NULL;
1174 }
1175
1176 out:
Christopher Faulet45073512018-07-20 10:16:29 +02001177 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 +01001178 __FUNCTION__, __LINE__,
Willy Tarreau475e4632022-05-27 10:26:46 +02001179 sc->state, req->flags, res->flags, ci_data(req), co_data(req), ci_data(res), co_data(res));
William Lallemand74c24fb2016-11-21 17:18:36 +01001180}
1181
Willy Tarreau4596fe22022-05-17 19:07:51 +02001182/* This is called when the stream connector is closed. For instance, upon an
William Lallemand74c24fb2016-11-21 17:18:36 +01001183 * external abort, we won't call the i/o handler anymore so we may need to
1184 * remove back references to the stream currently being dumped.
1185 */
1186static void cli_release_handler(struct appctx *appctx)
1187{
Willy Tarreau18b2a9d2021-05-04 16:27:45 +02001188 free_trash_chunk(appctx->chunk);
1189 appctx->chunk = NULL;
1190
William Lallemand74c24fb2016-11-21 17:18:36 +01001191 if (appctx->io_release) {
1192 appctx->io_release(appctx);
1193 appctx->io_release = NULL;
1194 }
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001195 else if (appctx->st0 == CLI_ST_PRINT_FREE || appctx->st0 == CLI_ST_PRINT_DYN) {
Willy Tarreau1c0715b2022-05-06 17:16:35 +02001196 struct cli_print_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
1197
1198 ha_free(&ctx->err);
William Lallemand74c24fb2016-11-21 17:18:36 +01001199 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001200}
1201
1202/* This function dumps all environmnent variables to the buffer. It returns 0
1203 * if the output buffer is full and it needs to be called again, otherwise
Willy Tarreau307dbb32022-05-05 17:45:52 +02001204 * non-zero. It takes its context from the show_env_ctx in svcctx, and will
1205 * start from ->var and dump only one variable if ->show_one is set.
William Lallemand74c24fb2016-11-21 17:18:36 +01001206 */
Willy Tarreau0a739292016-11-22 20:21:23 +01001207static int cli_io_handler_show_env(struct appctx *appctx)
William Lallemand74c24fb2016-11-21 17:18:36 +01001208{
Willy Tarreau307dbb32022-05-05 17:45:52 +02001209 struct show_env_ctx *ctx = appctx->svcctx;
Willy Tarreauc12b3212022-05-27 11:08:15 +02001210 struct stconn *sc = appctx_sc(appctx);
Willy Tarreau307dbb32022-05-05 17:45:52 +02001211 char **var = ctx->var;
William Lallemand74c24fb2016-11-21 17:18:36 +01001212
Willy Tarreau475e4632022-05-27 10:26:46 +02001213 if (unlikely(sc_ic(sc)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
William Lallemand74c24fb2016-11-21 17:18:36 +01001214 return 1;
1215
1216 chunk_reset(&trash);
1217
1218 /* we have two inner loops here, one for the proxy, the other one for
1219 * the buffer.
1220 */
Willy Tarreauf6710f82016-12-16 17:45:44 +01001221 while (*var) {
1222 chunk_printf(&trash, "%s\n", *var);
William Lallemand74c24fb2016-11-21 17:18:36 +01001223
Willy Tarreaud0a06d52022-05-18 15:07:19 +02001224 if (applet_putchk(appctx, &trash) == -1)
William Lallemand74c24fb2016-11-21 17:18:36 +01001225 return 0;
Willy Tarreaud0a06d52022-05-18 15:07:19 +02001226
Willy Tarreau307dbb32022-05-05 17:45:52 +02001227 if (ctx->show_one)
William Lallemand74c24fb2016-11-21 17:18:36 +01001228 break;
Willy Tarreauf6710f82016-12-16 17:45:44 +01001229 var++;
Willy Tarreau307dbb32022-05-05 17:45:52 +02001230 ctx->var = var;
William Lallemand74c24fb2016-11-21 17:18:36 +01001231 }
1232
1233 /* dump complete */
1234 return 1;
1235}
1236
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001237/* This function dumps all file descriptors states (or the requested one) to
1238 * the buffer. It returns 0 if the output buffer is full and it needs to be
Willy Tarreau741a5a92022-05-05 17:56:58 +02001239 * called again, otherwise non-zero. It takes its context from the show_fd_ctx
1240 * in svcctx, only dumps one entry if ->show_one is non-zero, and (re)starts
1241 * from ->fd.
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001242 */
1243static int cli_io_handler_show_fd(struct appctx *appctx)
1244{
Willy Tarreauc12b3212022-05-27 11:08:15 +02001245 struct stconn *sc = appctx_sc(appctx);
Willy Tarreau741a5a92022-05-05 17:56:58 +02001246 struct show_fd_ctx *fdctx = appctx->svcctx;
1247 int fd = fdctx->fd;
Willy Tarreauca1b1572018-12-18 15:45:11 +01001248 int ret = 1;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001249
Willy Tarreau475e4632022-05-27 10:26:46 +02001250 if (unlikely(sc_ic(sc)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreauca1b1572018-12-18 15:45:11 +01001251 goto end;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001252
1253 chunk_reset(&trash);
1254
Willy Tarreauca1b1572018-12-18 15:45:11 +01001255 /* isolate the threads once per round. We're limited to a buffer worth
1256 * of output anyway, it cannot last very long.
1257 */
1258 thread_isolate();
1259
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001260 /* we have two inner loops here, one for the proxy, the other one for
1261 * the buffer.
1262 */
Aurélien Nephtali498a1152018-03-09 18:51:16 +01001263 while (fd >= 0 && fd < global.maxsock) {
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001264 struct fdtab fdt;
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001265 const struct listener *li = NULL;
1266 const struct server *sv = NULL;
1267 const struct proxy *px = NULL;
1268 const struct connection *conn = NULL;
Willy Tarreaua833cd92018-03-29 13:19:37 +02001269 const struct mux_ops *mux = NULL;
Willy Tarreau37be9532021-01-20 14:40:04 +01001270 const struct xprt_ops *xprt = NULL;
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001271 const void *ctx = NULL;
Willy Tarreau37be9532021-01-20 14:40:04 +01001272 const void *xprt_ctx = NULL;
Willy Tarreau286ec682017-08-09 16:35:44 +02001273 uint32_t conn_flags = 0;
Willy Tarreaue9ca8072018-12-19 18:40:58 +01001274 int is_back = 0;
Willy Tarreau8050efe2021-01-21 08:26:06 +01001275 int suspicious = 0;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001276
1277 fdt = fdtab[fd];
1278
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001279 /* When DEBUG_FD is set, we also report closed FDs that have a
1280 * non-null event count to detect stuck ones.
1281 */
Willy Tarreau13c1a012020-06-29 14:23:31 +02001282 if (!fdt.owner) {
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001283#ifdef DEBUG_FD
Willy Tarreau13c1a012020-06-29 14:23:31 +02001284 if (!fdt.event_count)
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001285#endif
Willy Tarreau13c1a012020-06-29 14:23:31 +02001286 goto skip; // closed
1287 }
Willy Tarreau586f71b2020-12-11 15:54:36 +01001288 else if (fdt.iocb == sock_conn_iocb) {
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001289 conn = (const struct connection *)fdt.owner;
1290 conn_flags = conn->flags;
1291 mux = conn->mux;
1292 ctx = conn->ctx;
Willy Tarreau37be9532021-01-20 14:40:04 +01001293 xprt = conn->xprt;
1294 xprt_ctx = conn->xprt_ctx;
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001295 li = objt_listener(conn->target);
1296 sv = objt_server(conn->target);
1297 px = objt_proxy(conn->target);
1298 is_back = conn_is_back(conn);
Willy Tarreaudacfde42021-01-21 09:07:29 +01001299 if (atleast2(fdt.thread_mask))
1300 suspicious = 1;
1301 if (conn->handle.fd != fd)
1302 suspicious = 1;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001303 }
Willy Tarreaua74cb382020-10-15 21:29:49 +02001304 else if (fdt.iocb == sock_accept_iocb)
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001305 li = fdt.owner;
1306
Willy Tarreaudacfde42021-01-21 09:07:29 +01001307 if (!fdt.thread_mask)
1308 suspicious = 1;
1309
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001310 chunk_printf(&trash,
Willy Tarreauc2431822022-07-08 10:23:01 +02001311 " %5d : st=0x%06x(%c%c %c%c%c%c%c W:%c%c%c R:%c%c%c) ref=%#x gid=%d tmask=0x%lx umask=0x%lx owner=%p iocb=%p(",
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001312 fd,
1313 fdt.state,
Willy Tarreau184b2122021-04-07 08:48:12 +02001314 (fdt.state & FD_CLONED) ? 'C' : 'c',
1315 (fdt.state & FD_LINGER_RISK) ? 'L' : 'l',
Willy Tarreauf5090652021-04-06 17:23:40 +02001316 (fdt.state & FD_POLL_HUP) ? 'H' : 'h',
1317 (fdt.state & FD_POLL_ERR) ? 'E' : 'e',
1318 (fdt.state & FD_POLL_OUT) ? 'O' : 'o',
1319 (fdt.state & FD_POLL_PRI) ? 'P' : 'p',
1320 (fdt.state & FD_POLL_IN) ? 'I' : 'i',
Willy Tarreau184b2122021-04-07 08:48:12 +02001321 (fdt.state & FD_EV_SHUT_W) ? 'S' : 's',
1322 (fdt.state & FD_EV_READY_W) ? 'R' : 'r',
1323 (fdt.state & FD_EV_ACTIVE_W) ? 'A' : 'a',
1324 (fdt.state & FD_EV_SHUT_R) ? 'S' : 's',
1325 (fdt.state & FD_EV_READY_R) ? 'R' : 'r',
1326 (fdt.state & FD_EV_ACTIVE_R) ? 'A' : 'a',
Willy Tarreauc2431822022-07-08 10:23:01 +02001327 (fdt.refc_tgid >> 4) & 0xffff,
1328 (fdt.refc_tgid) & 0xffff,
Willy Tarreauc754b342018-03-30 15:00:15 +02001329 fdt.thread_mask, fdt.update_mask,
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001330 fdt.owner,
Willy Tarreaucf12f2e2020-03-03 17:29:58 +01001331 fdt.iocb);
1332 resolve_sym_name(&trash, NULL, fdt.iocb);
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001333
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001334 if (!fdt.owner) {
1335 chunk_appendf(&trash, ")");
1336 }
Willy Tarreau586f71b2020-12-11 15:54:36 +01001337 else if (fdt.iocb == sock_conn_iocb) {
Willy Tarreaucf12f2e2020-03-03 17:29:58 +01001338 chunk_appendf(&trash, ") back=%d cflg=0x%08x", is_back, conn_flags);
Willy Tarreaudacfde42021-01-21 09:07:29 +01001339
1340 if (conn->handle.fd != fd) {
1341 chunk_appendf(&trash, " fd=%d(BOGUS)", conn->handle.fd);
1342 suspicious = 1;
Willy Tarreaued989202021-02-05 10:54:52 +01001343 } else {
1344 struct sockaddr_storage sa;
1345 socklen_t salen;
1346
1347 salen = sizeof(sa);
1348 if (getsockname(fd, (struct sockaddr *)&sa, &salen) != -1) {
1349 if (sa.ss_family == AF_INET)
1350 chunk_appendf(&trash, " fam=ipv4 lport=%d", ntohs(((const struct sockaddr_in *)&sa)->sin_port));
1351 else if (sa.ss_family == AF_INET6)
1352 chunk_appendf(&trash, " fam=ipv6 lport=%d", ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port));
1353 else if (sa.ss_family == AF_UNIX)
1354 chunk_appendf(&trash, " fam=unix");
1355 }
1356
1357 salen = sizeof(sa);
1358 if (getpeername(fd, (struct sockaddr *)&sa, &salen) != -1) {
1359 if (sa.ss_family == AF_INET)
1360 chunk_appendf(&trash, " rport=%d", ntohs(((const struct sockaddr_in *)&sa)->sin_port));
1361 else if (sa.ss_family == AF_INET6)
1362 chunk_appendf(&trash, " rport=%d", ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port));
1363 }
Willy Tarreaudacfde42021-01-21 09:07:29 +01001364 }
1365
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001366 if (px)
1367 chunk_appendf(&trash, " px=%s", px->id);
1368 else if (sv)
Willy Tarreaudfb34a82021-07-06 11:41:10 +02001369 chunk_appendf(&trash, " sv=%s/%s", sv->proxy->id, sv->id);
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001370 else if (li)
1371 chunk_appendf(&trash, " fe=%s", li->bind_conf->frontend->id);
Willy Tarreau35b1b482018-03-28 18:41:30 +02001372
Willy Tarreaub011d8f2018-03-30 14:41:19 +02001373 if (mux) {
Willy Tarreau3d2ee552018-12-19 14:12:10 +01001374 chunk_appendf(&trash, " mux=%s ctx=%p", mux->name, ctx);
Willy Tarreaudacfde42021-01-21 09:07:29 +01001375 if (!ctx)
1376 suspicious = 1;
Willy Tarreaub011d8f2018-03-30 14:41:19 +02001377 if (mux->show_fd)
Willy Tarreau8050efe2021-01-21 08:26:06 +01001378 suspicious |= mux->show_fd(&trash, fdt.owner);
Willy Tarreaub011d8f2018-03-30 14:41:19 +02001379 }
Willy Tarreau35b1b482018-03-28 18:41:30 +02001380 else
1381 chunk_appendf(&trash, " nomux");
Willy Tarreau37be9532021-01-20 14:40:04 +01001382
1383 chunk_appendf(&trash, " xprt=%s", xprt ? xprt->name : "");
Willy Tarreau108a2712021-01-20 15:30:56 +01001384 if (xprt) {
1385 if (xprt_ctx || xprt->show_fd)
1386 chunk_appendf(&trash, " xprt_ctx=%p", xprt_ctx);
1387 if (xprt->show_fd)
Willy Tarreau8050efe2021-01-21 08:26:06 +01001388 suspicious |= xprt->show_fd(&trash, conn, xprt_ctx);
Willy Tarreau108a2712021-01-20 15:30:56 +01001389 }
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001390 }
Willy Tarreaua74cb382020-10-15 21:29:49 +02001391 else if (fdt.iocb == sock_accept_iocb) {
Willy Tarreaued989202021-02-05 10:54:52 +01001392 struct sockaddr_storage sa;
1393 socklen_t salen;
1394
Willy Tarreaucf12f2e2020-03-03 17:29:58 +01001395 chunk_appendf(&trash, ") l.st=%s fe=%s",
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001396 listener_state_str(li),
1397 li->bind_conf->frontend->id);
Willy Tarreaued989202021-02-05 10:54:52 +01001398
1399 salen = sizeof(sa);
1400 if (getsockname(fd, (struct sockaddr *)&sa, &salen) != -1) {
1401 if (sa.ss_family == AF_INET)
1402 chunk_appendf(&trash, " fam=ipv4 lport=%d", ntohs(((const struct sockaddr_in *)&sa)->sin_port));
1403 else if (sa.ss_family == AF_INET6)
1404 chunk_appendf(&trash, " fam=ipv6 lport=%d", ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port));
1405 else if (sa.ss_family == AF_UNIX)
1406 chunk_appendf(&trash, " fam=unix");
1407 }
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001408 }
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001409 else
1410 chunk_appendf(&trash, ")");
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001411
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001412#ifdef DEBUG_FD
1413 chunk_appendf(&trash, " evcnt=%u", fdtab[fd].event_count);
Willy Tarreaudacfde42021-01-21 09:07:29 +01001414 if (fdtab[fd].event_count >= 1000000)
1415 suspicious = 1;
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001416#endif
Willy Tarreau8050efe2021-01-21 08:26:06 +01001417 chunk_appendf(&trash, "%s\n", suspicious ? " !" : "");
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001418
Willy Tarreaud0a06d52022-05-18 15:07:19 +02001419 if (applet_putchk(appctx, &trash) == -1) {
Willy Tarreau741a5a92022-05-05 17:56:58 +02001420 fdctx->fd = fd;
Willy Tarreauca1b1572018-12-18 15:45:11 +01001421 ret = 0;
1422 break;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001423 }
1424 skip:
Willy Tarreau741a5a92022-05-05 17:56:58 +02001425 if (fdctx->show_one)
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001426 break;
1427
1428 fd++;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001429 }
1430
Willy Tarreauca1b1572018-12-18 15:45:11 +01001431 end:
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001432 /* dump complete */
Willy Tarreauca1b1572018-12-18 15:45:11 +01001433
1434 thread_release();
1435 return ret;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001436}
1437
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001438/* This function dumps some activity counters used by developers and support to
1439 * rule out some hypothesis during bug reports. It returns 0 if the output
1440 * buffer is full and it needs to be called again, otherwise non-zero. It dumps
1441 * everything at once in the buffer and is not designed to do it in multiple
1442 * passes.
1443 */
1444static int cli_io_handler_show_activity(struct appctx *appctx)
1445{
Willy Tarreauc12b3212022-05-27 11:08:15 +02001446 struct stconn *sc = appctx_sc(appctx);
Willy Tarreau9a7fa902022-07-15 16:51:16 +02001447 struct show_activity_ctx *actctx = appctx->svcctx;
1448 int tgt = actctx->thr; // target thread, -1 for all, 0 for total only
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001449 int thr;
1450
Willy Tarreau475e4632022-05-27 10:26:46 +02001451 if (unlikely(sc_ic(sc)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001452 return 1;
1453
1454 chunk_reset(&trash);
1455
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001456#undef SHOW_TOT
1457#define SHOW_TOT(t, x) \
Willy Tarreaua0211b82019-05-28 15:09:08 +02001458 do { \
1459 unsigned int _v[MAX_THREADS]; \
1460 unsigned int _tot; \
1461 const unsigned int _nbt = global.nbthread; \
Willy Tarreau97b5d072021-11-20 19:17:38 +01001462 _tot = t = 0; \
1463 do { \
Willy Tarreaua0211b82019-05-28 15:09:08 +02001464 _tot += _v[t] = (x); \
Willy Tarreau97b5d072021-11-20 19:17:38 +01001465 } while (++t < _nbt); \
Willy Tarreaua0211b82019-05-28 15:09:08 +02001466 if (_nbt == 1) { \
1467 chunk_appendf(&trash, " %u\n", _tot); \
1468 break; \
1469 } \
Willy Tarreau9a7fa902022-07-15 16:51:16 +02001470 if (tgt == -1) { \
1471 chunk_appendf(&trash, " %u [", _tot); \
1472 for (t = 0; t < _nbt; t++) \
1473 chunk_appendf(&trash, " %u", _v[t]); \
1474 chunk_appendf(&trash, " ]\n"); \
1475 } else if (tgt == 0) \
1476 chunk_appendf(&trash, " %u\n", _tot); \
1477 else \
1478 chunk_appendf(&trash, " %u\n", _v[tgt-1]);\
Willy Tarreaua0211b82019-05-28 15:09:08 +02001479 } while (0)
1480
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001481#undef SHOW_AVG
1482#define SHOW_AVG(t, x) \
1483 do { \
1484 unsigned int _v[MAX_THREADS]; \
1485 unsigned int _tot; \
1486 const unsigned int _nbt = global.nbthread; \
Willy Tarreau97b5d072021-11-20 19:17:38 +01001487 _tot = t = 0; \
1488 do { \
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001489 _tot += _v[t] = (x); \
Willy Tarreau97b5d072021-11-20 19:17:38 +01001490 } while (++t < _nbt); \
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001491 if (_nbt == 1) { \
1492 chunk_appendf(&trash, " %u\n", _tot); \
1493 break; \
1494 } \
Willy Tarreau9a7fa902022-07-15 16:51:16 +02001495 if (tgt == -1) { \
1496 chunk_appendf(&trash, " %u [", (_tot + _nbt/2) / _nbt); \
1497 for (t = 0; t < _nbt; t++) \
1498 chunk_appendf(&trash, " %u", _v[t]); \
1499 chunk_appendf(&trash, " ]\n"); \
1500 } else if (tgt == 0) \
1501 chunk_appendf(&trash, " %u\n", (_tot + _nbt/2) / _nbt); \
1502 else \
1503 chunk_appendf(&trash, " %u\n", _v[tgt-1]);\
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001504 } while (0)
1505
Willy Tarreaua0211b82019-05-28 15:09:08 +02001506 chunk_appendf(&trash, "thread_id: %u (%u..%u)\n", tid + 1, 1, global.nbthread);
1507 chunk_appendf(&trash, "date_now: %lu.%06lu\n", (long)now.tv_sec, (long)now.tv_usec);
Willy Tarreaua00cf9b2020-06-17 20:44:28 +02001508 chunk_appendf(&trash, "ctxsw:"); SHOW_TOT(thr, activity[thr].ctxsw);
1509 chunk_appendf(&trash, "tasksw:"); SHOW_TOT(thr, activity[thr].tasksw);
1510 chunk_appendf(&trash, "empty_rq:"); SHOW_TOT(thr, activity[thr].empty_rq);
1511 chunk_appendf(&trash, "long_rq:"); SHOW_TOT(thr, activity[thr].long_rq);
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001512 chunk_appendf(&trash, "loops:"); SHOW_TOT(thr, activity[thr].loops);
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001513 chunk_appendf(&trash, "wake_tasks:"); SHOW_TOT(thr, activity[thr].wake_tasks);
1514 chunk_appendf(&trash, "wake_signal:"); SHOW_TOT(thr, activity[thr].wake_signal);
Willy Tarreaue5451532020-06-17 20:25:18 +02001515 chunk_appendf(&trash, "poll_io:"); SHOW_TOT(thr, activity[thr].poll_io);
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001516 chunk_appendf(&trash, "poll_exp:"); SHOW_TOT(thr, activity[thr].poll_exp);
Willy Tarreaue4063862020-06-17 20:35:33 +02001517 chunk_appendf(&trash, "poll_drop_fd:"); SHOW_TOT(thr, activity[thr].poll_drop_fd);
Willy Tarreaue4063862020-06-17 20:35:33 +02001518 chunk_appendf(&trash, "poll_skip_fd:"); SHOW_TOT(thr, activity[thr].poll_skip_fd);
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001519 chunk_appendf(&trash, "conn_dead:"); SHOW_TOT(thr, activity[thr].conn_dead);
Willy Tarreau7af4fa92020-06-17 20:49:49 +02001520 chunk_appendf(&trash, "stream_calls:"); SHOW_TOT(thr, activity[thr].stream_calls);
Willy Tarreaua8b2ce02019-05-28 17:04:16 +02001521 chunk_appendf(&trash, "pool_fail:"); SHOW_TOT(thr, activity[thr].pool_fail);
1522 chunk_appendf(&trash, "buf_wait:"); SHOW_TOT(thr, activity[thr].buf_wait);
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001523 chunk_appendf(&trash, "cpust_ms_tot:"); SHOW_TOT(thr, activity[thr].cpust_total / 2);
1524 chunk_appendf(&trash, "cpust_ms_1s:"); SHOW_TOT(thr, read_freq_ctr(&activity[thr].cpust_1s) / 2);
1525 chunk_appendf(&trash, "cpust_ms_15s:"); SHOW_TOT(thr, read_freq_ctr_period(&activity[thr].cpust_15s, 15000) / 2);
1526 chunk_appendf(&trash, "avg_loop_us:"); SHOW_AVG(thr, swrate_avg(activity[thr].avg_loop_us, TIME_STATS_SAMPLES));
1527 chunk_appendf(&trash, "accepted:"); SHOW_TOT(thr, activity[thr].accepted);
1528 chunk_appendf(&trash, "accq_pushed:"); SHOW_TOT(thr, activity[thr].accq_pushed);
1529 chunk_appendf(&trash, "accq_full:"); SHOW_TOT(thr, activity[thr].accq_full);
Willy Tarreaue6182842019-04-15 18:54:10 +02001530#ifdef USE_THREAD
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001531 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 +02001532 chunk_appendf(&trash, "fd_takeover:"); SHOW_TOT(thr, activity[thr].fd_takeover);
Willy Tarreaue6182842019-04-15 18:54:10 +02001533#endif
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001534
Willy Tarreaud6a78502019-05-27 07:03:38 +02001535#if defined(DEBUG_DEV)
1536 /* keep these ones at the end */
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001537 chunk_appendf(&trash, "ctr0:"); SHOW_TOT(thr, activity[thr].ctr0);
1538 chunk_appendf(&trash, "ctr1:"); SHOW_TOT(thr, activity[thr].ctr1);
1539 chunk_appendf(&trash, "ctr2:"); SHOW_TOT(thr, activity[thr].ctr2);
Willy Tarreaud6a78502019-05-27 07:03:38 +02001540#endif
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001541
Willy Tarreaud0a06d52022-05-18 15:07:19 +02001542 if (applet_putchk(appctx, &trash) == -1) {
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001543 chunk_reset(&trash);
1544 chunk_printf(&trash, "[output too large, cannot dump]\n");
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001545 }
1546
Willy Tarreaud78d08f2019-05-28 16:32:06 +02001547#undef SHOW_AVG
1548#undef SHOW_TOT
Willy Tarreaud80cb4e2018-01-20 19:30:13 +01001549 /* dump complete */
1550 return 1;
1551}
1552
William Lallemandeceddf72016-12-15 18:06:44 +01001553/*
Willy Tarreau3af9d832016-12-16 12:58:09 +01001554 * CLI IO handler for `show cli sockets`.
Willy Tarreaub128f492022-05-05 19:11:05 +02001555 * Uses the svcctx as a show_sock_ctx to store/retrieve the bind_conf and the
1556 * listener pointers.
William Lallemandeceddf72016-12-15 18:06:44 +01001557 */
1558static int cli_io_handler_show_cli_sock(struct appctx *appctx)
1559{
Willy Tarreaub128f492022-05-05 19:11:05 +02001560 struct show_sock_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
1561 struct bind_conf *bind_conf = ctx->bind_conf;
William Lallemandeceddf72016-12-15 18:06:44 +01001562
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001563 if (!global.cli_fe)
1564 goto done;
William Lallemandeceddf72016-12-15 18:06:44 +01001565
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001566 chunk_reset(&trash);
William Lallemandeceddf72016-12-15 18:06:44 +01001567
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001568 if (!bind_conf) {
1569 /* first call */
Willy Tarreaud0a06d52022-05-18 15:07:19 +02001570 if (applet_putstr(appctx, "# socket lvl processes\n") == -1)
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001571 goto full;
1572 bind_conf = LIST_ELEM(global.cli_fe->conf.bind.n, typeof(bind_conf), by_fe);
1573 }
William Lallemandeceddf72016-12-15 18:06:44 +01001574
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001575 list_for_each_entry_from(bind_conf, &global.cli_fe->conf.bind, by_fe) {
Willy Tarreaub128f492022-05-05 19:11:05 +02001576 struct listener *l = ctx->listener;
William Lallemandeceddf72016-12-15 18:06:44 +01001577
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001578 if (!l)
1579 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
William Lallemandeceddf72016-12-15 18:06:44 +01001580
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001581 list_for_each_entry_from(l, &bind_conf->listeners, by_bind) {
1582 char addr[46];
1583 char port[6];
William Lallemandeceddf72016-12-15 18:06:44 +01001584
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001585 if (l->rx.addr.ss_family == AF_UNIX) {
1586 const struct sockaddr_un *un;
William Lallemandeceddf72016-12-15 18:06:44 +01001587
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001588 un = (struct sockaddr_un *)&l->rx.addr;
1589 if (un->sun_path[0] == '\0') {
1590 chunk_appendf(&trash, "abns@%s ", un->sun_path+1);
1591 } else {
1592 chunk_appendf(&trash, "unix@%s ", un->sun_path);
1593 }
1594 } else if (l->rx.addr.ss_family == AF_INET) {
1595 addr_to_str(&l->rx.addr, addr, sizeof(addr));
1596 port_to_str(&l->rx.addr, port, sizeof(port));
1597 chunk_appendf(&trash, "ipv4@%s:%s ", addr, port);
1598 } else if (l->rx.addr.ss_family == AF_INET6) {
1599 addr_to_str(&l->rx.addr, addr, sizeof(addr));
1600 port_to_str(&l->rx.addr, port, sizeof(port));
1601 chunk_appendf(&trash, "ipv6@[%s]:%s ", addr, port);
1602 } else if (l->rx.addr.ss_family == AF_CUST_SOCKPAIR) {
1603 chunk_appendf(&trash, "sockpair@%d ", ((struct sockaddr_in *)&l->rx.addr)->sin_addr.s_addr);
1604 } else
1605 chunk_appendf(&trash, "unknown ");
William Lallemandeceddf72016-12-15 18:06:44 +01001606
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001607 if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_ADMIN)
1608 chunk_appendf(&trash, "admin ");
1609 else if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_OPER)
1610 chunk_appendf(&trash, "operator ");
1611 else if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_USER)
1612 chunk_appendf(&trash, "user ");
1613 else
1614 chunk_appendf(&trash, " ");
William Lallemandeceddf72016-12-15 18:06:44 +01001615
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001616 chunk_appendf(&trash, "all\n");
William Lallemandeceddf72016-12-15 18:06:44 +01001617
Willy Tarreaud0a06d52022-05-18 15:07:19 +02001618 if (applet_putchk(appctx, &trash) == -1) {
Willy Tarreaub128f492022-05-05 19:11:05 +02001619 ctx->bind_conf = bind_conf;
1620 ctx->listener = l;
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001621 goto full;
William Lallemandeceddf72016-12-15 18:06:44 +01001622 }
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001623 }
William Lallemandeceddf72016-12-15 18:06:44 +01001624 }
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001625 done:
1626 return 1;
1627 full:
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001628 return 0;
William Lallemandeceddf72016-12-15 18:06:44 +01001629}
1630
1631
Willy Tarreau9a7fa902022-07-15 16:51:16 +02001632/* parse a "show activity" CLI request. Returns 0 if it needs to continue, 1 if it
1633 * wants to stop here. It sets a show_activity_ctx context where, if a specific
1634 * thread is requested, it puts the thread number into ->thr otherwise sets it to
1635 * -1.
1636 */
1637static int cli_parse_show_activity(char **args, char *payload, struct appctx *appctx, void *private)
1638{
1639 struct show_activity_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
1640
1641 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1642 return 1;
1643
1644 ctx->thr = -1; // show all by default
1645 if (*args[2])
1646 ctx->thr = atoi(args[2]);
1647
1648 if (ctx->thr < -1 || ctx->thr > global.nbthread)
1649 return cli_err(appctx, "Thread ID number must be between -1 and nbthread\n");
1650
1651 return 0;
1652}
1653
Willy Tarreau0a739292016-11-22 20:21:23 +01001654/* parse a "show env" CLI request. Returns 0 if it needs to continue, 1 if it
Willy Tarreau307dbb32022-05-05 17:45:52 +02001655 * wants to stop here. It reserves a sohw_env_ctx where it puts the variable to
1656 * be dumped as well as a flag if a single variable is requested, otherwise puts
1657 * environ there.
Willy Tarreau0a739292016-11-22 20:21:23 +01001658 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001659static int cli_parse_show_env(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau0a739292016-11-22 20:21:23 +01001660{
Willy Tarreau307dbb32022-05-05 17:45:52 +02001661 struct show_env_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
Willy Tarreau0a739292016-11-22 20:21:23 +01001662 extern char **environ;
Willy Tarreauf6710f82016-12-16 17:45:44 +01001663 char **var;
Willy Tarreau0a739292016-11-22 20:21:23 +01001664
1665 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1666 return 1;
1667
Willy Tarreauf6710f82016-12-16 17:45:44 +01001668 var = environ;
Willy Tarreau0a739292016-11-22 20:21:23 +01001669
1670 if (*args[2]) {
1671 int len = strlen(args[2]);
1672
Willy Tarreauf6710f82016-12-16 17:45:44 +01001673 for (; *var; var++) {
1674 if (strncmp(*var, args[2], len) == 0 &&
1675 (*var)[len] == '=')
Willy Tarreau0a739292016-11-22 20:21:23 +01001676 break;
1677 }
Willy Tarreau9d008692019-08-09 11:21:01 +02001678 if (!*var)
1679 return cli_err(appctx, "Variable not found\n");
1680
Willy Tarreau307dbb32022-05-05 17:45:52 +02001681 ctx->show_one = 1;
Willy Tarreau0a739292016-11-22 20:21:23 +01001682 }
Willy Tarreau307dbb32022-05-05 17:45:52 +02001683 ctx->var = var;
Willy Tarreau0a739292016-11-22 20:21:23 +01001684 return 0;
1685}
1686
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001687/* parse a "show fd" CLI request. Returns 0 if it needs to continue, 1 if it
Willy Tarreau741a5a92022-05-05 17:56:58 +02001688 * wants to stop here. It sets a show_fd_ctx context where, if a specific fd is
1689 * requested, it puts the FD number into ->fd and sets ->show_one to 1.
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001690 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001691static int cli_parse_show_fd(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001692{
Willy Tarreau741a5a92022-05-05 17:56:58 +02001693 struct show_fd_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
1694
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001695 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1696 return 1;
1697
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001698 if (*args[2]) {
Willy Tarreau741a5a92022-05-05 17:56:58 +02001699 ctx->fd = atoi(args[2]);
1700 ctx->show_one = 1;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001701 }
1702 return 0;
1703}
1704
Willy Tarreau599852e2016-11-22 20:33:32 +01001705/* parse a "set timeout" CLI request. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001706static int cli_parse_set_timeout(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau599852e2016-11-22 20:33:32 +01001707{
Willy Tarreau0698c802022-05-11 14:09:57 +02001708 struct stream *s = appctx_strm(appctx);
Willy Tarreau599852e2016-11-22 20:33:32 +01001709
1710 if (strcmp(args[2], "cli") == 0) {
1711 unsigned timeout;
1712 const char *res;
1713
Willy Tarreau9d008692019-08-09 11:21:01 +02001714 if (!*args[3])
1715 return cli_err(appctx, "Expects an integer value.\n");
Willy Tarreau599852e2016-11-22 20:33:32 +01001716
1717 res = parse_time_err(args[3], &timeout, TIME_UNIT_S);
Willy Tarreau9d008692019-08-09 11:21:01 +02001718 if (res || timeout < 1)
1719 return cli_err(appctx, "Invalid timeout value.\n");
Willy Tarreau599852e2016-11-22 20:33:32 +01001720
1721 s->req.rto = s->res.wto = 1 + MS_TO_TICKS(timeout*1000);
1722 task_wakeup(s->task, TASK_WOKEN_MSG); // recompute timeouts
1723 return 1;
1724 }
Willy Tarreau9d008692019-08-09 11:21:01 +02001725
1726 return cli_err(appctx, "'set timeout' only supports 'cli'.\n");
Willy Tarreau599852e2016-11-22 20:33:32 +01001727}
1728
Willy Tarreau2af99412016-11-23 11:10:59 +01001729/* parse a "set maxconn global" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001730static int cli_parse_set_maxconn_global(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2af99412016-11-23 11:10:59 +01001731{
1732 int v;
1733
1734 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1735 return 1;
1736
Willy Tarreau9d008692019-08-09 11:21:01 +02001737 if (!*args[3])
1738 return cli_err(appctx, "Expects an integer value.\n");
Willy Tarreau2af99412016-11-23 11:10:59 +01001739
1740 v = atoi(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02001741 if (v > global.hardmaxconn)
1742 return cli_err(appctx, "Value out of range.\n");
Willy Tarreau2af99412016-11-23 11:10:59 +01001743
1744 /* check for unlimited values */
1745 if (v <= 0)
1746 v = global.hardmaxconn;
1747
1748 global.maxconn = v;
1749
1750 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001751 dequeue_all_listeners();
Willy Tarreau2af99412016-11-23 11:10:59 +01001752
1753 return 1;
1754}
1755
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001756static int set_severity_output(int *target, char *argument)
1757{
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001758 if (strcmp(argument, "none") == 0) {
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001759 *target = CLI_SEVERITY_NONE;
1760 return 1;
1761 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001762 else if (strcmp(argument, "number") == 0) {
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001763 *target = CLI_SEVERITY_NUMBER;
1764 return 1;
1765 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001766 else if (strcmp(argument, "string") == 0) {
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001767 *target = CLI_SEVERITY_STRING;
1768 return 1;
1769 }
1770 return 0;
1771}
1772
1773/* parse a "set severity-output" command. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001774static int cli_parse_set_severity_output(char **args, char *payload, struct appctx *appctx, void *private)
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001775{
1776 if (*args[2] && set_severity_output(&appctx->cli_severity_output, args[2]))
1777 return 0;
1778
Willy Tarreau9d008692019-08-09 11:21:01 +02001779 return cli_err(appctx, "one of 'none', 'number', 'string' is a required argument\n");
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001780}
William Lallemandeceddf72016-12-15 18:06:44 +01001781
William Lallemand67a234f2018-12-13 09:05:45 +01001782
1783/* show the level of the current CLI session */
1784static int cli_parse_show_lvl(char **args, char *payload, struct appctx *appctx, void *private)
1785{
William Lallemand67a234f2018-12-13 09:05:45 +01001786 if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_ADMIN)
Willy Tarreau9d008692019-08-09 11:21:01 +02001787 return cli_msg(appctx, LOG_INFO, "admin\n");
William Lallemand67a234f2018-12-13 09:05:45 +01001788 else if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_OPER)
Willy Tarreau9d008692019-08-09 11:21:01 +02001789 return cli_msg(appctx, LOG_INFO, "operator\n");
William Lallemand67a234f2018-12-13 09:05:45 +01001790 else if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_USER)
Willy Tarreau9d008692019-08-09 11:21:01 +02001791 return cli_msg(appctx, LOG_INFO, "user\n");
William Lallemand67a234f2018-12-13 09:05:45 +01001792 else
Willy Tarreau9d008692019-08-09 11:21:01 +02001793 return cli_msg(appctx, LOG_INFO, "unknown\n");
William Lallemand67a234f2018-12-13 09:05:45 +01001794}
1795
1796/* parse and set the CLI level dynamically */
1797static int cli_parse_set_lvl(char **args, char *payload, struct appctx *appctx, void *private)
1798{
William Lallemandad032882019-07-01 10:56:15 +02001799 /* this will ask the applet to not output a \n after the command */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001800 if (strcmp(args[1], "-") == 0)
William Lallemandad032882019-07-01 10:56:15 +02001801 appctx->st1 |= APPCTX_CLI_ST1_NOLF;
1802
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001803 if (strcmp(args[0], "operator") == 0) {
William Lallemand67a234f2018-12-13 09:05:45 +01001804 if (!cli_has_level(appctx, ACCESS_LVL_OPER)) {
1805 return 1;
1806 }
1807 appctx->cli_level &= ~ACCESS_LVL_MASK;
1808 appctx->cli_level |= ACCESS_LVL_OPER;
1809
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001810 } else if (strcmp(args[0], "user") == 0) {
William Lallemand67a234f2018-12-13 09:05:45 +01001811 if (!cli_has_level(appctx, ACCESS_LVL_USER)) {
1812 return 1;
1813 }
1814 appctx->cli_level &= ~ACCESS_LVL_MASK;
1815 appctx->cli_level |= ACCESS_LVL_USER;
1816 }
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001817 appctx->cli_level &= ~(ACCESS_EXPERT|ACCESS_EXPERIMENTAL);
Willy Tarreauabb9f9b2019-10-24 17:55:53 +02001818 return 1;
1819}
1820
1821
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001822/* parse and set the CLI expert/experimental-mode dynamically */
1823static int cli_parse_expert_experimental_mode(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauabb9f9b2019-10-24 17:55:53 +02001824{
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001825 int level;
1826 char *level_str;
1827 char *output = NULL;
1828
William Lallemand7267f782022-02-01 16:08:50 +01001829 /* this will ask the applet to not output a \n after the command */
1830 if (*args[1] && *args[2] && strcmp(args[2], "-") == 0)
1831 appctx->st1 |= APPCTX_CLI_ST1_NOLF;
1832
Willy Tarreauabb9f9b2019-10-24 17:55:53 +02001833 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1834 return 1;
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001835
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02001836 if (strcmp(args[0], "expert-mode") == 0) {
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001837 level = ACCESS_EXPERT;
1838 level_str = "expert-mode";
1839 }
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02001840 else if (strcmp(args[0], "experimental-mode") == 0) {
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001841 level = ACCESS_EXPERIMENTAL;
1842 level_str = "experimental-mode";
1843 }
William Lallemand2a171912022-02-02 11:43:20 +01001844 else if (strcmp(args[0], "mcli-debug-mode") == 0) {
1845 level = ACCESS_MCLI_DEBUG;
1846 level_str = "mcli-debug-mode";
1847 }
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001848 else {
1849 return 1;
1850 }
Willy Tarreauabb9f9b2019-10-24 17:55:53 +02001851
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001852 if (!*args[1]) {
1853 memprintf(&output, "%s is %s\n", level_str,
1854 (appctx->cli_level & level) ? "ON" : "OFF");
1855 return cli_dynmsg(appctx, LOG_INFO, output);
1856 }
Willy Tarreauabb9f9b2019-10-24 17:55:53 +02001857
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001858 appctx->cli_level &= ~level;
Willy Tarreauabb9f9b2019-10-24 17:55:53 +02001859 if (strcmp(args[1], "on") == 0)
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001860 appctx->cli_level |= level;
William Lallemand67a234f2018-12-13 09:05:45 +01001861 return 1;
1862}
1863
William Lallemand740629e2021-12-14 15:22:29 +01001864/* shows HAProxy version */
1865static int cli_parse_show_version(char **args, char *payload, struct appctx *appctx, void *private)
1866{
1867 char *msg = NULL;
1868
1869 return cli_dynmsg(appctx, LOG_INFO, memprintf(&msg, "%s\n", haproxy_version));
1870}
1871
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001872int cli_parse_default(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemandeceddf72016-12-15 18:06:44 +01001873{
1874 return 0;
1875}
1876
Erwan Le Goas54966df2022-09-14 17:24:22 +02001877/* enable or disable the anonymized mode, it returns 1 when it works or displays an error message if it doesn't. */
1878static int cli_parse_set_anon(char **args, char *payload, struct appctx *appctx, void *private)
1879{
1880 uint32_t tmp;
1881 long long key;
1882
1883 if (strcmp(args[2], "on") == 0) {
1884 if (appctx->cli_anon_key != 0)
1885 return cli_err(appctx, "Mode already enabled\n");
1886 else {
1887 if (*args[3]) {
1888 key = atoll(args[3]);
1889 if (key < 1 || key > UINT_MAX)
1890 return cli_err(appctx, "Value out of range (1 to 4294967295 expected).\n");
1891 appctx->cli_anon_key = key;
1892 }
1893 else {
1894 tmp = HA_ATOMIC_LOAD(&global.anon_key);
1895 if (tmp != 0)
1896 appctx->cli_anon_key = tmp;
1897 else
1898 appctx->cli_anon_key = ha_random32();
1899 }
1900 }
1901 }
1902 else if (strcmp(args[2], "off") == 0) {
1903 if (appctx->cli_anon_key == 0)
1904 return cli_err(appctx, "Mode already disabled\n");
1905 else if (*args[3]) {
1906 return cli_err(appctx, "Key can't be added while disabling anonymized mode\n");
1907 }
1908 else {
1909 appctx->cli_anon_key = 0;
1910 }
1911 }
1912 else {
1913 return cli_err(appctx,
1914 "'set anon' only supports :\n"
1915 " - 'on' [key] to enable the anonymized mode\n"
1916 " - 'off' to disable the anonymized mode");
1917 }
1918 return 1;
1919}
1920
Erwan Le Goasfad9da82022-09-14 17:24:22 +02001921/* This function set the global anonyzing key, restricted to level 'admin' */
1922static int cli_parse_set_global_key(char **args, char *payload, struct appctx *appctx, void *private)
1923{
1924 long long key;
1925
1926 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1927 return cli_err(appctx, "Permission denied\n");
1928 if (!*args[2])
1929 return cli_err(appctx, "Expects an integer value.\n");
1930
1931 key = atoll(args[2]);
1932 if (key < 0 || key > UINT_MAX)
1933 return cli_err(appctx, "Value out of range (0 to 4294967295 expected).\n");
1934
1935 HA_ATOMIC_STORE(&global.anon_key, key);
1936 return 1;
1937}
1938
Erwan Le Goas54966df2022-09-14 17:24:22 +02001939/* shows the anonymized mode state to everyone, and the key except for users, it always returns 1. */
1940static int cli_parse_show_anon(char **args, char *payload, struct appctx *appctx, void *private)
1941{
1942 char *msg = NULL;
1943 char *anon_mode = NULL;
1944 uint32_t c_key = appctx->cli_anon_key;
1945
1946 if (!c_key)
1947 anon_mode = "Anonymized mode disabled";
1948 else
1949 anon_mode = "Anonymized mode enabled";
1950
1951 if ( !((appctx->cli_level & ACCESS_LVL_MASK) < ACCESS_LVL_OPER) && c_key != 0) {
1952 cli_dynmsg(appctx, LOG_INFO, memprintf(&msg, "%s\nKey : %u\n", anon_mode, c_key));
1953 }
1954 else {
1955 cli_dynmsg(appctx, LOG_INFO, memprintf(&msg, "%s\n", anon_mode));
1956 }
1957
1958 return 1;
1959}
1960
Willy Tarreau45c742b2016-11-24 14:51:17 +01001961/* parse a "set rate-limit" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001962static int cli_parse_set_ratelimit(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau45c742b2016-11-24 14:51:17 +01001963{
1964 int v;
1965 int *res;
1966 int mul = 1;
1967
1968 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1969 return 1;
1970
1971 if (strcmp(args[2], "connections") == 0 && strcmp(args[3], "global") == 0)
1972 res = &global.cps_lim;
1973 else if (strcmp(args[2], "sessions") == 0 && strcmp(args[3], "global") == 0)
1974 res = &global.sps_lim;
1975#ifdef USE_OPENSSL
1976 else if (strcmp(args[2], "ssl-sessions") == 0 && strcmp(args[3], "global") == 0)
1977 res = &global.ssl_lim;
1978#endif
1979 else if (strcmp(args[2], "http-compression") == 0 && strcmp(args[3], "global") == 0) {
1980 res = &global.comp_rate_lim;
1981 mul = 1024;
1982 }
1983 else {
Willy Tarreau9d008692019-08-09 11:21:01 +02001984 return cli_err(appctx,
Willy Tarreau45c742b2016-11-24 14:51:17 +01001985 "'set rate-limit' only supports :\n"
1986 " - 'connections global' to set the per-process maximum connection rate\n"
1987 " - 'sessions global' to set the per-process maximum session rate\n"
1988#ifdef USE_OPENSSL
Aurélien Nephtalib53e2082018-03-11 16:55:02 +01001989 " - 'ssl-sessions global' to set the per-process maximum SSL session rate\n"
Willy Tarreau45c742b2016-11-24 14:51:17 +01001990#endif
Willy Tarreau9d008692019-08-09 11:21:01 +02001991 " - 'http-compression global' to set the per-process maximum compression speed in kB/s\n");
Willy Tarreau45c742b2016-11-24 14:51:17 +01001992 }
1993
Willy Tarreau9d008692019-08-09 11:21:01 +02001994 if (!*args[4])
1995 return cli_err(appctx, "Expects an integer value.\n");
Willy Tarreau45c742b2016-11-24 14:51:17 +01001996
1997 v = atoi(args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02001998 if (v < 0)
1999 return cli_err(appctx, "Value out of range.\n");
Willy Tarreau45c742b2016-11-24 14:51:17 +01002000
2001 *res = v * mul;
2002
2003 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01002004 dequeue_all_listeners();
Willy Tarreau45c742b2016-11-24 14:51:17 +01002005
2006 return 1;
2007}
2008
William Lallemandf6975e92017-05-26 17:42:10 +02002009/* parse the "expose-fd" argument on the bind lines */
2010static int bind_parse_expose_fd(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2011{
2012 if (!*args[cur_arg + 1]) {
2013 memprintf(err, "'%s' : missing fd type", args[cur_arg]);
2014 return ERR_ALERT | ERR_FATAL;
2015 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002016 if (strcmp(args[cur_arg + 1], "listeners") == 0) {
William Lallemandf6975e92017-05-26 17:42:10 +02002017 conf->level |= ACCESS_FD_LISTENERS;
2018 } else {
2019 memprintf(err, "'%s' only supports 'listeners' (got '%s')",
2020 args[cur_arg], args[cur_arg+1]);
2021 return ERR_ALERT | ERR_FATAL;
2022 }
2023
2024 return 0;
2025}
2026
William Lallemand74c24fb2016-11-21 17:18:36 +01002027/* parse the "level" argument on the bind lines */
2028static int bind_parse_level(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2029{
2030 if (!*args[cur_arg + 1]) {
2031 memprintf(err, "'%s' : missing level", args[cur_arg]);
2032 return ERR_ALERT | ERR_FATAL;
2033 }
2034
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002035 if (strcmp(args[cur_arg + 1], "user") == 0) {
William Lallemand07a62f72017-05-24 00:57:40 +02002036 conf->level &= ~ACCESS_LVL_MASK;
2037 conf->level |= ACCESS_LVL_USER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002038 } else if (strcmp(args[cur_arg + 1], "operator") == 0) {
William Lallemand07a62f72017-05-24 00:57:40 +02002039 conf->level &= ~ACCESS_LVL_MASK;
2040 conf->level |= ACCESS_LVL_OPER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002041 } else if (strcmp(args[cur_arg + 1], "admin") == 0) {
William Lallemand07a62f72017-05-24 00:57:40 +02002042 conf->level &= ~ACCESS_LVL_MASK;
2043 conf->level |= ACCESS_LVL_ADMIN;
2044 } else {
William Lallemand74c24fb2016-11-21 17:18:36 +01002045 memprintf(err, "'%s' only supports 'user', 'operator', and 'admin' (got '%s')",
2046 args[cur_arg], args[cur_arg+1]);
2047 return ERR_ALERT | ERR_FATAL;
2048 }
2049
2050 return 0;
2051}
2052
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02002053static int bind_parse_severity_output(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2054{
2055 if (!*args[cur_arg + 1]) {
2056 memprintf(err, "'%s' : missing severity format", args[cur_arg]);
2057 return ERR_ALERT | ERR_FATAL;
2058 }
2059
2060 if (set_severity_output(&conf->severity_output, args[cur_arg+1]))
2061 return 0;
2062 else {
2063 memprintf(err, "'%s' only supports 'none', 'number', and 'string' (got '%s')",
2064 args[cur_arg], args[cur_arg+1]);
2065 return ERR_ALERT | ERR_FATAL;
2066 }
2067}
2068
Olivier Houchardf886e342017-04-05 22:24:59 +02002069/* Send all the bound sockets, always returns 1 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002070static int _getsocks(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchardf886e342017-04-05 22:24:59 +02002071{
William Lallemandb5d062d2022-07-28 15:33:41 +02002072 static int already_sent = 0;
Olivier Houchardf886e342017-04-05 22:24:59 +02002073 char *cmsgbuf = NULL;
2074 unsigned char *tmpbuf = NULL;
2075 struct cmsghdr *cmsg;
Willy Tarreauc12b3212022-05-27 11:08:15 +02002076 struct stconn *sc = appctx_sc(appctx);
Willy Tarreau475e4632022-05-27 10:26:46 +02002077 struct stream *s = __sc_strm(sc);
2078 struct connection *remote = sc_conn(sc_opposite(sc));
Olivier Houchardf886e342017-04-05 22:24:59 +02002079 struct msghdr msghdr;
2080 struct iovec iov;
Olivier Houchard54740872017-04-06 14:45:14 +02002081 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002082 const char *ns_name, *if_name;
2083 unsigned char ns_nlen, if_nlen;
2084 int nb_queued;
2085 int cur_fd = 0;
Olivier Houchardf886e342017-04-05 22:24:59 +02002086 int *tmpfd;
2087 int tot_fd_nb = 0;
Willy Tarreauc2b7f802018-09-20 11:22:29 +02002088 int fd = -1;
Olivier Houchardf886e342017-04-05 22:24:59 +02002089 int curoff = 0;
Willy Tarreauc2b7f802018-09-20 11:22:29 +02002090 int old_fcntl = -1;
Olivier Houchardf886e342017-04-05 22:24:59 +02002091 int ret;
2092
Willy Tarreauc2b7f802018-09-20 11:22:29 +02002093 if (!remote) {
2094 ha_warning("Only works on real connections\n");
2095 goto out;
2096 }
2097
2098 fd = remote->handle.fd;
2099
Olivier Houchardf886e342017-04-05 22:24:59 +02002100 /* Temporary set the FD in blocking mode, that will make our life easier */
2101 old_fcntl = fcntl(fd, F_GETFL);
2102 if (old_fcntl < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002103 ha_warning("Couldn't get the flags for the unix socket\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02002104 goto out;
2105 }
2106 cmsgbuf = malloc(CMSG_SPACE(sizeof(int) * MAX_SEND_FD));
2107 if (!cmsgbuf) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002108 ha_warning("Failed to allocate memory to send sockets\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02002109 goto out;
2110 }
2111 if (fcntl(fd, F_SETFL, old_fcntl &~ O_NONBLOCK) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002112 ha_warning("Cannot make the unix socket blocking\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02002113 goto out;
2114 }
Olivier Houchard54740872017-04-06 14:45:14 +02002115 setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf886e342017-04-05 22:24:59 +02002116 iov.iov_base = &tot_fd_nb;
2117 iov.iov_len = sizeof(tot_fd_nb);
William Lallemandf6975e92017-05-26 17:42:10 +02002118 if (!(strm_li(s)->bind_conf->level & ACCESS_FD_LISTENERS))
Olivier Houchardf886e342017-04-05 22:24:59 +02002119 goto out;
2120 memset(&msghdr, 0, sizeof(msghdr));
2121 /*
2122 * First, calculates the total number of FD, so that we can let
Jackie Tapia749f74c2020-07-22 18:59:40 -05002123 * the caller know how much it should expect.
Olivier Houchardf886e342017-04-05 22:24:59 +02002124 */
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002125 for (cur_fd = 0;cur_fd < global.maxsock; cur_fd++)
Willy Tarreau9063a662021-04-06 18:09:06 +02002126 tot_fd_nb += !!(fdtab[cur_fd].state & FD_EXPORTED);
William Lallemand5fd3b282020-01-16 15:32:08 +01002127
William Lallemandb5d062d2022-07-28 15:33:41 +02002128 if (tot_fd_nb == 0) {
2129 if (already_sent)
2130 ha_warning("_getsocks: attempt to get sockets but they were already sent and closed in this process!\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02002131 goto out;
William Lallemandb5d062d2022-07-28 15:33:41 +02002132 }
Olivier Houchardf886e342017-04-05 22:24:59 +02002133
2134 /* First send the total number of file descriptors, so that the
2135 * receiving end knows what to expect.
2136 */
2137 msghdr.msg_iov = &iov;
2138 msghdr.msg_iovlen = 1;
2139 ret = sendmsg(fd, &msghdr, 0);
2140 if (ret != sizeof(tot_fd_nb)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002141 ha_warning("Failed to send the number of sockets to send\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02002142 goto out;
2143 }
2144
2145 /* Now send the fds */
2146 msghdr.msg_control = cmsgbuf;
2147 msghdr.msg_controllen = CMSG_SPACE(sizeof(int) * MAX_SEND_FD);
2148 cmsg = CMSG_FIRSTHDR(&msghdr);
2149 cmsg->cmsg_len = CMSG_LEN(MAX_SEND_FD * sizeof(int));
2150 cmsg->cmsg_level = SOL_SOCKET;
2151 cmsg->cmsg_type = SCM_RIGHTS;
2152 tmpfd = (int *)CMSG_DATA(cmsg);
2153
Olivier Houchardf886e342017-04-05 22:24:59 +02002154 /* For each socket, e message is sent, containing the following :
2155 * Size of the namespace name (or 0 if none), as an unsigned char.
2156 * The namespace name, if any
2157 * Size of the interface name (or 0 if none), as an unsigned char
2158 * The interface name, if any
Willy Tarreaucf1f1932020-08-26 10:30:09 +02002159 * 32 bits of zeroes (used to be listener options).
Olivier Houchardf886e342017-04-05 22:24:59 +02002160 */
2161 /* We will send sockets MAX_SEND_FD per MAX_SEND_FD, allocate a
Ilya Shipitsind4259502020-04-08 01:07:56 +05002162 * buffer big enough to store the socket information.
Olivier Houchardf886e342017-04-05 22:24:59 +02002163 */
Olivier Houchardf143b802017-11-04 15:13:01 +01002164 tmpbuf = malloc(MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf886e342017-04-05 22:24:59 +02002165 if (tmpbuf == NULL) {
Ilya Shipitsind4259502020-04-08 01:07:56 +05002166 ha_warning("Failed to allocate memory to transfer socket information\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02002167 goto out;
2168 }
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002169
2170 nb_queued = 0;
Olivier Houchardf886e342017-04-05 22:24:59 +02002171 iov.iov_base = tmpbuf;
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002172 for (cur_fd = 0; cur_fd < global.maxsock; cur_fd++) {
Willy Tarreau9063a662021-04-06 18:09:06 +02002173 if (!(fdtab[cur_fd].state & FD_EXPORTED))
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002174 continue;
2175
2176 ns_name = if_name = "";
2177 ns_nlen = if_nlen = 0;
2178
2179 /* for now we can only retrieve namespaces and interfaces from
2180 * pure listeners.
2181 */
Willy Tarreaua74cb382020-10-15 21:29:49 +02002182 if (fdtab[cur_fd].iocb == sock_accept_iocb) {
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002183 const struct listener *l = fdtab[cur_fd].owner;
2184
Willy Tarreau818a92e2020-09-03 07:50:19 +02002185 if (l->rx.settings->interface) {
2186 if_name = l->rx.settings->interface;
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002187 if_nlen = strlen(if_name);
2188 }
2189
2190#ifdef USE_NS
Willy Tarreau818a92e2020-09-03 07:50:19 +02002191 if (l->rx.settings->netns) {
2192 ns_name = l->rx.settings->netns->node.key;
2193 ns_nlen = l->rx.settings->netns->name_len;
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002194 }
2195#endif
2196 }
2197
2198 /* put the FD into the CMSG_DATA */
2199 tmpfd[nb_queued++] = cur_fd;
2200
2201 /* first block is <ns_name_len> <ns_name> */
2202 tmpbuf[curoff++] = ns_nlen;
2203 if (ns_nlen)
2204 memcpy(tmpbuf + curoff, ns_name, ns_nlen);
2205 curoff += ns_nlen;
2206
2207 /* second block is <if_name_len> <if_name> */
2208 tmpbuf[curoff++] = if_nlen;
2209 if (if_nlen)
2210 memcpy(tmpbuf + curoff, if_name, if_nlen);
2211 curoff += if_nlen;
2212
2213 /* we used to send the listener options here before 2.3 */
2214 memset(tmpbuf + curoff, 0, sizeof(int));
2215 curoff += sizeof(int);
2216
2217 /* there's a limit to how many FDs may be sent at once */
2218 if (nb_queued == MAX_SEND_FD) {
2219 iov.iov_len = curoff;
2220 if (sendmsg(fd, &msghdr, 0) != curoff) {
2221 ha_warning("Failed to transfer sockets\n");
2222 return -1;
2223 }
2224
2225 /* Wait for an ack */
2226 do {
2227 ret = recv(fd, &tot_fd_nb, sizeof(tot_fd_nb), 0);
2228 } while (ret == -1 && errno == EINTR);
2229
2230 if (ret <= 0) {
2231 ha_warning("Unexpected error while transferring sockets\n");
2232 return -1;
2233 }
2234 curoff = 0;
2235 nb_queued = 0;
2236 }
William Lallemand5fd3b282020-01-16 15:32:08 +01002237 }
2238
William Lallemandb5d062d2022-07-28 15:33:41 +02002239 already_sent = 1;
2240
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002241 /* flush pending stuff */
2242 if (nb_queued) {
Olivier Houchardf886e342017-04-05 22:24:59 +02002243 iov.iov_len = curoff;
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002244 cmsg->cmsg_len = CMSG_LEN(nb_queued * sizeof(int));
2245 msghdr.msg_controllen = CMSG_SPACE(nb_queued * sizeof(int));
Olivier Houchardf886e342017-04-05 22:24:59 +02002246 if (sendmsg(fd, &msghdr, 0) != curoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002247 ha_warning("Failed to transfer sockets\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02002248 goto out;
2249 }
2250 }
2251
2252out:
Willy Tarreauc2b7f802018-09-20 11:22:29 +02002253 if (fd >= 0 && old_fcntl >= 0 && fcntl(fd, F_SETFL, old_fcntl) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002254 ha_warning("Cannot make the unix socket non-blocking\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02002255 goto out;
2256 }
2257 appctx->st0 = CLI_ST_END;
2258 free(cmsgbuf);
2259 free(tmpbuf);
2260 return 1;
2261}
2262
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002263static int cli_parse_simple(char **args, char *payload, struct appctx *appctx, void *private)
2264{
2265 if (*args[0] == 'h')
2266 /* help */
Willy Tarreau0b1b8302021-05-09 20:59:23 +02002267 cli_gen_usage_msg(appctx, args);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002268 else if (*args[0] == 'p')
2269 /* prompt */
2270 appctx->st1 ^= APPCTX_CLI_ST1_PROMPT;
2271 else if (*args[0] == 'q')
2272 /* quit */
2273 appctx->st0 = CLI_ST_END;
2274
2275 return 1;
2276}
Olivier Houchardf886e342017-04-05 22:24:59 +02002277
William Lallemand2f4ce202018-10-26 14:47:47 +02002278void pcli_write_prompt(struct stream *s)
2279{
2280 struct buffer *msg = get_trash_chunk();
Willy Tarreau40a9c322022-05-18 15:55:18 +02002281 struct channel *oc = sc_oc(s->scf);
William Lallemand2f4ce202018-10-26 14:47:47 +02002282
William Lallemanddc12c2e2018-12-13 09:05:46 +01002283 if (!(s->pcli_flags & PCLI_F_PROMPT))
William Lallemand5b80fa22018-12-11 16:10:54 +01002284 return;
2285
William Lallemanddc12c2e2018-12-13 09:05:46 +01002286 if (s->pcli_flags & PCLI_F_PAYLOAD) {
William Lallemandebf61802018-12-11 16:10:57 +01002287 chunk_appendf(msg, "+ ");
2288 } else {
2289 if (s->pcli_next_pid == 0)
William Lallemanddae12c72022-02-02 14:13:54 +01002290 chunk_appendf(msg, "master%s",
William Lallemand3ba7c7b2021-11-10 10:57:18 +01002291 (proc_self->failedreloads > 0) ? "[ReloadFailed]" : "");
William Lallemandebf61802018-12-11 16:10:57 +01002292 else
William Lallemanddae12c72022-02-02 14:13:54 +01002293 chunk_appendf(msg, "%d", s->pcli_next_pid);
2294
2295 if (s->pcli_flags & (ACCESS_EXPERIMENTAL|ACCESS_EXPERT|ACCESS_MCLI_DEBUG)) {
2296 chunk_appendf(msg, "(");
2297
2298 if (s->pcli_flags & ACCESS_EXPERIMENTAL)
2299 chunk_appendf(msg, "x");
2300
2301 if (s->pcli_flags & ACCESS_EXPERT)
2302 chunk_appendf(msg, "e");
2303
2304 if (s->pcli_flags & ACCESS_MCLI_DEBUG)
2305 chunk_appendf(msg, "d");
2306
2307 chunk_appendf(msg, ")");
2308 }
2309
2310 chunk_appendf(msg, "> ");
2311
2312
William Lallemandebf61802018-12-11 16:10:57 +01002313 }
William Lallemand2f4ce202018-10-26 14:47:47 +02002314 co_inject(oc, msg->area, msg->data);
2315}
2316
William Lallemand291810d2018-10-26 14:47:38 +02002317
William Lallemandcf62f7e2018-10-26 14:47:40 +02002318/* The pcli_* functions are used for the CLI proxy in the master */
2319
William Lallemanddeeaa592018-10-26 14:47:48 +02002320void pcli_reply_and_close(struct stream *s, const char *msg)
2321{
2322 struct buffer *buf = get_trash_chunk();
2323
2324 chunk_initstr(buf, msg);
Christopher Faulet9125f3c2022-03-31 09:47:24 +02002325 stream_retnclose(s, buf);
William Lallemanddeeaa592018-10-26 14:47:48 +02002326}
2327
William Lallemand291810d2018-10-26 14:47:38 +02002328static enum obj_type *pcli_pid_to_server(int proc_pid)
2329{
2330 struct mworker_proc *child;
2331
William Lallemand99e0bb92020-11-05 10:28:53 +01002332 /* return the mCLI applet of the master */
William Lallemandbddd33a2018-12-11 16:10:53 +01002333 if (proc_pid == 0)
William Lallemand99e0bb92020-11-05 10:28:53 +01002334 return &mcli_applet.obj_type;
William Lallemandbddd33a2018-12-11 16:10:53 +01002335
William Lallemand291810d2018-10-26 14:47:38 +02002336 list_for_each_entry(child, &proc_list, list) {
2337 if (child->pid == proc_pid){
2338 return &child->srv->obj_type;
2339 }
2340 }
2341 return NULL;
2342}
2343
2344/* Take a CLI prefix in argument (eg: @!1234 @master @1)
2345 * Return:
2346 * 0: master
2347 * > 0: pid of a worker
2348 * < 0: didn't find a worker
2349 */
2350static int pcli_prefix_to_pid(const char *prefix)
2351{
2352 int proc_pid;
2353 struct mworker_proc *child;
2354 char *errtol = NULL;
2355
2356 if (*prefix != '@') /* not a prefix, should not happen */
2357 return -1;
2358
2359 prefix++;
2360 if (!*prefix) /* sent @ alone, return the master */
2361 return 0;
2362
2363 if (strcmp("master", prefix) == 0) {
2364 return 0;
2365 } else if (*prefix == '!') {
2366 prefix++;
2367 if (!*prefix)
2368 return -1;
2369
2370 proc_pid = strtol(prefix, &errtol, 10);
2371 if (*errtol != '\0')
2372 return -1;
2373 list_for_each_entry(child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +02002374 if (!(child->options & PROC_O_TYPE_WORKER))
William Lallemand16dd1b32018-11-19 18:46:18 +01002375 continue;
William Lallemand291810d2018-10-26 14:47:38 +02002376 if (child->pid == proc_pid){
2377 return child->pid;
2378 }
2379 }
2380 } else {
2381 struct mworker_proc *chosen = NULL;
2382 /* this is a relative pid */
2383
2384 proc_pid = strtol(prefix, &errtol, 10);
2385 if (*errtol != '\0')
2386 return -1;
2387
2388 if (proc_pid == 0) /* return the master */
2389 return 0;
2390
William Lallemandbac3a822022-07-20 14:30:56 +02002391 if (proc_pid != 1) /* only the "@1" relative PID is supported */
2392 return -1;
2393
William Lallemand291810d2018-10-26 14:47:38 +02002394 /* chose the right process, the current one is the one with the
2395 least number of reloads */
2396 list_for_each_entry(child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +02002397 if (!(child->options & PROC_O_TYPE_WORKER))
William Lallemand16dd1b32018-11-19 18:46:18 +01002398 continue;
Willy Tarreaue8422bf2021-06-15 09:08:18 +02002399 if (child->reloads == 0)
2400 return child->pid;
2401 else if (chosen == NULL || child->reloads < chosen->reloads)
2402 chosen = child;
William Lallemand291810d2018-10-26 14:47:38 +02002403 }
2404 if (chosen)
2405 return chosen->pid;
2406 }
2407 return -1;
2408}
2409
William Lallemandbddd33a2018-12-11 16:10:53 +01002410/* Return::
2411 * >= 0 : number of words to escape
2412 * = -1 : error
2413 */
2414
2415int pcli_find_and_exec_kw(struct stream *s, char **args, int argl, char **errmsg, int *next_pid)
2416{
2417 if (argl < 1)
2418 return 0;
2419
2420 /* there is a prefix */
2421 if (args[0][0] == '@') {
2422 int target_pid = pcli_prefix_to_pid(args[0]);
2423
2424 if (target_pid == -1) {
2425 memprintf(errmsg, "Can't find the target PID matching the prefix '%s'\n", args[0]);
2426 return -1;
2427 }
2428
2429 /* if the prefix is alone, define a default target */
2430 if (argl == 1)
2431 s->pcli_next_pid = target_pid;
2432 else
2433 *next_pid = target_pid;
2434 return 1;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002435 } else if (strcmp("prompt", args[0]) == 0) {
William Lallemanddc12c2e2018-12-13 09:05:46 +01002436 s->pcli_flags ^= PCLI_F_PROMPT;
William Lallemand5b80fa22018-12-11 16:10:54 +01002437 return argl; /* return the number of elements in the array */
William Lallemand5f610682018-12-11 16:10:55 +01002438
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002439 } else if (strcmp("quit", args[0]) == 0) {
William Lallemand5f610682018-12-11 16:10:55 +01002440 channel_shutr_now(&s->req);
2441 channel_shutw_now(&s->res);
2442 return argl; /* return the number of elements in the array */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002443 } else if (strcmp(args[0], "operator") == 0) {
William Lallemandb7ea1412018-12-13 09:05:47 +01002444 if (!pcli_has_level(s, ACCESS_LVL_OPER)) {
2445 memprintf(errmsg, "Permission denied!\n");
2446 return -1;
2447 }
2448 s->pcli_flags &= ~ACCESS_LVL_MASK;
2449 s->pcli_flags |= ACCESS_LVL_OPER;
2450 return argl;
2451
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002452 } else if (strcmp(args[0], "user") == 0) {
William Lallemandb7ea1412018-12-13 09:05:47 +01002453 if (!pcli_has_level(s, ACCESS_LVL_USER)) {
2454 memprintf(errmsg, "Permission denied!\n");
2455 return -1;
2456 }
2457 s->pcli_flags &= ~ACCESS_LVL_MASK;
2458 s->pcli_flags |= ACCESS_LVL_USER;
2459 return argl;
William Lallemand7267f782022-02-01 16:08:50 +01002460
2461 } else if (strcmp(args[0], "expert-mode") == 0) {
2462 if (!pcli_has_level(s, ACCESS_LVL_ADMIN)) {
2463 memprintf(errmsg, "Permission denied!\n");
2464 return -1;
2465 }
2466
2467 s->pcli_flags &= ~ACCESS_EXPERT;
2468 if ((argl > 1) && (strcmp(args[1], "on") == 0))
2469 s->pcli_flags |= ACCESS_EXPERT;
2470 return argl;
2471
2472 } else if (strcmp(args[0], "experimental-mode") == 0) {
2473 if (!pcli_has_level(s, ACCESS_LVL_ADMIN)) {
2474 memprintf(errmsg, "Permission denied!\n");
2475 return -1;
2476 }
2477 s->pcli_flags &= ~ACCESS_EXPERIMENTAL;
2478 if ((argl > 1) && (strcmp(args[1], "on") == 0))
2479 s->pcli_flags |= ACCESS_EXPERIMENTAL;
2480 return argl;
William Lallemand2a171912022-02-02 11:43:20 +01002481 } else if (strcmp(args[0], "mcli-debug-mode") == 0) {
2482 if (!pcli_has_level(s, ACCESS_LVL_ADMIN)) {
2483 memprintf(errmsg, "Permission denied!\n");
2484 return -1;
2485 }
2486 s->pcli_flags &= ~ACCESS_MCLI_DEBUG;
2487 if ((argl > 1) && (strcmp(args[1], "on") == 0))
2488 s->pcli_flags |= ACCESS_MCLI_DEBUG;
2489 return argl;
William Lallemandbddd33a2018-12-11 16:10:53 +01002490 }
2491
2492 return 0;
2493}
2494
2495/*
2496 * Parse the CLI request:
2497 * - It does basically the same as the cli_io_handler, but as a proxy
2498 * - It can exec a command and strip non forwardable commands
William Lallemandcf62f7e2018-10-26 14:47:40 +02002499 *
2500 * Return:
William Lallemandbddd33a2018-12-11 16:10:53 +01002501 * - the number of characters to forward or
2502 * - 1 if there is an error or not enough data
William Lallemandcf62f7e2018-10-26 14:47:40 +02002503 */
William Lallemandbddd33a2018-12-11 16:10:53 +01002504int pcli_parse_request(struct stream *s, struct channel *req, char **errmsg, int *next_pid)
William Lallemandcf62f7e2018-10-26 14:47:40 +02002505{
Willy Tarreaua4e4d662022-01-20 08:47:35 +01002506 char *str;
2507 char *end;
Willy Tarreauf14c7572021-03-13 10:59:23 +01002508 char *args[MAX_CLI_ARGS + 1]; /* +1 for storing a NULL */
William Lallemandbddd33a2018-12-11 16:10:53 +01002509 int argl; /* number of args */
2510 char *p;
2511 char *trim = NULL;
William Lallemandebf61802018-12-11 16:10:57 +01002512 char *payload = NULL;
William Lallemandbddd33a2018-12-11 16:10:53 +01002513 int wtrim = 0; /* number of words to trim */
2514 int reql = 0;
William Lallemandb7ea1412018-12-13 09:05:47 +01002515 int ret;
William Lallemandbddd33a2018-12-11 16:10:53 +01002516 int i = 0;
2517
Willy Tarreaua4e4d662022-01-20 08:47:35 +01002518 /* we cannot deal with a wrapping buffer, so let's take care of this
2519 * first.
2520 */
2521 if (b_head(&req->buf) + b_data(&req->buf) > b_wrap(&req->buf))
2522 b_slow_realign(&req->buf, trash.area, co_data(req));
2523
2524 str = (char *)ci_head(req);
2525 end = (char *)ci_stop(req);
2526
William Lallemandbddd33a2018-12-11 16:10:53 +01002527 p = str;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002528
William Lallemanddc12c2e2018-12-13 09:05:46 +01002529 if (!(s->pcli_flags & PCLI_F_PAYLOAD)) {
William Lallemandebf61802018-12-11 16:10:57 +01002530
2531 /* Looks for the end of one command */
2532 while (p+reql < end) {
2533 /* handle escaping */
2534 if (p[reql] == '\\') {
William Lallemand02c255e2020-06-18 18:45:04 +02002535 reql+=2;
William Lallemandebf61802018-12-11 16:10:57 +01002536 continue;
2537 }
2538 if (p[reql] == ';' || p[reql] == '\n') {
2539 /* found the end of the command */
2540 p[reql] = '\n';
2541 reql++;
2542 break;
2543 }
William Lallemandbddd33a2018-12-11 16:10:53 +01002544 reql++;
William Lallemandbddd33a2018-12-11 16:10:53 +01002545 }
William Lallemandebf61802018-12-11 16:10:57 +01002546 } else {
2547 while (p+reql < end) {
2548 if (p[reql] == '\n') {
2549 /* found the end of the line */
2550 reql++;
2551 break;
2552 }
William Lallemandbddd33a2018-12-11 16:10:53 +01002553 reql++;
William Lallemandbddd33a2018-12-11 16:10:53 +01002554 }
William Lallemandbddd33a2018-12-11 16:10:53 +01002555 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002556
William Lallemandbddd33a2018-12-11 16:10:53 +01002557 /* set end to first byte after the end of the command */
2558 end = p + reql;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002559
William Lallemandbddd33a2018-12-11 16:10:53 +01002560 /* there is no end to this command, need more to parse ! */
Willy Tarreau6cd93f52022-01-20 08:31:50 +01002561 if (!reql || *(end-1) != '\n') {
William Lallemandbddd33a2018-12-11 16:10:53 +01002562 return -1;
2563 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002564
William Lallemand3301f3e2018-12-13 09:05:48 +01002565 if (s->pcli_flags & PCLI_F_PAYLOAD) {
2566 if (reql == 1) /* last line of the payload */
2567 s->pcli_flags &= ~PCLI_F_PAYLOAD;
William Lallemandebf61802018-12-11 16:10:57 +01002568 return reql;
2569 }
2570
William Lallemandbddd33a2018-12-11 16:10:53 +01002571 *(end-1) = '\0';
William Lallemandcf62f7e2018-10-26 14:47:40 +02002572
William Lallemandbddd33a2018-12-11 16:10:53 +01002573 /* splits the command in words */
Willy Tarreauf14c7572021-03-13 10:59:23 +01002574 while (i < MAX_CLI_ARGS && p < end) {
William Lallemandbddd33a2018-12-11 16:10:53 +01002575 /* skip leading spaces/tabs */
2576 p += strspn(p, " \t");
2577 if (!*p)
William Lallemandcf62f7e2018-10-26 14:47:40 +02002578 break;
2579
William Lallemandbddd33a2018-12-11 16:10:53 +01002580 args[i] = p;
William Lallemandfe249c32020-06-18 18:03:57 +02002581 while (1) {
2582 p += strcspn(p, " \t\\");
2583 /* escaped chars using backlashes (\) */
2584 if (*p == '\\') {
2585 if (!*++p)
2586 break;
2587 if (!*++p)
2588 break;
2589 } else {
2590 break;
William Lallemandbddd33a2018-12-11 16:10:53 +01002591 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002592 }
William Lallemandfe249c32020-06-18 18:03:57 +02002593 *p++ = 0;
William Lallemandbddd33a2018-12-11 16:10:53 +01002594 i++;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002595 }
2596
William Lallemandbddd33a2018-12-11 16:10:53 +01002597 argl = i;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002598
Willy Tarreauf14c7572021-03-13 10:59:23 +01002599 for (; i < MAX_CLI_ARGS + 1; i++)
William Lallemandbddd33a2018-12-11 16:10:53 +01002600 args[i] = NULL;
2601
2602 wtrim = pcli_find_and_exec_kw(s, args, argl, errmsg, next_pid);
2603
2604 /* End of words are ending by \0, we need to replace the \0s by spaces
William Lallemandfe618fb2022-02-02 14:07:08 +01002605 before forwarding them */
William Lallemandbddd33a2018-12-11 16:10:53 +01002606 p = str;
William Lallemand3301f3e2018-12-13 09:05:48 +01002607 while (p < end-1) {
William Lallemandbddd33a2018-12-11 16:10:53 +01002608 if (*p == '\0')
2609 *p = ' ';
2610 p++;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002611 }
2612
William Lallemand3301f3e2018-12-13 09:05:48 +01002613 payload = strstr(str, PAYLOAD_PATTERN);
2614 if ((end - 1) == (payload + strlen(PAYLOAD_PATTERN))) {
2615 /* if the payload pattern is at the end */
2616 s->pcli_flags |= PCLI_F_PAYLOAD;
William Lallemand3301f3e2018-12-13 09:05:48 +01002617 }
2618
William Lallemandbddd33a2018-12-11 16:10:53 +01002619 *(end-1) = '\n';
William Lallemandcf62f7e2018-10-26 14:47:40 +02002620
William Lallemandbddd33a2018-12-11 16:10:53 +01002621 if (wtrim > 0) {
2622 trim = &args[wtrim][0];
2623 if (trim == NULL) /* if this was the last word in the table */
2624 trim = end;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002625
William Lallemandbddd33a2018-12-11 16:10:53 +01002626 b_del(&req->buf, trim - str);
2627
William Lallemandb7ea1412018-12-13 09:05:47 +01002628 ret = end - trim;
William Lallemandbddd33a2018-12-11 16:10:53 +01002629 } else if (wtrim < 0) {
2630 /* parsing error */
2631 return -1;
William Lallemandb7ea1412018-12-13 09:05:47 +01002632 } else {
2633 /* the whole string */
2634 ret = end - str;
William Lallemandbddd33a2018-12-11 16:10:53 +01002635 }
2636
William Lallemandb7ea1412018-12-13 09:05:47 +01002637 if (ret > 1) {
William Lallemand2a171912022-02-02 11:43:20 +01002638
2639 /* the mcli-debug-mode is only sent to the applet of the master */
2640 if ((s->pcli_flags & ACCESS_MCLI_DEBUG) && *next_pid <= 0) {
2641 ci_insert_line2(req, 0, "mcli-debug-mode on -", strlen("mcli-debug-mode on -"));
2642 ret += strlen("mcli-debug-mode on -") + 2;
2643 }
William Lallemand7267f782022-02-01 16:08:50 +01002644 if (s->pcli_flags & ACCESS_EXPERIMENTAL) {
2645 ci_insert_line2(req, 0, "experimental-mode on -", strlen("experimental-mode on -"));
2646 ret += strlen("experimental-mode on -") + 2;
2647 }
2648 if (s->pcli_flags & ACCESS_EXPERT) {
2649 ci_insert_line2(req, 0, "expert-mode on -", strlen("expert-mode on -"));
2650 ret += strlen("expert-mode on -") + 2;
2651 }
2652
William Lallemandb7ea1412018-12-13 09:05:47 +01002653 if (pcli_has_level(s, ACCESS_LVL_ADMIN)) {
2654 goto end;
2655 } else if (pcli_has_level(s, ACCESS_LVL_OPER)) {
William Lallemandad032882019-07-01 10:56:15 +02002656 ci_insert_line2(req, 0, "operator -", strlen("operator -"));
2657 ret += strlen("operator -") + 2;
William Lallemandb7ea1412018-12-13 09:05:47 +01002658 } else if (pcli_has_level(s, ACCESS_LVL_USER)) {
William Lallemandad032882019-07-01 10:56:15 +02002659 ci_insert_line2(req, 0, "user -", strlen("user -"));
2660 ret += strlen("user -") + 2;
William Lallemandb7ea1412018-12-13 09:05:47 +01002661 }
2662 }
2663end:
William Lallemandbddd33a2018-12-11 16:10:53 +01002664
William Lallemandb7ea1412018-12-13 09:05:47 +01002665 return ret;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002666}
2667
2668int pcli_wait_for_request(struct stream *s, struct channel *req, int an_bit)
2669{
William Lallemandbddd33a2018-12-11 16:10:53 +01002670 int next_pid = -1;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002671 int to_forward;
William Lallemandbddd33a2018-12-11 16:10:53 +01002672 char *errmsg = NULL;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002673
Ilya Shipitsin5e87bcf2021-12-25 11:45:52 +05002674 /* Don't read the next command if still processing the response of the
Christopher Fauletd98da3b2021-10-18 14:52:49 +02002675 * current one. Just wait. At this stage, errors should be handled by
2676 * the response analyzer.
2677 */
2678 if (s->res.analysers & AN_RES_WAIT_CLI)
2679 return 0;
2680
William Lallemandb7ea1412018-12-13 09:05:47 +01002681 if ((s->pcli_flags & ACCESS_LVL_MASK) == ACCESS_LVL_NONE)
2682 s->pcli_flags |= strm_li(s)->bind_conf->level & ACCESS_LVL_MASK;
2683
William Lallemandcf62f7e2018-10-26 14:47:40 +02002684read_again:
2685 /* if the channel is closed for read, we won't receive any more data
2686 from the client, but we don't want to forward this close to the
2687 server */
2688 channel_dont_close(req);
2689
2690 /* We don't know yet to which server we will connect */
2691 channel_dont_connect(req);
2692
William Lallemandcf62f7e2018-10-26 14:47:40 +02002693 req->flags |= CF_READ_DONTWAIT;
2694
2695 /* need more data */
2696 if (!ci_data(req))
Christopher Faulet0f727da2022-01-18 08:44:23 +01002697 goto missing_data;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002698
2699 /* If there is data available for analysis, log the end of the idle time. */
2700 if (c_data(req) && s->logs.t_idle == -1)
2701 s->logs.t_idle = tv_ms_elapsed(&s->logs.tv_accept, &now) - s->logs.t_handshake;
2702
William Lallemandbddd33a2018-12-11 16:10:53 +01002703 to_forward = pcli_parse_request(s, req, &errmsg, &next_pid);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002704 if (to_forward > 0) {
William Lallemandbddd33a2018-12-11 16:10:53 +01002705 int target_pid;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002706 /* enough data */
2707
William Lallemandcf62f7e2018-10-26 14:47:40 +02002708 /* forward only 1 command */
2709 channel_forward(req, to_forward);
William Lallemandebf61802018-12-11 16:10:57 +01002710
William Lallemanddc12c2e2018-12-13 09:05:46 +01002711 if (!(s->pcli_flags & PCLI_F_PAYLOAD)) {
William Lallemandebf61802018-12-11 16:10:57 +01002712 /* we send only 1 command per request, and we write close after it */
2713 channel_shutw_now(req);
2714 } else {
2715 pcli_write_prompt(s);
2716 }
2717
2718 s->res.flags |= CF_WAKE_ONCE; /* need to be called again */
William Lallemandcf62f7e2018-10-26 14:47:40 +02002719 s->res.analysers |= AN_RES_WAIT_CLI;
2720
William Lallemandebf61802018-12-11 16:10:57 +01002721 if (!(s->flags & SF_ASSIGNED)) {
2722 if (next_pid > -1)
2723 target_pid = next_pid;
2724 else
2725 target_pid = s->pcli_next_pid;
2726 /* we can connect now */
2727 s->target = pcli_pid_to_server(target_pid);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002728
William Lallemanddcbe7b92021-12-10 14:14:53 +01002729 if (!s->target)
2730 goto server_disconnect;
2731
William Lallemandebf61802018-12-11 16:10:57 +01002732 s->flags |= (SF_DIRECT | SF_ASSIGNED);
2733 channel_auto_connect(req);
2734 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002735
2736 } else if (to_forward == 0) {
William Lallemandcf62f7e2018-10-26 14:47:40 +02002737 /* we trimmed things but we might have other commands to consume */
William Lallemandbddd33a2018-12-11 16:10:53 +01002738 pcli_write_prompt(s);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002739 goto read_again;
Christopher Faulet0f727da2022-01-18 08:44:23 +01002740 } else if (to_forward == -1) {
2741 if (errmsg) {
2742 /* there was an error during the parsing */
2743 pcli_reply_and_close(s, errmsg);
2744 s->req.analysers &= ~AN_REQ_WAIT_CLI;
2745 return 0;
2746 }
2747 goto missing_data;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002748 }
2749
2750 return 0;
2751
2752send_help:
2753 b_reset(&req->buf);
2754 b_putblk(&req->buf, "help\n", 5);
2755 goto read_again;
William Lallemanddcbe7b92021-12-10 14:14:53 +01002756
Christopher Faulet0f727da2022-01-18 08:44:23 +01002757missing_data:
2758 if (req->flags & CF_SHUTR) {
2759 /* There is no more request or a only a partial one and we
2760 * receive a close from the client, we can leave */
2761 channel_shutw_now(&s->res);
2762 s->req.analysers &= ~AN_REQ_WAIT_CLI;
2763 return 1;
2764 }
2765 else if (channel_full(req, global.tune.maxrewrite)) {
2766 /* buffer is full and we didn't catch the end of a command */
2767 goto send_help;
2768 }
2769 return 0;
2770
William Lallemanddcbe7b92021-12-10 14:14:53 +01002771server_disconnect:
2772 pcli_reply_and_close(s, "Can't connect to the target CLI!\n");
2773 return 0;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002774}
2775
2776int pcli_wait_for_response(struct stream *s, struct channel *rep, int an_bit)
2777{
2778 struct proxy *fe = strm_fe(s);
2779 struct proxy *be = s->be;
2780
Christopher Faulete8cefac2022-03-07 18:20:21 +01002781 if ((rep->flags & (CF_READ_ERROR|CF_READ_TIMEOUT|CF_WRITE_ERROR|CF_WRITE_TIMEOUT)) ||
2782 ((rep->flags & CF_SHUTW) && (rep->to_forward || co_data(rep)))) {
William Lallemand6b7cd0a2018-11-06 17:37:11 +01002783 pcli_reply_and_close(s, "Can't connect to the target CLI!\n");
Christopher Fauletd98da3b2021-10-18 14:52:49 +02002784 s->req.analysers &= ~AN_REQ_WAIT_CLI;
William Lallemand6b7cd0a2018-11-06 17:37:11 +01002785 s->res.analysers &= ~AN_RES_WAIT_CLI;
2786 return 0;
2787 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002788 rep->flags |= CF_READ_DONTWAIT; /* try to get back here ASAP */
2789 rep->flags |= CF_NEVER_WAIT;
2790
2791 /* don't forward the close */
2792 channel_dont_close(&s->res);
2793 channel_dont_close(&s->req);
2794
William Lallemanddc12c2e2018-12-13 09:05:46 +01002795 if (s->pcli_flags & PCLI_F_PAYLOAD) {
William Lallemandebf61802018-12-11 16:10:57 +01002796 s->res.analysers &= ~AN_RES_WAIT_CLI;
2797 s->req.flags |= CF_WAKE_ONCE; /* need to be called again if there is some command left in the request */
2798 return 0;
2799 }
2800
William Lallemandcf62f7e2018-10-26 14:47:40 +02002801 /* forward the data */
2802 if (ci_data(rep)) {
2803 c_adv(rep, ci_data(rep));
2804 return 0;
2805 }
2806
2807 if ((rep->flags & (CF_SHUTR|CF_READ_NULL))) {
2808 /* stream cleanup */
2809
William Lallemand2f4ce202018-10-26 14:47:47 +02002810 pcli_write_prompt(s);
2811
Willy Tarreaucb041662022-05-17 19:44:42 +02002812 s->scb->flags |= SC_FL_NOLINGER | SC_FL_NOHALF;
Willy Tarreauf61dd192022-05-27 09:00:19 +02002813 sc_shutr(s->scb);
2814 sc_shutw(s->scb);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002815
2816 /*
2817 * starting from there this the same code as
2818 * http_end_txn_clean_session().
2819 *
2820 * It allows to do frontend keepalive while reconnecting to a
2821 * new server for each request.
2822 */
2823
2824 if (s->flags & SF_BE_ASSIGNED) {
Willy Tarreau4781b152021-04-06 13:53:36 +02002825 HA_ATOMIC_DEC(&be->beconn);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002826 if (unlikely(s->srv_conn))
2827 sess_change_server(s, NULL);
2828 }
2829
2830 s->logs.t_close = tv_ms_elapsed(&s->logs.tv_accept, &now);
2831 stream_process_counters(s);
2832
2833 /* don't count other requests' data */
2834 s->logs.bytes_in -= ci_data(&s->req);
2835 s->logs.bytes_out -= ci_data(&s->res);
2836
2837 /* we may need to know the position in the queue */
2838 pendconn_free(s);
2839
2840 /* let's do a final log if we need it */
2841 if (!LIST_ISEMPTY(&fe->logformat) && s->logs.logwait &&
2842 !(s->flags & SF_MONITOR) &&
2843 (!(fe->options & PR_O_NULLNOLOG) || s->req.total)) {
2844 s->do_log(s);
2845 }
2846
2847 /* stop tracking content-based counters */
2848 stream_stop_content_counters(s);
2849 stream_update_time_stats(s);
2850
2851 s->logs.accept_date = date; /* user-visible date for logging */
2852 s->logs.tv_accept = now; /* corrected date for internal use */
2853 s->logs.t_handshake = 0; /* There are no handshake in keep alive connection. */
2854 s->logs.t_idle = -1;
2855 tv_zero(&s->logs.tv_request);
2856 s->logs.t_queue = -1;
2857 s->logs.t_connect = -1;
2858 s->logs.t_data = -1;
2859 s->logs.t_close = 0;
2860 s->logs.prx_queue_pos = 0; /* we get the number of pending conns before us */
2861 s->logs.srv_queue_pos = 0; /* we will get this number soon */
2862
2863 s->logs.bytes_in = s->req.total = ci_data(&s->req);
2864 s->logs.bytes_out = s->res.total = ci_data(&s->res);
2865
2866 stream_del_srv_conn(s);
2867 if (objt_server(s->target)) {
2868 if (s->flags & SF_CURR_SESS) {
2869 s->flags &= ~SF_CURR_SESS;
Willy Tarreau4781b152021-04-06 13:53:36 +02002870 HA_ATOMIC_DEC(&__objt_server(s->target)->cur_sess);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002871 }
Willy Tarreaub54c40a2018-12-02 19:28:41 +01002872 if (may_dequeue_tasks(__objt_server(s->target), be))
Willy Tarreau9ab78292021-06-22 18:47:51 +02002873 process_srv_queue(__objt_server(s->target));
William Lallemandcf62f7e2018-10-26 14:47:40 +02002874 }
2875
2876 s->target = NULL;
2877
2878 /* only release our endpoint if we don't intend to reuse the
2879 * connection.
2880 */
Willy Tarreau462b9892022-05-18 18:06:53 +02002881 if (!sc_conn_ready(s->scb)) {
William Lallemandcf62f7e2018-10-26 14:47:40 +02002882 s->srv_conn = NULL;
Willy Tarreau19c65a92022-05-27 08:49:24 +02002883 if (sc_reset_endp(s->scb) < 0) {
Christopher Faulet50264b42022-03-30 19:39:30 +02002884 if (!s->conn_err_type)
2885 s->conn_err_type = STRM_ET_CONN_OTHER;
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002886 if (s->srv_error)
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02002887 s->srv_error(s, s->scb);
Christopher Faulet9ec2f4d2022-03-23 15:15:29 +01002888 return 1;
2889 }
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02002890 se_fl_clr(s->scb->sedesc, ~SE_FL_DETACHED);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002891 }
2892
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02002893 sockaddr_free(&s->scb->dst);
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002894
Willy Tarreau74568cf2022-05-27 09:03:30 +02002895 sc_set_state(s->scb, SC_ST_INI);
Willy Tarreaucb041662022-05-17 19:44:42 +02002896 s->scb->flags &= SC_FL_ISBACK | SC_FL_DONT_WAKE; /* we're in the context of process_stream */
Christopher Faulet22dc2482019-07-16 14:43:08 +02002897 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 +02002898 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);
Willy Tarreau03bd3952022-05-02 16:36:47 +02002899 s->flags &= ~(SF_DIRECT|SF_ASSIGNED|SF_BE_ASSIGNED|SF_FORCE_PRST|SF_IGNORE_PRST);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002900 s->flags &= ~(SF_CURR_SESS|SF_REDIRECTABLE|SF_SRV_REUSED);
2901 s->flags &= ~(SF_ERR_MASK|SF_FINST_MASK|SF_REDISP);
Christopher Faulet909f3182022-03-29 15:42:09 +02002902 s->conn_retries = 0; /* used for logging too */
Christopher Fauletae024ce2022-03-29 19:02:31 +02002903 s->conn_exp = TICK_ETERNITY;
Christopher Faulet50264b42022-03-30 19:39:30 +02002904 s->conn_err_type = STRM_ET_NONE;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002905 /* reinitialise the current rule list pointer to NULL. We are sure that
2906 * any rulelist match the NULL pointer.
2907 */
2908 s->current_rule_list = NULL;
2909
2910 s->be = strm_fe(s);
2911 s->logs.logwait = strm_fe(s)->to_log;
2912 s->logs.level = 0;
2913 stream_del_srv_conn(s);
2914 s->target = NULL;
2915 /* re-init store persistence */
2916 s->store_count = 0;
2917 s->uniq_id = global.req_count++;
2918
2919 s->req.flags |= CF_READ_DONTWAIT; /* one read is usually enough */
2920
2921 s->req.flags |= CF_WAKE_ONCE; /* need to be called again if there is some command left in the request */
2922
William Lallemandcf62f7e2018-10-26 14:47:40 +02002923 s->res.analysers &= ~AN_RES_WAIT_CLI;
2924
2925 /* We must trim any excess data from the response buffer, because we
2926 * may have blocked an invalid response from a server that we don't
Ilya Shipitsind4259502020-04-08 01:07:56 +05002927 * want to accidentally forward once we disable the analysers, nor do
William Lallemandcf62f7e2018-10-26 14:47:40 +02002928 * we want those data to come along with next response. A typical
2929 * example of such data would be from a buggy server responding to
2930 * a HEAD with some data, or sending more than the advertised
2931 * content-length.
2932 */
2933 if (unlikely(ci_data(&s->res)))
2934 b_set_data(&s->res.buf, co_data(&s->res));
2935
2936 /* Now we can realign the response buffer */
2937 c_realign_if_empty(&s->res);
2938
2939 s->req.rto = strm_fe(s)->timeout.client;
2940 s->req.wto = TICK_ETERNITY;
2941
2942 s->res.rto = TICK_ETERNITY;
2943 s->res.wto = strm_fe(s)->timeout.client;
2944
2945 s->req.rex = TICK_ETERNITY;
2946 s->req.wex = TICK_ETERNITY;
2947 s->req.analyse_exp = TICK_ETERNITY;
2948 s->res.rex = TICK_ETERNITY;
2949 s->res.wex = TICK_ETERNITY;
2950 s->res.analyse_exp = TICK_ETERNITY;
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02002951 s->scb->hcto = TICK_ETERNITY;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002952
2953 /* we're removing the analysers, we MUST re-enable events detection.
2954 * We don't enable close on the response channel since it's either
2955 * already closed, or in keep-alive with an idle connection handler.
2956 */
2957 channel_auto_read(&s->req);
2958 channel_auto_close(&s->req);
2959 channel_auto_read(&s->res);
2960
2961
2962 return 1;
2963 }
2964 return 0;
2965}
2966
William Lallemand8a022572018-10-26 14:47:35 +02002967/*
2968 * The mworker functions are used to initialize the CLI in the master process
2969 */
2970
William Lallemand309dc9a2018-10-26 14:47:45 +02002971 /*
2972 * Stop the mworker proxy
2973 */
2974void mworker_cli_proxy_stop()
2975{
William Lallemand550db6d2018-11-06 17:37:12 +01002976 if (mworker_proxy)
2977 stop_proxy(mworker_proxy);
William Lallemand309dc9a2018-10-26 14:47:45 +02002978}
2979
William Lallemand8a022572018-10-26 14:47:35 +02002980/*
2981 * Create the mworker CLI proxy
2982 */
2983int mworker_cli_proxy_create()
2984{
2985 struct mworker_proc *child;
William Lallemand744a0892018-11-22 16:46:51 +01002986 char *msg = NULL;
2987 char *errmsg = NULL;
William Lallemand8a022572018-10-26 14:47:35 +02002988
William Lallemandae787ba2021-07-29 15:13:22 +02002989 mworker_proxy = alloc_new_proxy("MASTER", PR_CAP_LISTEN|PR_CAP_INT, &errmsg);
William Lallemand8a022572018-10-26 14:47:35 +02002990 if (!mworker_proxy)
William Lallemandae787ba2021-07-29 15:13:22 +02002991 goto error_proxy;
William Lallemand8a022572018-10-26 14:47:35 +02002992
William Lallemandcf62f7e2018-10-26 14:47:40 +02002993 mworker_proxy->mode = PR_MODE_CLI;
William Lallemand8a022572018-10-26 14:47:35 +02002994 mworker_proxy->maxconn = 10; /* default to 10 concurrent connections */
2995 mworker_proxy->timeout.client = 0; /* no timeout */
2996 mworker_proxy->conf.file = strdup("MASTER");
2997 mworker_proxy->conf.line = 0;
2998 mworker_proxy->accept = frontend_accept;
2999 mworker_proxy-> lbprm.algo = BE_LB_ALGO_NONE;
3000
3001 /* Does not init the default target the CLI applet, but must be done in
3002 * the request parsing code */
3003 mworker_proxy->default_target = NULL;
3004
William Lallemand8a022572018-10-26 14:47:35 +02003005 /* create all servers using the mworker_proc list */
3006 list_for_each_entry(child, &proc_list, list) {
William Lallemand8a022572018-10-26 14:47:35 +02003007 struct server *newsrv = NULL;
3008 struct sockaddr_storage *sk;
3009 int port1, port2, port;
3010 struct protocol *proto;
William Lallemand8a022572018-10-26 14:47:35 +02003011
William Lallemanda31b09e2020-01-14 15:25:02 +01003012 /* only the workers support the master CLI */
3013 if (!(child->options & PROC_O_TYPE_WORKER))
3014 continue;
3015
William Lallemand8a022572018-10-26 14:47:35 +02003016 newsrv = new_server(mworker_proxy);
3017 if (!newsrv)
William Lallemand744a0892018-11-22 16:46:51 +01003018 goto error;
William Lallemand8a022572018-10-26 14:47:35 +02003019
3020 /* we don't know the new pid yet */
3021 if (child->pid == -1)
Willy Tarreaue8422bf2021-06-15 09:08:18 +02003022 memprintf(&msg, "cur-%d", 1);
William Lallemand8a022572018-10-26 14:47:35 +02003023 else
3024 memprintf(&msg, "old-%d", child->pid);
3025
3026 newsrv->next = mworker_proxy->srv;
3027 mworker_proxy->srv = newsrv;
3028 newsrv->conf.file = strdup(msg);
3029 newsrv->id = strdup(msg);
3030 newsrv->conf.line = 0;
3031
3032 memprintf(&msg, "sockpair@%d", child->ipc_fd[0]);
Willy Tarreau5fc93282020-09-16 18:25:03 +02003033 if ((sk = str2sa_range(msg, &port, &port1, &port2, NULL, &proto,
Willy Tarreaua93e5c72020-09-15 14:01:16 +02003034 &errmsg, NULL, NULL, PA_O_STREAM)) == 0) {
William Lallemand744a0892018-11-22 16:46:51 +01003035 goto error;
Tim Duesterhus4cae3b22018-11-22 16:46:50 +01003036 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003037 ha_free(&msg);
William Lallemand8a022572018-10-26 14:47:35 +02003038
Willy Tarreau5fc93282020-09-16 18:25:03 +02003039 if (!proto->connect) {
William Lallemand744a0892018-11-22 16:46:51 +01003040 goto error;
William Lallemand8a022572018-10-26 14:47:35 +02003041 }
3042
3043 /* no port specified */
3044 newsrv->flags |= SRV_F_MAPPORTS;
3045 newsrv->addr = *sk;
William Lallemandcf62f7e2018-10-26 14:47:40 +02003046 /* don't let the server participate to load balancing */
3047 newsrv->iweight = 0;
3048 newsrv->uweight = 0;
William Lallemand8a022572018-10-26 14:47:35 +02003049 srv_lb_commit_status(newsrv);
William Lallemand291810d2018-10-26 14:47:38 +02003050
3051 child->srv = newsrv;
William Lallemand8a022572018-10-26 14:47:35 +02003052 }
William Lallemandae787ba2021-07-29 15:13:22 +02003053
3054 mworker_proxy->next = proxies_list;
3055 proxies_list = mworker_proxy;
3056
William Lallemand8a022572018-10-26 14:47:35 +02003057 return 0;
William Lallemand744a0892018-11-22 16:46:51 +01003058
3059error:
William Lallemand744a0892018-11-22 16:46:51 +01003060
3061 list_for_each_entry(child, &proc_list, list) {
3062 free((char *)child->srv->conf.file); /* cast because of const char * */
3063 free(child->srv->id);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003064 ha_free(&child->srv);
William Lallemand744a0892018-11-22 16:46:51 +01003065 }
William Lallemandae787ba2021-07-29 15:13:22 +02003066 free_proxy(mworker_proxy);
William Lallemand744a0892018-11-22 16:46:51 +01003067 free(msg);
3068
William Lallemandae787ba2021-07-29 15:13:22 +02003069error_proxy:
3070 ha_alert("%s\n", errmsg);
3071 free(errmsg);
3072
William Lallemand744a0892018-11-22 16:46:51 +01003073 return -1;
William Lallemand8a022572018-10-26 14:47:35 +02003074}
Olivier Houchardf886e342017-04-05 22:24:59 +02003075
William Lallemandce83b4a2018-10-26 14:47:30 +02003076/*
William Lallemande7361152018-10-26 14:47:36 +02003077 * Create a new listener for the master CLI proxy
3078 */
3079int mworker_cli_proxy_new_listener(char *line)
3080{
3081 struct bind_conf *bind_conf;
3082 struct listener *l;
3083 char *err = NULL;
3084 char *args[MAX_LINE_ARGS + 1];
3085 int arg;
3086 int cur_arg;
3087
William Lallemand2e945c82019-11-25 09:58:37 +01003088 arg = 1;
William Lallemande7361152018-10-26 14:47:36 +02003089 args[0] = line;
3090
3091 /* args is a bind configuration with spaces replaced by commas */
3092 while (*line && arg < MAX_LINE_ARGS) {
3093
3094 if (*line == ',') {
3095 *line++ = '\0';
3096 while (*line == ',')
3097 line++;
William Lallemand2e945c82019-11-25 09:58:37 +01003098 args[arg++] = line;
William Lallemande7361152018-10-26 14:47:36 +02003099 }
3100 line++;
3101 }
3102
William Lallemand2e945c82019-11-25 09:58:37 +01003103 args[arg] = "\0";
William Lallemande7361152018-10-26 14:47:36 +02003104
3105 bind_conf = bind_conf_alloc(mworker_proxy, "master-socket", 0, "", xprt_get(XPRT_RAW));
William Lallemand744a0892018-11-22 16:46:51 +01003106 if (!bind_conf)
3107 goto err;
William Lallemande7361152018-10-26 14:47:36 +02003108
3109 bind_conf->level &= ~ACCESS_LVL_MASK;
3110 bind_conf->level |= ACCESS_LVL_ADMIN;
Willy Tarreaue283ee62021-03-12 15:00:57 +01003111 bind_conf->level |= ACCESS_MASTER | ACCESS_MASTER_ONLY;
Willy Tarreaudcbd7632022-07-06 11:46:34 +02003112 bind_conf->bind_tgroup = 1; // bind to a single group in any case
William Lallemande7361152018-10-26 14:47:36 +02003113
3114 if (!str2listener(args[0], mworker_proxy, bind_conf, "master-socket", 0, &err)) {
3115 ha_alert("Cannot create the listener of the master CLI\n");
William Lallemand744a0892018-11-22 16:46:51 +01003116 goto err;
William Lallemande7361152018-10-26 14:47:36 +02003117 }
3118
3119 cur_arg = 1;
3120
3121 while (*args[cur_arg]) {
William Lallemande7361152018-10-26 14:47:36 +02003122 struct bind_kw *kw;
Willy Tarreau433b05f2021-03-12 10:14:07 +01003123 const char *best;
William Lallemande7361152018-10-26 14:47:36 +02003124
3125 kw = bind_find_kw(args[cur_arg]);
3126 if (kw) {
3127 if (!kw->parse) {
3128 memprintf(&err, "'%s %s' : '%s' option is not implemented in this version (check build options).",
3129 args[0], args[1], args[cur_arg]);
3130 goto err;
3131 }
3132
Willy Tarreau4975d142021-03-13 11:00:33 +01003133 if (kw->parse(args, cur_arg, global.cli_fe, bind_conf, &err) != 0) {
William Lallemande7361152018-10-26 14:47:36 +02003134 if (err)
3135 memprintf(&err, "'%s %s' : '%s'", args[0], args[1], err);
3136 else
3137 memprintf(&err, "'%s %s' : error encountered while processing '%s'",
3138 args[0], args[1], args[cur_arg]);
3139 goto err;
3140 }
3141
3142 cur_arg += 1 + kw->skip;
3143 continue;
3144 }
3145
Willy Tarreau433b05f2021-03-12 10:14:07 +01003146 best = bind_find_best_kw(args[cur_arg]);
3147 if (best)
3148 memprintf(&err, "'%s %s' : unknown keyword '%s'. Did you mean '%s' maybe ?",
3149 args[0], args[1], args[cur_arg], best);
3150 else
3151 memprintf(&err, "'%s %s' : unknown keyword '%s'.",
3152 args[0], args[1], args[cur_arg]);
William Lallemande7361152018-10-26 14:47:36 +02003153 goto err;
3154 }
3155
3156
3157 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
William Lallemande7361152018-10-26 14:47:36 +02003158 l->accept = session_accept_fd;
3159 l->default_target = mworker_proxy->default_target;
3160 /* don't make the peers subject to global limits and don't close it in the master */
Willy Tarreau18c20d22020-10-09 16:11:46 +02003161 l->options |= LI_O_UNLIMITED;
3162 l->rx.flags |= RX_F_MWORKER; /* we are keeping this FD in the master */
William Lallemande7361152018-10-26 14:47:36 +02003163 l->nice = -64; /* we want to boost priority for local stats */
Willy Tarreau18215cb2019-02-27 16:25:28 +01003164 global.maxsock++; /* for the listening socket */
William Lallemande7361152018-10-26 14:47:36 +02003165 }
Willy Tarreau18215cb2019-02-27 16:25:28 +01003166 global.maxsock += mworker_proxy->maxconn;
William Lallemande7361152018-10-26 14:47:36 +02003167
3168 return 0;
3169
3170err:
3171 ha_alert("%s\n", err);
William Lallemand744a0892018-11-22 16:46:51 +01003172 free(err);
3173 free(bind_conf);
William Lallemande7361152018-10-26 14:47:36 +02003174 return -1;
3175
3176}
3177
3178/*
William Lallemandce83b4a2018-10-26 14:47:30 +02003179 * Create a new CLI socket using a socketpair for a worker process
3180 * <mworker_proc> is the process structure, and <proc> is the process number
3181 */
3182int mworker_cli_sockpair_new(struct mworker_proc *mworker_proc, int proc)
3183{
3184 struct bind_conf *bind_conf;
3185 struct listener *l;
3186 char *path = NULL;
3187 char *err = NULL;
3188
3189 /* master pipe to ensure the master is still alive */
3190 if (socketpair(AF_UNIX, SOCK_STREAM, 0, mworker_proc->ipc_fd) < 0) {
3191 ha_alert("Cannot create worker socketpair.\n");
3192 return -1;
3193 }
3194
3195 /* XXX: we might want to use a separate frontend at some point */
Willy Tarreau4975d142021-03-13 11:00:33 +01003196 if (!global.cli_fe) {
3197 if ((global.cli_fe = cli_alloc_fe("GLOBAL", "master-socket", 0)) == NULL) {
William Lallemandce83b4a2018-10-26 14:47:30 +02003198 ha_alert("out of memory trying to allocate the stats frontend");
William Lallemand744a0892018-11-22 16:46:51 +01003199 goto error;
William Lallemandce83b4a2018-10-26 14:47:30 +02003200 }
3201 }
3202
Willy Tarreau4975d142021-03-13 11:00:33 +01003203 bind_conf = bind_conf_alloc(global.cli_fe, "master-socket", 0, "", xprt_get(XPRT_RAW));
William Lallemand744a0892018-11-22 16:46:51 +01003204 if (!bind_conf)
3205 goto error;
3206
William Lallemandce83b4a2018-10-26 14:47:30 +02003207 bind_conf->level &= ~ACCESS_LVL_MASK;
3208 bind_conf->level |= ACCESS_LVL_ADMIN; /* TODO: need to lower the rights with a CLI keyword*/
William Lallemand2be557f2021-11-24 18:45:37 +01003209 bind_conf->level |= ACCESS_FD_LISTENERS;
Willy Tarreaudcbd7632022-07-06 11:46:34 +02003210 bind_conf->bind_tgroup = 1; // bind to a single group in any case
William Lallemandce83b4a2018-10-26 14:47:30 +02003211
William Lallemandce83b4a2018-10-26 14:47:30 +02003212 if (!memprintf(&path, "sockpair@%d", mworker_proc->ipc_fd[1])) {
3213 ha_alert("Cannot allocate listener.\n");
William Lallemand744a0892018-11-22 16:46:51 +01003214 goto error;
William Lallemandce83b4a2018-10-26 14:47:30 +02003215 }
3216
Willy Tarreau4975d142021-03-13 11:00:33 +01003217 if (!str2listener(path, global.cli_fe, bind_conf, "master-socket", 0, &err)) {
Tim Duesterhus4cae3b22018-11-22 16:46:50 +01003218 free(path);
William Lallemandce83b4a2018-10-26 14:47:30 +02003219 ha_alert("Cannot create a CLI sockpair listener for process #%d\n", proc);
William Lallemand744a0892018-11-22 16:46:51 +01003220 goto error;
William Lallemandce83b4a2018-10-26 14:47:30 +02003221 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003222 ha_free(&path);
William Lallemandce83b4a2018-10-26 14:47:30 +02003223
3224 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
William Lallemandce83b4a2018-10-26 14:47:30 +02003225 l->accept = session_accept_fd;
Willy Tarreau4975d142021-03-13 11:00:33 +01003226 l->default_target = global.cli_fe->default_target;
William Lallemanda3372292018-11-16 16:57:22 +01003227 l->options |= (LI_O_UNLIMITED | LI_O_NOSTOP);
Willy Tarreau4781b152021-04-06 13:53:36 +02003228 HA_ATOMIC_INC(&unstoppable_jobs);
William Lallemandce83b4a2018-10-26 14:47:30 +02003229 /* it's a sockpair but we don't want to keep the fd in the master */
Willy Tarreau43046fa2020-09-01 15:41:59 +02003230 l->rx.flags &= ~RX_F_INHERITED;
William Lallemandce83b4a2018-10-26 14:47:30 +02003231 l->nice = -64; /* we want to boost priority for local stats */
Willy Tarreau18215cb2019-02-27 16:25:28 +01003232 global.maxsock++; /* for the listening socket */
William Lallemandce83b4a2018-10-26 14:47:30 +02003233 }
3234
3235 return 0;
William Lallemand744a0892018-11-22 16:46:51 +01003236
3237error:
3238 close(mworker_proc->ipc_fd[0]);
3239 close(mworker_proc->ipc_fd[1]);
3240 free(err);
3241
3242 return -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02003243}
3244
William Lallemand74c24fb2016-11-21 17:18:36 +01003245static struct applet cli_applet = {
3246 .obj_type = OBJ_TYPE_APPLET,
3247 .name = "<CLI>", /* used for logging */
3248 .fct = cli_io_handler,
3249 .release = cli_release_handler,
3250};
3251
William Lallemand99e0bb92020-11-05 10:28:53 +01003252/* master CLI */
3253static struct applet mcli_applet = {
3254 .obj_type = OBJ_TYPE_APPLET,
3255 .name = "<MCLI>", /* used for logging */
3256 .fct = cli_io_handler,
3257 .release = cli_release_handler,
3258};
3259
Willy Tarreau0a739292016-11-22 20:21:23 +01003260/* register cli keywords */
3261static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +02003262 { { "help", NULL }, NULL, cli_parse_simple, NULL, NULL, NULL, ACCESS_MASTER },
3263 { { "prompt", NULL }, NULL, cli_parse_simple, NULL, NULL, NULL, ACCESS_MASTER },
3264 { { "quit", NULL }, NULL, cli_parse_simple, NULL, NULL, NULL, ACCESS_MASTER },
3265 { { "_getsocks", NULL }, NULL, _getsocks, NULL },
William Lallemandd9c28072022-02-02 11:23:58 +01003266 { { "expert-mode", NULL }, NULL, cli_parse_expert_experimental_mode, NULL, NULL, NULL, ACCESS_MASTER }, // not listed
3267 { { "experimental-mode", NULL }, NULL, cli_parse_expert_experimental_mode, NULL, NULL, NULL, ACCESS_MASTER }, // not listed
William Lallemand2a171912022-02-02 11:43:20 +01003268 { { "mcli-debug-mode", NULL }, NULL, cli_parse_expert_experimental_mode, NULL, NULL, NULL, ACCESS_MASTER_ONLY }, // not listed
Erwan Le Goas54966df2022-09-14 17:24:22 +02003269 { { "set", "anon", NULL }, "set anon <setting> [value] : change the anonymized mode setting", cli_parse_set_anon, NULL, NULL },
Erwan Le Goasfad9da82022-09-14 17:24:22 +02003270 { { "set", "global-key", NULL }, "set global-key <value> : change the global anonymizing key", cli_parse_set_global_key, NULL, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02003271 { { "set", "maxconn", "global", NULL }, "set maxconn global <value> : change the per-process maxconn setting", cli_parse_set_maxconn_global, NULL },
3272 { { "set", "rate-limit", NULL }, "set rate-limit <setting> <value> : change a rate limiting value", cli_parse_set_ratelimit, NULL },
3273 { { "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 },
3274 { { "set", "timeout", NULL }, "set timeout [cli] <delay> : change a timeout setting", cli_parse_set_timeout, NULL, NULL },
Erwan Le Goas54966df2022-09-14 17:24:22 +02003275 { { "show", "anon", NULL }, "show anon : display the current state of anonymized mode", cli_parse_show_anon, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02003276 { { "show", "env", NULL }, "show env [var] : dump environment variables known to the process", cli_parse_show_env, cli_io_handler_show_env, NULL },
3277 { { "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 },
3278 { { "show", "cli", "level", NULL }, "show cli level : display the level of the current CLI session", cli_parse_show_lvl, NULL, NULL, NULL, ACCESS_MASTER},
3279 { { "show", "fd", NULL }, "show fd [num] : dump list of file descriptors in use or a specific one", cli_parse_show_fd, cli_io_handler_show_fd, NULL },
Willy Tarreau9a7fa902022-07-15 16:51:16 +02003280 { { "show", "activity", NULL }, "show activity [-1|0|thread_num] : show per-thread activity stats (for support/developers)", cli_parse_show_activity, cli_io_handler_show_activity, NULL },
William Lallemand740629e2021-12-14 15:22:29 +01003281 { { "show", "version", NULL }, "show version : show version of the current process", cli_parse_show_version, NULL, NULL, NULL, ACCESS_MASTER },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02003282 { { "operator", NULL }, "operator : lower the level of the current CLI session to operator", cli_parse_set_lvl, NULL, NULL, NULL, ACCESS_MASTER},
3283 { { "user", NULL }, "user : lower the level of the current CLI session to user", cli_parse_set_lvl, NULL, NULL, NULL, ACCESS_MASTER},
Willy Tarreau0a739292016-11-22 20:21:23 +01003284 {{},}
3285}};
3286
Willy Tarreau0108d902018-11-25 19:14:37 +01003287INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
3288
William Lallemand74c24fb2016-11-21 17:18:36 +01003289static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau4975d142021-03-13 11:00:33 +01003290 { CFG_GLOBAL, "stats", cli_parse_global },
William Lallemand74c24fb2016-11-21 17:18:36 +01003291 { 0, NULL, NULL },
3292}};
3293
Willy Tarreau0108d902018-11-25 19:14:37 +01003294INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
3295
William Lallemand74c24fb2016-11-21 17:18:36 +01003296static struct bind_kw_list bind_kws = { "STAT", { }, {
William Lallemandf6975e92017-05-26 17:42:10 +02003297 { "level", bind_parse_level, 1 }, /* set the unix socket admin level */
3298 { "expose-fd", bind_parse_expose_fd, 1 }, /* set the unix socket expose fd rights */
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02003299 { "severity-output", bind_parse_severity_output, 1 }, /* set the severity output format */
William Lallemand74c24fb2016-11-21 17:18:36 +01003300 { NULL, NULL, 0 },
3301}};
3302
Willy Tarreau0108d902018-11-25 19:14:37 +01003303INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
William Lallemand74c24fb2016-11-21 17:18:36 +01003304
3305/*
3306 * Local variables:
3307 * c-indent-level: 8
3308 * c-basic-offset: 8
3309 * End:
3310 */