blob: 5837e1c79170683427ba54963ec851ef8edc6c35 [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 Tarreau4c7e4b72020-05-27 12:58:42 +020029#include <haproxy/api.h>
Christopher Faulet6b0a0fb2022-04-04 11:29:28 +020030#include <haproxy/applet.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020031#include <haproxy/base64.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020032#include <haproxy/cfgparse.h>
Willy Tarreauf1d32c42020-06-04 21:07:02 +020033#include <haproxy/channel.h>
Willy Tarreau4aa573d2020-06-04 18:21:56 +020034#include <haproxy/check.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020035#include <haproxy/cli.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020036#include <haproxy/compression.h>
Willy Tarreaueb92deb2020-06-04 10:53:16 +020037#include <haproxy/dns-t.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020038#include <haproxy/errors.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020039#include <haproxy/fd.h>
40#include <haproxy/freq_ctr.h>
Willy Tarreau762d7a52020-06-04 11:23:07 +020041#include <haproxy/frontend.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020042#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020043#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020044#include <haproxy/listener.h>
Willy Tarreauaeed4a82020-06-04 22:01:04 +020045#include <haproxy/log.h>
William Lallemand3ba7c7b2021-11-10 10:57:18 +010046#include <haproxy/mworker.h>
Willy Tarreaub5abe5b2020-06-04 14:07:37 +020047#include <haproxy/mworker-t.h>
Willy Tarreau225a90a2020-06-04 15:06:28 +020048#include <haproxy/pattern-t.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020049#include <haproxy/peers.h>
Willy Tarreaub2551052020-06-09 09:07:15 +020050#include <haproxy/pipe.h>
51#include <haproxy/protocol.h>
Willy Tarreaua264d962020-06-04 22:29:18 +020052#include <haproxy/proxy.h>
Willy Tarreaufe0ba0e2023-05-11 17:06:22 +020053#include <haproxy/quic_sock.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 Lallemand56f73b22022-09-24 15:56:25 +020088struct bind_conf *mcli_reload_bind_conf;
William Lallemand8a022572018-10-26 14:47:35 +020089
Willy Tarreau307dbb32022-05-05 17:45:52 +020090/* CLI context for the "show env" command */
91struct show_env_ctx {
92 char **var; /* first variable to show */
93 int show_one; /* stop after showing the first one */
94};
95
Willy Tarreau741a5a92022-05-05 17:56:58 +020096/* CLI context for the "show fd" command */
Willy Tarreau1cb041a2023-03-31 16:33:53 +020097/* flags for show_fd_ctx->show_mask */
98#define CLI_SHOWFD_F_PI 0x00000001 /* pipes */
99#define CLI_SHOWFD_F_LI 0x00000002 /* listeners */
100#define CLI_SHOWFD_F_FE 0x00000004 /* frontend conns */
101#define CLI_SHOWFD_F_SV 0x00000010 /* server-only conns */
102#define CLI_SHOWFD_F_PX 0x00000020 /* proxy-only conns */
103#define CLI_SHOWFD_F_BE 0x00000030 /* backend: srv+px */
104#define CLI_SHOWFD_F_CO 0x00000034 /* conn: be+fe */
105#define CLI_SHOWFD_F_ANY 0x0000003f /* any type */
106
Willy Tarreau741a5a92022-05-05 17:56:58 +0200107struct show_fd_ctx {
108 int fd; /* first FD to show */
109 int show_one; /* stop after showing one FD */
Willy Tarreau1cb041a2023-03-31 16:33:53 +0200110 uint show_mask; /* CLI_SHOWFD_F_xxx */
Willy Tarreau741a5a92022-05-05 17:56:58 +0200111};
112
Willy Tarreaub128f492022-05-05 19:11:05 +0200113/* CLI context for the "show cli sockets" command */
114struct show_sock_ctx {
115 struct bind_conf *bind_conf;
116 struct listener *listener;
117};
118
Willy Tarreau92fbbcc2021-05-09 21:45:29 +0200119static int cmp_kw_entries(const void *a, const void *b)
120{
121 const struct cli_kw *l = *(const struct cli_kw **)a;
122 const struct cli_kw *r = *(const struct cli_kw **)b;
123
124 return strcmp(l->usage ? l->usage : "", r->usage ? r->usage : "");
125}
126
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100127/* This will show the help message and list the commands supported at the
128 * current level that match all of the first words of <args> if args is not
129 * NULL, or all args if none matches or if args is null.
130 */
131static char *cli_gen_usage_msg(struct appctx *appctx, char * const *args)
William Lallemand74c24fb2016-11-21 17:18:36 +0100132{
Willy Tarreau92fbbcc2021-05-09 21:45:29 +0200133 struct cli_kw *entries[CLI_MAX_HELP_ENTRIES];
William Lallemand74c24fb2016-11-21 17:18:36 +0100134 struct cli_kw_list *kw_list;
135 struct cli_kw *kw;
Willy Tarreau83061a82018-07-13 11:56:34 +0200136 struct buffer *tmp = get_trash_chunk();
137 struct buffer out;
Willy Tarreaub7364582021-03-12 18:24:46 +0100138 struct { struct cli_kw *kw; int dist; } matches[CLI_MAX_MATCHES], swp;
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100139 int idx;
Willy Tarreau0b1b8302021-05-09 20:59:23 +0200140 int ishelp = 0;
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100141 int length = 0;
Willy Tarreau92fbbcc2021-05-09 21:45:29 +0200142 int help_entries = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100143
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100144 ha_free(&dynamic_usage_msg);
William Lallemand74c24fb2016-11-21 17:18:36 +0100145
Willy Tarreau0b1b8302021-05-09 20:59:23 +0200146 if (args && *args && strcmp(*args, "help") == 0) {
147 args++;
148 ishelp = 1;
149 }
150
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100151 /* first, let's measure the longest match */
152 list_for_each_entry(kw_list, &cli_keywords.list, list) {
153 for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) {
Amaury Denoyelle18487fb2021-03-18 15:32:53 +0100154 if (kw->level & ~appctx->cli_level & (ACCESS_MASTER_ONLY|ACCESS_EXPERT|ACCESS_EXPERIMENTAL))
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100155 continue;
William Lallemand2a171912022-02-02 11:43:20 +0100156 if (!(appctx->cli_level & ACCESS_MCLI_DEBUG) &&
157 (appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) ==
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100158 (ACCESS_MASTER_ONLY|ACCESS_MASTER))
159 continue;
160
161 /* OK this command is visible */
162 for (idx = 0; idx < CLI_PREFIX_KW_NB; idx++) {
163 if (!kw->str_kw[idx])
164 break; // end of keyword
165 if (!args || !args[idx] || !*args[idx])
166 break; // end of command line
167 if (strcmp(kw->str_kw[idx], args[idx]) != 0)
168 break;
169 if (idx + 1 > length)
170 length = idx + 1;
171 }
172 }
173 }
174
Willy Tarreaub7364582021-03-12 18:24:46 +0100175 /* now <length> equals the number of exactly matching words */
William Lallemand74c24fb2016-11-21 17:18:36 +0100176 chunk_reset(tmp);
Willy Tarreau0b1b8302021-05-09 20:59:23 +0200177 if (ishelp) // this is the help message.
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100178 chunk_strcat(tmp, "The following commands are valid at this level:\n");
Abhijeet Rastogic8601502022-11-17 04:42:38 -0800179 else {
180 chunk_strcat(tmp, "Unknown command: '");
181 if (args && *args)
182 chunk_strcat(tmp, *args);
183 chunk_strcat(tmp, "'");
184
185 if (!length && (!args || !*args || !**args)) // no match
186 chunk_strcat(tmp, ". Please enter one of the following commands only:\n");
187 else // partial match
188 chunk_strcat(tmp, ", but maybe one of the following ones is a better match:\n");
189 }
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100190
Willy Tarreaub7364582021-03-12 18:24:46 +0100191 for (idx = 0; idx < CLI_MAX_MATCHES; idx++) {
192 matches[idx].kw = NULL;
193 matches[idx].dist = INT_MAX;
194 }
195
196 /* In case of partial match we'll look for the best matching entries
197 * starting from position <length>
198 */
Willy Tarreau9c187472021-03-13 12:25:43 +0100199 if (args && args[length] && *args[length]) {
Willy Tarreaub7364582021-03-12 18:24:46 +0100200 list_for_each_entry(kw_list, &cli_keywords.list, list) {
201 for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) {
Amaury Denoyelle18487fb2021-03-18 15:32:53 +0100202 if (kw->level & ~appctx->cli_level & (ACCESS_MASTER_ONLY|ACCESS_EXPERT|ACCESS_EXPERIMENTAL))
Willy Tarreaub7364582021-03-12 18:24:46 +0100203 continue;
William Lallemand2a171912022-02-02 11:43:20 +0100204 if (!(appctx->cli_level & ACCESS_MCLI_DEBUG) &&
205 ((appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) ==
206 (ACCESS_MASTER_ONLY|ACCESS_MASTER)))
Willy Tarreaub7364582021-03-12 18:24:46 +0100207 continue;
208
209 for (idx = 0; idx < length; idx++) {
210 if (!kw->str_kw[idx])
211 break; // end of keyword
212 if (!args || !args[idx] || !*args[idx])
213 break; // end of command line
214 if (strcmp(kw->str_kw[idx], args[idx]) != 0)
215 break;
216 }
217
218 /* extra non-matching words are fuzzy-matched */
219 if (kw->usage && idx == length && args[idx] && *args[idx]) {
220 uint8_t word_sig[1024];
221 uint8_t list_sig[1024];
222 int dist = 0;
223 int totlen = 0;
Willy Tarreaua9aa6282021-03-15 10:00:29 +0100224 int i;
Willy Tarreaub7364582021-03-12 18:24:46 +0100225
226 /* this one matches, let's compute the distance between the two
Willy Tarreaua9aa6282021-03-15 10:00:29 +0100227 * on the remaining words. For this we're computing the signature
228 * of everything that remains and the cumulated length of the
229 * strings.
Willy Tarreaub7364582021-03-12 18:24:46 +0100230 */
Willy Tarreauc57dcfe2021-03-12 19:01:59 +0100231 memset(word_sig, 0, sizeof(word_sig));
Willy Tarreaua9aa6282021-03-15 10:00:29 +0100232 for (i = idx; i < CLI_PREFIX_KW_NB && args[i] && *args[i]; i++) {
233 update_word_fingerprint(word_sig, args[i]);
234 totlen += strlen(args[i]);
235 }
Willy Tarreauc57dcfe2021-03-12 19:01:59 +0100236
Willy Tarreaua9aa6282021-03-15 10:00:29 +0100237 memset(list_sig, 0, sizeof(list_sig));
238 for (i = idx; i < CLI_PREFIX_KW_NB && kw->str_kw[i]; i++) {
239 update_word_fingerprint(list_sig, kw->str_kw[i]);
240 totlen += strlen(kw->str_kw[i]);
Willy Tarreaub7364582021-03-12 18:24:46 +0100241 }
Willy Tarreaua9aa6282021-03-15 10:00:29 +0100242
Willy Tarreauc57dcfe2021-03-12 19:01:59 +0100243 dist = word_fingerprint_distance(word_sig, list_sig);
Willy Tarreaub7364582021-03-12 18:24:46 +0100244
245 /* insert this one at its place if relevant, in order to keep only
246 * the best matches.
247 */
248 swp.kw = kw; swp.dist = dist;
Willy Tarreaua9aa6282021-03-15 10:00:29 +0100249 if (dist < 5*totlen/2 && dist < matches[CLI_MAX_MATCHES-1].dist) {
Willy Tarreaub7364582021-03-12 18:24:46 +0100250 matches[CLI_MAX_MATCHES-1] = swp;
251 for (idx = CLI_MAX_MATCHES - 1; --idx >= 0;) {
252 if (matches[idx+1].dist >= matches[idx].dist)
253 break;
254 matches[idx+1] = matches[idx];
255 matches[idx] = swp;
256 }
257 }
258 }
259 }
260 }
261 }
262
Willy Tarreauec197e82021-03-15 10:35:04 +0100263 if (matches[0].kw) {
264 /* we have fuzzy matches, let's propose them */
265 for (idx = 0; idx < CLI_MAX_MATCHES; idx++) {
266 kw = matches[idx].kw;
267 if (!kw)
268 break;
269
270 /* stop the dump if some words look very unlikely candidates */
271 if (matches[idx].dist > 5*matches[0].dist/2)
272 break;
273
Willy Tarreau92fbbcc2021-05-09 21:45:29 +0200274 if (help_entries < CLI_MAX_HELP_ENTRIES)
275 entries[help_entries++] = kw;
Willy Tarreauec197e82021-03-15 10:35:04 +0100276 }
277 }
278
William Lallemand74c24fb2016-11-21 17:18:36 +0100279 list_for_each_entry(kw_list, &cli_keywords.list, list) {
Willy Tarreauec197e82021-03-15 10:35:04 +0100280 /* no full dump if we've already found nice candidates */
281 if (matches[0].kw)
282 break;
283
Willy Tarreau91bc3592021-03-12 15:20:39 +0100284 for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) {
William Lallemand14721be2018-10-26 14:47:37 +0200285
Willy Tarreau91bc3592021-03-12 15:20:39 +0100286 /* in a worker or normal process, don't display master-only commands
Amaury Denoyelle18487fb2021-03-18 15:32:53 +0100287 * nor expert/experimental mode commands if not in this mode.
Willy Tarreau91bc3592021-03-12 15:20:39 +0100288 */
Amaury Denoyelle18487fb2021-03-18 15:32:53 +0100289 if (kw->level & ~appctx->cli_level & (ACCESS_MASTER_ONLY|ACCESS_EXPERT|ACCESS_EXPERIMENTAL))
Willy Tarreau91bc3592021-03-12 15:20:39 +0100290 continue;
William Lallemand14721be2018-10-26 14:47:37 +0200291
William Lallemand2a171912022-02-02 11:43:20 +0100292 /* in master, if the CLI don't have the
293 * ACCESS_MCLI_DEBUG don't display commands that have
294 * neither the master bit nor the master-only bit.
Willy Tarreau91bc3592021-03-12 15:20:39 +0100295 */
William Lallemand2a171912022-02-02 11:43:20 +0100296 if (!(appctx->cli_level & ACCESS_MCLI_DEBUG) &&
297 ((appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) ==
298 (ACCESS_MASTER_ONLY|ACCESS_MASTER)))
Willy Tarreau91bc3592021-03-12 15:20:39 +0100299 continue;
Willy Tarreauabb9f9b2019-10-24 17:55:53 +0200300
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100301 for (idx = 0; idx < length; idx++) {
302 if (!kw->str_kw[idx])
303 break; // end of keyword
304 if (!args || !args[idx] || !*args[idx])
305 break; // end of command line
306 if (strcmp(kw->str_kw[idx], args[idx]) != 0)
307 break;
308 }
309
Willy Tarreau92fbbcc2021-05-09 21:45:29 +0200310 if (kw->usage && idx == length && help_entries < CLI_MAX_HELP_ENTRIES)
311 entries[help_entries++] = kw;
William Lallemand74c24fb2016-11-21 17:18:36 +0100312 }
313 }
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100314
Willy Tarreau92fbbcc2021-05-09 21:45:29 +0200315 qsort(entries, help_entries, sizeof(*entries), cmp_kw_entries);
316
317 for (idx = 0; idx < help_entries; idx++)
318 chunk_appendf(tmp, " %s\n", entries[idx]->usage);
319
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100320 /* always show the prompt/help/quit commands */
321 chunk_strcat(tmp,
Willy Tarreau0b1b8302021-05-09 20:59:23 +0200322 " help [<command>] : list matching or all commands\n"
Willy Tarreau22555572023-05-04 14:22:36 +0200323 " prompt [timed] : toggle interactive mode with prompt\n"
Willy Tarreaub205bfd2021-05-07 11:38:37 +0200324 " quit : disconnect\n");
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100325
William Lallemand74c24fb2016-11-21 17:18:36 +0100326 chunk_init(&out, NULL, 0);
327 chunk_dup(&out, tmp);
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200328 dynamic_usage_msg = out.area;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200329
Willy Tarreau1c0715b2022-05-06 17:16:35 +0200330 cli_msg(appctx, LOG_INFO, dynamic_usage_msg);
William Lallemand74c24fb2016-11-21 17:18:36 +0100331 return dynamic_usage_msg;
332}
333
334struct cli_kw* cli_find_kw(char **args)
335{
336 struct cli_kw_list *kw_list;
337 struct cli_kw *kw;/* current cli_kw */
338 char **tmp_args;
339 const char **tmp_str_kw;
340 int found = 0;
341
342 if (LIST_ISEMPTY(&cli_keywords.list))
343 return NULL;
344
345 list_for_each_entry(kw_list, &cli_keywords.list, list) {
346 kw = &kw_list->kw[0];
347 while (*kw->str_kw) {
348 tmp_args = args;
349 tmp_str_kw = kw->str_kw;
350 while (*tmp_str_kw) {
351 if (strcmp(*tmp_str_kw, *tmp_args) == 0) {
352 found = 1;
353 } else {
354 found = 0;
355 break;
356 }
357 tmp_args++;
358 tmp_str_kw++;
359 }
360 if (found)
361 return (kw);
362 kw++;
363 }
364 }
365 return NULL;
366}
367
Thierry Fourniera51a1fd2020-11-28 20:10:08 +0100368struct cli_kw* cli_find_kw_exact(char **args)
369{
370 struct cli_kw_list *kw_list;
371 int found = 0;
372 int i;
373 int j;
374
375 if (LIST_ISEMPTY(&cli_keywords.list))
376 return NULL;
377
378 list_for_each_entry(kw_list, &cli_keywords.list, list) {
379 for (i = 0; kw_list->kw[i].str_kw[0]; i++) {
380 found = 1;
381 for (j = 0; j < CLI_PREFIX_KW_NB; j++) {
382 if (args[j] == NULL && kw_list->kw[i].str_kw[j] == NULL) {
383 break;
384 }
385 if (args[j] == NULL || kw_list->kw[i].str_kw[j] == NULL) {
386 found = 0;
387 break;
388 }
389 if (strcmp(args[j], kw_list->kw[i].str_kw[j]) != 0) {
390 found = 0;
391 break;
392 }
393 }
394 if (found)
395 return &kw_list->kw[i];
396 }
397 }
398 return NULL;
399}
400
William Lallemand74c24fb2016-11-21 17:18:36 +0100401void cli_register_kw(struct cli_kw_list *kw_list)
402{
Willy Tarreau2b718102021-04-21 07:32:39 +0200403 LIST_APPEND(&cli_keywords.list, &kw_list->list);
William Lallemand74c24fb2016-11-21 17:18:36 +0100404}
405
Willy Tarreau06d0e2e2022-03-29 15:25:30 +0200406/* list all known keywords on stdout, one per line */
407void cli_list_keywords(void)
408{
409 struct cli_kw_list *kw_list;
Willy Tarreau44651712022-03-30 12:02:35 +0200410 struct cli_kw *kwp, *kwn, *kw;
Willy Tarreau06d0e2e2022-03-29 15:25:30 +0200411 int idx;
412
Willy Tarreau44651712022-03-30 12:02:35 +0200413 for (kwn = kwp = NULL;; kwp = kwn) {
414 list_for_each_entry(kw_list, &cli_keywords.list, list) {
415 /* note: we sort based on the usage message when available,
416 * otherwise we fall back to the first keyword.
417 */
418 for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) {
419 if (strordered(kwp ? kwp->usage ? kwp->usage : kwp->str_kw[0] : NULL,
420 kw->usage ? kw->usage : kw->str_kw[0],
421 kwn != kwp ? kwn->usage ? kwn->usage : kwn->str_kw[0] : NULL))
422 kwn = kw;
Willy Tarreau06d0e2e2022-03-29 15:25:30 +0200423 }
Willy Tarreau44651712022-03-30 12:02:35 +0200424 }
425
426 if (kwn == kwp)
427 break;
428
429 for (idx = 0; kwn->str_kw[idx]; idx++) {
430 printf("%s ", kwn->str_kw[idx]);
Willy Tarreau06d0e2e2022-03-29 15:25:30 +0200431 }
Willy Tarreau44651712022-03-30 12:02:35 +0200432 if (kwn->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER))
433 printf("[MASTER] ");
434 if (!(kwn->level & ACCESS_MASTER_ONLY))
435 printf("[WORKER] ");
436 if (kwn->level & ACCESS_EXPERT)
437 printf("[EXPERT] ");
438 if (kwn->level & ACCESS_EXPERIMENTAL)
439 printf("[EXPERIM] ");
440 printf("\n");
Willy Tarreau06d0e2e2022-03-29 15:25:30 +0200441 }
442}
William Lallemand74c24fb2016-11-21 17:18:36 +0100443
444/* allocate a new stats frontend named <name>, and return it
445 * (or NULL in case of lack of memory).
446 */
Willy Tarreau4975d142021-03-13 11:00:33 +0100447static struct proxy *cli_alloc_fe(const char *name, const char *file, int line)
William Lallemand74c24fb2016-11-21 17:18:36 +0100448{
449 struct proxy *fe;
450
451 fe = calloc(1, sizeof(*fe));
452 if (!fe)
453 return NULL;
454
455 init_new_proxy(fe);
Olivier Houchardfbc74e82017-11-24 16:54:05 +0100456 fe->next = proxies_list;
457 proxies_list = fe;
Willy Tarreau69530f52023-04-28 09:16:15 +0200458 fe->last_change = ns_to_sec(now_ns);
William Lallemand74c24fb2016-11-21 17:18:36 +0100459 fe->id = strdup("GLOBAL");
William Lallemand6640dbb2021-08-13 15:31:33 +0200460 fe->cap = PR_CAP_FE|PR_CAP_INT;
William Lallemand74c24fb2016-11-21 17:18:36 +0100461 fe->maxconn = 10; /* default to 10 concurrent connections */
462 fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */
463 fe->conf.file = strdup(file);
464 fe->conf.line = line;
465 fe->accept = frontend_accept;
466 fe->default_target = &cli_applet.obj_type;
467
468 /* the stats frontend is the only one able to assign ID #0 */
469 fe->conf.id.key = fe->uuid = 0;
470 eb32_insert(&used_proxy_id, &fe->conf.id);
471 return fe;
472}
473
474/* This function parses a "stats" statement in the "global" section. It returns
475 * -1 if there is any error, otherwise zero. If it returns -1, it will write an
476 * error message into the <err> buffer which will be preallocated. The trailing
477 * '\n' must not be written. The function must be called with <args> pointing to
478 * the first word after "stats".
479 */
Willy Tarreau4975d142021-03-13 11:00:33 +0100480static int cli_parse_global(char **args, int section_type, struct proxy *curpx,
481 const struct proxy *defpx, const char *file, int line,
482 char **err)
William Lallemand74c24fb2016-11-21 17:18:36 +0100483{
484 struct bind_conf *bind_conf;
485 struct listener *l;
486
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100487 if (strcmp(args[1], "socket") == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100488 int cur_arg;
489
490 if (*args[2] == 0) {
491 memprintf(err, "'%s %s' in global section expects an address or a path to a UNIX socket", args[0], args[1]);
492 return -1;
493 }
494
Willy Tarreau4975d142021-03-13 11:00:33 +0100495 if (!global.cli_fe) {
496 if ((global.cli_fe = cli_alloc_fe("GLOBAL", file, line)) == NULL) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100497 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
498 return -1;
499 }
500 }
501
Willy Tarreau4975d142021-03-13 11:00:33 +0100502 bind_conf = bind_conf_alloc(global.cli_fe, file, line, args[2], xprt_get(XPRT_RAW));
Christopher Faulet0c6d1dc2021-04-12 16:56:37 +0200503 if (!bind_conf) {
504 memprintf(err, "'%s %s' : out of memory trying to allocate a bind_conf", args[0], args[1]);
505 return -1;
506 }
William Lallemand07a62f72017-05-24 00:57:40 +0200507 bind_conf->level &= ~ACCESS_LVL_MASK;
508 bind_conf->level |= ACCESS_LVL_OPER; /* default access level */
William Lallemand74c24fb2016-11-21 17:18:36 +0100509
Willy Tarreau4975d142021-03-13 11:00:33 +0100510 if (!str2listener(args[2], global.cli_fe, bind_conf, file, line, err)) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100511 memprintf(err, "parsing [%s:%d] : '%s %s' : %s\n",
512 file, line, args[0], args[1], err && *err ? *err : "error");
513 return -1;
514 }
515
516 cur_arg = 3;
517 while (*args[cur_arg]) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100518 struct bind_kw *kw;
Willy Tarreau433b05f2021-03-12 10:14:07 +0100519 const char *best;
Willy Tarreau0a1e1cb2021-11-20 20:10:41 +0100520 int code;
William Lallemand74c24fb2016-11-21 17:18:36 +0100521
522 kw = bind_find_kw(args[cur_arg]);
523 if (kw) {
524 if (!kw->parse) {
525 memprintf(err, "'%s %s' : '%s' option is not implemented in this version (check build options).",
526 args[0], args[1], args[cur_arg]);
527 return -1;
528 }
529
Willy Tarreau0a1e1cb2021-11-20 20:10:41 +0100530 code = kw->parse(args, cur_arg, global.cli_fe, bind_conf, err);
531
532 /* FIXME: this is ugly, we don't have a way to collect warnings,
533 * yet some important bind keywords may report warnings that we
534 * must display.
535 */
536 if (((code & (ERR_WARN|ERR_FATAL|ERR_ALERT)) == ERR_WARN) && err && *err) {
537 indent_msg(err, 2);
538 ha_warning("parsing [%s:%d] : '%s %s' : %s\n", file, line, args[0], args[1], *err);
539 ha_free(err);
540 }
541
542 if (code & ~ERR_WARN) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100543 if (err && *err)
544 memprintf(err, "'%s %s' : '%s'", args[0], args[1], *err);
545 else
546 memprintf(err, "'%s %s' : error encountered while processing '%s'",
547 args[0], args[1], args[cur_arg]);
548 return -1;
549 }
550
551 cur_arg += 1 + kw->skip;
552 continue;
553 }
554
Willy Tarreau433b05f2021-03-12 10:14:07 +0100555 best = bind_find_best_kw(args[cur_arg]);
556 if (best)
557 memprintf(err, "'%s %s' : unknown keyword '%s'. Did you mean '%s' maybe ?",
558 args[0], args[1], args[cur_arg], best);
559 else
560 memprintf(err, "'%s %s' : unknown keyword '%s'.",
561 args[0], args[1], args[cur_arg]);
William Lallemand74c24fb2016-11-21 17:18:36 +0100562 return -1;
563 }
564
Willy Tarreau30836152023-01-12 19:10:17 +0100565 bind_conf->accept = session_accept_fd;
Willy Tarreau7dbd4182023-01-12 19:32:45 +0100566 bind_conf->nice = -64; /* we want to boost priority for local stats */
Willy Tarreau17146802023-01-12 19:58:42 +0100567 bind_conf->options |= BC_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreaud5983ce2023-01-12 19:18:34 +0100568
William Lallemand74c24fb2016-11-21 17:18:36 +0100569 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
Willy Tarreau18215cb2019-02-27 16:25:28 +0100570 global.maxsock++; /* for the listening socket */
William Lallemand74c24fb2016-11-21 17:18:36 +0100571 }
572 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100573 else if (strcmp(args[1], "timeout") == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100574 unsigned timeout;
575 const char *res = parse_time_err(args[2], &timeout, TIME_UNIT_MS);
576
Willy Tarreau9faebe32019-06-07 19:00:37 +0200577 if (res == PARSE_TIME_OVER) {
578 memprintf(err, "timer overflow in argument '%s' to '%s %s' (maximum value is 2147483647 ms or ~24.8 days)",
579 args[2], args[0], args[1]);
580 return -1;
581 }
582 else if (res == PARSE_TIME_UNDER) {
583 memprintf(err, "timer underflow in argument '%s' to '%s %s' (minimum non-null value is 1 ms)",
584 args[2], args[0], args[1]);
585 return -1;
586 }
587 else if (res) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100588 memprintf(err, "'%s %s' : unexpected character '%c'", args[0], args[1], *res);
589 return -1;
590 }
591
592 if (!timeout) {
593 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
594 return -1;
595 }
Willy Tarreau4975d142021-03-13 11:00:33 +0100596 if (!global.cli_fe) {
597 if ((global.cli_fe = cli_alloc_fe("GLOBAL", file, line)) == NULL) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100598 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
599 return -1;
600 }
601 }
Willy Tarreau4975d142021-03-13 11:00:33 +0100602 global.cli_fe->timeout.client = MS_TO_TICKS(timeout);
William Lallemand74c24fb2016-11-21 17:18:36 +0100603 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100604 else if (strcmp(args[1], "maxconn") == 0) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100605 int maxconn = atol(args[2]);
606
607 if (maxconn <= 0) {
608 memprintf(err, "'%s %s' expects a positive value", args[0], args[1]);
609 return -1;
610 }
611
Willy Tarreau4975d142021-03-13 11:00:33 +0100612 if (!global.cli_fe) {
613 if ((global.cli_fe = cli_alloc_fe("GLOBAL", file, line)) == NULL) {
William Lallemand74c24fb2016-11-21 17:18:36 +0100614 memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]);
615 return -1;
616 }
617 }
Willy Tarreau4975d142021-03-13 11:00:33 +0100618 global.cli_fe->maxconn = maxconn;
William Lallemand74c24fb2016-11-21 17:18:36 +0100619 }
Willy Tarreau94f763b2022-07-15 17:14:40 +0200620 else if (strcmp(args[1], "bind-process") == 0) {
Willy Tarreau023c3112023-04-23 09:40:56 +0200621 memprintf(err, "'%s %s' is not supported anymore.", args[0], args[1]);
Willy Tarreau94f763b2022-07-15 17:14:40 +0200622 return -1;
William Lallemand74c24fb2016-11-21 17:18:36 +0100623 }
624 else {
625 memprintf(err, "'%s' only supports 'socket', 'maxconn', 'bind-process' and 'timeout' (got '%s')", args[0], args[1]);
626 return -1;
627 }
628 return 0;
629}
630
William Lallemand33d29e22019-04-01 11:30:06 +0200631/*
William Lallemand9a37fd02019-04-12 16:09:24 +0200632 * This function exports the bound addresses of a <frontend> in the environment
633 * variable <varname>. Those addresses are separated by semicolons and prefixed
634 * with their type (abns@, unix@, sockpair@ etc)
635 * Return -1 upon error, 0 otherwise
William Lallemand33d29e22019-04-01 11:30:06 +0200636 */
William Lallemand9a37fd02019-04-12 16:09:24 +0200637int listeners_setenv(struct proxy *frontend, const char *varname)
William Lallemand33d29e22019-04-01 11:30:06 +0200638{
639 struct buffer *trash = get_trash_chunk();
640 struct bind_conf *bind_conf;
641
William Lallemand9a37fd02019-04-12 16:09:24 +0200642 if (frontend) {
643 list_for_each_entry(bind_conf, &frontend->conf.bind, by_fe) {
William Lallemand33d29e22019-04-01 11:30:06 +0200644 struct listener *l;
645
646 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
647 char addr[46];
648 char port[6];
649
William Lallemand620072b2019-04-12 16:09:25 +0200650 /* separate listener by semicolons */
651 if (trash->data)
652 chunk_appendf(trash, ";");
653
Willy Tarreau37159062020-08-27 07:48:42 +0200654 if (l->rx.addr.ss_family == AF_UNIX) {
William Lallemand33d29e22019-04-01 11:30:06 +0200655 const struct sockaddr_un *un;
656
Willy Tarreau37159062020-08-27 07:48:42 +0200657 un = (struct sockaddr_un *)&l->rx.addr;
William Lallemand33d29e22019-04-01 11:30:06 +0200658 if (un->sun_path[0] == '\0') {
659 chunk_appendf(trash, "abns@%s", un->sun_path+1);
660 } else {
661 chunk_appendf(trash, "unix@%s", un->sun_path);
662 }
Willy Tarreau37159062020-08-27 07:48:42 +0200663 } else if (l->rx.addr.ss_family == AF_INET) {
664 addr_to_str(&l->rx.addr, addr, sizeof(addr));
665 port_to_str(&l->rx.addr, port, sizeof(port));
William Lallemand33d29e22019-04-01 11:30:06 +0200666 chunk_appendf(trash, "ipv4@%s:%s", addr, port);
Willy Tarreau37159062020-08-27 07:48:42 +0200667 } else if (l->rx.addr.ss_family == AF_INET6) {
668 addr_to_str(&l->rx.addr, addr, sizeof(addr));
669 port_to_str(&l->rx.addr, port, sizeof(port));
William Lallemand33d29e22019-04-01 11:30:06 +0200670 chunk_appendf(trash, "ipv6@[%s]:%s", addr, port);
Willy Tarreau37159062020-08-27 07:48:42 +0200671 } else if (l->rx.addr.ss_family == AF_CUST_SOCKPAIR) {
672 chunk_appendf(trash, "sockpair@%d", ((struct sockaddr_in *)&l->rx.addr)->sin_addr.s_addr);
William Lallemand33d29e22019-04-01 11:30:06 +0200673 }
William Lallemand33d29e22019-04-01 11:30:06 +0200674 }
675 }
676 trash->area[trash->data++] = '\0';
William Lallemand9a37fd02019-04-12 16:09:24 +0200677 if (setenv(varname, trash->area, 1) < 0)
William Lallemand33d29e22019-04-01 11:30:06 +0200678 return -1;
679 }
680
681 return 0;
682}
683
William Lallemand9a37fd02019-04-12 16:09:24 +0200684int cli_socket_setenv()
685{
Willy Tarreau4975d142021-03-13 11:00:33 +0100686 if (listeners_setenv(global.cli_fe, "HAPROXY_CLI") < 0)
William Lallemand9a37fd02019-04-12 16:09:24 +0200687 return -1;
688 if (listeners_setenv(mworker_proxy, "HAPROXY_MASTER_CLI") < 0)
689 return -1;
690
691 return 0;
692}
693
William Lallemand33d29e22019-04-01 11:30:06 +0200694REGISTER_CONFIG_POSTPARSER("cli", cli_socket_setenv);
695
Willy Tarreaude57a572016-11-23 17:01:39 +0100696/* Verifies that the CLI at least has a level at least as high as <level>
697 * (typically ACCESS_LVL_ADMIN). Returns 1 if OK, otherwise 0. In case of
698 * failure, an error message is prepared and the appctx's state is adjusted
699 * to print it so that a return 1 is enough to abort any processing.
700 */
701int cli_has_level(struct appctx *appctx, int level)
702{
Willy Tarreaude57a572016-11-23 17:01:39 +0100703
William Lallemandf630d012018-12-13 09:05:44 +0100704 if ((appctx->cli_level & ACCESS_LVL_MASK) < level) {
Willy Tarreau4975d142021-03-13 11:00:33 +0100705 cli_err(appctx, cli_permission_denied_msg);
Willy Tarreaude57a572016-11-23 17:01:39 +0100706 return 0;
707 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100708 return 1;
709}
710
William Lallemandb7ea1412018-12-13 09:05:47 +0100711/* same as cli_has_level but for the CLI proxy and without error message */
712int pcli_has_level(struct stream *s, int level)
713{
714 if ((s->pcli_flags & ACCESS_LVL_MASK) < level) {
715 return 0;
716 }
717 return 1;
718}
719
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200720/* Returns severity_output for the current session if set, or default for the socket */
721static int cli_get_severity_output(struct appctx *appctx)
722{
723 if (appctx->cli_severity_output)
724 return appctx->cli_severity_output;
Willy Tarreau0698c802022-05-11 14:09:57 +0200725 return strm_li(appctx_strm(appctx))->bind_conf->severity_output;
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200726}
William Lallemand74c24fb2016-11-21 17:18:36 +0100727
Willy Tarreau41908562016-11-24 16:23:38 +0100728/* Processes the CLI interpreter on the stats socket. This function is called
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100729 * from the CLI's IO handler running in an appctx context. The function returns
730 * 1 if the request was understood, otherwise zero (in which case an error
731 * message will be displayed). It is called with appctx->st0
Willy Tarreau41908562016-11-24 16:23:38 +0100732 * set to CLI_ST_GETREQ and presets ->st2 to 0 so that parsers don't have to do
733 * it. It will possilbly leave st0 to CLI_ST_CALLBACK if the keyword needs to
734 * have its own I/O handler called again. Most of the time, parsers will only
735 * set st0 to CLI_ST_PRINT and put their message to be displayed into cli.msg.
Willy Tarreaueaffde32016-12-16 17:59:25 +0100736 * If a keyword parser is NULL and an I/O handler is declared, the I/O handler
737 * will automatically be used.
William Lallemand74c24fb2016-11-21 17:18:36 +0100738 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200739static int cli_parse_request(struct appctx *appctx)
William Lallemand74c24fb2016-11-21 17:18:36 +0100740{
Willy Tarreauf14c7572021-03-13 10:59:23 +0100741 char *args[MAX_CLI_ARGS + 1], *p, *end, *payload = NULL;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200742 int i = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100743 struct cli_kw *kw;
William Lallemand74c24fb2016-11-21 17:18:36 +0100744
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200745 p = appctx->chunk->area;
746 end = p + appctx->chunk->data;
William Lallemand74c24fb2016-11-21 17:18:36 +0100747
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200748 /*
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200749 * Get pointers on words.
750 * One extra slot is reserved to store a pointer on a null byte.
751 */
Willy Tarreauf14c7572021-03-13 10:59:23 +0100752 while (i < MAX_CLI_ARGS && p < end) {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200753 int j, k;
William Lallemand74c24fb2016-11-21 17:18:36 +0100754
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200755 /* skip leading spaces/tabs */
756 p += strspn(p, " \t");
757 if (!*p)
758 break;
Willy Tarreauf2dda522021-09-17 11:07:45 +0200759
760 if (strcmp(p, PAYLOAD_PATTERN) == 0) {
761 /* payload pattern recognized here, this is not an arg anymore,
762 * the payload starts at the first byte that follows the zero
763 * after the pattern.
764 */
765 payload = p + strlen(PAYLOAD_PATTERN) + 1;
766 break;
767 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100768
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200769 args[i] = p;
Yves Lafonb08c6d02020-06-08 16:08:06 +0200770 while (1) {
771 p += strcspn(p, " \t\\");
772 /* escaped chars using backlashes (\) */
773 if (*p == '\\') {
774 if (!*++p)
775 break;
776 if (!*++p)
777 break;
778 } else {
779 break;
780 }
781 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200782 *p++ = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100783
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200784 /* unescape backslashes (\) */
785 for (j = 0, k = 0; args[i][k]; k++) {
786 if (args[i][k] == '\\') {
787 if (args[i][k + 1] == '\\')
788 k++;
Dragan Dosena1c35ab2016-11-24 11:33:12 +0100789 else
790 continue;
791 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200792 args[i][j] = args[i][k];
William Lallemand74c24fb2016-11-21 17:18:36 +0100793 j++;
794 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200795 args[i][j] = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100796
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200797 i++;
798 }
799 /* fill unused slots */
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200800 p = appctx->chunk->area + appctx->chunk->data;
Willy Tarreauf14c7572021-03-13 10:59:23 +0100801 for (; i < MAX_CLI_ARGS + 1; i++)
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200802 args[i] = p;
Willy Tarreau41908562016-11-24 16:23:38 +0100803
Willy Tarreau21d71252023-05-11 16:32:56 +0200804 if (!**args)
805 return 0;
806
Christopher Faulet6852b332024-02-20 18:30:16 +0100807 if (appctx->st1 & APPCTX_CLI_ST1_SHUT_EXPECTED) {
808 /* The previous command line was finished by a \n in non-interactive mode.
809 * It should not be followed by another command line. In non-interactive mode,
810 * only one line should be processed. Because of a bug, it is not respected.
811 * So emit a warning, only once in the process life, to warn users their script
812 * must be updated.
813 */
814 appctx->st1 &= ~APPCTX_CLI_ST1_SHUT_EXPECTED;
815 if (ONLY_ONCE()) {
816 ha_warning("Commands sent to the CLI were chained using a new line character while in non-interactive mode."
817 " This is not reliable, not officially supported and will not be supported anymore in future versions. "
818 "Please use ';' to delimit commands instead.");
819 }
820 }
821
822
Willy Tarreau41908562016-11-24 16:23:38 +0100823 kw = cli_find_kw(args);
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100824 if (!kw ||
825 (kw->level & ~appctx->cli_level & ACCESS_MASTER_ONLY) ||
William Lallemand2a171912022-02-02 11:43:20 +0100826 (!(appctx->cli_level & ACCESS_MCLI_DEBUG) &&
827 (appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) == (ACCESS_MASTER_ONLY|ACCESS_MASTER))) {
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100828 /* keyword not found in this mode */
Willy Tarreaub96a74c2021-03-12 17:13:28 +0100829 cli_gen_usage_msg(appctx, args);
Willy Tarreau41908562016-11-24 16:23:38 +0100830 return 0;
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100831 }
William Lallemand14721be2018-10-26 14:47:37 +0200832
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100833 /* don't handle expert mode commands if not in this mode. */
834 if (kw->level & ~appctx->cli_level & ACCESS_EXPERT) {
835 cli_err(appctx, "This command is restricted to expert mode only.\n");
Willy Tarreauabb9f9b2019-10-24 17:55:53 +0200836 return 0;
Willy Tarreauf3697dd2021-03-12 15:57:47 +0100837 }
Willy Tarreauabb9f9b2019-10-24 17:55:53 +0200838
Amaury Denoyelle18487fb2021-03-18 15:32:53 +0100839 if (kw->level & ~appctx->cli_level & ACCESS_EXPERIMENTAL) {
840 cli_err(appctx, "This command is restricted to experimental mode only.\n");
841 return 0;
842 }
843
Amaury Denoyellef4929922021-05-05 16:29:23 +0200844 if (kw->level == ACCESS_EXPERT)
845 mark_tainted(TAINTED_CLI_EXPERT_MODE);
846 else if (kw->level == ACCESS_EXPERIMENTAL)
847 mark_tainted(TAINTED_CLI_EXPERIMENTAL_MODE);
848
Willy Tarreau41908562016-11-24 16:23:38 +0100849 appctx->io_handler = kw->io_handler;
Emeric Brund6871f72017-06-29 19:54:13 +0200850 appctx->io_release = kw->io_release;
William Lallemand90b098c2019-10-25 21:10:14 +0200851
852 if (kw->parse && kw->parse(args, payload, appctx, kw->private) != 0)
853 goto fail;
854
855 /* kw->parse could set its own io_handler or io_release handler */
856 if (!appctx->io_handler)
857 goto fail;
858
859 appctx->st0 = CLI_ST_CALLBACK;
860 return 1;
861fail:
862 appctx->io_handler = NULL;
863 appctx->io_release = NULL;
Willy Tarreau41908562016-11-24 16:23:38 +0100864 return 1;
William Lallemand74c24fb2016-11-21 17:18:36 +0100865}
866
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200867/* prepends then outputs the argument msg with a syslog-type severity depending on severity_output value */
Christopher Faulete8ee27b2023-05-05 10:56:00 +0200868static int cli_output_msg(struct appctx *appctx, const char *msg, int severity, int severity_output)
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200869{
Willy Tarreau83061a82018-07-13 11:56:34 +0200870 struct buffer *tmp;
Willy Tarreau0239f322024-02-08 18:15:23 +0100871 struct ist imsg;
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200872
873 tmp = get_trash_chunk();
874 chunk_reset(tmp);
875
Willy Tarreau0239f322024-02-08 18:15:23 +0100876 if (likely(severity_output == CLI_SEVERITY_NONE))
877 goto send_it;
878
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200879 if (severity < 0 || severity > 7) {
Christopher Faulet767a84b2017-11-24 16:50:31 +0100880 ha_warning("socket command feedback with invalid severity %d", severity);
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200881 chunk_printf(tmp, "[%d]: ", severity);
882 }
883 else {
884 switch (severity_output) {
885 case CLI_SEVERITY_NUMBER:
886 chunk_printf(tmp, "[%d]: ", severity);
887 break;
888 case CLI_SEVERITY_STRING:
889 chunk_printf(tmp, "[%s]: ", log_levels[severity]);
890 break;
891 default:
Christopher Faulet767a84b2017-11-24 16:50:31 +0100892 ha_warning("Unrecognized severity output %d", severity_output);
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200893 }
894 }
Willy Tarreau0239f322024-02-08 18:15:23 +0100895 send_it:
896 /* the vast majority of messages have their trailing LF but a few are
897 * still missing it, and very rare ones might even have two. For this
898 * reason, we'll first delete the trailing LFs if present, then
899 * systematically append one.
900 */
901 for (imsg = ist(msg); imsg.len > 0 && imsg.ptr[imsg.len - 1] == '\n'; imsg.len--)
902 ;
903
904 chunk_istcat(tmp, imsg);
905 chunk_istcat(tmp, ist("\n"));
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200906
Christopher Faulete8ee27b2023-05-05 10:56:00 +0200907 return applet_putchk(appctx, tmp);
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200908}
909
Willy Tarreau4596fe22022-05-17 19:07:51 +0200910/* This I/O handler runs as an applet embedded in a stream connector. It is
William Lallemand74c24fb2016-11-21 17:18:36 +0100911 * used to processes I/O from/to the stats unix socket. The system relies on a
912 * state machine handling requests and various responses. We read a request,
913 * then we process it and send the response, and we possibly display a prompt.
914 * Then we can read again. The state is stored in appctx->st0 and is one of the
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100915 * CLI_ST_* constants. appctx->st1 is used to indicate whether prompt is enabled
William Lallemand74c24fb2016-11-21 17:18:36 +0100916 * or not.
917 */
918static void cli_io_handler(struct appctx *appctx)
919{
Willy Tarreauc12b3212022-05-27 11:08:15 +0200920 struct stconn *sc = appctx_sc(appctx);
Willy Tarreau475e4632022-05-27 10:26:46 +0200921 struct channel *req = sc_oc(sc);
922 struct channel *res = sc_ic(sc);
923 struct bind_conf *bind_conf = strm_li(__sc_strm(sc))->bind_conf;
William Lallemand74c24fb2016-11-21 17:18:36 +0100924 int reql;
925 int len;
Christopher Faulet6852b332024-02-20 18:30:16 +0100926 int lf = 0;
William Lallemand74c24fb2016-11-21 17:18:36 +0100927
Christopher Faulet1fb97e42023-04-07 18:07:51 +0200928 if (unlikely(se_fl_test(appctx->sedesc, (SE_FL_EOS|SE_FL_ERROR|SE_FL_SHR|SE_FL_SHW)))) {
929 co_skip(sc_oc(sc), co_data(sc_oc(sc)));
William Lallemand74c24fb2016-11-21 17:18:36 +0100930 goto out;
Christopher Faulet1fb97e42023-04-07 18:07:51 +0200931 }
William Lallemand74c24fb2016-11-21 17:18:36 +0100932
Joseph Herlant008b3ce2018-11-25 12:51:45 -0800933 /* Check if the input buffer is available. */
Christopher Faulet2fd0c762023-03-31 10:25:07 +0200934 if (!b_size(&res->buf)) {
Christopher Faulet7b3d38a2023-05-05 11:28:45 +0200935 sc_need_room(sc, 0);
Christopher Fauleta73e59b2016-12-09 17:30:18 +0100936 goto out;
937 }
938
William Lallemand74c24fb2016-11-21 17:18:36 +0100939 while (1) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100940 if (appctx->st0 == CLI_ST_INIT) {
Andjelko Iharosc4df59e2017-07-20 11:59:48 +0200941 /* reset severity to default at init */
942 appctx->cli_severity_output = bind_conf->severity_output;
Willy Tarreau1addf8b2022-08-18 18:04:37 +0200943 applet_reset_svcctx(appctx);
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100944 appctx->st0 = CLI_ST_GETREQ;
William Lallemandf630d012018-12-13 09:05:44 +0100945 appctx->cli_level = bind_conf->level;
William Lallemand74c24fb2016-11-21 17:18:36 +0100946 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100947 else if (appctx->st0 == CLI_ST_END) {
Christopher Faulet2fd0c762023-03-31 10:25:07 +0200948 se_fl_set(appctx->sedesc, SE_FL_EOS);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200949 free_trash_chunk(appctx->chunk);
Willy Tarreau18b2a9d2021-05-04 16:27:45 +0200950 appctx->chunk = NULL;
William Lallemand74c24fb2016-11-21 17:18:36 +0100951 break;
952 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100953 else if (appctx->st0 == CLI_ST_GETREQ) {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200954 char *str;
955
956 /* use a trash chunk to store received data */
957 if (!appctx->chunk) {
958 appctx->chunk = alloc_trash_chunk();
959 if (!appctx->chunk) {
Christopher Faulet2fd0c762023-03-31 10:25:07 +0200960 se_fl_set(appctx->sedesc, SE_FL_ERROR);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200961 appctx->st0 = CLI_ST_END;
962 continue;
963 }
964 }
965
Willy Tarreau843b7cb2018-07-13 10:54:26 +0200966 str = appctx->chunk->area + appctx->chunk->data;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +0200967
William Lallemand74c24fb2016-11-21 17:18:36 +0100968 /* ensure we have some output room left in the event we
969 * would want to return some info right after parsing.
970 */
Willy Tarreau475e4632022-05-27 10:26:46 +0200971 if (buffer_almost_full(sc_ib(sc))) {
Christopher Faulet7b3d38a2023-05-05 11:28:45 +0200972 sc_need_room(sc, b_size(&res->buf) / 2);
William Lallemand74c24fb2016-11-21 17:18:36 +0100973 break;
974 }
975
Willy Tarreau0011c252022-01-19 17:23:52 +0100976 /* payload doesn't take escapes nor does it end on semi-colons, so
977 * we use the regular getline. Normal mode however must stop on
978 * LFs and semi-colons that are not prefixed by a backslash. Note
979 * that we reserve one byte at the end to insert a trailing nul byte.
980 */
981
982 if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD)
Willy Tarreau475e4632022-05-27 10:26:46 +0200983 reql = co_getline(sc_oc(sc), str,
Willy Tarreau0011c252022-01-19 17:23:52 +0100984 appctx->chunk->size - appctx->chunk->data - 1);
985 else
Willy Tarreau475e4632022-05-27 10:26:46 +0200986 reql = co_getdelim(sc_oc(sc), str,
Willy Tarreau0011c252022-01-19 17:23:52 +0100987 appctx->chunk->size - appctx->chunk->data - 1,
988 "\n;", '\\');
989
William Lallemand74c24fb2016-11-21 17:18:36 +0100990 if (reql <= 0) { /* closed or EOL not found */
991 if (reql == 0)
992 break;
Christopher Faulet2fd0c762023-03-31 10:25:07 +0200993 se_fl_set(appctx->sedesc, SE_FL_ERROR);
Willy Tarreau3b6e5472016-11-24 15:53:53 +0100994 appctx->st0 = CLI_ST_END;
William Lallemand74c24fb2016-11-21 17:18:36 +0100995 continue;
996 }
997
Christopher Faulet6852b332024-02-20 18:30:16 +0100998 if (str[reql-1] == '\n')
999 lf = 1;
William Lallemand74c24fb2016-11-21 17:18:36 +01001000
1001 /* now it is time to check that we have a full line,
1002 * remove the trailing \n and possibly \r, then cut the
1003 * line.
1004 */
1005 len = reql - 1;
Christopher Fauleta10ee922024-02-20 16:37:11 +01001006 if (str[len] != '\n' && str[len] != ';') {
Christopher Faulet2fd0c762023-03-31 10:25:07 +02001007 se_fl_set(appctx->sedesc, SE_FL_ERROR);
Christopher Fauletbb373bf2024-03-28 14:52:29 +01001008 if (reql == appctx->chunk->size - appctx->chunk->data - 1) {
1009 cli_err(appctx, "The command is too big for the buffer size. Please change tune.bufsize in the configuration to use a bigger command.\n");
1010 co_skip(sc_oc(sc), co_data(sc_oc(sc)));
1011 goto cli_output;
1012 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001013 appctx->st0 = CLI_ST_END;
William Lallemand74c24fb2016-11-21 17:18:36 +01001014 continue;
1015 }
1016
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001017 if (len && str[len-1] == '\r')
William Lallemand74c24fb2016-11-21 17:18:36 +01001018 len--;
1019
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001020 str[len] = '\0';
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001021 appctx->chunk->data += len;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001022
1023 if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) {
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001024 appctx->chunk->area[appctx->chunk->data] = '\n';
1025 appctx->chunk->area[appctx->chunk->data + 1] = 0;
1026 appctx->chunk->data++;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001027 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001028
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001029 appctx->st0 = CLI_ST_PROMPT;
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001030
1031 if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) {
1032 /* empty line */
1033 if (!len) {
1034 /* remove the last two \n */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001035 appctx->chunk->data -= 2;
1036 appctx->chunk->area[appctx->chunk->data] = 0;
Willy Tarreauf3697dd2021-03-12 15:57:47 +01001037 cli_parse_request(appctx);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001038 chunk_reset(appctx->chunk);
1039 /* NB: cli_sock_parse_request() may have put
1040 * another CLI_ST_O_* into appctx->st0.
1041 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001042 appctx->st1 &= ~APPCTX_CLI_ST1_PAYLOAD;
Christopher Faulet6852b332024-02-20 18:30:16 +01001043 if (!(appctx->st1 & APPCTX_CLI_ST1_PROMPT) && lf)
1044 appctx->st1 |= APPCTX_CLI_ST1_SHUT_EXPECTED;
William Lallemand74c24fb2016-11-21 17:18:36 +01001045 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001046 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001047 else {
1048 /*
1049 * Look for the "payload start" pattern at the end of a line
1050 * Its location is not remembered here, this is just to switch
1051 * to a gathering mode.
William Lallemand74c24fb2016-11-21 17:18:36 +01001052 */
Willy Tarreauf2dda522021-09-17 11:07:45 +02001053 if (strcmp(appctx->chunk->area + appctx->chunk->data - strlen(PAYLOAD_PATTERN), PAYLOAD_PATTERN) == 0) {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001054 appctx->st1 |= APPCTX_CLI_ST1_PAYLOAD;
Willy Tarreauf2dda522021-09-17 11:07:45 +02001055 appctx->chunk->data++; // keep the trailing \0 after '<<'
1056 }
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001057 else {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001058 /* no payload, the command is complete: parse the request */
Willy Tarreauf3697dd2021-03-12 15:57:47 +01001059 cli_parse_request(appctx);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001060 chunk_reset(appctx->chunk);
Christopher Faulet6852b332024-02-20 18:30:16 +01001061 if (!(appctx->st1 & APPCTX_CLI_ST1_PROMPT) && lf)
1062 appctx->st1 |= APPCTX_CLI_ST1_SHUT_EXPECTED;
Andjelko Iharosc3680ec2017-07-20 16:49:14 +02001063 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001064 }
1065
1066 /* re-adjust req buffer */
Willy Tarreau475e4632022-05-27 10:26:46 +02001067 co_skip(sc_oc(sc), reql);
Christopher Faulet9a790f62023-03-16 14:40:03 +01001068 sc_opposite(sc)->flags |= SC_FL_RCV_ONCE; /* we plan to read small requests */
William Lallemand74c24fb2016-11-21 17:18:36 +01001069 }
1070 else { /* output functions */
Willy Tarreau1c0715b2022-05-06 17:16:35 +02001071 struct cli_print_ctx *ctx;
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001072 const char *msg;
1073 int sev;
Christopher Fauletbb373bf2024-03-28 14:52:29 +01001074 cli_output:
William Lallemand74c24fb2016-11-21 17:18:36 +01001075 switch (appctx->st0) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001076 case CLI_ST_PROMPT:
William Lallemand74c24fb2016-11-21 17:18:36 +01001077 break;
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001078 case CLI_ST_PRINT: /* print const message in msg */
1079 case CLI_ST_PRINT_ERR: /* print const error in msg */
1080 case CLI_ST_PRINT_DYN: /* print dyn message in msg, free */
Amaury Denoyelle56f50a02022-11-10 11:47:36 +01001081 case CLI_ST_PRINT_DYNERR: /* print dyn error in err, free */
Amaury Denoyelle24e99612022-11-10 14:24:51 +01001082 case CLI_ST_PRINT_UMSG: /* print usermsgs_ctx and reset it */
1083 case CLI_ST_PRINT_UMSGERR: /* print usermsgs_ctx as error and reset it */
Willy Tarreau1c0715b2022-05-06 17:16:35 +02001084 /* the message is in the svcctx */
1085 ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001086 if (appctx->st0 == CLI_ST_PRINT || appctx->st0 == CLI_ST_PRINT_ERR) {
1087 sev = appctx->st0 == CLI_ST_PRINT_ERR ?
Willy Tarreau1c0715b2022-05-06 17:16:35 +02001088 LOG_ERR : ctx->severity;
1089 msg = ctx->msg;
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001090 }
Amaury Denoyelle56f50a02022-11-10 11:47:36 +01001091 else if (appctx->st0 == CLI_ST_PRINT_DYN || appctx->st0 == CLI_ST_PRINT_DYNERR) {
1092 sev = appctx->st0 == CLI_ST_PRINT_DYNERR ?
Willy Tarreau1c0715b2022-05-06 17:16:35 +02001093 LOG_ERR : ctx->severity;
1094 msg = ctx->err;
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001095 if (!msg) {
1096 sev = LOG_ERR;
1097 msg = "Out of memory.\n";
1098 }
1099 }
Amaury Denoyelle24e99612022-11-10 14:24:51 +01001100 else if (appctx->st0 == CLI_ST_PRINT_UMSG ||
1101 appctx->st0 == CLI_ST_PRINT_UMSGERR) {
1102 sev = appctx->st0 == CLI_ST_PRINT_UMSGERR ?
1103 LOG_ERR : ctx->severity;
1104 msg = usermsgs_str();
1105 }
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001106 else {
1107 sev = LOG_ERR;
1108 msg = "Internal error.\n";
1109 }
Aurélien Nephtalic511b7c2018-04-16 18:50:19 +02001110
Christopher Faulete8ee27b2023-05-05 10:56:00 +02001111 if (cli_output_msg(appctx, msg, sev, cli_get_severity_output(appctx)) != -1) {
Amaury Denoyelle56f50a02022-11-10 11:47:36 +01001112 if (appctx->st0 == CLI_ST_PRINT_DYN ||
1113 appctx->st0 == CLI_ST_PRINT_DYNERR) {
Willy Tarreau1c0715b2022-05-06 17:16:35 +02001114 ha_free(&ctx->err);
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001115 }
Amaury Denoyelle24e99612022-11-10 14:24:51 +01001116 else if (appctx->st0 == CLI_ST_PRINT_UMSG ||
1117 appctx->st0 == CLI_ST_PRINT_UMSGERR) {
1118 usermsgs_clr(NULL);
1119 }
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001120 appctx->st0 = CLI_ST_PROMPT;
William Lallemand74c24fb2016-11-21 17:18:36 +01001121 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001122 break;
Willy Tarreaud50c7fe2019-08-09 09:57:36 +02001123
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001124 case CLI_ST_CALLBACK: /* use custom pointer */
William Lallemand74c24fb2016-11-21 17:18:36 +01001125 if (appctx->io_handler)
1126 if (appctx->io_handler(appctx)) {
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001127 appctx->st0 = CLI_ST_PROMPT;
William Lallemand74c24fb2016-11-21 17:18:36 +01001128 if (appctx->io_release) {
1129 appctx->io_release(appctx);
1130 appctx->io_release = NULL;
1131 }
1132 }
1133 break;
1134 default: /* abnormal state */
Willy Tarreaud869e132022-05-17 18:05:31 +02001135 se_fl_set(appctx->sedesc, SE_FL_ERROR);
William Lallemand74c24fb2016-11-21 17:18:36 +01001136 break;
1137 }
1138
1139 /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001140 if (appctx->st0 == CLI_ST_PROMPT) {
Willy Tarreau22555572023-05-04 14:22:36 +02001141 char prompt_buf[20];
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001142 const char *prompt = "";
1143
1144 if (appctx->st1 & APPCTX_CLI_ST1_PROMPT) {
1145 /*
1146 * when entering a payload with interactive mode, change the prompt
1147 * to emphasize that more data can still be sent
1148 */
Willy Tarreau843b7cb2018-07-13 10:54:26 +02001149 if (appctx->chunk->data && appctx->st1 & APPCTX_CLI_ST1_PAYLOAD)
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001150 prompt = "+ ";
Willy Tarreau22555572023-05-04 14:22:36 +02001151 else if (appctx->st1 & APPCTX_CLI_ST1_TIMED) {
1152 uint up = ns_to_sec(now_ns - start_time_ns);
1153 snprintf(prompt_buf, sizeof(prompt_buf),
1154 "\n[%u:%02u:%02u:%02u]> ",
1155 (up / 86400), (up / 3600) % 24, (up / 60) % 60, up % 60);
1156 prompt = prompt_buf;
1157 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001158 else
1159 prompt = "\n> ";
1160 }
1161 else {
William Lallemandad032882019-07-01 10:56:15 +02001162 if (!(appctx->st1 & (APPCTX_CLI_ST1_PAYLOAD|APPCTX_CLI_ST1_NOLF)))
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001163 prompt = "\n";
1164 }
1165
Willy Tarreau1addf8b2022-08-18 18:04:37 +02001166 if (applet_putstr(appctx, prompt) != -1) {
1167 applet_reset_svcctx(appctx);
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001168 appctx->st0 = CLI_ST_GETREQ;
Willy Tarreau1addf8b2022-08-18 18:04:37 +02001169 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001170 }
1171
1172 /* If the output functions are still there, it means they require more room. */
Christopher Faulet4167e052022-06-01 17:25:42 +02001173 if (appctx->st0 >= CLI_ST_OUTPUT) {
1174 applet_wont_consume(appctx);
William Lallemand74c24fb2016-11-21 17:18:36 +01001175 break;
Christopher Faulet4167e052022-06-01 17:25:42 +02001176 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001177
Christopher Faulet2fd0c762023-03-31 10:25:07 +02001178 /* Now we close the output if we're not in interactive
1179 * mode and the request buffer is empty. This still
1180 * allows pipelined requests to be sent in
1181 * non-interactive mode.
William Lallemand74c24fb2016-11-21 17:18:36 +01001182 */
Christopher Faulet2fd0c762023-03-31 10:25:07 +02001183 if (!(appctx->st1 & APPCTX_CLI_ST1_PROMPT) && !co_data(req) && (!(appctx->st1 & APPCTX_CLI_ST1_PAYLOAD))) {
1184 se_fl_set(appctx->sedesc, SE_FL_EOI);
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001185 appctx->st0 = CLI_ST_END;
William Lallemand74c24fb2016-11-21 17:18:36 +01001186 continue;
1187 }
1188
1189 /* switch state back to GETREQ to read next requests */
Willy Tarreau1addf8b2022-08-18 18:04:37 +02001190 applet_reset_svcctx(appctx);
Willy Tarreau3b6e5472016-11-24 15:53:53 +01001191 appctx->st0 = CLI_ST_GETREQ;
Christopher Faulet4167e052022-06-01 17:25:42 +02001192 applet_will_consume(appctx);
Christopher Faulet806c0d62023-09-06 09:17:33 +02001193 applet_expect_data(appctx);
Christopher Faulet4167e052022-06-01 17:25:42 +02001194
William Lallemandad032882019-07-01 10:56:15 +02001195 /* reactivate the \n at the end of the response for the next command */
1196 appctx->st1 &= ~APPCTX_CLI_ST1_NOLF;
Willy Tarreaufa7b4f62022-01-19 17:11:36 +01001197
1198 /* this forces us to yield between pipelined commands and
1199 * avoid extremely long latencies (e.g. "del map" etc). In
1200 * addition this increases the likelihood that the stream
1201 * refills the buffer with new bytes in non-interactive
1202 * mode, avoiding to close on apparently empty commands.
1203 */
Willy Tarreau475e4632022-05-27 10:26:46 +02001204 if (co_data(sc_oc(sc))) {
Willy Tarreaufa7b4f62022-01-19 17:11:36 +01001205 appctx_wakeup(appctx);
1206 goto out;
1207 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001208 }
1209 }
1210
William Lallemand74c24fb2016-11-21 17:18:36 +01001211 out:
Christopher Faulet845f7c42023-04-18 18:36:43 +02001212 return;
William Lallemand74c24fb2016-11-21 17:18:36 +01001213}
1214
Willy Tarreau4596fe22022-05-17 19:07:51 +02001215/* This is called when the stream connector is closed. For instance, upon an
William Lallemand74c24fb2016-11-21 17:18:36 +01001216 * external abort, we won't call the i/o handler anymore so we may need to
1217 * remove back references to the stream currently being dumped.
1218 */
1219static void cli_release_handler(struct appctx *appctx)
1220{
Willy Tarreau18b2a9d2021-05-04 16:27:45 +02001221 free_trash_chunk(appctx->chunk);
1222 appctx->chunk = NULL;
1223
William Lallemand74c24fb2016-11-21 17:18:36 +01001224 if (appctx->io_release) {
1225 appctx->io_release(appctx);
1226 appctx->io_release = NULL;
1227 }
Amaury Denoyelle56f50a02022-11-10 11:47:36 +01001228 else if (appctx->st0 == CLI_ST_PRINT_DYN || appctx->st0 == CLI_ST_PRINT_DYNERR) {
Willy Tarreau1c0715b2022-05-06 17:16:35 +02001229 struct cli_print_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
1230
1231 ha_free(&ctx->err);
William Lallemand74c24fb2016-11-21 17:18:36 +01001232 }
Amaury Denoyelle24e99612022-11-10 14:24:51 +01001233 else if (appctx->st0 == CLI_ST_PRINT_UMSG || appctx->st0 == CLI_ST_PRINT_UMSGERR) {
1234 usermsgs_clr(NULL);
1235 }
William Lallemand74c24fb2016-11-21 17:18:36 +01001236}
1237
1238/* This function dumps all environmnent variables to the buffer. It returns 0
1239 * if the output buffer is full and it needs to be called again, otherwise
Willy Tarreau307dbb32022-05-05 17:45:52 +02001240 * non-zero. It takes its context from the show_env_ctx in svcctx, and will
1241 * start from ->var and dump only one variable if ->show_one is set.
William Lallemand74c24fb2016-11-21 17:18:36 +01001242 */
Willy Tarreau0a739292016-11-22 20:21:23 +01001243static int cli_io_handler_show_env(struct appctx *appctx)
William Lallemand74c24fb2016-11-21 17:18:36 +01001244{
Willy Tarreau307dbb32022-05-05 17:45:52 +02001245 struct show_env_ctx *ctx = appctx->svcctx;
Willy Tarreauc12b3212022-05-27 11:08:15 +02001246 struct stconn *sc = appctx_sc(appctx);
Willy Tarreau307dbb32022-05-05 17:45:52 +02001247 char **var = ctx->var;
William Lallemand74c24fb2016-11-21 17:18:36 +01001248
Christopher Faulet87633c32023-04-03 18:32:50 +02001249 /* FIXME: Don't watch the other side !*/
Christopher Faulet208c7122023-04-13 16:16:15 +02001250 if (unlikely(sc_opposite(sc)->flags & SC_FL_SHUT_DONE))
William Lallemand74c24fb2016-11-21 17:18:36 +01001251 return 1;
1252
1253 chunk_reset(&trash);
1254
1255 /* we have two inner loops here, one for the proxy, the other one for
1256 * the buffer.
1257 */
Willy Tarreauf6710f82016-12-16 17:45:44 +01001258 while (*var) {
1259 chunk_printf(&trash, "%s\n", *var);
William Lallemand74c24fb2016-11-21 17:18:36 +01001260
Willy Tarreaud0a06d52022-05-18 15:07:19 +02001261 if (applet_putchk(appctx, &trash) == -1)
William Lallemand74c24fb2016-11-21 17:18:36 +01001262 return 0;
Willy Tarreaud0a06d52022-05-18 15:07:19 +02001263
Willy Tarreau307dbb32022-05-05 17:45:52 +02001264 if (ctx->show_one)
William Lallemand74c24fb2016-11-21 17:18:36 +01001265 break;
Willy Tarreauf6710f82016-12-16 17:45:44 +01001266 var++;
Willy Tarreau307dbb32022-05-05 17:45:52 +02001267 ctx->var = var;
William Lallemand74c24fb2016-11-21 17:18:36 +01001268 }
1269
1270 /* dump complete */
1271 return 1;
1272}
1273
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001274/* This function dumps all file descriptors states (or the requested one) to
1275 * the buffer. It returns 0 if the output buffer is full and it needs to be
Willy Tarreau741a5a92022-05-05 17:56:58 +02001276 * called again, otherwise non-zero. It takes its context from the show_fd_ctx
1277 * in svcctx, only dumps one entry if ->show_one is non-zero, and (re)starts
1278 * from ->fd.
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001279 */
1280static int cli_io_handler_show_fd(struct appctx *appctx)
1281{
Willy Tarreauc12b3212022-05-27 11:08:15 +02001282 struct stconn *sc = appctx_sc(appctx);
Willy Tarreau741a5a92022-05-05 17:56:58 +02001283 struct show_fd_ctx *fdctx = appctx->svcctx;
Willy Tarreau1cb041a2023-03-31 16:33:53 +02001284 uint match = fdctx->show_mask;
Willy Tarreau741a5a92022-05-05 17:56:58 +02001285 int fd = fdctx->fd;
Willy Tarreauca1b1572018-12-18 15:45:11 +01001286 int ret = 1;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001287
Christopher Faulet87633c32023-04-03 18:32:50 +02001288 /* FIXME: Don't watch the other side !*/
Christopher Faulet208c7122023-04-13 16:16:15 +02001289 if (unlikely(sc_opposite(sc)->flags & SC_FL_SHUT_DONE))
Willy Tarreauca1b1572018-12-18 15:45:11 +01001290 goto end;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001291
1292 chunk_reset(&trash);
1293
Willy Tarreauca1b1572018-12-18 15:45:11 +01001294 /* isolate the threads once per round. We're limited to a buffer worth
1295 * of output anyway, it cannot last very long.
1296 */
1297 thread_isolate();
1298
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001299 /* we have two inner loops here, one for the proxy, the other one for
1300 * the buffer.
1301 */
Aurélien Nephtali498a1152018-03-09 18:51:16 +01001302 while (fd >= 0 && fd < global.maxsock) {
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001303 struct fdtab fdt;
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001304 const struct listener *li = NULL;
1305 const struct server *sv = NULL;
1306 const struct proxy *px = NULL;
1307 const struct connection *conn = NULL;
Willy Tarreaua833cd92018-03-29 13:19:37 +02001308 const struct mux_ops *mux = NULL;
Willy Tarreau37be9532021-01-20 14:40:04 +01001309 const struct xprt_ops *xprt = NULL;
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001310 const void *ctx = NULL;
Willy Tarreau37be9532021-01-20 14:40:04 +01001311 const void *xprt_ctx = NULL;
Willy Tarreaufe0ba0e2023-05-11 17:06:22 +02001312 const struct quic_conn *qc = NULL;
Willy Tarreau286ec682017-08-09 16:35:44 +02001313 uint32_t conn_flags = 0;
Christopher Fauletd52f2ad2023-03-14 15:48:06 +01001314 uint8_t conn_err = 0;
Willy Tarreaue9ca8072018-12-19 18:40:58 +01001315 int is_back = 0;
Willy Tarreau8050efe2021-01-21 08:26:06 +01001316 int suspicious = 0;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001317
1318 fdt = fdtab[fd];
1319
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001320 /* When DEBUG_FD is set, we also report closed FDs that have a
1321 * non-null event count to detect stuck ones.
1322 */
Willy Tarreau13c1a012020-06-29 14:23:31 +02001323 if (!fdt.owner) {
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001324#ifdef DEBUG_FD
Willy Tarreau13c1a012020-06-29 14:23:31 +02001325 if (!fdt.event_count)
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001326#endif
Willy Tarreau13c1a012020-06-29 14:23:31 +02001327 goto skip; // closed
1328 }
Willy Tarreau586f71b2020-12-11 15:54:36 +01001329 else if (fdt.iocb == sock_conn_iocb) {
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001330 conn = (const struct connection *)fdt.owner;
1331 conn_flags = conn->flags;
Christopher Fauletd52f2ad2023-03-14 15:48:06 +01001332 conn_err = conn->err_code;
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001333 mux = conn->mux;
1334 ctx = conn->ctx;
Willy Tarreau37be9532021-01-20 14:40:04 +01001335 xprt = conn->xprt;
1336 xprt_ctx = conn->xprt_ctx;
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001337 li = objt_listener(conn->target);
1338 sv = objt_server(conn->target);
1339 px = objt_proxy(conn->target);
1340 is_back = conn_is_back(conn);
Willy Tarreaudacfde42021-01-21 09:07:29 +01001341 if (atleast2(fdt.thread_mask))
1342 suspicious = 1;
1343 if (conn->handle.fd != fd)
1344 suspicious = 1;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001345 }
Willy Tarreaufe0ba0e2023-05-11 17:06:22 +02001346#if defined(USE_QUIC)
1347 else if (fdt.iocb == quic_conn_sock_fd_iocb) {
1348 qc = fdtab[fd].owner;
1349 li = qc ? qc->li : NULL;
1350 xprt_ctx = qc ? qc->xprt_ctx : NULL;
1351 conn = qc ? qc->conn : NULL;
1352 xprt = conn ? conn->xprt : NULL; // in fact it's &ssl_quic
1353 mux = conn ? conn->mux : NULL;
1354 /* quic_conns don't always have a connection but they
1355 * always have an xprt_ctx.
1356 */
1357 }
1358 else if (fdt.iocb == quic_lstnr_sock_fd_iocb) {
1359 li = objt_listener(fdtab[fd].owner);
1360 }
1361#endif
Willy Tarreaua74cb382020-10-15 21:29:49 +02001362 else if (fdt.iocb == sock_accept_iocb)
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001363 li = fdt.owner;
1364
Willy Tarreaufe0ba0e2023-05-11 17:06:22 +02001365 if (!(((conn || xprt_ctx) &&
Willy Tarreau1cb041a2023-03-31 16:33:53 +02001366 ((match & CLI_SHOWFD_F_SV && sv) ||
1367 (match & CLI_SHOWFD_F_PX && px) ||
1368 (match & CLI_SHOWFD_F_FE && li))) ||
1369 (!conn &&
1370 ((match & CLI_SHOWFD_F_LI && li) ||
1371 (match & CLI_SHOWFD_F_PI && !li /* only pipes match this */))))) {
1372 /* not a desired type */
1373 goto skip;
1374 }
1375
Willy Tarreaudacfde42021-01-21 09:07:29 +01001376 if (!fdt.thread_mask)
1377 suspicious = 1;
1378
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001379 chunk_printf(&trash,
Willy Tarreau677c0062023-03-02 15:05:31 +01001380 " %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 prmsk=0x%lx pwmsk=0x%lx owner=%p iocb=%p(",
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001381 fd,
1382 fdt.state,
Willy Tarreau184b2122021-04-07 08:48:12 +02001383 (fdt.state & FD_CLONED) ? 'C' : 'c',
1384 (fdt.state & FD_LINGER_RISK) ? 'L' : 'l',
Willy Tarreauf5090652021-04-06 17:23:40 +02001385 (fdt.state & FD_POLL_HUP) ? 'H' : 'h',
1386 (fdt.state & FD_POLL_ERR) ? 'E' : 'e',
1387 (fdt.state & FD_POLL_OUT) ? 'O' : 'o',
1388 (fdt.state & FD_POLL_PRI) ? 'P' : 'p',
1389 (fdt.state & FD_POLL_IN) ? 'I' : 'i',
Willy Tarreau184b2122021-04-07 08:48:12 +02001390 (fdt.state & FD_EV_SHUT_W) ? 'S' : 's',
1391 (fdt.state & FD_EV_READY_W) ? 'R' : 'r',
1392 (fdt.state & FD_EV_ACTIVE_W) ? 'A' : 'a',
1393 (fdt.state & FD_EV_SHUT_R) ? 'S' : 's',
1394 (fdt.state & FD_EV_READY_R) ? 'R' : 'r',
1395 (fdt.state & FD_EV_ACTIVE_R) ? 'A' : 'a',
Willy Tarreauc2431822022-07-08 10:23:01 +02001396 (fdt.refc_tgid >> 4) & 0xffff,
1397 (fdt.refc_tgid) & 0xffff,
Willy Tarreauc754b342018-03-30 15:00:15 +02001398 fdt.thread_mask, fdt.update_mask,
Willy Tarreau677c0062023-03-02 15:05:31 +01001399 polled_mask[fd].poll_recv,
1400 polled_mask[fd].poll_send,
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001401 fdt.owner,
Willy Tarreaucf12f2e2020-03-03 17:29:58 +01001402 fdt.iocb);
1403 resolve_sym_name(&trash, NULL, fdt.iocb);
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001404
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001405 if (!fdt.owner) {
1406 chunk_appendf(&trash, ")");
1407 }
Willy Tarreaufe0ba0e2023-05-11 17:06:22 +02001408 else if (conn) {
Christopher Fauletd52f2ad2023-03-14 15:48:06 +01001409 chunk_appendf(&trash, ") back=%d cflg=0x%08x cerr=%d", is_back, conn_flags, conn_err);
Willy Tarreaudacfde42021-01-21 09:07:29 +01001410
Willy Tarreaufe0ba0e2023-05-11 17:06:22 +02001411 if (!(conn->flags & CO_FL_FDLESS) && conn->handle.fd != fd) {
Willy Tarreaudacfde42021-01-21 09:07:29 +01001412 chunk_appendf(&trash, " fd=%d(BOGUS)", conn->handle.fd);
1413 suspicious = 1;
Willy Tarreaufe0ba0e2023-05-11 17:06:22 +02001414 } else if ((conn->flags & CO_FL_FDLESS) && (qc != conn->handle.qc)) {
1415 chunk_appendf(&trash, " qc=%p(BOGUS)", conn->handle.qc);
1416 suspicious = 1;
Willy Tarreaued989202021-02-05 10:54:52 +01001417 } else {
1418 struct sockaddr_storage sa;
1419 socklen_t salen;
1420
1421 salen = sizeof(sa);
1422 if (getsockname(fd, (struct sockaddr *)&sa, &salen) != -1) {
1423 if (sa.ss_family == AF_INET)
1424 chunk_appendf(&trash, " fam=ipv4 lport=%d", ntohs(((const struct sockaddr_in *)&sa)->sin_port));
1425 else if (sa.ss_family == AF_INET6)
1426 chunk_appendf(&trash, " fam=ipv6 lport=%d", ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port));
1427 else if (sa.ss_family == AF_UNIX)
1428 chunk_appendf(&trash, " fam=unix");
1429 }
1430
1431 salen = sizeof(sa);
1432 if (getpeername(fd, (struct sockaddr *)&sa, &salen) != -1) {
1433 if (sa.ss_family == AF_INET)
1434 chunk_appendf(&trash, " rport=%d", ntohs(((const struct sockaddr_in *)&sa)->sin_port));
1435 else if (sa.ss_family == AF_INET6)
1436 chunk_appendf(&trash, " rport=%d", ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port));
1437 }
Willy Tarreaudacfde42021-01-21 09:07:29 +01001438 }
1439
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001440 if (px)
1441 chunk_appendf(&trash, " px=%s", px->id);
1442 else if (sv)
Willy Tarreaudfb34a82021-07-06 11:41:10 +02001443 chunk_appendf(&trash, " sv=%s/%s", sv->proxy->id, sv->id);
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001444 else if (li)
1445 chunk_appendf(&trash, " fe=%s", li->bind_conf->frontend->id);
Willy Tarreau35b1b482018-03-28 18:41:30 +02001446
Willy Tarreaub011d8f2018-03-30 14:41:19 +02001447 if (mux) {
Willy Tarreau3d2ee552018-12-19 14:12:10 +01001448 chunk_appendf(&trash, " mux=%s ctx=%p", mux->name, ctx);
Willy Tarreaufe0ba0e2023-05-11 17:06:22 +02001449 if (!ctx && !qc)
Willy Tarreaudacfde42021-01-21 09:07:29 +01001450 suspicious = 1;
Willy Tarreaub011d8f2018-03-30 14:41:19 +02001451 if (mux->show_fd)
Willy Tarreau8050efe2021-01-21 08:26:06 +01001452 suspicious |= mux->show_fd(&trash, fdt.owner);
Willy Tarreaub011d8f2018-03-30 14:41:19 +02001453 }
Willy Tarreau35b1b482018-03-28 18:41:30 +02001454 else
1455 chunk_appendf(&trash, " nomux");
Willy Tarreau37be9532021-01-20 14:40:04 +01001456
1457 chunk_appendf(&trash, " xprt=%s", xprt ? xprt->name : "");
Willy Tarreau108a2712021-01-20 15:30:56 +01001458 if (xprt) {
1459 if (xprt_ctx || xprt->show_fd)
1460 chunk_appendf(&trash, " xprt_ctx=%p", xprt_ctx);
1461 if (xprt->show_fd)
Willy Tarreau8050efe2021-01-21 08:26:06 +01001462 suspicious |= xprt->show_fd(&trash, conn, xprt_ctx);
Willy Tarreau108a2712021-01-20 15:30:56 +01001463 }
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001464 }
Willy Tarreaufe0ba0e2023-05-11 17:06:22 +02001465 else if (li && !xprt_ctx) {
Willy Tarreaued989202021-02-05 10:54:52 +01001466 struct sockaddr_storage sa;
1467 socklen_t salen;
1468
Willy Tarreaucf12f2e2020-03-03 17:29:58 +01001469 chunk_appendf(&trash, ") l.st=%s fe=%s",
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001470 listener_state_str(li),
1471 li->bind_conf->frontend->id);
Willy Tarreaued989202021-02-05 10:54:52 +01001472
1473 salen = sizeof(sa);
1474 if (getsockname(fd, (struct sockaddr *)&sa, &salen) != -1) {
1475 if (sa.ss_family == AF_INET)
1476 chunk_appendf(&trash, " fam=ipv4 lport=%d", ntohs(((const struct sockaddr_in *)&sa)->sin_port));
1477 else if (sa.ss_family == AF_INET6)
1478 chunk_appendf(&trash, " fam=ipv6 lport=%d", ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port));
1479 else if (sa.ss_family == AF_UNIX)
1480 chunk_appendf(&trash, " fam=unix");
1481 }
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001482 }
Willy Tarreaueb0595d2021-01-20 14:13:46 +01001483 else
1484 chunk_appendf(&trash, ")");
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001485
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001486#ifdef DEBUG_FD
1487 chunk_appendf(&trash, " evcnt=%u", fdtab[fd].event_count);
Willy Tarreaudacfde42021-01-21 09:07:29 +01001488 if (fdtab[fd].event_count >= 1000000)
1489 suspicious = 1;
Willy Tarreau38e8a1c2020-06-23 10:04:54 +02001490#endif
Willy Tarreau8050efe2021-01-21 08:26:06 +01001491 chunk_appendf(&trash, "%s\n", suspicious ? " !" : "");
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001492
Willy Tarreaud0a06d52022-05-18 15:07:19 +02001493 if (applet_putchk(appctx, &trash) == -1) {
Willy Tarreau741a5a92022-05-05 17:56:58 +02001494 fdctx->fd = fd;
Willy Tarreauca1b1572018-12-18 15:45:11 +01001495 ret = 0;
1496 break;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001497 }
1498 skip:
Willy Tarreau741a5a92022-05-05 17:56:58 +02001499 if (fdctx->show_one)
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001500 break;
1501
1502 fd++;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001503 }
1504
Willy Tarreauca1b1572018-12-18 15:45:11 +01001505 end:
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001506 /* dump complete */
Willy Tarreauca1b1572018-12-18 15:45:11 +01001507
1508 thread_release();
1509 return ret;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001510}
1511
William Lallemandeceddf72016-12-15 18:06:44 +01001512/*
Willy Tarreau3af9d832016-12-16 12:58:09 +01001513 * CLI IO handler for `show cli sockets`.
Willy Tarreaub128f492022-05-05 19:11:05 +02001514 * Uses the svcctx as a show_sock_ctx to store/retrieve the bind_conf and the
1515 * listener pointers.
William Lallemandeceddf72016-12-15 18:06:44 +01001516 */
1517static int cli_io_handler_show_cli_sock(struct appctx *appctx)
1518{
Willy Tarreaub128f492022-05-05 19:11:05 +02001519 struct show_sock_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
1520 struct bind_conf *bind_conf = ctx->bind_conf;
William Lallemandeceddf72016-12-15 18:06:44 +01001521
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001522 if (!global.cli_fe)
1523 goto done;
William Lallemandeceddf72016-12-15 18:06:44 +01001524
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001525 chunk_reset(&trash);
William Lallemandeceddf72016-12-15 18:06:44 +01001526
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001527 if (!bind_conf) {
1528 /* first call */
Willy Tarreaud0a06d52022-05-18 15:07:19 +02001529 if (applet_putstr(appctx, "# socket lvl processes\n") == -1)
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001530 goto full;
1531 bind_conf = LIST_ELEM(global.cli_fe->conf.bind.n, typeof(bind_conf), by_fe);
1532 }
William Lallemandeceddf72016-12-15 18:06:44 +01001533
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001534 list_for_each_entry_from(bind_conf, &global.cli_fe->conf.bind, by_fe) {
Willy Tarreaub128f492022-05-05 19:11:05 +02001535 struct listener *l = ctx->listener;
William Lallemandeceddf72016-12-15 18:06:44 +01001536
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001537 if (!l)
1538 l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind);
William Lallemandeceddf72016-12-15 18:06:44 +01001539
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001540 list_for_each_entry_from(l, &bind_conf->listeners, by_bind) {
1541 char addr[46];
1542 char port[6];
William Lallemandeceddf72016-12-15 18:06:44 +01001543
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001544 if (l->rx.addr.ss_family == AF_UNIX) {
1545 const struct sockaddr_un *un;
William Lallemandeceddf72016-12-15 18:06:44 +01001546
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001547 un = (struct sockaddr_un *)&l->rx.addr;
1548 if (un->sun_path[0] == '\0') {
1549 chunk_appendf(&trash, "abns@%s ", un->sun_path+1);
1550 } else {
1551 chunk_appendf(&trash, "unix@%s ", un->sun_path);
1552 }
1553 } else if (l->rx.addr.ss_family == AF_INET) {
1554 addr_to_str(&l->rx.addr, addr, sizeof(addr));
1555 port_to_str(&l->rx.addr, port, sizeof(port));
1556 chunk_appendf(&trash, "ipv4@%s:%s ", addr, port);
1557 } else if (l->rx.addr.ss_family == AF_INET6) {
1558 addr_to_str(&l->rx.addr, addr, sizeof(addr));
1559 port_to_str(&l->rx.addr, port, sizeof(port));
1560 chunk_appendf(&trash, "ipv6@[%s]:%s ", addr, port);
1561 } else if (l->rx.addr.ss_family == AF_CUST_SOCKPAIR) {
1562 chunk_appendf(&trash, "sockpair@%d ", ((struct sockaddr_in *)&l->rx.addr)->sin_addr.s_addr);
1563 } else
1564 chunk_appendf(&trash, "unknown ");
William Lallemandeceddf72016-12-15 18:06:44 +01001565
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001566 if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_ADMIN)
1567 chunk_appendf(&trash, "admin ");
1568 else if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_OPER)
1569 chunk_appendf(&trash, "operator ");
1570 else if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_USER)
1571 chunk_appendf(&trash, "user ");
1572 else
1573 chunk_appendf(&trash, " ");
William Lallemandeceddf72016-12-15 18:06:44 +01001574
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001575 chunk_appendf(&trash, "all\n");
William Lallemandeceddf72016-12-15 18:06:44 +01001576
Willy Tarreaud0a06d52022-05-18 15:07:19 +02001577 if (applet_putchk(appctx, &trash) == -1) {
Willy Tarreaub128f492022-05-05 19:11:05 +02001578 ctx->bind_conf = bind_conf;
1579 ctx->listener = l;
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001580 goto full;
William Lallemandeceddf72016-12-15 18:06:44 +01001581 }
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001582 }
William Lallemandeceddf72016-12-15 18:06:44 +01001583 }
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001584 done:
1585 return 1;
1586 full:
Willy Tarreau4df54eb2022-05-05 18:52:36 +02001587 return 0;
William Lallemandeceddf72016-12-15 18:06:44 +01001588}
1589
Willy Tarreau9a7fa902022-07-15 16:51:16 +02001590
Willy Tarreau0a739292016-11-22 20:21:23 +01001591/* parse a "show env" CLI request. Returns 0 if it needs to continue, 1 if it
Willy Tarreau307dbb32022-05-05 17:45:52 +02001592 * wants to stop here. It reserves a sohw_env_ctx where it puts the variable to
1593 * be dumped as well as a flag if a single variable is requested, otherwise puts
1594 * environ there.
Willy Tarreau0a739292016-11-22 20:21:23 +01001595 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001596static int cli_parse_show_env(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau0a739292016-11-22 20:21:23 +01001597{
Willy Tarreau307dbb32022-05-05 17:45:52 +02001598 struct show_env_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
Willy Tarreau0a739292016-11-22 20:21:23 +01001599 extern char **environ;
Willy Tarreauf6710f82016-12-16 17:45:44 +01001600 char **var;
Willy Tarreau0a739292016-11-22 20:21:23 +01001601
1602 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1603 return 1;
1604
Willy Tarreauf6710f82016-12-16 17:45:44 +01001605 var = environ;
Willy Tarreau0a739292016-11-22 20:21:23 +01001606
1607 if (*args[2]) {
1608 int len = strlen(args[2]);
1609
Willy Tarreauf6710f82016-12-16 17:45:44 +01001610 for (; *var; var++) {
1611 if (strncmp(*var, args[2], len) == 0 &&
1612 (*var)[len] == '=')
Willy Tarreau0a739292016-11-22 20:21:23 +01001613 break;
1614 }
Willy Tarreau9d008692019-08-09 11:21:01 +02001615 if (!*var)
1616 return cli_err(appctx, "Variable not found\n");
1617
Willy Tarreau307dbb32022-05-05 17:45:52 +02001618 ctx->show_one = 1;
Willy Tarreau0a739292016-11-22 20:21:23 +01001619 }
Willy Tarreau307dbb32022-05-05 17:45:52 +02001620 ctx->var = var;
Willy Tarreau0a739292016-11-22 20:21:23 +01001621 return 0;
1622}
1623
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001624/* parse a "show fd" CLI request. Returns 0 if it needs to continue, 1 if it
Willy Tarreau741a5a92022-05-05 17:56:58 +02001625 * wants to stop here. It sets a show_fd_ctx context where, if a specific fd is
1626 * requested, it puts the FD number into ->fd and sets ->show_one to 1.
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001627 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001628static int cli_parse_show_fd(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001629{
Willy Tarreau741a5a92022-05-05 17:56:58 +02001630 struct show_fd_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx));
Willy Tarreau1cb041a2023-03-31 16:33:53 +02001631 const char *c;
1632 int arg;
Willy Tarreau741a5a92022-05-05 17:56:58 +02001633
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001634 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
1635 return 1;
1636
Willy Tarreau1cb041a2023-03-31 16:33:53 +02001637 arg = 2;
1638
1639 /* when starting with an inversion we preset every flag */
1640 if (*args[arg] == '!' || *args[arg] == '-')
1641 ctx->show_mask = CLI_SHOWFD_F_ANY;
1642
1643 while (*args[arg] && !isdigit((uchar)*args[arg])) {
1644 uint flag = 0, inv = 0;
1645 c = args[arg];
1646 while (*c) {
1647 switch (*c) {
1648 case '!': inv = !inv; break;
1649 case '-': inv = !inv; break;
1650 case 'p': flag = CLI_SHOWFD_F_PI; break;
1651 case 'l': flag = CLI_SHOWFD_F_LI; break;
1652 case 'c': flag = CLI_SHOWFD_F_CO; break;
1653 case 'f': flag = CLI_SHOWFD_F_FE; break;
1654 case 'b': flag = CLI_SHOWFD_F_BE; break;
1655 case 's': flag = CLI_SHOWFD_F_SV; break;
1656 case 'd': flag = CLI_SHOWFD_F_PX; break;
1657 default: return cli_err(appctx, "Invalid FD type\n");
1658 }
1659 c++;
1660 if (!inv)
1661 ctx->show_mask |= flag;
1662 else
1663 ctx->show_mask &= ~flag;
1664 }
1665 arg++;
1666 }
1667
1668 /* default mask is to show everything */
1669 if (!ctx->show_mask)
1670 ctx->show_mask = CLI_SHOWFD_F_ANY;
1671
1672 if (*args[arg]) {
Willy Tarreau741a5a92022-05-05 17:56:58 +02001673 ctx->fd = atoi(args[2]);
1674 ctx->show_one = 1;
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001675 }
Willy Tarreau1cb041a2023-03-31 16:33:53 +02001676
Willy Tarreau7a4a0ac2017-07-25 19:32:50 +02001677 return 0;
1678}
1679
Willy Tarreau599852e2016-11-22 20:33:32 +01001680/* parse a "set timeout" CLI request. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001681static int cli_parse_set_timeout(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau599852e2016-11-22 20:33:32 +01001682{
Willy Tarreau0698c802022-05-11 14:09:57 +02001683 struct stream *s = appctx_strm(appctx);
Willy Tarreau599852e2016-11-22 20:33:32 +01001684
1685 if (strcmp(args[2], "cli") == 0) {
1686 unsigned timeout;
1687 const char *res;
1688
Willy Tarreau9d008692019-08-09 11:21:01 +02001689 if (!*args[3])
1690 return cli_err(appctx, "Expects an integer value.\n");
Willy Tarreau599852e2016-11-22 20:33:32 +01001691
1692 res = parse_time_err(args[3], &timeout, TIME_UNIT_S);
Willy Tarreau9d008692019-08-09 11:21:01 +02001693 if (res || timeout < 1)
1694 return cli_err(appctx, "Invalid timeout value.\n");
Willy Tarreau599852e2016-11-22 20:33:32 +01001695
Christopher Faulet5aaacfb2023-02-15 08:13:33 +01001696 s->scf->ioto = 1 + MS_TO_TICKS(timeout*1000);
Willy Tarreau599852e2016-11-22 20:33:32 +01001697 task_wakeup(s->task, TASK_WOKEN_MSG); // recompute timeouts
1698 return 1;
1699 }
Willy Tarreau9d008692019-08-09 11:21:01 +02001700
1701 return cli_err(appctx, "'set timeout' only supports 'cli'.\n");
Willy Tarreau599852e2016-11-22 20:33:32 +01001702}
1703
Willy Tarreau2af99412016-11-23 11:10:59 +01001704/* parse a "set maxconn global" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001705static int cli_parse_set_maxconn_global(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau2af99412016-11-23 11:10:59 +01001706{
1707 int v;
1708
1709 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1710 return 1;
1711
Willy Tarreau9d008692019-08-09 11:21:01 +02001712 if (!*args[3])
1713 return cli_err(appctx, "Expects an integer value.\n");
Willy Tarreau2af99412016-11-23 11:10:59 +01001714
1715 v = atoi(args[3]);
Willy Tarreau9d008692019-08-09 11:21:01 +02001716 if (v > global.hardmaxconn)
1717 return cli_err(appctx, "Value out of range.\n");
Willy Tarreau2af99412016-11-23 11:10:59 +01001718
1719 /* check for unlimited values */
1720 if (v <= 0)
1721 v = global.hardmaxconn;
1722
1723 global.maxconn = v;
1724
1725 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001726 dequeue_all_listeners();
Willy Tarreau2af99412016-11-23 11:10:59 +01001727
1728 return 1;
1729}
1730
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001731static int set_severity_output(int *target, char *argument)
1732{
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001733 if (strcmp(argument, "none") == 0) {
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001734 *target = CLI_SEVERITY_NONE;
1735 return 1;
1736 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001737 else if (strcmp(argument, "number") == 0) {
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001738 *target = CLI_SEVERITY_NUMBER;
1739 return 1;
1740 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001741 else if (strcmp(argument, "string") == 0) {
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001742 *target = CLI_SEVERITY_STRING;
1743 return 1;
1744 }
1745 return 0;
1746}
1747
1748/* parse a "set severity-output" command. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001749static int cli_parse_set_severity_output(char **args, char *payload, struct appctx *appctx, void *private)
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001750{
William Lallemand74381812023-12-06 11:15:01 +01001751 /* this will ask the applet to not output a \n after the command */
1752 if (strcmp(args[3], "-") == 0)
1753 appctx->st1 |= APPCTX_CLI_ST1_NOLF;
1754
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001755 if (*args[2] && set_severity_output(&appctx->cli_severity_output, args[2]))
1756 return 0;
1757
Willy Tarreau9d008692019-08-09 11:21:01 +02001758 return cli_err(appctx, "one of 'none', 'number', 'string' is a required argument\n");
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02001759}
William Lallemandeceddf72016-12-15 18:06:44 +01001760
William Lallemand67a234f2018-12-13 09:05:45 +01001761
1762/* show the level of the current CLI session */
1763static int cli_parse_show_lvl(char **args, char *payload, struct appctx *appctx, void *private)
1764{
William Lallemand67a234f2018-12-13 09:05:45 +01001765 if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_ADMIN)
Willy Tarreau9d008692019-08-09 11:21:01 +02001766 return cli_msg(appctx, LOG_INFO, "admin\n");
William Lallemand67a234f2018-12-13 09:05:45 +01001767 else if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_OPER)
Willy Tarreau9d008692019-08-09 11:21:01 +02001768 return cli_msg(appctx, LOG_INFO, "operator\n");
William Lallemand67a234f2018-12-13 09:05:45 +01001769 else if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_USER)
Willy Tarreau9d008692019-08-09 11:21:01 +02001770 return cli_msg(appctx, LOG_INFO, "user\n");
William Lallemand67a234f2018-12-13 09:05:45 +01001771 else
Willy Tarreau9d008692019-08-09 11:21:01 +02001772 return cli_msg(appctx, LOG_INFO, "unknown\n");
William Lallemand67a234f2018-12-13 09:05:45 +01001773}
1774
1775/* parse and set the CLI level dynamically */
1776static int cli_parse_set_lvl(char **args, char *payload, struct appctx *appctx, void *private)
1777{
William Lallemandad032882019-07-01 10:56:15 +02001778 /* this will ask the applet to not output a \n after the command */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001779 if (strcmp(args[1], "-") == 0)
William Lallemandad032882019-07-01 10:56:15 +02001780 appctx->st1 |= APPCTX_CLI_ST1_NOLF;
1781
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001782 if (strcmp(args[0], "operator") == 0) {
William Lallemand67a234f2018-12-13 09:05:45 +01001783 if (!cli_has_level(appctx, ACCESS_LVL_OPER)) {
1784 return 1;
1785 }
1786 appctx->cli_level &= ~ACCESS_LVL_MASK;
1787 appctx->cli_level |= ACCESS_LVL_OPER;
1788
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001789 } else if (strcmp(args[0], "user") == 0) {
William Lallemand67a234f2018-12-13 09:05:45 +01001790 if (!cli_has_level(appctx, ACCESS_LVL_USER)) {
1791 return 1;
1792 }
1793 appctx->cli_level &= ~ACCESS_LVL_MASK;
1794 appctx->cli_level |= ACCESS_LVL_USER;
1795 }
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001796 appctx->cli_level &= ~(ACCESS_EXPERT|ACCESS_EXPERIMENTAL);
Willy Tarreauabb9f9b2019-10-24 17:55:53 +02001797 return 1;
1798}
1799
1800
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001801/* parse and set the CLI expert/experimental-mode dynamically */
1802static int cli_parse_expert_experimental_mode(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreauabb9f9b2019-10-24 17:55:53 +02001803{
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001804 int level;
1805 char *level_str;
1806 char *output = NULL;
1807
William Lallemand7267f782022-02-01 16:08:50 +01001808 /* this will ask the applet to not output a \n after the command */
1809 if (*args[1] && *args[2] && strcmp(args[2], "-") == 0)
1810 appctx->st1 |= APPCTX_CLI_ST1_NOLF;
1811
Willy Tarreauabb9f9b2019-10-24 17:55:53 +02001812 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1813 return 1;
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001814
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02001815 if (strcmp(args[0], "expert-mode") == 0) {
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001816 level = ACCESS_EXPERT;
1817 level_str = "expert-mode";
1818 }
Tim Duesterhusc5aa1132021-10-16 17:48:15 +02001819 else if (strcmp(args[0], "experimental-mode") == 0) {
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001820 level = ACCESS_EXPERIMENTAL;
1821 level_str = "experimental-mode";
1822 }
William Lallemand2a171912022-02-02 11:43:20 +01001823 else if (strcmp(args[0], "mcli-debug-mode") == 0) {
1824 level = ACCESS_MCLI_DEBUG;
1825 level_str = "mcli-debug-mode";
1826 }
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001827 else {
1828 return 1;
1829 }
Willy Tarreauabb9f9b2019-10-24 17:55:53 +02001830
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001831 if (!*args[1]) {
1832 memprintf(&output, "%s is %s\n", level_str,
1833 (appctx->cli_level & level) ? "ON" : "OFF");
1834 return cli_dynmsg(appctx, LOG_INFO, output);
1835 }
Willy Tarreauabb9f9b2019-10-24 17:55:53 +02001836
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001837 appctx->cli_level &= ~level;
Willy Tarreauabb9f9b2019-10-24 17:55:53 +02001838 if (strcmp(args[1], "on") == 0)
Amaury Denoyelle18487fb2021-03-18 15:32:53 +01001839 appctx->cli_level |= level;
William Lallemand67a234f2018-12-13 09:05:45 +01001840 return 1;
1841}
1842
William Lallemand740629e2021-12-14 15:22:29 +01001843/* shows HAProxy version */
1844static int cli_parse_show_version(char **args, char *payload, struct appctx *appctx, void *private)
1845{
1846 char *msg = NULL;
1847
1848 return cli_dynmsg(appctx, LOG_INFO, memprintf(&msg, "%s\n", haproxy_version));
1849}
1850
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001851int cli_parse_default(char **args, char *payload, struct appctx *appctx, void *private)
William Lallemandeceddf72016-12-15 18:06:44 +01001852{
1853 return 0;
1854}
1855
Erwan Le Goas54966df2022-09-14 17:24:22 +02001856/* enable or disable the anonymized mode, it returns 1 when it works or displays an error message if it doesn't. */
1857static int cli_parse_set_anon(char **args, char *payload, struct appctx *appctx, void *private)
1858{
1859 uint32_t tmp;
1860 long long key;
1861
1862 if (strcmp(args[2], "on") == 0) {
Erwan Le Goas3f4ae612022-09-28 17:04:29 +02001863
1864 if (*args[3]) {
1865 key = atoll(args[3]);
1866 if (key < 1 || key > UINT_MAX)
1867 return cli_err(appctx, "Value out of range (1 to 4294967295 expected).\n");
1868 appctx->cli_anon_key = key;
1869 }
Erwan Le Goas54966df2022-09-14 17:24:22 +02001870 else {
Erwan Le Goas3f4ae612022-09-28 17:04:29 +02001871 tmp = HA_ATOMIC_LOAD(&global.anon_key);
1872 if (tmp != 0)
1873 appctx->cli_anon_key = tmp;
1874 else
1875 appctx->cli_anon_key = ha_random32();
Erwan Le Goas54966df2022-09-14 17:24:22 +02001876 }
1877 }
1878 else if (strcmp(args[2], "off") == 0) {
Erwan Le Goas3f4ae612022-09-28 17:04:29 +02001879
1880 if (*args[3]) {
Erwan Le Goas54966df2022-09-14 17:24:22 +02001881 return cli_err(appctx, "Key can't be added while disabling anonymized mode\n");
1882 }
1883 else {
1884 appctx->cli_anon_key = 0;
1885 }
1886 }
1887 else {
1888 return cli_err(appctx,
1889 "'set anon' only supports :\n"
1890 " - 'on' [key] to enable the anonymized mode\n"
1891 " - 'off' to disable the anonymized mode");
1892 }
1893 return 1;
1894}
1895
Erwan Le Goasfad9da82022-09-14 17:24:22 +02001896/* This function set the global anonyzing key, restricted to level 'admin' */
1897static int cli_parse_set_global_key(char **args, char *payload, struct appctx *appctx, void *private)
1898{
1899 long long key;
1900
1901 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1902 return cli_err(appctx, "Permission denied\n");
1903 if (!*args[2])
1904 return cli_err(appctx, "Expects an integer value.\n");
1905
1906 key = atoll(args[2]);
1907 if (key < 0 || key > UINT_MAX)
1908 return cli_err(appctx, "Value out of range (0 to 4294967295 expected).\n");
1909
1910 HA_ATOMIC_STORE(&global.anon_key, key);
1911 return 1;
1912}
1913
Erwan Le Goas54966df2022-09-14 17:24:22 +02001914/* shows the anonymized mode state to everyone, and the key except for users, it always returns 1. */
1915static int cli_parse_show_anon(char **args, char *payload, struct appctx *appctx, void *private)
1916{
1917 char *msg = NULL;
1918 char *anon_mode = NULL;
1919 uint32_t c_key = appctx->cli_anon_key;
1920
1921 if (!c_key)
1922 anon_mode = "Anonymized mode disabled";
1923 else
1924 anon_mode = "Anonymized mode enabled";
1925
1926 if ( !((appctx->cli_level & ACCESS_LVL_MASK) < ACCESS_LVL_OPER) && c_key != 0) {
1927 cli_dynmsg(appctx, LOG_INFO, memprintf(&msg, "%s\nKey : %u\n", anon_mode, c_key));
1928 }
1929 else {
1930 cli_dynmsg(appctx, LOG_INFO, memprintf(&msg, "%s\n", anon_mode));
1931 }
1932
1933 return 1;
1934}
1935
Willy Tarreau45c742b2016-11-24 14:51:17 +01001936/* parse a "set rate-limit" command. It always returns 1. */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02001937static int cli_parse_set_ratelimit(char **args, char *payload, struct appctx *appctx, void *private)
Willy Tarreau45c742b2016-11-24 14:51:17 +01001938{
1939 int v;
1940 int *res;
1941 int mul = 1;
1942
1943 if (!cli_has_level(appctx, ACCESS_LVL_ADMIN))
1944 return 1;
1945
1946 if (strcmp(args[2], "connections") == 0 && strcmp(args[3], "global") == 0)
1947 res = &global.cps_lim;
1948 else if (strcmp(args[2], "sessions") == 0 && strcmp(args[3], "global") == 0)
1949 res = &global.sps_lim;
1950#ifdef USE_OPENSSL
1951 else if (strcmp(args[2], "ssl-sessions") == 0 && strcmp(args[3], "global") == 0)
1952 res = &global.ssl_lim;
1953#endif
1954 else if (strcmp(args[2], "http-compression") == 0 && strcmp(args[3], "global") == 0) {
1955 res = &global.comp_rate_lim;
1956 mul = 1024;
1957 }
1958 else {
Willy Tarreau9d008692019-08-09 11:21:01 +02001959 return cli_err(appctx,
Willy Tarreau45c742b2016-11-24 14:51:17 +01001960 "'set rate-limit' only supports :\n"
1961 " - 'connections global' to set the per-process maximum connection rate\n"
1962 " - 'sessions global' to set the per-process maximum session rate\n"
1963#ifdef USE_OPENSSL
Aurélien Nephtalib53e2082018-03-11 16:55:02 +01001964 " - 'ssl-sessions global' to set the per-process maximum SSL session rate\n"
Willy Tarreau45c742b2016-11-24 14:51:17 +01001965#endif
Willy Tarreau9d008692019-08-09 11:21:01 +02001966 " - 'http-compression global' to set the per-process maximum compression speed in kB/s\n");
Willy Tarreau45c742b2016-11-24 14:51:17 +01001967 }
1968
Willy Tarreau9d008692019-08-09 11:21:01 +02001969 if (!*args[4])
1970 return cli_err(appctx, "Expects an integer value.\n");
Willy Tarreau45c742b2016-11-24 14:51:17 +01001971
1972 v = atoi(args[4]);
Willy Tarreau9d008692019-08-09 11:21:01 +02001973 if (v < 0)
1974 return cli_err(appctx, "Value out of range.\n");
Willy Tarreau45c742b2016-11-24 14:51:17 +01001975
1976 *res = v * mul;
1977
1978 /* Dequeues all of the listeners waiting for a resource */
Willy Tarreau241797a2019-12-10 14:10:52 +01001979 dequeue_all_listeners();
Willy Tarreau45c742b2016-11-24 14:51:17 +01001980
1981 return 1;
1982}
1983
William Lallemandf6975e92017-05-26 17:42:10 +02001984/* parse the "expose-fd" argument on the bind lines */
1985static int bind_parse_expose_fd(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
1986{
1987 if (!*args[cur_arg + 1]) {
1988 memprintf(err, "'%s' : missing fd type", args[cur_arg]);
1989 return ERR_ALERT | ERR_FATAL;
1990 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01001991 if (strcmp(args[cur_arg + 1], "listeners") == 0) {
William Lallemandf6975e92017-05-26 17:42:10 +02001992 conf->level |= ACCESS_FD_LISTENERS;
1993 } else {
1994 memprintf(err, "'%s' only supports 'listeners' (got '%s')",
1995 args[cur_arg], args[cur_arg+1]);
1996 return ERR_ALERT | ERR_FATAL;
1997 }
1998
1999 return 0;
2000}
2001
William Lallemand74c24fb2016-11-21 17:18:36 +01002002/* parse the "level" argument on the bind lines */
2003static int bind_parse_level(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err)
2004{
2005 if (!*args[cur_arg + 1]) {
2006 memprintf(err, "'%s' : missing level", args[cur_arg]);
2007 return ERR_ALERT | ERR_FATAL;
2008 }
2009
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002010 if (strcmp(args[cur_arg + 1], "user") == 0) {
William Lallemand07a62f72017-05-24 00:57:40 +02002011 conf->level &= ~ACCESS_LVL_MASK;
2012 conf->level |= ACCESS_LVL_USER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002013 } else if (strcmp(args[cur_arg + 1], "operator") == 0) {
William Lallemand07a62f72017-05-24 00:57:40 +02002014 conf->level &= ~ACCESS_LVL_MASK;
2015 conf->level |= ACCESS_LVL_OPER;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002016 } else if (strcmp(args[cur_arg + 1], "admin") == 0) {
William Lallemand07a62f72017-05-24 00:57:40 +02002017 conf->level &= ~ACCESS_LVL_MASK;
2018 conf->level |= ACCESS_LVL_ADMIN;
2019 } else {
William Lallemand74c24fb2016-11-21 17:18:36 +01002020 memprintf(err, "'%s' only supports 'user', 'operator', and 'admin' (got '%s')",
2021 args[cur_arg], args[cur_arg+1]);
2022 return ERR_ALERT | ERR_FATAL;
2023 }
2024
2025 return 0;
2026}
2027
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02002028static int bind_parse_severity_output(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 severity format", args[cur_arg]);
2032 return ERR_ALERT | ERR_FATAL;
2033 }
2034
2035 if (set_severity_output(&conf->severity_output, args[cur_arg+1]))
2036 return 0;
2037 else {
2038 memprintf(err, "'%s' only supports 'none', 'number', and 'string' (got '%s')",
2039 args[cur_arg], args[cur_arg+1]);
2040 return ERR_ALERT | ERR_FATAL;
2041 }
2042}
2043
Olivier Houchardf886e342017-04-05 22:24:59 +02002044/* Send all the bound sockets, always returns 1 */
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002045static int _getsocks(char **args, char *payload, struct appctx *appctx, void *private)
Olivier Houchardf886e342017-04-05 22:24:59 +02002046{
William Lallemandb5d062d2022-07-28 15:33:41 +02002047 static int already_sent = 0;
Olivier Houchardf886e342017-04-05 22:24:59 +02002048 char *cmsgbuf = NULL;
2049 unsigned char *tmpbuf = NULL;
2050 struct cmsghdr *cmsg;
Willy Tarreauc12b3212022-05-27 11:08:15 +02002051 struct stconn *sc = appctx_sc(appctx);
Willy Tarreau475e4632022-05-27 10:26:46 +02002052 struct stream *s = __sc_strm(sc);
2053 struct connection *remote = sc_conn(sc_opposite(sc));
Olivier Houchardf886e342017-04-05 22:24:59 +02002054 struct msghdr msghdr;
2055 struct iovec iov;
Olivier Houchard54740872017-04-06 14:45:14 +02002056 struct timeval tv = { .tv_sec = 1, .tv_usec = 0 };
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002057 const char *ns_name, *if_name;
2058 unsigned char ns_nlen, if_nlen;
2059 int nb_queued;
2060 int cur_fd = 0;
Olivier Houchardf886e342017-04-05 22:24:59 +02002061 int *tmpfd;
2062 int tot_fd_nb = 0;
Willy Tarreauc2b7f802018-09-20 11:22:29 +02002063 int fd = -1;
Olivier Houchardf886e342017-04-05 22:24:59 +02002064 int curoff = 0;
Willy Tarreauc2b7f802018-09-20 11:22:29 +02002065 int old_fcntl = -1;
Olivier Houchardf886e342017-04-05 22:24:59 +02002066 int ret;
2067
Willy Tarreauc2b7f802018-09-20 11:22:29 +02002068 if (!remote) {
2069 ha_warning("Only works on real connections\n");
2070 goto out;
2071 }
2072
2073 fd = remote->handle.fd;
2074
Olivier Houchardf886e342017-04-05 22:24:59 +02002075 /* Temporary set the FD in blocking mode, that will make our life easier */
2076 old_fcntl = fcntl(fd, F_GETFL);
2077 if (old_fcntl < 0) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002078 ha_warning("Couldn't get the flags for the unix socket\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02002079 goto out;
2080 }
2081 cmsgbuf = malloc(CMSG_SPACE(sizeof(int) * MAX_SEND_FD));
2082 if (!cmsgbuf) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002083 ha_warning("Failed to allocate memory to send sockets\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02002084 goto out;
2085 }
2086 if (fcntl(fd, F_SETFL, old_fcntl &~ O_NONBLOCK) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002087 ha_warning("Cannot make the unix socket blocking\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02002088 goto out;
2089 }
Olivier Houchard54740872017-04-06 14:45:14 +02002090 setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv));
Olivier Houchardf886e342017-04-05 22:24:59 +02002091 iov.iov_base = &tot_fd_nb;
2092 iov.iov_len = sizeof(tot_fd_nb);
William Lallemandf6975e92017-05-26 17:42:10 +02002093 if (!(strm_li(s)->bind_conf->level & ACCESS_FD_LISTENERS))
Olivier Houchardf886e342017-04-05 22:24:59 +02002094 goto out;
2095 memset(&msghdr, 0, sizeof(msghdr));
2096 /*
2097 * First, calculates the total number of FD, so that we can let
Jackie Tapia749f74c2020-07-22 18:59:40 -05002098 * the caller know how much it should expect.
Olivier Houchardf886e342017-04-05 22:24:59 +02002099 */
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002100 for (cur_fd = 0;cur_fd < global.maxsock; cur_fd++)
Willy Tarreau9063a662021-04-06 18:09:06 +02002101 tot_fd_nb += !!(fdtab[cur_fd].state & FD_EXPORTED);
William Lallemand5fd3b282020-01-16 15:32:08 +01002102
William Lallemandb5d062d2022-07-28 15:33:41 +02002103 if (tot_fd_nb == 0) {
2104 if (already_sent)
2105 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 +02002106 goto out;
William Lallemandb5d062d2022-07-28 15:33:41 +02002107 }
Olivier Houchardf886e342017-04-05 22:24:59 +02002108
2109 /* First send the total number of file descriptors, so that the
2110 * receiving end knows what to expect.
2111 */
2112 msghdr.msg_iov = &iov;
2113 msghdr.msg_iovlen = 1;
2114 ret = sendmsg(fd, &msghdr, 0);
2115 if (ret != sizeof(tot_fd_nb)) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002116 ha_warning("Failed to send the number of sockets to send\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02002117 goto out;
2118 }
2119
2120 /* Now send the fds */
2121 msghdr.msg_control = cmsgbuf;
2122 msghdr.msg_controllen = CMSG_SPACE(sizeof(int) * MAX_SEND_FD);
2123 cmsg = CMSG_FIRSTHDR(&msghdr);
2124 cmsg->cmsg_len = CMSG_LEN(MAX_SEND_FD * sizeof(int));
2125 cmsg->cmsg_level = SOL_SOCKET;
2126 cmsg->cmsg_type = SCM_RIGHTS;
2127 tmpfd = (int *)CMSG_DATA(cmsg);
2128
Olivier Houchardf886e342017-04-05 22:24:59 +02002129 /* For each socket, e message is sent, containing the following :
2130 * Size of the namespace name (or 0 if none), as an unsigned char.
2131 * The namespace name, if any
2132 * Size of the interface name (or 0 if none), as an unsigned char
2133 * The interface name, if any
Willy Tarreaucf1f1932020-08-26 10:30:09 +02002134 * 32 bits of zeroes (used to be listener options).
Olivier Houchardf886e342017-04-05 22:24:59 +02002135 */
2136 /* We will send sockets MAX_SEND_FD per MAX_SEND_FD, allocate a
Ilya Shipitsind4259502020-04-08 01:07:56 +05002137 * buffer big enough to store the socket information.
Olivier Houchardf886e342017-04-05 22:24:59 +02002138 */
Olivier Houchardf143b802017-11-04 15:13:01 +01002139 tmpbuf = malloc(MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int)));
Olivier Houchardf886e342017-04-05 22:24:59 +02002140 if (tmpbuf == NULL) {
Ilya Shipitsind4259502020-04-08 01:07:56 +05002141 ha_warning("Failed to allocate memory to transfer socket information\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02002142 goto out;
2143 }
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002144
2145 nb_queued = 0;
Olivier Houchardf886e342017-04-05 22:24:59 +02002146 iov.iov_base = tmpbuf;
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002147 for (cur_fd = 0; cur_fd < global.maxsock; cur_fd++) {
Willy Tarreau9063a662021-04-06 18:09:06 +02002148 if (!(fdtab[cur_fd].state & FD_EXPORTED))
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002149 continue;
2150
2151 ns_name = if_name = "";
2152 ns_nlen = if_nlen = 0;
2153
2154 /* for now we can only retrieve namespaces and interfaces from
2155 * pure listeners.
2156 */
Willy Tarreaua74cb382020-10-15 21:29:49 +02002157 if (fdtab[cur_fd].iocb == sock_accept_iocb) {
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002158 const struct listener *l = fdtab[cur_fd].owner;
2159
Willy Tarreau818a92e2020-09-03 07:50:19 +02002160 if (l->rx.settings->interface) {
2161 if_name = l->rx.settings->interface;
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002162 if_nlen = strlen(if_name);
2163 }
2164
2165#ifdef USE_NS
Willy Tarreau818a92e2020-09-03 07:50:19 +02002166 if (l->rx.settings->netns) {
2167 ns_name = l->rx.settings->netns->node.key;
2168 ns_nlen = l->rx.settings->netns->name_len;
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002169 }
2170#endif
2171 }
2172
2173 /* put the FD into the CMSG_DATA */
2174 tmpfd[nb_queued++] = cur_fd;
2175
2176 /* first block is <ns_name_len> <ns_name> */
2177 tmpbuf[curoff++] = ns_nlen;
2178 if (ns_nlen)
2179 memcpy(tmpbuf + curoff, ns_name, ns_nlen);
2180 curoff += ns_nlen;
2181
2182 /* second block is <if_name_len> <if_name> */
2183 tmpbuf[curoff++] = if_nlen;
2184 if (if_nlen)
2185 memcpy(tmpbuf + curoff, if_name, if_nlen);
2186 curoff += if_nlen;
2187
2188 /* we used to send the listener options here before 2.3 */
2189 memset(tmpbuf + curoff, 0, sizeof(int));
2190 curoff += sizeof(int);
2191
2192 /* there's a limit to how many FDs may be sent at once */
2193 if (nb_queued == MAX_SEND_FD) {
2194 iov.iov_len = curoff;
2195 if (sendmsg(fd, &msghdr, 0) != curoff) {
2196 ha_warning("Failed to transfer sockets\n");
2197 return -1;
2198 }
2199
2200 /* Wait for an ack */
2201 do {
2202 ret = recv(fd, &tot_fd_nb, sizeof(tot_fd_nb), 0);
2203 } while (ret == -1 && errno == EINTR);
2204
2205 if (ret <= 0) {
2206 ha_warning("Unexpected error while transferring sockets\n");
2207 return -1;
2208 }
2209 curoff = 0;
2210 nb_queued = 0;
2211 }
William Lallemand5fd3b282020-01-16 15:32:08 +01002212 }
2213
William Lallemandb5d062d2022-07-28 15:33:41 +02002214 already_sent = 1;
2215
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002216 /* flush pending stuff */
2217 if (nb_queued) {
Olivier Houchardf886e342017-04-05 22:24:59 +02002218 iov.iov_len = curoff;
Willy Tarreaub5a1f9e2020-08-19 17:03:55 +02002219 cmsg->cmsg_len = CMSG_LEN(nb_queued * sizeof(int));
2220 msghdr.msg_controllen = CMSG_SPACE(nb_queued * sizeof(int));
Olivier Houchardf886e342017-04-05 22:24:59 +02002221 if (sendmsg(fd, &msghdr, 0) != curoff) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002222 ha_warning("Failed to transfer sockets\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02002223 goto out;
2224 }
2225 }
2226
2227out:
Willy Tarreauc2b7f802018-09-20 11:22:29 +02002228 if (fd >= 0 && old_fcntl >= 0 && fcntl(fd, F_SETFL, old_fcntl) == -1) {
Christopher Faulet767a84b2017-11-24 16:50:31 +01002229 ha_warning("Cannot make the unix socket non-blocking\n");
Olivier Houchardf886e342017-04-05 22:24:59 +02002230 goto out;
2231 }
Christopher Faulet33af9962023-04-07 17:58:21 +02002232 se_fl_set(appctx->sedesc, SE_FL_EOI);
Olivier Houchardf886e342017-04-05 22:24:59 +02002233 appctx->st0 = CLI_ST_END;
2234 free(cmsgbuf);
2235 free(tmpbuf);
2236 return 1;
2237}
2238
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002239static int cli_parse_simple(char **args, char *payload, struct appctx *appctx, void *private)
2240{
2241 if (*args[0] == 'h')
2242 /* help */
Willy Tarreau0b1b8302021-05-09 20:59:23 +02002243 cli_gen_usage_msg(appctx, args);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002244 else if (*args[0] == 'p')
2245 /* prompt */
Willy Tarreau22555572023-05-04 14:22:36 +02002246 if (strcmp(args[1], "timed") == 0) {
2247 appctx->st1 |= APPCTX_CLI_ST1_PROMPT;
2248 appctx->st1 ^= APPCTX_CLI_ST1_TIMED;
2249 }
2250 else
2251 appctx->st1 ^= APPCTX_CLI_ST1_PROMPT;
Christopher Faulet33af9962023-04-07 17:58:21 +02002252 else if (*args[0] == 'q') {
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002253 /* quit */
Christopher Faulet33af9962023-04-07 17:58:21 +02002254 se_fl_set(appctx->sedesc, SE_FL_EOI);
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002255 appctx->st0 = CLI_ST_END;
Christopher Faulet33af9962023-04-07 17:58:21 +02002256 }
Aurélien Nephtaliabbf6072018-04-18 13:26:46 +02002257
2258 return 1;
2259}
Olivier Houchardf886e342017-04-05 22:24:59 +02002260
William Lallemand2f4ce202018-10-26 14:47:47 +02002261void pcli_write_prompt(struct stream *s)
2262{
2263 struct buffer *msg = get_trash_chunk();
Willy Tarreau40a9c322022-05-18 15:55:18 +02002264 struct channel *oc = sc_oc(s->scf);
William Lallemand2f4ce202018-10-26 14:47:47 +02002265
William Lallemanddc12c2e2018-12-13 09:05:46 +01002266 if (!(s->pcli_flags & PCLI_F_PROMPT))
William Lallemand5b80fa22018-12-11 16:10:54 +01002267 return;
2268
William Lallemanddc12c2e2018-12-13 09:05:46 +01002269 if (s->pcli_flags & PCLI_F_PAYLOAD) {
William Lallemandebf61802018-12-11 16:10:57 +01002270 chunk_appendf(msg, "+ ");
2271 } else {
Willy Tarreauea077152023-05-11 16:14:02 +02002272 if (s->pcli_next_pid == 0) {
2273 /* master's prompt */
2274 if (s->pcli_flags & PCLI_F_TIMED) {
2275 uint up = ns_to_sec(now_ns - start_time_ns);
2276 chunk_appendf(msg, "[%u:%02u:%02u:%02u] ",
2277 (up / 86400), (up / 3600) % 24, (up / 60) % 60, up % 60);
2278 }
2279
William Lallemanddae12c72022-02-02 14:13:54 +01002280 chunk_appendf(msg, "master%s",
William Lallemand3ba7c7b2021-11-10 10:57:18 +01002281 (proc_self->failedreloads > 0) ? "[ReloadFailed]" : "");
Willy Tarreauea077152023-05-11 16:14:02 +02002282 }
2283 else {
2284 /* worker's prompt */
2285 if (s->pcli_flags & PCLI_F_TIMED) {
2286 const struct mworker_proc *tmp, *proc;
2287 uint up;
2288
2289 /* set proc to the worker corresponding to pcli_next_pid or NULL */
2290 proc = NULL;
2291 list_for_each_entry(tmp, &proc_list, list) {
2292 if (!(tmp->options & PROC_O_TYPE_WORKER))
2293 continue;
2294 if (tmp->pid == s->pcli_next_pid) {
2295 proc = tmp;
2296 break;
2297 }
2298 }
2299
2300 if (!proc)
2301 chunk_appendf(msg, "[gone] ");
2302 else {
2303 up = date.tv_sec - proc->timestamp;
2304 if ((int)up < 0) /* must never be negative because of clock drift */
2305 up = 0;
2306 chunk_appendf(msg, "[%u:%02u:%02u:%02u] ",
2307 (up / 86400), (up / 3600) % 24, (up / 60) % 60, up % 60);
2308 }
2309 }
William Lallemanddae12c72022-02-02 14:13:54 +01002310 chunk_appendf(msg, "%d", s->pcli_next_pid);
Willy Tarreauea077152023-05-11 16:14:02 +02002311 }
William Lallemanddae12c72022-02-02 14:13:54 +01002312
2313 if (s->pcli_flags & (ACCESS_EXPERIMENTAL|ACCESS_EXPERT|ACCESS_MCLI_DEBUG)) {
2314 chunk_appendf(msg, "(");
2315
2316 if (s->pcli_flags & ACCESS_EXPERIMENTAL)
2317 chunk_appendf(msg, "x");
2318
2319 if (s->pcli_flags & ACCESS_EXPERT)
2320 chunk_appendf(msg, "e");
2321
2322 if (s->pcli_flags & ACCESS_MCLI_DEBUG)
2323 chunk_appendf(msg, "d");
2324
2325 chunk_appendf(msg, ")");
2326 }
2327
2328 chunk_appendf(msg, "> ");
2329
2330
William Lallemandebf61802018-12-11 16:10:57 +01002331 }
William Lallemand2f4ce202018-10-26 14:47:47 +02002332 co_inject(oc, msg->area, msg->data);
2333}
2334
William Lallemandcf62f7e2018-10-26 14:47:40 +02002335/* The pcli_* functions are used for the CLI proxy in the master */
2336
William Lallemand1601eeb2023-05-14 18:36:00 +02002337
2338/* flush the input buffer and output an error */
2339void pcli_error(struct stream *s, const char *msg)
2340{
2341 struct buffer *buf = get_trash_chunk();
2342 struct channel *oc = &s->res;
2343 struct channel *ic = &s->req;
2344
2345 chunk_initstr(buf, msg);
2346
2347 if (likely(buf && buf->data))
2348 co_inject(oc, buf->area, buf->data);
2349
2350 channel_erase(ic);
2351
2352}
2353
2354/* flush the input buffer, output the error and close */
William Lallemanddeeaa592018-10-26 14:47:48 +02002355void pcli_reply_and_close(struct stream *s, const char *msg)
2356{
2357 struct buffer *buf = get_trash_chunk();
2358
2359 chunk_initstr(buf, msg);
Christopher Faulet9125f3c2022-03-31 09:47:24 +02002360 stream_retnclose(s, buf);
William Lallemanddeeaa592018-10-26 14:47:48 +02002361}
2362
William Lallemand291810d2018-10-26 14:47:38 +02002363static enum obj_type *pcli_pid_to_server(int proc_pid)
2364{
2365 struct mworker_proc *child;
2366
William Lallemand99e0bb92020-11-05 10:28:53 +01002367 /* return the mCLI applet of the master */
William Lallemandbddd33a2018-12-11 16:10:53 +01002368 if (proc_pid == 0)
William Lallemand99e0bb92020-11-05 10:28:53 +01002369 return &mcli_applet.obj_type;
William Lallemandbddd33a2018-12-11 16:10:53 +01002370
William Lallemand291810d2018-10-26 14:47:38 +02002371 list_for_each_entry(child, &proc_list, list) {
2372 if (child->pid == proc_pid){
2373 return &child->srv->obj_type;
2374 }
2375 }
2376 return NULL;
2377}
2378
2379/* Take a CLI prefix in argument (eg: @!1234 @master @1)
2380 * Return:
2381 * 0: master
2382 * > 0: pid of a worker
2383 * < 0: didn't find a worker
2384 */
2385static int pcli_prefix_to_pid(const char *prefix)
2386{
2387 int proc_pid;
2388 struct mworker_proc *child;
2389 char *errtol = NULL;
2390
2391 if (*prefix != '@') /* not a prefix, should not happen */
2392 return -1;
2393
2394 prefix++;
2395 if (!*prefix) /* sent @ alone, return the master */
2396 return 0;
2397
2398 if (strcmp("master", prefix) == 0) {
2399 return 0;
2400 } else if (*prefix == '!') {
2401 prefix++;
2402 if (!*prefix)
2403 return -1;
2404
2405 proc_pid = strtol(prefix, &errtol, 10);
2406 if (*errtol != '\0')
2407 return -1;
2408 list_for_each_entry(child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +02002409 if (!(child->options & PROC_O_TYPE_WORKER))
William Lallemand16dd1b32018-11-19 18:46:18 +01002410 continue;
William Lallemand291810d2018-10-26 14:47:38 +02002411 if (child->pid == proc_pid){
2412 return child->pid;
2413 }
2414 }
2415 } else {
2416 struct mworker_proc *chosen = NULL;
2417 /* this is a relative pid */
2418
2419 proc_pid = strtol(prefix, &errtol, 10);
2420 if (*errtol != '\0')
2421 return -1;
2422
2423 if (proc_pid == 0) /* return the master */
2424 return 0;
2425
William Lallemandbac3a822022-07-20 14:30:56 +02002426 if (proc_pid != 1) /* only the "@1" relative PID is supported */
2427 return -1;
2428
William Lallemand291810d2018-10-26 14:47:38 +02002429 /* chose the right process, the current one is the one with the
2430 least number of reloads */
2431 list_for_each_entry(child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +02002432 if (!(child->options & PROC_O_TYPE_WORKER))
William Lallemand16dd1b32018-11-19 18:46:18 +01002433 continue;
Willy Tarreaue8422bf2021-06-15 09:08:18 +02002434 if (child->reloads == 0)
2435 return child->pid;
2436 else if (chosen == NULL || child->reloads < chosen->reloads)
2437 chosen = child;
William Lallemand291810d2018-10-26 14:47:38 +02002438 }
2439 if (chosen)
2440 return chosen->pid;
2441 }
2442 return -1;
2443}
2444
William Lallemandbddd33a2018-12-11 16:10:53 +01002445/* Return::
2446 * >= 0 : number of words to escape
2447 * = -1 : error
2448 */
William Lallemandbddd33a2018-12-11 16:10:53 +01002449int pcli_find_and_exec_kw(struct stream *s, char **args, int argl, char **errmsg, int *next_pid)
2450{
2451 if (argl < 1)
2452 return 0;
2453
2454 /* there is a prefix */
2455 if (args[0][0] == '@') {
2456 int target_pid = pcli_prefix_to_pid(args[0]);
2457
2458 if (target_pid == -1) {
2459 memprintf(errmsg, "Can't find the target PID matching the prefix '%s'\n", args[0]);
2460 return -1;
2461 }
2462
2463 /* if the prefix is alone, define a default target */
2464 if (argl == 1)
2465 s->pcli_next_pid = target_pid;
2466 else
2467 *next_pid = target_pid;
2468 return 1;
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002469 } else if (strcmp("prompt", args[0]) == 0) {
Willy Tarreauea077152023-05-11 16:14:02 +02002470 if (argl >= 2 && strcmp(args[1], "timed") == 0) {
2471 s->pcli_flags |= PCLI_F_PROMPT;
2472 s->pcli_flags ^= PCLI_F_TIMED;
2473 }
2474 else
2475 s->pcli_flags ^= PCLI_F_PROMPT;
William Lallemand5b80fa22018-12-11 16:10:54 +01002476 return argl; /* return the number of elements in the array */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002477 } else if (strcmp("quit", args[0]) == 0) {
Christopher Faulet12762f02023-04-13 15:40:10 +02002478 sc_schedule_abort(s->scf);
Christopher Fauletdf7cd712023-04-13 15:56:26 +02002479 sc_schedule_shutdown(s->scf);
William Lallemand5f610682018-12-11 16:10:55 +01002480 return argl; /* return the number of elements in the array */
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002481 } else if (strcmp(args[0], "operator") == 0) {
William Lallemandb7ea1412018-12-13 09:05:47 +01002482 if (!pcli_has_level(s, ACCESS_LVL_OPER)) {
2483 memprintf(errmsg, "Permission denied!\n");
2484 return -1;
2485 }
2486 s->pcli_flags &= ~ACCESS_LVL_MASK;
2487 s->pcli_flags |= ACCESS_LVL_OPER;
2488 return argl;
2489
Tim Duesterhuse5ff1412021-01-02 22:31:53 +01002490 } else if (strcmp(args[0], "user") == 0) {
William Lallemandb7ea1412018-12-13 09:05:47 +01002491 if (!pcli_has_level(s, ACCESS_LVL_USER)) {
2492 memprintf(errmsg, "Permission denied!\n");
2493 return -1;
2494 }
2495 s->pcli_flags &= ~ACCESS_LVL_MASK;
2496 s->pcli_flags |= ACCESS_LVL_USER;
2497 return argl;
William Lallemand7267f782022-02-01 16:08:50 +01002498
2499 } else if (strcmp(args[0], "expert-mode") == 0) {
2500 if (!pcli_has_level(s, ACCESS_LVL_ADMIN)) {
2501 memprintf(errmsg, "Permission denied!\n");
2502 return -1;
2503 }
2504
2505 s->pcli_flags &= ~ACCESS_EXPERT;
2506 if ((argl > 1) && (strcmp(args[1], "on") == 0))
2507 s->pcli_flags |= ACCESS_EXPERT;
2508 return argl;
2509
2510 } else if (strcmp(args[0], "experimental-mode") == 0) {
2511 if (!pcli_has_level(s, ACCESS_LVL_ADMIN)) {
2512 memprintf(errmsg, "Permission denied!\n");
2513 return -1;
2514 }
2515 s->pcli_flags &= ~ACCESS_EXPERIMENTAL;
2516 if ((argl > 1) && (strcmp(args[1], "on") == 0))
2517 s->pcli_flags |= ACCESS_EXPERIMENTAL;
2518 return argl;
William Lallemand2a171912022-02-02 11:43:20 +01002519 } else if (strcmp(args[0], "mcli-debug-mode") == 0) {
2520 if (!pcli_has_level(s, ACCESS_LVL_ADMIN)) {
2521 memprintf(errmsg, "Permission denied!\n");
2522 return -1;
2523 }
2524 s->pcli_flags &= ~ACCESS_MCLI_DEBUG;
2525 if ((argl > 1) && (strcmp(args[1], "on") == 0))
2526 s->pcli_flags |= ACCESS_MCLI_DEBUG;
2527 return argl;
William Lallemand74381812023-12-06 11:15:01 +01002528 } else if (strcmp(args[0], "set") == 0) {
2529 if ((argl > 1) && (strcmp(args[1], "severity-output") == 0)) {
2530 if ((argl > 2) &&strcmp(args[2], "none") == 0) {
2531 s->pcli_flags &= ~(ACCESS_MCLI_SEVERITY_NB|ACCESS_MCLI_SEVERITY_STR);
2532 } else if ((argl > 2) && strcmp(args[2], "string") == 0) {
2533 s->pcli_flags |= ACCESS_MCLI_SEVERITY_STR;
2534 } else if ((argl > 2) && strcmp(args[2], "number") == 0) {
2535 s->pcli_flags |= ACCESS_MCLI_SEVERITY_NB;
2536 } else {
2537 memprintf(errmsg, "one of 'none', 'number', 'string' is a required argument\n");
2538 return -1;
2539 }
2540 /* only skip argl if we have "set severity-output" not only "set" */
2541 return argl;
2542 }
William Lallemandbddd33a2018-12-11 16:10:53 +01002543 }
2544
2545 return 0;
2546}
2547
2548/*
2549 * Parse the CLI request:
2550 * - It does basically the same as the cli_io_handler, but as a proxy
2551 * - It can exec a command and strip non forwardable commands
William Lallemandcf62f7e2018-10-26 14:47:40 +02002552 *
2553 * Return:
William Lallemandbddd33a2018-12-11 16:10:53 +01002554 * - the number of characters to forward or
2555 * - 1 if there is an error or not enough data
William Lallemandcf62f7e2018-10-26 14:47:40 +02002556 */
William Lallemandbddd33a2018-12-11 16:10:53 +01002557int pcli_parse_request(struct stream *s, struct channel *req, char **errmsg, int *next_pid)
William Lallemandcf62f7e2018-10-26 14:47:40 +02002558{
Willy Tarreaua4e4d662022-01-20 08:47:35 +01002559 char *str;
2560 char *end;
Willy Tarreauf14c7572021-03-13 10:59:23 +01002561 char *args[MAX_CLI_ARGS + 1]; /* +1 for storing a NULL */
William Lallemandbddd33a2018-12-11 16:10:53 +01002562 int argl; /* number of args */
2563 char *p;
2564 char *trim = NULL;
William Lallemandebf61802018-12-11 16:10:57 +01002565 char *payload = NULL;
William Lallemandbddd33a2018-12-11 16:10:53 +01002566 int wtrim = 0; /* number of words to trim */
2567 int reql = 0;
William Lallemandb7ea1412018-12-13 09:05:47 +01002568 int ret;
William Lallemandbddd33a2018-12-11 16:10:53 +01002569 int i = 0;
2570
Willy Tarreaua4e4d662022-01-20 08:47:35 +01002571 /* we cannot deal with a wrapping buffer, so let's take care of this
2572 * first.
2573 */
2574 if (b_head(&req->buf) + b_data(&req->buf) > b_wrap(&req->buf))
2575 b_slow_realign(&req->buf, trash.area, co_data(req));
2576
2577 str = (char *)ci_head(req);
2578 end = (char *)ci_stop(req);
2579
William Lallemandbddd33a2018-12-11 16:10:53 +01002580 p = str;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002581
William Lallemanddc12c2e2018-12-13 09:05:46 +01002582 if (!(s->pcli_flags & PCLI_F_PAYLOAD)) {
William Lallemandebf61802018-12-11 16:10:57 +01002583
2584 /* Looks for the end of one command */
2585 while (p+reql < end) {
2586 /* handle escaping */
2587 if (p[reql] == '\\') {
William Lallemand02c255e2020-06-18 18:45:04 +02002588 reql+=2;
William Lallemandebf61802018-12-11 16:10:57 +01002589 continue;
2590 }
2591 if (p[reql] == ';' || p[reql] == '\n') {
2592 /* found the end of the command */
2593 p[reql] = '\n';
2594 reql++;
2595 break;
2596 }
William Lallemandbddd33a2018-12-11 16:10:53 +01002597 reql++;
William Lallemandbddd33a2018-12-11 16:10:53 +01002598 }
William Lallemandebf61802018-12-11 16:10:57 +01002599 } else {
2600 while (p+reql < end) {
2601 if (p[reql] == '\n') {
2602 /* found the end of the line */
2603 reql++;
2604 break;
2605 }
William Lallemandbddd33a2018-12-11 16:10:53 +01002606 reql++;
William Lallemandbddd33a2018-12-11 16:10:53 +01002607 }
William Lallemandbddd33a2018-12-11 16:10:53 +01002608 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002609
William Lallemandbddd33a2018-12-11 16:10:53 +01002610 /* set end to first byte after the end of the command */
2611 end = p + reql;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002612
William Lallemandbddd33a2018-12-11 16:10:53 +01002613 /* there is no end to this command, need more to parse ! */
Willy Tarreau6cd93f52022-01-20 08:31:50 +01002614 if (!reql || *(end-1) != '\n') {
William Lallemandbddd33a2018-12-11 16:10:53 +01002615 return -1;
2616 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002617
William Lallemand3301f3e2018-12-13 09:05:48 +01002618 if (s->pcli_flags & PCLI_F_PAYLOAD) {
2619 if (reql == 1) /* last line of the payload */
2620 s->pcli_flags &= ~PCLI_F_PAYLOAD;
William Lallemandebf61802018-12-11 16:10:57 +01002621 return reql;
2622 }
2623
William Lallemandbddd33a2018-12-11 16:10:53 +01002624 *(end-1) = '\0';
William Lallemandcf62f7e2018-10-26 14:47:40 +02002625
William Lallemandbddd33a2018-12-11 16:10:53 +01002626 /* splits the command in words */
Willy Tarreauf14c7572021-03-13 10:59:23 +01002627 while (i < MAX_CLI_ARGS && p < end) {
William Lallemandbddd33a2018-12-11 16:10:53 +01002628 /* skip leading spaces/tabs */
2629 p += strspn(p, " \t");
2630 if (!*p)
William Lallemandcf62f7e2018-10-26 14:47:40 +02002631 break;
2632
William Lallemandbddd33a2018-12-11 16:10:53 +01002633 args[i] = p;
William Lallemandfe249c32020-06-18 18:03:57 +02002634 while (1) {
2635 p += strcspn(p, " \t\\");
2636 /* escaped chars using backlashes (\) */
2637 if (*p == '\\') {
2638 if (!*++p)
2639 break;
2640 if (!*++p)
2641 break;
2642 } else {
2643 break;
William Lallemandbddd33a2018-12-11 16:10:53 +01002644 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002645 }
William Lallemandfe249c32020-06-18 18:03:57 +02002646 *p++ = 0;
William Lallemandbddd33a2018-12-11 16:10:53 +01002647 i++;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002648 }
2649
William Lallemandbddd33a2018-12-11 16:10:53 +01002650 argl = i;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002651
Willy Tarreauf14c7572021-03-13 10:59:23 +01002652 for (; i < MAX_CLI_ARGS + 1; i++)
William Lallemandbddd33a2018-12-11 16:10:53 +01002653 args[i] = NULL;
2654
2655 wtrim = pcli_find_and_exec_kw(s, args, argl, errmsg, next_pid);
2656
2657 /* End of words are ending by \0, we need to replace the \0s by spaces
William Lallemandfe618fb2022-02-02 14:07:08 +01002658 before forwarding them */
William Lallemandbddd33a2018-12-11 16:10:53 +01002659 p = str;
William Lallemand3301f3e2018-12-13 09:05:48 +01002660 while (p < end-1) {
William Lallemandbddd33a2018-12-11 16:10:53 +01002661 if (*p == '\0')
2662 *p = ' ';
2663 p++;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002664 }
2665
William Lallemand3301f3e2018-12-13 09:05:48 +01002666 payload = strstr(str, PAYLOAD_PATTERN);
2667 if ((end - 1) == (payload + strlen(PAYLOAD_PATTERN))) {
2668 /* if the payload pattern is at the end */
2669 s->pcli_flags |= PCLI_F_PAYLOAD;
William Lallemand3301f3e2018-12-13 09:05:48 +01002670 }
2671
William Lallemandbddd33a2018-12-11 16:10:53 +01002672 *(end-1) = '\n';
William Lallemandcf62f7e2018-10-26 14:47:40 +02002673
William Lallemandbddd33a2018-12-11 16:10:53 +01002674 if (wtrim > 0) {
2675 trim = &args[wtrim][0];
2676 if (trim == NULL) /* if this was the last word in the table */
2677 trim = end;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002678
William Lallemandbddd33a2018-12-11 16:10:53 +01002679 b_del(&req->buf, trim - str);
2680
William Lallemandb7ea1412018-12-13 09:05:47 +01002681 ret = end - trim;
William Lallemandbddd33a2018-12-11 16:10:53 +01002682 } else if (wtrim < 0) {
2683 /* parsing error */
2684 return -1;
William Lallemandb7ea1412018-12-13 09:05:47 +01002685 } else {
2686 /* the whole string */
2687 ret = end - str;
William Lallemandbddd33a2018-12-11 16:10:53 +01002688 }
2689
William Lallemandb7ea1412018-12-13 09:05:47 +01002690 if (ret > 1) {
William Lallemand2a171912022-02-02 11:43:20 +01002691
2692 /* the mcli-debug-mode is only sent to the applet of the master */
2693 if ((s->pcli_flags & ACCESS_MCLI_DEBUG) && *next_pid <= 0) {
William Lallemand78ad9af2024-08-08 17:09:15 +02002694 ci_insert(req, 0, "mcli-debug-mode on -;", strlen("mcli-debug-mode on -;"));
2695 ret += strlen("mcli-debug-mode on -;");
William Lallemand2a171912022-02-02 11:43:20 +01002696 }
William Lallemand7267f782022-02-01 16:08:50 +01002697 if (s->pcli_flags & ACCESS_EXPERIMENTAL) {
William Lallemand78ad9af2024-08-08 17:09:15 +02002698 ci_insert(req, 0, "experimental-mode on -;", strlen("experimental-mode on -;"));
2699 ret += strlen("experimental-mode on -;");
William Lallemand7267f782022-02-01 16:08:50 +01002700 }
2701 if (s->pcli_flags & ACCESS_EXPERT) {
William Lallemand78ad9af2024-08-08 17:09:15 +02002702 ci_insert(req, 0, "expert-mode on -;", strlen("expert-mode on -;"));
2703 ret += strlen("expert-mode on -;");
William Lallemand7267f782022-02-01 16:08:50 +01002704 }
William Lallemand74381812023-12-06 11:15:01 +01002705 if (s->pcli_flags & ACCESS_MCLI_SEVERITY_STR) {
William Lallemand78ad9af2024-08-08 17:09:15 +02002706 const char *cmd = "set severity-output string -;";
2707 ci_insert(req, 0, cmd, strlen(cmd));
2708 ret += strlen(cmd);
William Lallemand74381812023-12-06 11:15:01 +01002709 }
2710 if (s->pcli_flags & ACCESS_MCLI_SEVERITY_NB) {
William Lallemand78ad9af2024-08-08 17:09:15 +02002711 const char *cmd = "set severity-output number -;";
2712 ci_insert(req, 0, cmd, strlen(cmd));
2713 ret += strlen(cmd);
William Lallemand74381812023-12-06 11:15:01 +01002714 }
William Lallemand7267f782022-02-01 16:08:50 +01002715
William Lallemandb7ea1412018-12-13 09:05:47 +01002716 if (pcli_has_level(s, ACCESS_LVL_ADMIN)) {
2717 goto end;
2718 } else if (pcli_has_level(s, ACCESS_LVL_OPER)) {
William Lallemand78ad9af2024-08-08 17:09:15 +02002719 ci_insert(req, 0, "operator -;", strlen("operator -;"));
2720 ret += strlen("operator -;");
William Lallemandb7ea1412018-12-13 09:05:47 +01002721 } else if (pcli_has_level(s, ACCESS_LVL_USER)) {
William Lallemand78ad9af2024-08-08 17:09:15 +02002722 ci_insert(req, 0, "user -;", strlen("user -;"));
2723 ret += strlen("user -;");
William Lallemandb7ea1412018-12-13 09:05:47 +01002724 }
2725 }
2726end:
William Lallemandbddd33a2018-12-11 16:10:53 +01002727
William Lallemandb7ea1412018-12-13 09:05:47 +01002728 return ret;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002729}
2730
2731int pcli_wait_for_request(struct stream *s, struct channel *req, int an_bit)
2732{
William Lallemandbddd33a2018-12-11 16:10:53 +01002733 int next_pid = -1;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002734 int to_forward;
William Lallemandbddd33a2018-12-11 16:10:53 +01002735 char *errmsg = NULL;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002736
Ilya Shipitsin5e87bcf2021-12-25 11:45:52 +05002737 /* Don't read the next command if still processing the response of the
Christopher Fauletd98da3b2021-10-18 14:52:49 +02002738 * current one. Just wait. At this stage, errors should be handled by
2739 * the response analyzer.
2740 */
2741 if (s->res.analysers & AN_RES_WAIT_CLI)
2742 return 0;
2743
William Lallemandb7ea1412018-12-13 09:05:47 +01002744 if ((s->pcli_flags & ACCESS_LVL_MASK) == ACCESS_LVL_NONE)
2745 s->pcli_flags |= strm_li(s)->bind_conf->level & ACCESS_LVL_MASK;
2746
William Lallemand0a0512f2022-09-24 16:14:50 +02002747 /* stream that comes from the reload listener only responses the reload
2748 * status and quits */
2749 if (!(s->pcli_flags & PCLI_F_RELOAD)
2750 && strm_li(s)->bind_conf == mcli_reload_bind_conf)
2751 goto send_status;
2752
2753
William Lallemandcf62f7e2018-10-26 14:47:40 +02002754read_again:
2755 /* if the channel is closed for read, we won't receive any more data
2756 from the client, but we don't want to forward this close to the
2757 server */
2758 channel_dont_close(req);
2759
2760 /* We don't know yet to which server we will connect */
2761 channel_dont_connect(req);
2762
Christopher Faulet9a790f62023-03-16 14:40:03 +01002763 s->scf->flags |= SC_FL_RCV_ONCE;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002764
2765 /* need more data */
2766 if (!ci_data(req))
Christopher Faulet0f727da2022-01-18 08:44:23 +01002767 goto missing_data;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002768
2769 /* If there is data available for analysis, log the end of the idle time. */
2770 if (c_data(req) && s->logs.t_idle == -1)
Willy Tarreau69530f52023-04-28 09:16:15 +02002771 s->logs.t_idle = ns_to_ms(now_ns - s->logs.accept_ts) - s->logs.t_handshake;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002772
William Lallemandbddd33a2018-12-11 16:10:53 +01002773 to_forward = pcli_parse_request(s, req, &errmsg, &next_pid);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002774 if (to_forward > 0) {
William Lallemandbddd33a2018-12-11 16:10:53 +01002775 int target_pid;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002776 /* enough data */
2777
William Lallemandcf62f7e2018-10-26 14:47:40 +02002778 /* forward only 1 command */
2779 channel_forward(req, to_forward);
William Lallemandebf61802018-12-11 16:10:57 +01002780
William Lallemanddc12c2e2018-12-13 09:05:46 +01002781 if (!(s->pcli_flags & PCLI_F_PAYLOAD)) {
William Lallemandebf61802018-12-11 16:10:57 +01002782 /* we send only 1 command per request, and we write close after it */
Christopher Fauletdf7cd712023-04-13 15:56:26 +02002783 sc_schedule_shutdown(s->scb);
William Lallemandebf61802018-12-11 16:10:57 +01002784 } else {
2785 pcli_write_prompt(s);
2786 }
2787
2788 s->res.flags |= CF_WAKE_ONCE; /* need to be called again */
William Lallemandcf62f7e2018-10-26 14:47:40 +02002789 s->res.analysers |= AN_RES_WAIT_CLI;
2790
William Lallemandebf61802018-12-11 16:10:57 +01002791 if (!(s->flags & SF_ASSIGNED)) {
2792 if (next_pid > -1)
2793 target_pid = next_pid;
2794 else
2795 target_pid = s->pcli_next_pid;
2796 /* we can connect now */
2797 s->target = pcli_pid_to_server(target_pid);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002798
William Lallemanddcbe7b92021-12-10 14:14:53 +01002799 if (!s->target)
2800 goto server_disconnect;
2801
William Lallemandebf61802018-12-11 16:10:57 +01002802 s->flags |= (SF_DIRECT | SF_ASSIGNED);
2803 channel_auto_connect(req);
2804 }
William Lallemandcf62f7e2018-10-26 14:47:40 +02002805
2806 } else if (to_forward == 0) {
William Lallemandcf62f7e2018-10-26 14:47:40 +02002807 /* we trimmed things but we might have other commands to consume */
William Lallemandbddd33a2018-12-11 16:10:53 +01002808 pcli_write_prompt(s);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002809 goto read_again;
Christopher Faulet0f727da2022-01-18 08:44:23 +01002810 } else if (to_forward == -1) {
William Lallemand1601eeb2023-05-14 18:36:00 +02002811 if (!errmsg) /* no error means missing data */
2812 goto missing_data;
2813
2814 /* there was an error during the parsing */
2815 pcli_error(s, errmsg);
2816 pcli_write_prompt(s);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002817 }
2818
2819 return 0;
2820
2821send_help:
2822 b_reset(&req->buf);
2823 b_putblk(&req->buf, "help\n", 5);
2824 goto read_again;
William Lallemanddcbe7b92021-12-10 14:14:53 +01002825
William Lallemand0a0512f2022-09-24 16:14:50 +02002826send_status:
2827 s->pcli_flags |= PCLI_F_RELOAD;
Willy Tarreaudd9f9212023-05-07 07:07:44 +02002828 /* don't use ci_putblk here because SHUT_DONE could have been sent */
William Lallemand0a0512f2022-09-24 16:14:50 +02002829 b_reset(&req->buf);
2830 b_putblk(&req->buf, "_loadstatus;quit\n", 17);
2831 goto read_again;
2832
Christopher Faulet0f727da2022-01-18 08:44:23 +01002833missing_data:
Christopher Fauletca5309a2023-04-17 16:17:32 +02002834 if (s->scf->flags & (SC_FL_ABRT_DONE|SC_FL_EOS)) {
Christopher Faulet0f727da2022-01-18 08:44:23 +01002835 /* There is no more request or a only a partial one and we
2836 * receive a close from the client, we can leave */
Christopher Fauletdf7cd712023-04-13 15:56:26 +02002837 sc_schedule_shutdown(s->scf);
Christopher Faulet0f727da2022-01-18 08:44:23 +01002838 s->req.analysers &= ~AN_REQ_WAIT_CLI;
2839 return 1;
2840 }
2841 else if (channel_full(req, global.tune.maxrewrite)) {
2842 /* buffer is full and we didn't catch the end of a command */
2843 goto send_help;
2844 }
2845 return 0;
2846
William Lallemanddcbe7b92021-12-10 14:14:53 +01002847server_disconnect:
2848 pcli_reply_and_close(s, "Can't connect to the target CLI!\n");
2849 return 0;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002850}
2851
2852int pcli_wait_for_response(struct stream *s, struct channel *rep, int an_bit)
2853{
2854 struct proxy *fe = strm_fe(s);
2855 struct proxy *be = s->be;
2856
Christopher Fauletd7bac882023-04-14 12:05:55 +02002857 if ((s->scb->flags & SC_FL_ERROR) || (rep->flags & (CF_READ_TIMEOUT|CF_WRITE_TIMEOUT)) ||
Christopher Faulet64350bb2023-04-13 16:37:37 +02002858 ((s->scf->flags & SC_FL_SHUT_DONE) && (rep->to_forward || co_data(rep)))) {
William Lallemand6b7cd0a2018-11-06 17:37:11 +01002859 pcli_reply_and_close(s, "Can't connect to the target CLI!\n");
Christopher Fauletd98da3b2021-10-18 14:52:49 +02002860 s->req.analysers &= ~AN_REQ_WAIT_CLI;
William Lallemand6b7cd0a2018-11-06 17:37:11 +01002861 s->res.analysers &= ~AN_RES_WAIT_CLI;
2862 return 0;
2863 }
Christopher Faulet9a790f62023-03-16 14:40:03 +01002864 s->scb->flags |= SC_FL_RCV_ONCE; /* try to get back here ASAP */
Christopher Faulet68ef2182023-03-17 15:38:18 +01002865 s->scf->flags |= SC_FL_SND_NEVERWAIT;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002866
2867 /* don't forward the close */
2868 channel_dont_close(&s->res);
2869 channel_dont_close(&s->req);
2870
William Lallemanddc12c2e2018-12-13 09:05:46 +01002871 if (s->pcli_flags & PCLI_F_PAYLOAD) {
William Lallemandebf61802018-12-11 16:10:57 +01002872 s->res.analysers &= ~AN_RES_WAIT_CLI;
2873 s->req.flags |= CF_WAKE_ONCE; /* need to be called again if there is some command left in the request */
2874 return 0;
2875 }
2876
William Lallemandcf62f7e2018-10-26 14:47:40 +02002877 /* forward the data */
2878 if (ci_data(rep)) {
2879 c_adv(rep, ci_data(rep));
2880 return 0;
2881 }
2882
Christopher Fauletca5309a2023-04-17 16:17:32 +02002883 if (s->scb->flags & (SC_FL_ABRT_DONE|SC_FL_EOS)) {
William Lallemandcf62f7e2018-10-26 14:47:40 +02002884 /* stream cleanup */
2885
William Lallemand2f4ce202018-10-26 14:47:47 +02002886 pcli_write_prompt(s);
2887
Willy Tarreaucb041662022-05-17 19:44:42 +02002888 s->scb->flags |= SC_FL_NOLINGER | SC_FL_NOHALF;
Christopher Fauletcfc11c02023-04-13 16:10:23 +02002889 sc_abort(s->scb);
Christopher Fauletb2b1c3a2023-04-13 16:23:48 +02002890 sc_shutdown(s->scb);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002891
2892 /*
2893 * starting from there this the same code as
2894 * http_end_txn_clean_session().
2895 *
2896 * It allows to do frontend keepalive while reconnecting to a
2897 * new server for each request.
2898 */
2899
2900 if (s->flags & SF_BE_ASSIGNED) {
Willy Tarreau4781b152021-04-06 13:53:36 +02002901 HA_ATOMIC_DEC(&be->beconn);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002902 if (unlikely(s->srv_conn))
2903 sess_change_server(s, NULL);
2904 }
2905
Willy Tarreau69530f52023-04-28 09:16:15 +02002906 s->logs.t_close = ns_to_ms(now_ns - s->logs.accept_ts);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002907 stream_process_counters(s);
2908
2909 /* don't count other requests' data */
2910 s->logs.bytes_in -= ci_data(&s->req);
2911 s->logs.bytes_out -= ci_data(&s->res);
2912
2913 /* we may need to know the position in the queue */
2914 pendconn_free(s);
2915
2916 /* let's do a final log if we need it */
2917 if (!LIST_ISEMPTY(&fe->logformat) && s->logs.logwait &&
2918 !(s->flags & SF_MONITOR) &&
2919 (!(fe->options & PR_O_NULLNOLOG) || s->req.total)) {
2920 s->do_log(s);
2921 }
2922
2923 /* stop tracking content-based counters */
2924 stream_stop_content_counters(s);
2925 stream_update_time_stats(s);
2926
2927 s->logs.accept_date = date; /* user-visible date for logging */
Willy Tarreau69530f52023-04-28 09:16:15 +02002928 s->logs.accept_ts = now_ns; /* corrected date for internal use */
William Lallemandcf62f7e2018-10-26 14:47:40 +02002929 s->logs.t_handshake = 0; /* There are no handshake in keep alive connection. */
2930 s->logs.t_idle = -1;
Willy Tarreauad5a5f62023-04-27 09:46:02 +02002931 s->logs.request_ts = 0;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002932 s->logs.t_queue = -1;
2933 s->logs.t_connect = -1;
2934 s->logs.t_data = -1;
2935 s->logs.t_close = 0;
2936 s->logs.prx_queue_pos = 0; /* we get the number of pending conns before us */
2937 s->logs.srv_queue_pos = 0; /* we will get this number soon */
2938
2939 s->logs.bytes_in = s->req.total = ci_data(&s->req);
2940 s->logs.bytes_out = s->res.total = ci_data(&s->res);
2941
2942 stream_del_srv_conn(s);
2943 if (objt_server(s->target)) {
2944 if (s->flags & SF_CURR_SESS) {
2945 s->flags &= ~SF_CURR_SESS;
Willy Tarreau4781b152021-04-06 13:53:36 +02002946 HA_ATOMIC_DEC(&__objt_server(s->target)->cur_sess);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002947 }
Willy Tarreaub54c40a2018-12-02 19:28:41 +01002948 if (may_dequeue_tasks(__objt_server(s->target), be))
Willy Tarreau9ab78292021-06-22 18:47:51 +02002949 process_srv_queue(__objt_server(s->target));
William Lallemandcf62f7e2018-10-26 14:47:40 +02002950 }
2951
2952 s->target = NULL;
2953
Christopher Faulet1c2fb4c2024-09-02 18:29:02 +02002954 /* Always release our endpoint */
2955 s->srv_conn = NULL;
2956 if (sc_reset_endp(s->scb) < 0) {
2957 if (!s->conn_err_type)
2958 s->conn_err_type = STRM_ET_CONN_OTHER;
2959 if (s->srv_error)
2960 s->srv_error(s, s->scb);
2961 return 1;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002962 }
Christopher Faulet1c2fb4c2024-09-02 18:29:02 +02002963 se_fl_clr(s->scb->sedesc, ~SE_FL_DETACHED);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002964
Willy Tarreau7cb9e6c2022-05-17 19:40:40 +02002965 sockaddr_free(&s->scb->dst);
Willy Tarreau1c8d32b2019-07-18 15:47:45 +02002966
Willy Tarreau74568cf2022-05-27 09:03:30 +02002967 sc_set_state(s->scb, SC_ST_INI);
Christopher Fauleta1d14a72023-04-14 10:42:08 +02002968 s->scb->flags &= ~(SC_FL_ERROR|SC_FL_SHUT_DONE|SC_FL_SHUT_WANTED);
Willy Tarreaucb041662022-05-17 19:44:42 +02002969 s->scb->flags &= SC_FL_ISBACK | SC_FL_DONT_WAKE; /* we're in the context of process_stream */
Christopher Faulet87633c32023-04-03 18:32:50 +02002970
2971 s->req.flags &= ~(CF_AUTO_CONNECT|CF_STREAMER|CF_STREAMER_FAST|CF_WROTE_DATA);
2972 s->res.flags &= ~(CF_STREAMER|CF_STREAMER_FAST|CF_WRITE_EVENT|CF_WROTE_DATA|CF_READ_EVENT);
Willy Tarreau03bd3952022-05-02 16:36:47 +02002973 s->flags &= ~(SF_DIRECT|SF_ASSIGNED|SF_BE_ASSIGNED|SF_FORCE_PRST|SF_IGNORE_PRST);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002974 s->flags &= ~(SF_CURR_SESS|SF_REDIRECTABLE|SF_SRV_REUSED);
2975 s->flags &= ~(SF_ERR_MASK|SF_FINST_MASK|SF_REDISP);
Christopher Faulet909f3182022-03-29 15:42:09 +02002976 s->conn_retries = 0; /* used for logging too */
Christopher Fauletae024ce2022-03-29 19:02:31 +02002977 s->conn_exp = TICK_ETERNITY;
Christopher Faulet50264b42022-03-30 19:39:30 +02002978 s->conn_err_type = STRM_ET_NONE;
William Lallemandcf62f7e2018-10-26 14:47:40 +02002979 /* reinitialise the current rule list pointer to NULL. We are sure that
2980 * any rulelist match the NULL pointer.
2981 */
2982 s->current_rule_list = NULL;
2983
2984 s->be = strm_fe(s);
2985 s->logs.logwait = strm_fe(s)->to_log;
2986 s->logs.level = 0;
2987 stream_del_srv_conn(s);
2988 s->target = NULL;
2989 /* re-init store persistence */
2990 s->store_count = 0;
Christopher Faulet71ec2dd2024-07-16 14:42:20 +02002991 s->uniq_id = _HA_ATOMIC_FETCH_ADD(&global.req_count, 1);
William Lallemandcf62f7e2018-10-26 14:47:40 +02002992
Christopher Fauletca5309a2023-04-17 16:17:32 +02002993 s->scf->flags &= ~(SC_FL_EOS|SC_FL_ERROR|SC_FL_ABRT_DONE|SC_FL_ABRT_WANTED);
Christopher Faulet68ef2182023-03-17 15:38:18 +01002994 s->scf->flags &= ~SC_FL_SND_NEVERWAIT;
Christopher Faulet9a790f62023-03-16 14:40:03 +01002995 s->scf->flags |= SC_FL_RCV_ONCE; /* one read is usually enough */
William Lallemandcf62f7e2018-10-26 14:47:40 +02002996
2997 s->req.flags |= CF_WAKE_ONCE; /* need to be called again if there is some command left in the request */
2998
William Lallemandcf62f7e2018-10-26 14:47:40 +02002999 s->res.analysers &= ~AN_RES_WAIT_CLI;
3000
3001 /* We must trim any excess data from the response buffer, because we
3002 * may have blocked an invalid response from a server that we don't
Ilya Shipitsind4259502020-04-08 01:07:56 +05003003 * want to accidentally forward once we disable the analysers, nor do
William Lallemandcf62f7e2018-10-26 14:47:40 +02003004 * we want those data to come along with next response. A typical
3005 * example of such data would be from a buggy server responding to
3006 * a HEAD with some data, or sending more than the advertised
3007 * content-length.
3008 */
3009 if (unlikely(ci_data(&s->res)))
3010 b_set_data(&s->res.buf, co_data(&s->res));
3011
3012 /* Now we can realign the response buffer */
3013 c_realign_if_empty(&s->res);
3014
Christopher Faulet5aaacfb2023-02-15 08:13:33 +01003015 s->scf->ioto = strm_fe(s)->timeout.client;
3016 s->scb->ioto = TICK_ETERNITY;
William Lallemandcf62f7e2018-10-26 14:47:40 +02003017
William Lallemandcf62f7e2018-10-26 14:47:40 +02003018 s->req.analyse_exp = TICK_ETERNITY;
William Lallemandcf62f7e2018-10-26 14:47:40 +02003019 s->res.analyse_exp = TICK_ETERNITY;
Christopher Faulet15315d62023-02-20 08:23:51 +01003020
William Lallemandcf62f7e2018-10-26 14:47:40 +02003021 /* we're removing the analysers, we MUST re-enable events detection.
3022 * We don't enable close on the response channel since it's either
3023 * already closed, or in keep-alive with an idle connection handler.
3024 */
3025 channel_auto_read(&s->req);
3026 channel_auto_close(&s->req);
3027 channel_auto_read(&s->res);
3028
3029
3030 return 1;
3031 }
3032 return 0;
3033}
3034
William Lallemand8a022572018-10-26 14:47:35 +02003035/*
3036 * The mworker functions are used to initialize the CLI in the master process
3037 */
3038
William Lallemand309dc9a2018-10-26 14:47:45 +02003039 /*
3040 * Stop the mworker proxy
3041 */
3042void mworker_cli_proxy_stop()
3043{
William Lallemand550db6d2018-11-06 17:37:12 +01003044 if (mworker_proxy)
3045 stop_proxy(mworker_proxy);
William Lallemand309dc9a2018-10-26 14:47:45 +02003046}
3047
William Lallemand8a022572018-10-26 14:47:35 +02003048/*
3049 * Create the mworker CLI proxy
3050 */
3051int mworker_cli_proxy_create()
3052{
3053 struct mworker_proc *child;
William Lallemand744a0892018-11-22 16:46:51 +01003054 char *msg = NULL;
3055 char *errmsg = NULL;
William Lallemand8a022572018-10-26 14:47:35 +02003056
William Lallemandae787ba2021-07-29 15:13:22 +02003057 mworker_proxy = alloc_new_proxy("MASTER", PR_CAP_LISTEN|PR_CAP_INT, &errmsg);
William Lallemand8a022572018-10-26 14:47:35 +02003058 if (!mworker_proxy)
William Lallemandae787ba2021-07-29 15:13:22 +02003059 goto error_proxy;
William Lallemand8a022572018-10-26 14:47:35 +02003060
William Lallemandcf62f7e2018-10-26 14:47:40 +02003061 mworker_proxy->mode = PR_MODE_CLI;
William Lallemand8a022572018-10-26 14:47:35 +02003062 mworker_proxy->maxconn = 10; /* default to 10 concurrent connections */
3063 mworker_proxy->timeout.client = 0; /* no timeout */
3064 mworker_proxy->conf.file = strdup("MASTER");
3065 mworker_proxy->conf.line = 0;
3066 mworker_proxy->accept = frontend_accept;
3067 mworker_proxy-> lbprm.algo = BE_LB_ALGO_NONE;
3068
3069 /* Does not init the default target the CLI applet, but must be done in
3070 * the request parsing code */
3071 mworker_proxy->default_target = NULL;
3072
William Lallemand8a022572018-10-26 14:47:35 +02003073 /* create all servers using the mworker_proc list */
3074 list_for_each_entry(child, &proc_list, list) {
William Lallemand8a022572018-10-26 14:47:35 +02003075 struct server *newsrv = NULL;
3076 struct sockaddr_storage *sk;
3077 int port1, port2, port;
3078 struct protocol *proto;
William Lallemand8a022572018-10-26 14:47:35 +02003079
William Lallemanda31b09e2020-01-14 15:25:02 +01003080 /* only the workers support the master CLI */
3081 if (!(child->options & PROC_O_TYPE_WORKER))
3082 continue;
3083
William Lallemand8a022572018-10-26 14:47:35 +02003084 newsrv = new_server(mworker_proxy);
3085 if (!newsrv)
William Lallemand744a0892018-11-22 16:46:51 +01003086 goto error;
William Lallemand8a022572018-10-26 14:47:35 +02003087
3088 /* we don't know the new pid yet */
3089 if (child->pid == -1)
Willy Tarreaue8422bf2021-06-15 09:08:18 +02003090 memprintf(&msg, "cur-%d", 1);
William Lallemand8a022572018-10-26 14:47:35 +02003091 else
3092 memprintf(&msg, "old-%d", child->pid);
3093
3094 newsrv->next = mworker_proxy->srv;
3095 mworker_proxy->srv = newsrv;
3096 newsrv->conf.file = strdup(msg);
3097 newsrv->id = strdup(msg);
3098 newsrv->conf.line = 0;
3099
3100 memprintf(&msg, "sockpair@%d", child->ipc_fd[0]);
Willy Tarreau5fc93282020-09-16 18:25:03 +02003101 if ((sk = str2sa_range(msg, &port, &port1, &port2, NULL, &proto,
Willy Tarreaua93e5c72020-09-15 14:01:16 +02003102 &errmsg, NULL, NULL, PA_O_STREAM)) == 0) {
William Lallemand744a0892018-11-22 16:46:51 +01003103 goto error;
Tim Duesterhus4cae3b22018-11-22 16:46:50 +01003104 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003105 ha_free(&msg);
William Lallemand8a022572018-10-26 14:47:35 +02003106
Willy Tarreau5fc93282020-09-16 18:25:03 +02003107 if (!proto->connect) {
William Lallemand744a0892018-11-22 16:46:51 +01003108 goto error;
William Lallemand8a022572018-10-26 14:47:35 +02003109 }
3110
3111 /* no port specified */
3112 newsrv->flags |= SRV_F_MAPPORTS;
3113 newsrv->addr = *sk;
William Lallemandcf62f7e2018-10-26 14:47:40 +02003114 /* don't let the server participate to load balancing */
3115 newsrv->iweight = 0;
3116 newsrv->uweight = 0;
William Lallemand8a022572018-10-26 14:47:35 +02003117 srv_lb_commit_status(newsrv);
William Lallemand291810d2018-10-26 14:47:38 +02003118
3119 child->srv = newsrv;
William Lallemand8a022572018-10-26 14:47:35 +02003120 }
William Lallemandae787ba2021-07-29 15:13:22 +02003121
3122 mworker_proxy->next = proxies_list;
3123 proxies_list = mworker_proxy;
3124
William Lallemand8a022572018-10-26 14:47:35 +02003125 return 0;
William Lallemand744a0892018-11-22 16:46:51 +01003126
3127error:
William Lallemand744a0892018-11-22 16:46:51 +01003128
3129 list_for_each_entry(child, &proc_list, list) {
3130 free((char *)child->srv->conf.file); /* cast because of const char * */
3131 free(child->srv->id);
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003132 ha_free(&child->srv);
William Lallemand744a0892018-11-22 16:46:51 +01003133 }
William Lallemandae787ba2021-07-29 15:13:22 +02003134 free_proxy(mworker_proxy);
William Lallemand744a0892018-11-22 16:46:51 +01003135 free(msg);
3136
William Lallemandae787ba2021-07-29 15:13:22 +02003137error_proxy:
3138 ha_alert("%s\n", errmsg);
3139 free(errmsg);
3140
William Lallemand744a0892018-11-22 16:46:51 +01003141 return -1;
William Lallemand8a022572018-10-26 14:47:35 +02003142}
Olivier Houchardf886e342017-04-05 22:24:59 +02003143
William Lallemandce83b4a2018-10-26 14:47:30 +02003144/*
William Lallemande7361152018-10-26 14:47:36 +02003145 * Create a new listener for the master CLI proxy
3146 */
William Lallemand21623b52022-09-24 15:51:27 +02003147struct bind_conf *mworker_cli_proxy_new_listener(char *line)
William Lallemande7361152018-10-26 14:47:36 +02003148{
3149 struct bind_conf *bind_conf;
3150 struct listener *l;
3151 char *err = NULL;
3152 char *args[MAX_LINE_ARGS + 1];
3153 int arg;
3154 int cur_arg;
3155
William Lallemand2e945c82019-11-25 09:58:37 +01003156 arg = 1;
William Lallemande7361152018-10-26 14:47:36 +02003157 args[0] = line;
3158
3159 /* args is a bind configuration with spaces replaced by commas */
3160 while (*line && arg < MAX_LINE_ARGS) {
3161
3162 if (*line == ',') {
3163 *line++ = '\0';
3164 while (*line == ',')
3165 line++;
William Lallemand2e945c82019-11-25 09:58:37 +01003166 args[arg++] = line;
William Lallemande7361152018-10-26 14:47:36 +02003167 }
3168 line++;
3169 }
3170
William Lallemand2e945c82019-11-25 09:58:37 +01003171 args[arg] = "\0";
William Lallemande7361152018-10-26 14:47:36 +02003172
3173 bind_conf = bind_conf_alloc(mworker_proxy, "master-socket", 0, "", xprt_get(XPRT_RAW));
William Lallemand744a0892018-11-22 16:46:51 +01003174 if (!bind_conf)
3175 goto err;
William Lallemande7361152018-10-26 14:47:36 +02003176
3177 bind_conf->level &= ~ACCESS_LVL_MASK;
3178 bind_conf->level |= ACCESS_LVL_ADMIN;
Willy Tarreaue283ee62021-03-12 15:00:57 +01003179 bind_conf->level |= ACCESS_MASTER | ACCESS_MASTER_ONLY;
William Lallemande7361152018-10-26 14:47:36 +02003180
3181 if (!str2listener(args[0], mworker_proxy, bind_conf, "master-socket", 0, &err)) {
3182 ha_alert("Cannot create the listener of the master CLI\n");
William Lallemand744a0892018-11-22 16:46:51 +01003183 goto err;
William Lallemande7361152018-10-26 14:47:36 +02003184 }
3185
3186 cur_arg = 1;
3187
3188 while (*args[cur_arg]) {
William Lallemande7361152018-10-26 14:47:36 +02003189 struct bind_kw *kw;
Willy Tarreau433b05f2021-03-12 10:14:07 +01003190 const char *best;
William Lallemande7361152018-10-26 14:47:36 +02003191
3192 kw = bind_find_kw(args[cur_arg]);
3193 if (kw) {
3194 if (!kw->parse) {
3195 memprintf(&err, "'%s %s' : '%s' option is not implemented in this version (check build options).",
3196 args[0], args[1], args[cur_arg]);
3197 goto err;
3198 }
3199
Willy Tarreau4975d142021-03-13 11:00:33 +01003200 if (kw->parse(args, cur_arg, global.cli_fe, bind_conf, &err) != 0) {
William Lallemande7361152018-10-26 14:47:36 +02003201 if (err)
3202 memprintf(&err, "'%s %s' : '%s'", args[0], args[1], err);
3203 else
3204 memprintf(&err, "'%s %s' : error encountered while processing '%s'",
3205 args[0], args[1], args[cur_arg]);
3206 goto err;
3207 }
3208
3209 cur_arg += 1 + kw->skip;
3210 continue;
3211 }
3212
Willy Tarreau433b05f2021-03-12 10:14:07 +01003213 best = bind_find_best_kw(args[cur_arg]);
3214 if (best)
3215 memprintf(&err, "'%s %s' : unknown keyword '%s'. Did you mean '%s' maybe ?",
3216 args[0], args[1], args[cur_arg], best);
3217 else
3218 memprintf(&err, "'%s %s' : unknown keyword '%s'.",
3219 args[0], args[1], args[cur_arg]);
William Lallemande7361152018-10-26 14:47:36 +02003220 goto err;
3221 }
3222
3223
Willy Tarreau30836152023-01-12 19:10:17 +01003224 bind_conf->accept = session_accept_fd;
Willy Tarreau7dbd4182023-01-12 19:32:45 +01003225 bind_conf->nice = -64; /* we want to boost priority for local stats */
Willy Tarreau17146802023-01-12 19:58:42 +01003226 bind_conf->options |= BC_O_UNLIMITED; /* don't make the peers subject to global limits */
Willy Tarreaud5983ce2023-01-12 19:18:34 +01003227
Christopher Faulet8e64fdf2023-11-28 21:50:21 +01003228 /* Pin master CLI on the first thread of the first group only */
3229 thread_set_pin_grp1(&bind_conf->thread_set, 1);
3230
William Lallemande7361152018-10-26 14:47:36 +02003231 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
Willy Tarreau18c20d22020-10-09 16:11:46 +02003232 l->rx.flags |= RX_F_MWORKER; /* we are keeping this FD in the master */
Willy Tarreau18215cb2019-02-27 16:25:28 +01003233 global.maxsock++; /* for the listening socket */
William Lallemande7361152018-10-26 14:47:36 +02003234 }
Willy Tarreau18215cb2019-02-27 16:25:28 +01003235 global.maxsock += mworker_proxy->maxconn;
William Lallemande7361152018-10-26 14:47:36 +02003236
William Lallemand21623b52022-09-24 15:51:27 +02003237 return bind_conf;
William Lallemande7361152018-10-26 14:47:36 +02003238
3239err:
3240 ha_alert("%s\n", err);
William Lallemand744a0892018-11-22 16:46:51 +01003241 free(err);
3242 free(bind_conf);
William Lallemand21623b52022-09-24 15:51:27 +02003243 return NULL;
William Lallemande7361152018-10-26 14:47:36 +02003244
3245}
3246
3247/*
William Lallemandce83b4a2018-10-26 14:47:30 +02003248 * Create a new CLI socket using a socketpair for a worker process
3249 * <mworker_proc> is the process structure, and <proc> is the process number
3250 */
3251int mworker_cli_sockpair_new(struct mworker_proc *mworker_proc, int proc)
3252{
3253 struct bind_conf *bind_conf;
3254 struct listener *l;
3255 char *path = NULL;
3256 char *err = NULL;
3257
3258 /* master pipe to ensure the master is still alive */
3259 if (socketpair(AF_UNIX, SOCK_STREAM, 0, mworker_proc->ipc_fd) < 0) {
3260 ha_alert("Cannot create worker socketpair.\n");
3261 return -1;
3262 }
3263
3264 /* XXX: we might want to use a separate frontend at some point */
Willy Tarreau4975d142021-03-13 11:00:33 +01003265 if (!global.cli_fe) {
3266 if ((global.cli_fe = cli_alloc_fe("GLOBAL", "master-socket", 0)) == NULL) {
William Lallemandce83b4a2018-10-26 14:47:30 +02003267 ha_alert("out of memory trying to allocate the stats frontend");
William Lallemand744a0892018-11-22 16:46:51 +01003268 goto error;
William Lallemandce83b4a2018-10-26 14:47:30 +02003269 }
3270 }
3271
Willy Tarreau4975d142021-03-13 11:00:33 +01003272 bind_conf = bind_conf_alloc(global.cli_fe, "master-socket", 0, "", xprt_get(XPRT_RAW));
William Lallemand744a0892018-11-22 16:46:51 +01003273 if (!bind_conf)
3274 goto error;
3275
William Lallemandce83b4a2018-10-26 14:47:30 +02003276 bind_conf->level &= ~ACCESS_LVL_MASK;
3277 bind_conf->level |= ACCESS_LVL_ADMIN; /* TODO: need to lower the rights with a CLI keyword*/
William Lallemand2be557f2021-11-24 18:45:37 +01003278 bind_conf->level |= ACCESS_FD_LISTENERS;
William Lallemandce83b4a2018-10-26 14:47:30 +02003279
William Lallemandce83b4a2018-10-26 14:47:30 +02003280 if (!memprintf(&path, "sockpair@%d", mworker_proc->ipc_fd[1])) {
3281 ha_alert("Cannot allocate listener.\n");
William Lallemand744a0892018-11-22 16:46:51 +01003282 goto error;
William Lallemandce83b4a2018-10-26 14:47:30 +02003283 }
3284
Willy Tarreau4975d142021-03-13 11:00:33 +01003285 if (!str2listener(path, global.cli_fe, bind_conf, "master-socket", 0, &err)) {
Tim Duesterhus4cae3b22018-11-22 16:46:50 +01003286 free(path);
William Lallemandce83b4a2018-10-26 14:47:30 +02003287 ha_alert("Cannot create a CLI sockpair listener for process #%d\n", proc);
William Lallemand744a0892018-11-22 16:46:51 +01003288 goto error;
William Lallemandce83b4a2018-10-26 14:47:30 +02003289 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +01003290 ha_free(&path);
William Lallemandce83b4a2018-10-26 14:47:30 +02003291
Willy Tarreau30836152023-01-12 19:10:17 +01003292 bind_conf->accept = session_accept_fd;
Willy Tarreau7dbd4182023-01-12 19:32:45 +01003293 bind_conf->nice = -64; /* we want to boost priority for local stats */
Willy Tarreau17146802023-01-12 19:58:42 +01003294 bind_conf->options |= BC_O_UNLIMITED | BC_O_NOSTOP;
Willy Tarreaud5983ce2023-01-12 19:18:34 +01003295
Christopher Faulet0df691a2023-09-13 10:13:30 +02003296 /* Pin master CLI on the first thread of the first group only */
3297 thread_set_pin_grp1(&bind_conf->thread_set, 1);
3298
William Lallemandce83b4a2018-10-26 14:47:30 +02003299 list_for_each_entry(l, &bind_conf->listeners, by_bind) {
Willy Tarreau4781b152021-04-06 13:53:36 +02003300 HA_ATOMIC_INC(&unstoppable_jobs);
William Lallemandce83b4a2018-10-26 14:47:30 +02003301 /* it's a sockpair but we don't want to keep the fd in the master */
Willy Tarreau43046fa2020-09-01 15:41:59 +02003302 l->rx.flags &= ~RX_F_INHERITED;
Willy Tarreau18215cb2019-02-27 16:25:28 +01003303 global.maxsock++; /* for the listening socket */
William Lallemandce83b4a2018-10-26 14:47:30 +02003304 }
3305
3306 return 0;
William Lallemand744a0892018-11-22 16:46:51 +01003307
3308error:
3309 close(mworker_proc->ipc_fd[0]);
3310 close(mworker_proc->ipc_fd[1]);
3311 free(err);
3312
3313 return -1;
William Lallemandce83b4a2018-10-26 14:47:30 +02003314}
3315
William Lallemand74c24fb2016-11-21 17:18:36 +01003316static struct applet cli_applet = {
3317 .obj_type = OBJ_TYPE_APPLET,
3318 .name = "<CLI>", /* used for logging */
3319 .fct = cli_io_handler,
3320 .release = cli_release_handler,
3321};
3322
William Lallemand99e0bb92020-11-05 10:28:53 +01003323/* master CLI */
3324static struct applet mcli_applet = {
3325 .obj_type = OBJ_TYPE_APPLET,
3326 .name = "<MCLI>", /* used for logging */
3327 .fct = cli_io_handler,
3328 .release = cli_release_handler,
3329};
3330
Willy Tarreau0a739292016-11-22 20:21:23 +01003331/* register cli keywords */
3332static struct cli_kw_list cli_kws = {{ },{
Willy Tarreaub205bfd2021-05-07 11:38:37 +02003333 { { "help", NULL }, NULL, cli_parse_simple, NULL, NULL, NULL, ACCESS_MASTER },
3334 { { "prompt", NULL }, NULL, cli_parse_simple, NULL, NULL, NULL, ACCESS_MASTER },
3335 { { "quit", NULL }, NULL, cli_parse_simple, NULL, NULL, NULL, ACCESS_MASTER },
3336 { { "_getsocks", NULL }, NULL, _getsocks, NULL },
William Lallemandd9c28072022-02-02 11:23:58 +01003337 { { "expert-mode", NULL }, NULL, cli_parse_expert_experimental_mode, NULL, NULL, NULL, ACCESS_MASTER }, // not listed
3338 { { "experimental-mode", NULL }, NULL, cli_parse_expert_experimental_mode, NULL, NULL, NULL, ACCESS_MASTER }, // not listed
William Lallemand2a171912022-02-02 11:43:20 +01003339 { { "mcli-debug-mode", NULL }, NULL, cli_parse_expert_experimental_mode, NULL, NULL, NULL, ACCESS_MASTER_ONLY }, // not listed
Amaury Denoyelledd3a33f2023-03-03 17:11:10 +01003340 { { "set", "anon", "on" }, "set anon on [value] : activate the anonymized mode", cli_parse_set_anon, NULL, NULL },
3341 { { "set", "anon", "off" }, "set anon off : deactivate the anonymized mode", cli_parse_set_anon, NULL, NULL },
Erwan Le Goasd7869312022-09-29 10:36:11 +02003342 { { "set", "anon", "global-key", NULL }, "set anon global-key <value> : change the global anonymizing key", cli_parse_set_global_key, NULL, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02003343 { { "set", "maxconn", "global", NULL }, "set maxconn global <value> : change the per-process maxconn setting", cli_parse_set_maxconn_global, NULL },
3344 { { "set", "rate-limit", NULL }, "set rate-limit <setting> <value> : change a rate limiting value", cli_parse_set_ratelimit, NULL },
3345 { { "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 },
3346 { { "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 +02003347 { { "show", "anon", NULL }, "show anon : display the current state of anonymized mode", cli_parse_show_anon, NULL },
Willy Tarreaub205bfd2021-05-07 11:38:37 +02003348 { { "show", "env", NULL }, "show env [var] : dump environment variables known to the process", cli_parse_show_env, cli_io_handler_show_env, NULL },
3349 { { "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 },
3350 { { "show", "cli", "level", NULL }, "show cli level : display the level of the current CLI session", cli_parse_show_lvl, NULL, NULL, NULL, ACCESS_MASTER},
Willy Tarreau1cb041a2023-03-31 16:33:53 +02003351 { { "show", "fd", NULL }, "show fd [-!plcfbsd]* [num] : dump list of file descriptors in use or a specific one", cli_parse_show_fd, cli_io_handler_show_fd, NULL },
William Lallemand740629e2021-12-14 15:22:29 +01003352 { { "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 +02003353 { { "operator", NULL }, "operator : lower the level of the current CLI session to operator", cli_parse_set_lvl, NULL, NULL, NULL, ACCESS_MASTER},
3354 { { "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 +01003355 {{},}
3356}};
3357
Willy Tarreau0108d902018-11-25 19:14:37 +01003358INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);
3359
William Lallemand74c24fb2016-11-21 17:18:36 +01003360static struct cfg_kw_list cfg_kws = {ILH, {
Willy Tarreau4975d142021-03-13 11:00:33 +01003361 { CFG_GLOBAL, "stats", cli_parse_global },
William Lallemand74c24fb2016-11-21 17:18:36 +01003362 { 0, NULL, NULL },
3363}};
3364
Willy Tarreau0108d902018-11-25 19:14:37 +01003365INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws);
3366
William Lallemand74c24fb2016-11-21 17:18:36 +01003367static struct bind_kw_list bind_kws = { "STAT", { }, {
William Lallemandf6975e92017-05-26 17:42:10 +02003368 { "level", bind_parse_level, 1 }, /* set the unix socket admin level */
3369 { "expose-fd", bind_parse_expose_fd, 1 }, /* set the unix socket expose fd rights */
Andjelko Iharosc4df59e2017-07-20 11:59:48 +02003370 { "severity-output", bind_parse_severity_output, 1 }, /* set the severity output format */
William Lallemand74c24fb2016-11-21 17:18:36 +01003371 { NULL, NULL, 0 },
3372}};
3373
Willy Tarreau0108d902018-11-25 19:14:37 +01003374INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws);
William Lallemand74c24fb2016-11-21 17:18:36 +01003375
3376/*
3377 * Local variables:
3378 * c-indent-level: 8
3379 * c-basic-offset: 8
3380 * End:
3381 */