William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1 | /* |
| 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 Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 27 | #include <net/if.h> |
| 28 | |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 29 | #include <haproxy/api.h> |
Christopher Faulet | 6b0a0fb | 2022-04-04 11:29:28 +0200 | [diff] [blame] | 30 | #include <haproxy/applet.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 31 | #include <haproxy/base64.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 32 | #include <haproxy/cfgparse.h> |
Willy Tarreau | f1d32c4 | 2020-06-04 21:07:02 +0200 | [diff] [blame] | 33 | #include <haproxy/channel.h> |
Willy Tarreau | 4aa573d | 2020-06-04 18:21:56 +0200 | [diff] [blame] | 34 | #include <haproxy/check.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 35 | #include <haproxy/cli.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 36 | #include <haproxy/compression.h> |
Willy Tarreau | eb92deb | 2020-06-04 10:53:16 +0200 | [diff] [blame] | 37 | #include <haproxy/dns-t.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 38 | #include <haproxy/errors.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 39 | #include <haproxy/fd.h> |
| 40 | #include <haproxy/freq_ctr.h> |
Willy Tarreau | 762d7a5 | 2020-06-04 11:23:07 +0200 | [diff] [blame] | 41 | #include <haproxy/frontend.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 42 | #include <haproxy/global.h> |
Willy Tarreau | 853b297 | 2020-05-27 18:01:47 +0200 | [diff] [blame] | 43 | #include <haproxy/list.h> |
Willy Tarreau | 213e990 | 2020-06-04 14:58:24 +0200 | [diff] [blame] | 44 | #include <haproxy/listener.h> |
Willy Tarreau | aeed4a8 | 2020-06-04 22:01:04 +0200 | [diff] [blame] | 45 | #include <haproxy/log.h> |
William Lallemand | 3ba7c7b | 2021-11-10 10:57:18 +0100 | [diff] [blame] | 46 | #include <haproxy/mworker.h> |
Willy Tarreau | b5abe5b | 2020-06-04 14:07:37 +0200 | [diff] [blame] | 47 | #include <haproxy/mworker-t.h> |
Willy Tarreau | 225a90a | 2020-06-04 15:06:28 +0200 | [diff] [blame] | 48 | #include <haproxy/pattern-t.h> |
Willy Tarreau | 3c2a7c2 | 2020-06-04 18:38:21 +0200 | [diff] [blame] | 49 | #include <haproxy/peers.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 50 | #include <haproxy/pipe.h> |
| 51 | #include <haproxy/protocol.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 52 | #include <haproxy/proxy.h> |
Willy Tarreau | fe0ba0e | 2023-05-11 17:06:22 +0200 | [diff] [blame] | 53 | #include <haproxy/quic_sock.h> |
Willy Tarreau | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 54 | #include <haproxy/sample-t.h> |
Willy Tarreau | 5edca2f | 2022-05-27 09:25:10 +0200 | [diff] [blame] | 55 | #include <haproxy/sc_strm.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 56 | #include <haproxy/server.h> |
Willy Tarreau | 48d25b3 | 2020-06-04 18:58:52 +0200 | [diff] [blame] | 57 | #include <haproxy/session.h> |
Willy Tarreau | a74cb38 | 2020-10-15 21:29:49 +0200 | [diff] [blame] | 58 | #include <haproxy/sock.h> |
Willy Tarreau | 2eec9b5 | 2020-06-04 19:58:55 +0200 | [diff] [blame] | 59 | #include <haproxy/stats-t.h> |
Willy Tarreau | cb086c6 | 2022-05-27 09:47:12 +0200 | [diff] [blame] | 60 | #include <haproxy/stconn.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 61 | #include <haproxy/stream.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 62 | #include <haproxy/task.h> |
Willy Tarreau | c2f7c58 | 2020-06-02 18:15:32 +0200 | [diff] [blame] | 63 | #include <haproxy/ticks.h> |
Willy Tarreau | 92b4f13 | 2020-06-01 11:05:15 +0200 | [diff] [blame] | 64 | #include <haproxy/time.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 65 | #include <haproxy/tools.h> |
Willy Tarreau | d678805 | 2020-05-27 15:59:00 +0200 | [diff] [blame] | 66 | #include <haproxy/version.h> |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 67 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 68 | #define PAYLOAD_PATTERN "<<" |
| 69 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 70 | static struct applet cli_applet; |
William Lallemand | 99e0bb9 | 2020-11-05 10:28:53 +0100 | [diff] [blame] | 71 | static struct applet mcli_applet; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 72 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 73 | static const char cli_permission_denied_msg[] = |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 74 | "Permission denied\n" |
| 75 | ""; |
| 76 | |
| 77 | |
Christopher Faulet | 1bc04c7 | 2017-10-29 20:14:08 +0100 | [diff] [blame] | 78 | static THREAD_LOCAL char *dynamic_usage_msg = NULL; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 79 | |
| 80 | /* List head of cli keywords */ |
| 81 | static struct cli_kw_list cli_keywords = { |
| 82 | .list = LIST_HEAD_INIT(cli_keywords.list) |
| 83 | }; |
| 84 | |
| 85 | extern const char *stat_status_codes[]; |
| 86 | |
Eric Salama | 1b8dacc | 2021-03-16 15:12:17 +0100 | [diff] [blame] | 87 | struct proxy *mworker_proxy; /* CLI proxy of the master */ |
William Lallemand | 56f73b2 | 2022-09-24 15:56:25 +0200 | [diff] [blame] | 88 | struct bind_conf *mcli_reload_bind_conf; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 89 | |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 90 | /* CLI context for the "show env" command */ |
| 91 | struct show_env_ctx { |
| 92 | char **var; /* first variable to show */ |
| 93 | int show_one; /* stop after showing the first one */ |
| 94 | }; |
| 95 | |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 96 | /* CLI context for the "show fd" command */ |
Willy Tarreau | 1cb041a | 2023-03-31 16:33:53 +0200 | [diff] [blame] | 97 | /* 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 Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 107 | struct show_fd_ctx { |
| 108 | int fd; /* first FD to show */ |
| 109 | int show_one; /* stop after showing one FD */ |
Willy Tarreau | 1cb041a | 2023-03-31 16:33:53 +0200 | [diff] [blame] | 110 | uint show_mask; /* CLI_SHOWFD_F_xxx */ |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 111 | }; |
| 112 | |
Willy Tarreau | b128f49 | 2022-05-05 19:11:05 +0200 | [diff] [blame] | 113 | /* CLI context for the "show cli sockets" command */ |
| 114 | struct show_sock_ctx { |
| 115 | struct bind_conf *bind_conf; |
| 116 | struct listener *listener; |
| 117 | }; |
| 118 | |
Willy Tarreau | 92fbbcc | 2021-05-09 21:45:29 +0200 | [diff] [blame] | 119 | static 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 Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 127 | /* 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 | */ |
| 131 | static char *cli_gen_usage_msg(struct appctx *appctx, char * const *args) |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 132 | { |
Willy Tarreau | 92fbbcc | 2021-05-09 21:45:29 +0200 | [diff] [blame] | 133 | struct cli_kw *entries[CLI_MAX_HELP_ENTRIES]; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 134 | struct cli_kw_list *kw_list; |
| 135 | struct cli_kw *kw; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 136 | struct buffer *tmp = get_trash_chunk(); |
| 137 | struct buffer out; |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 138 | struct { struct cli_kw *kw; int dist; } matches[CLI_MAX_MATCHES], swp; |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 139 | int idx; |
Willy Tarreau | 0b1b830 | 2021-05-09 20:59:23 +0200 | [diff] [blame] | 140 | int ishelp = 0; |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 141 | int length = 0; |
Willy Tarreau | 92fbbcc | 2021-05-09 21:45:29 +0200 | [diff] [blame] | 142 | int help_entries = 0; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 143 | |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 144 | ha_free(&dynamic_usage_msg); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 145 | |
Willy Tarreau | 0b1b830 | 2021-05-09 20:59:23 +0200 | [diff] [blame] | 146 | if (args && *args && strcmp(*args, "help") == 0) { |
| 147 | args++; |
| 148 | ishelp = 1; |
| 149 | } |
| 150 | |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 151 | /* 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 Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 154 | if (kw->level & ~appctx->cli_level & (ACCESS_MASTER_ONLY|ACCESS_EXPERT|ACCESS_EXPERIMENTAL)) |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 155 | continue; |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 156 | if (!(appctx->cli_level & ACCESS_MCLI_DEBUG) && |
| 157 | (appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) == |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 158 | (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 Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 175 | /* now <length> equals the number of exactly matching words */ |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 176 | chunk_reset(tmp); |
Willy Tarreau | 0b1b830 | 2021-05-09 20:59:23 +0200 | [diff] [blame] | 177 | if (ishelp) // this is the help message. |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 178 | chunk_strcat(tmp, "The following commands are valid at this level:\n"); |
Abhijeet Rastogi | c860150 | 2022-11-17 04:42:38 -0800 | [diff] [blame] | 179 | 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 Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 190 | |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 191 | 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 Tarreau | 9c18747 | 2021-03-13 12:25:43 +0100 | [diff] [blame] | 199 | if (args && args[length] && *args[length]) { |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 200 | list_for_each_entry(kw_list, &cli_keywords.list, list) { |
| 201 | for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) { |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 202 | if (kw->level & ~appctx->cli_level & (ACCESS_MASTER_ONLY|ACCESS_EXPERT|ACCESS_EXPERIMENTAL)) |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 203 | continue; |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 204 | 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 Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 207 | 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 Tarreau | a9aa628 | 2021-03-15 10:00:29 +0100 | [diff] [blame] | 224 | int i; |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 225 | |
| 226 | /* this one matches, let's compute the distance between the two |
Willy Tarreau | a9aa628 | 2021-03-15 10:00:29 +0100 | [diff] [blame] | 227 | * 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 Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 230 | */ |
Willy Tarreau | c57dcfe | 2021-03-12 19:01:59 +0100 | [diff] [blame] | 231 | memset(word_sig, 0, sizeof(word_sig)); |
Willy Tarreau | a9aa628 | 2021-03-15 10:00:29 +0100 | [diff] [blame] | 232 | 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 Tarreau | c57dcfe | 2021-03-12 19:01:59 +0100 | [diff] [blame] | 236 | |
Willy Tarreau | a9aa628 | 2021-03-15 10:00:29 +0100 | [diff] [blame] | 237 | 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 Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 241 | } |
Willy Tarreau | a9aa628 | 2021-03-15 10:00:29 +0100 | [diff] [blame] | 242 | |
Willy Tarreau | c57dcfe | 2021-03-12 19:01:59 +0100 | [diff] [blame] | 243 | dist = word_fingerprint_distance(word_sig, list_sig); |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 244 | |
| 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 Tarreau | a9aa628 | 2021-03-15 10:00:29 +0100 | [diff] [blame] | 249 | if (dist < 5*totlen/2 && dist < matches[CLI_MAX_MATCHES-1].dist) { |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 250 | 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 Tarreau | ec197e8 | 2021-03-15 10:35:04 +0100 | [diff] [blame] | 263 | 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 Tarreau | 92fbbcc | 2021-05-09 21:45:29 +0200 | [diff] [blame] | 274 | if (help_entries < CLI_MAX_HELP_ENTRIES) |
| 275 | entries[help_entries++] = kw; |
Willy Tarreau | ec197e8 | 2021-03-15 10:35:04 +0100 | [diff] [blame] | 276 | } |
| 277 | } |
| 278 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 279 | list_for_each_entry(kw_list, &cli_keywords.list, list) { |
Willy Tarreau | ec197e8 | 2021-03-15 10:35:04 +0100 | [diff] [blame] | 280 | /* no full dump if we've already found nice candidates */ |
| 281 | if (matches[0].kw) |
| 282 | break; |
| 283 | |
Willy Tarreau | 91bc359 | 2021-03-12 15:20:39 +0100 | [diff] [blame] | 284 | for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) { |
William Lallemand | 14721be | 2018-10-26 14:47:37 +0200 | [diff] [blame] | 285 | |
Willy Tarreau | 91bc359 | 2021-03-12 15:20:39 +0100 | [diff] [blame] | 286 | /* in a worker or normal process, don't display master-only commands |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 287 | * nor expert/experimental mode commands if not in this mode. |
Willy Tarreau | 91bc359 | 2021-03-12 15:20:39 +0100 | [diff] [blame] | 288 | */ |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 289 | if (kw->level & ~appctx->cli_level & (ACCESS_MASTER_ONLY|ACCESS_EXPERT|ACCESS_EXPERIMENTAL)) |
Willy Tarreau | 91bc359 | 2021-03-12 15:20:39 +0100 | [diff] [blame] | 290 | continue; |
William Lallemand | 14721be | 2018-10-26 14:47:37 +0200 | [diff] [blame] | 291 | |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 292 | /* 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 Tarreau | 91bc359 | 2021-03-12 15:20:39 +0100 | [diff] [blame] | 295 | */ |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 296 | 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 Tarreau | 91bc359 | 2021-03-12 15:20:39 +0100 | [diff] [blame] | 299 | continue; |
Willy Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 300 | |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 301 | 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 Tarreau | 92fbbcc | 2021-05-09 21:45:29 +0200 | [diff] [blame] | 310 | if (kw->usage && idx == length && help_entries < CLI_MAX_HELP_ENTRIES) |
| 311 | entries[help_entries++] = kw; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 312 | } |
| 313 | } |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 314 | |
Willy Tarreau | 92fbbcc | 2021-05-09 21:45:29 +0200 | [diff] [blame] | 315 | 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 Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 320 | /* always show the prompt/help/quit commands */ |
| 321 | chunk_strcat(tmp, |
Willy Tarreau | 0b1b830 | 2021-05-09 20:59:23 +0200 | [diff] [blame] | 322 | " help [<command>] : list matching or all commands\n" |
Willy Tarreau | 2255557 | 2023-05-04 14:22:36 +0200 | [diff] [blame] | 323 | " prompt [timed] : toggle interactive mode with prompt\n" |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 324 | " quit : disconnect\n"); |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 325 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 326 | chunk_init(&out, NULL, 0); |
| 327 | chunk_dup(&out, tmp); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 328 | dynamic_usage_msg = out.area; |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 329 | |
Willy Tarreau | 1c0715b | 2022-05-06 17:16:35 +0200 | [diff] [blame] | 330 | cli_msg(appctx, LOG_INFO, dynamic_usage_msg); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 331 | return dynamic_usage_msg; |
| 332 | } |
| 333 | |
| 334 | struct 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 Fournier | a51a1fd | 2020-11-28 20:10:08 +0100 | [diff] [blame] | 368 | struct 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 Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 401 | void cli_register_kw(struct cli_kw_list *kw_list) |
| 402 | { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 403 | LIST_APPEND(&cli_keywords.list, &kw_list->list); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 404 | } |
| 405 | |
Willy Tarreau | 06d0e2e | 2022-03-29 15:25:30 +0200 | [diff] [blame] | 406 | /* list all known keywords on stdout, one per line */ |
| 407 | void cli_list_keywords(void) |
| 408 | { |
| 409 | struct cli_kw_list *kw_list; |
Willy Tarreau | 4465171 | 2022-03-30 12:02:35 +0200 | [diff] [blame] | 410 | struct cli_kw *kwp, *kwn, *kw; |
Willy Tarreau | 06d0e2e | 2022-03-29 15:25:30 +0200 | [diff] [blame] | 411 | int idx; |
| 412 | |
Willy Tarreau | 4465171 | 2022-03-30 12:02:35 +0200 | [diff] [blame] | 413 | 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 Tarreau | 06d0e2e | 2022-03-29 15:25:30 +0200 | [diff] [blame] | 423 | } |
Willy Tarreau | 4465171 | 2022-03-30 12:02:35 +0200 | [diff] [blame] | 424 | } |
| 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 Tarreau | 06d0e2e | 2022-03-29 15:25:30 +0200 | [diff] [blame] | 431 | } |
Willy Tarreau | 4465171 | 2022-03-30 12:02:35 +0200 | [diff] [blame] | 432 | 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 Tarreau | 06d0e2e | 2022-03-29 15:25:30 +0200 | [diff] [blame] | 441 | } |
| 442 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 443 | |
| 444 | /* allocate a new stats frontend named <name>, and return it |
| 445 | * (or NULL in case of lack of memory). |
| 446 | */ |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 447 | static struct proxy *cli_alloc_fe(const char *name, const char *file, int line) |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 448 | { |
| 449 | struct proxy *fe; |
| 450 | |
| 451 | fe = calloc(1, sizeof(*fe)); |
| 452 | if (!fe) |
| 453 | return NULL; |
| 454 | |
| 455 | init_new_proxy(fe); |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 456 | fe->next = proxies_list; |
| 457 | proxies_list = fe; |
Willy Tarreau | 69530f5 | 2023-04-28 09:16:15 +0200 | [diff] [blame] | 458 | fe->last_change = ns_to_sec(now_ns); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 459 | fe->id = strdup("GLOBAL"); |
William Lallemand | 6640dbb | 2021-08-13 15:31:33 +0200 | [diff] [blame] | 460 | fe->cap = PR_CAP_FE|PR_CAP_INT; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 461 | 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 Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 480 | static 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 Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 483 | { |
| 484 | struct bind_conf *bind_conf; |
| 485 | struct listener *l; |
| 486 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 487 | if (strcmp(args[1], "socket") == 0) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 488 | 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 Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 495 | if (!global.cli_fe) { |
| 496 | if ((global.cli_fe = cli_alloc_fe("GLOBAL", file, line)) == NULL) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 497 | memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]); |
| 498 | return -1; |
| 499 | } |
| 500 | } |
| 501 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 502 | bind_conf = bind_conf_alloc(global.cli_fe, file, line, args[2], xprt_get(XPRT_RAW)); |
Christopher Faulet | 0c6d1dc | 2021-04-12 16:56:37 +0200 | [diff] [blame] | 503 | 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 Lallemand | 07a62f7 | 2017-05-24 00:57:40 +0200 | [diff] [blame] | 507 | bind_conf->level &= ~ACCESS_LVL_MASK; |
| 508 | bind_conf->level |= ACCESS_LVL_OPER; /* default access level */ |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 509 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 510 | if (!str2listener(args[2], global.cli_fe, bind_conf, file, line, err)) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 511 | 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 Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 518 | struct bind_kw *kw; |
Willy Tarreau | 433b05f | 2021-03-12 10:14:07 +0100 | [diff] [blame] | 519 | const char *best; |
Willy Tarreau | 0a1e1cb | 2021-11-20 20:10:41 +0100 | [diff] [blame] | 520 | int code; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 521 | |
| 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 Tarreau | 0a1e1cb | 2021-11-20 20:10:41 +0100 | [diff] [blame] | 530 | 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 Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 543 | 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 Tarreau | 433b05f | 2021-03-12 10:14:07 +0100 | [diff] [blame] | 555 | 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 Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 562 | return -1; |
| 563 | } |
| 564 | |
Willy Tarreau | 3083615 | 2023-01-12 19:10:17 +0100 | [diff] [blame] | 565 | bind_conf->accept = session_accept_fd; |
Willy Tarreau | 7dbd418 | 2023-01-12 19:32:45 +0100 | [diff] [blame] | 566 | bind_conf->nice = -64; /* we want to boost priority for local stats */ |
Willy Tarreau | 1714680 | 2023-01-12 19:58:42 +0100 | [diff] [blame] | 567 | bind_conf->options |= BC_O_UNLIMITED; /* don't make the peers subject to global limits */ |
Willy Tarreau | d5983ce | 2023-01-12 19:18:34 +0100 | [diff] [blame] | 568 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 569 | list_for_each_entry(l, &bind_conf->listeners, by_bind) { |
Willy Tarreau | 18215cb | 2019-02-27 16:25:28 +0100 | [diff] [blame] | 570 | global.maxsock++; /* for the listening socket */ |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 571 | } |
| 572 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 573 | else if (strcmp(args[1], "timeout") == 0) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 574 | unsigned timeout; |
| 575 | const char *res = parse_time_err(args[2], &timeout, TIME_UNIT_MS); |
| 576 | |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 577 | 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 Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 588 | 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 Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 596 | if (!global.cli_fe) { |
| 597 | if ((global.cli_fe = cli_alloc_fe("GLOBAL", file, line)) == NULL) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 598 | memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]); |
| 599 | return -1; |
| 600 | } |
| 601 | } |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 602 | global.cli_fe->timeout.client = MS_TO_TICKS(timeout); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 603 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 604 | else if (strcmp(args[1], "maxconn") == 0) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 605 | 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 Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 612 | if (!global.cli_fe) { |
| 613 | if ((global.cli_fe = cli_alloc_fe("GLOBAL", file, line)) == NULL) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 614 | memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]); |
| 615 | return -1; |
| 616 | } |
| 617 | } |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 618 | global.cli_fe->maxconn = maxconn; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 619 | } |
Willy Tarreau | 94f763b | 2022-07-15 17:14:40 +0200 | [diff] [blame] | 620 | else if (strcmp(args[1], "bind-process") == 0) { |
Willy Tarreau | 023c311 | 2023-04-23 09:40:56 +0200 | [diff] [blame] | 621 | memprintf(err, "'%s %s' is not supported anymore.", args[0], args[1]); |
Willy Tarreau | 94f763b | 2022-07-15 17:14:40 +0200 | [diff] [blame] | 622 | return -1; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 623 | } |
| 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 Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 631 | /* |
William Lallemand | 9a37fd0 | 2019-04-12 16:09:24 +0200 | [diff] [blame] | 632 | * 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 Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 636 | */ |
William Lallemand | 9a37fd0 | 2019-04-12 16:09:24 +0200 | [diff] [blame] | 637 | int listeners_setenv(struct proxy *frontend, const char *varname) |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 638 | { |
| 639 | struct buffer *trash = get_trash_chunk(); |
| 640 | struct bind_conf *bind_conf; |
| 641 | |
William Lallemand | 9a37fd0 | 2019-04-12 16:09:24 +0200 | [diff] [blame] | 642 | if (frontend) { |
| 643 | list_for_each_entry(bind_conf, &frontend->conf.bind, by_fe) { |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 644 | 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 Lallemand | 620072b | 2019-04-12 16:09:25 +0200 | [diff] [blame] | 650 | /* separate listener by semicolons */ |
| 651 | if (trash->data) |
| 652 | chunk_appendf(trash, ";"); |
| 653 | |
Willy Tarreau | 3715906 | 2020-08-27 07:48:42 +0200 | [diff] [blame] | 654 | if (l->rx.addr.ss_family == AF_UNIX) { |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 655 | const struct sockaddr_un *un; |
| 656 | |
Willy Tarreau | 3715906 | 2020-08-27 07:48:42 +0200 | [diff] [blame] | 657 | un = (struct sockaddr_un *)&l->rx.addr; |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 658 | 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 Tarreau | 3715906 | 2020-08-27 07:48:42 +0200 | [diff] [blame] | 663 | } 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 Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 666 | chunk_appendf(trash, "ipv4@%s:%s", addr, port); |
Willy Tarreau | 3715906 | 2020-08-27 07:48:42 +0200 | [diff] [blame] | 667 | } 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 Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 670 | chunk_appendf(trash, "ipv6@[%s]:%s", addr, port); |
Willy Tarreau | 3715906 | 2020-08-27 07:48:42 +0200 | [diff] [blame] | 671 | } 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 Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 673 | } |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 674 | } |
| 675 | } |
| 676 | trash->area[trash->data++] = '\0'; |
William Lallemand | 9a37fd0 | 2019-04-12 16:09:24 +0200 | [diff] [blame] | 677 | if (setenv(varname, trash->area, 1) < 0) |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 678 | return -1; |
| 679 | } |
| 680 | |
| 681 | return 0; |
| 682 | } |
| 683 | |
William Lallemand | 9a37fd0 | 2019-04-12 16:09:24 +0200 | [diff] [blame] | 684 | int cli_socket_setenv() |
| 685 | { |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 686 | if (listeners_setenv(global.cli_fe, "HAPROXY_CLI") < 0) |
William Lallemand | 9a37fd0 | 2019-04-12 16:09:24 +0200 | [diff] [blame] | 687 | return -1; |
| 688 | if (listeners_setenv(mworker_proxy, "HAPROXY_MASTER_CLI") < 0) |
| 689 | return -1; |
| 690 | |
| 691 | return 0; |
| 692 | } |
| 693 | |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 694 | REGISTER_CONFIG_POSTPARSER("cli", cli_socket_setenv); |
| 695 | |
Willy Tarreau | de57a57 | 2016-11-23 17:01:39 +0100 | [diff] [blame] | 696 | /* 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 | */ |
| 701 | int cli_has_level(struct appctx *appctx, int level) |
| 702 | { |
Willy Tarreau | de57a57 | 2016-11-23 17:01:39 +0100 | [diff] [blame] | 703 | |
William Lallemand | f630d01 | 2018-12-13 09:05:44 +0100 | [diff] [blame] | 704 | if ((appctx->cli_level & ACCESS_LVL_MASK) < level) { |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 705 | cli_err(appctx, cli_permission_denied_msg); |
Willy Tarreau | de57a57 | 2016-11-23 17:01:39 +0100 | [diff] [blame] | 706 | return 0; |
| 707 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 708 | return 1; |
| 709 | } |
| 710 | |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 711 | /* same as cli_has_level but for the CLI proxy and without error message */ |
| 712 | int 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 Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 720 | /* Returns severity_output for the current session if set, or default for the socket */ |
| 721 | static int cli_get_severity_output(struct appctx *appctx) |
| 722 | { |
| 723 | if (appctx->cli_severity_output) |
| 724 | return appctx->cli_severity_output; |
Willy Tarreau | 0698c80 | 2022-05-11 14:09:57 +0200 | [diff] [blame] | 725 | return strm_li(appctx_strm(appctx))->bind_conf->severity_output; |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 726 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 727 | |
Willy Tarreau | 4190856 | 2016-11-24 16:23:38 +0100 | [diff] [blame] | 728 | /* Processes the CLI interpreter on the stats socket. This function is called |
Willy Tarreau | f3697dd | 2021-03-12 15:57:47 +0100 | [diff] [blame] | 729 | * 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 Tarreau | 4190856 | 2016-11-24 16:23:38 +0100 | [diff] [blame] | 732 | * 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 Tarreau | eaffde3 | 2016-12-16 17:59:25 +0100 | [diff] [blame] | 736 | * If a keyword parser is NULL and an I/O handler is declared, the I/O handler |
| 737 | * will automatically be used. |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 738 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 739 | static int cli_parse_request(struct appctx *appctx) |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 740 | { |
Willy Tarreau | f14c757 | 2021-03-13 10:59:23 +0100 | [diff] [blame] | 741 | char *args[MAX_CLI_ARGS + 1], *p, *end, *payload = NULL; |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 742 | int i = 0; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 743 | struct cli_kw *kw; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 744 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 745 | p = appctx->chunk->area; |
| 746 | end = p + appctx->chunk->data; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 747 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 748 | /* |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 749 | * Get pointers on words. |
| 750 | * One extra slot is reserved to store a pointer on a null byte. |
| 751 | */ |
Willy Tarreau | f14c757 | 2021-03-13 10:59:23 +0100 | [diff] [blame] | 752 | while (i < MAX_CLI_ARGS && p < end) { |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 753 | int j, k; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 754 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 755 | /* skip leading spaces/tabs */ |
| 756 | p += strspn(p, " \t"); |
| 757 | if (!*p) |
| 758 | break; |
Willy Tarreau | f2dda52 | 2021-09-17 11:07:45 +0200 | [diff] [blame] | 759 | |
| 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 Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 768 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 769 | args[i] = p; |
Yves Lafon | b08c6d0 | 2020-06-08 16:08:06 +0200 | [diff] [blame] | 770 | 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 Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 782 | *p++ = 0; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 783 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 784 | /* 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 Dosen | a1c35ab | 2016-11-24 11:33:12 +0100 | [diff] [blame] | 789 | else |
| 790 | continue; |
| 791 | } |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 792 | args[i][j] = args[i][k]; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 793 | j++; |
| 794 | } |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 795 | args[i][j] = 0; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 796 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 797 | i++; |
| 798 | } |
| 799 | /* fill unused slots */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 800 | p = appctx->chunk->area + appctx->chunk->data; |
Willy Tarreau | f14c757 | 2021-03-13 10:59:23 +0100 | [diff] [blame] | 801 | for (; i < MAX_CLI_ARGS + 1; i++) |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 802 | args[i] = p; |
Willy Tarreau | 4190856 | 2016-11-24 16:23:38 +0100 | [diff] [blame] | 803 | |
Willy Tarreau | 21d7125 | 2023-05-11 16:32:56 +0200 | [diff] [blame] | 804 | if (!**args) |
| 805 | return 0; |
| 806 | |
Christopher Faulet | 6852b33 | 2024-02-20 18:30:16 +0100 | [diff] [blame] | 807 | 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 Tarreau | 4190856 | 2016-11-24 16:23:38 +0100 | [diff] [blame] | 823 | kw = cli_find_kw(args); |
Willy Tarreau | f3697dd | 2021-03-12 15:57:47 +0100 | [diff] [blame] | 824 | if (!kw || |
| 825 | (kw->level & ~appctx->cli_level & ACCESS_MASTER_ONLY) || |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 826 | (!(appctx->cli_level & ACCESS_MCLI_DEBUG) && |
| 827 | (appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) == (ACCESS_MASTER_ONLY|ACCESS_MASTER))) { |
Willy Tarreau | f3697dd | 2021-03-12 15:57:47 +0100 | [diff] [blame] | 828 | /* keyword not found in this mode */ |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 829 | cli_gen_usage_msg(appctx, args); |
Willy Tarreau | 4190856 | 2016-11-24 16:23:38 +0100 | [diff] [blame] | 830 | return 0; |
Willy Tarreau | f3697dd | 2021-03-12 15:57:47 +0100 | [diff] [blame] | 831 | } |
William Lallemand | 14721be | 2018-10-26 14:47:37 +0200 | [diff] [blame] | 832 | |
Willy Tarreau | f3697dd | 2021-03-12 15:57:47 +0100 | [diff] [blame] | 833 | /* 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 Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 836 | return 0; |
Willy Tarreau | f3697dd | 2021-03-12 15:57:47 +0100 | [diff] [blame] | 837 | } |
Willy Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 838 | |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 839 | 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 Denoyelle | f492992 | 2021-05-05 16:29:23 +0200 | [diff] [blame] | 844 | 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 Tarreau | 4190856 | 2016-11-24 16:23:38 +0100 | [diff] [blame] | 849 | appctx->io_handler = kw->io_handler; |
Emeric Brun | d6871f7 | 2017-06-29 19:54:13 +0200 | [diff] [blame] | 850 | appctx->io_release = kw->io_release; |
William Lallemand | 90b098c | 2019-10-25 21:10:14 +0200 | [diff] [blame] | 851 | |
| 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; |
| 861 | fail: |
| 862 | appctx->io_handler = NULL; |
| 863 | appctx->io_release = NULL; |
Willy Tarreau | 4190856 | 2016-11-24 16:23:38 +0100 | [diff] [blame] | 864 | return 1; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 865 | } |
| 866 | |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 867 | /* prepends then outputs the argument msg with a syslog-type severity depending on severity_output value */ |
Christopher Faulet | e8ee27b | 2023-05-05 10:56:00 +0200 | [diff] [blame] | 868 | static int cli_output_msg(struct appctx *appctx, const char *msg, int severity, int severity_output) |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 869 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 870 | struct buffer *tmp; |
Willy Tarreau | 0239f32 | 2024-02-08 18:15:23 +0100 | [diff] [blame] | 871 | struct ist imsg; |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 872 | |
| 873 | tmp = get_trash_chunk(); |
| 874 | chunk_reset(tmp); |
| 875 | |
Willy Tarreau | 0239f32 | 2024-02-08 18:15:23 +0100 | [diff] [blame] | 876 | if (likely(severity_output == CLI_SEVERITY_NONE)) |
| 877 | goto send_it; |
| 878 | |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 879 | if (severity < 0 || severity > 7) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 880 | ha_warning("socket command feedback with invalid severity %d", severity); |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 881 | 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 Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 892 | ha_warning("Unrecognized severity output %d", severity_output); |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 893 | } |
| 894 | } |
Willy Tarreau | 0239f32 | 2024-02-08 18:15:23 +0100 | [diff] [blame] | 895 | 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 Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 906 | |
Christopher Faulet | e8ee27b | 2023-05-05 10:56:00 +0200 | [diff] [blame] | 907 | return applet_putchk(appctx, tmp); |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 908 | } |
| 909 | |
Willy Tarreau | 4596fe2 | 2022-05-17 19:07:51 +0200 | [diff] [blame] | 910 | /* This I/O handler runs as an applet embedded in a stream connector. It is |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 911 | * 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 Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 915 | * CLI_ST_* constants. appctx->st1 is used to indicate whether prompt is enabled |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 916 | * or not. |
| 917 | */ |
| 918 | static void cli_io_handler(struct appctx *appctx) |
| 919 | { |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 920 | struct stconn *sc = appctx_sc(appctx); |
Willy Tarreau | 475e463 | 2022-05-27 10:26:46 +0200 | [diff] [blame] | 921 | 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 Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 924 | int reql; |
| 925 | int len; |
Christopher Faulet | 6852b33 | 2024-02-20 18:30:16 +0100 | [diff] [blame] | 926 | int lf = 0; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 927 | |
Christopher Faulet | 1fb97e4 | 2023-04-07 18:07:51 +0200 | [diff] [blame] | 928 | 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 Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 930 | goto out; |
Christopher Faulet | 1fb97e4 | 2023-04-07 18:07:51 +0200 | [diff] [blame] | 931 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 932 | |
Joseph Herlant | 008b3ce | 2018-11-25 12:51:45 -0800 | [diff] [blame] | 933 | /* Check if the input buffer is available. */ |
Christopher Faulet | 2fd0c76 | 2023-03-31 10:25:07 +0200 | [diff] [blame] | 934 | if (!b_size(&res->buf)) { |
Christopher Faulet | 7b3d38a | 2023-05-05 11:28:45 +0200 | [diff] [blame] | 935 | sc_need_room(sc, 0); |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 936 | goto out; |
| 937 | } |
| 938 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 939 | while (1) { |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 940 | if (appctx->st0 == CLI_ST_INIT) { |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 941 | /* reset severity to default at init */ |
| 942 | appctx->cli_severity_output = bind_conf->severity_output; |
Willy Tarreau | 1addf8b | 2022-08-18 18:04:37 +0200 | [diff] [blame] | 943 | applet_reset_svcctx(appctx); |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 944 | appctx->st0 = CLI_ST_GETREQ; |
William Lallemand | f630d01 | 2018-12-13 09:05:44 +0100 | [diff] [blame] | 945 | appctx->cli_level = bind_conf->level; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 946 | } |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 947 | else if (appctx->st0 == CLI_ST_END) { |
Christopher Faulet | 2fd0c76 | 2023-03-31 10:25:07 +0200 | [diff] [blame] | 948 | se_fl_set(appctx->sedesc, SE_FL_EOS); |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 949 | free_trash_chunk(appctx->chunk); |
Willy Tarreau | 18b2a9d | 2021-05-04 16:27:45 +0200 | [diff] [blame] | 950 | appctx->chunk = NULL; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 951 | break; |
| 952 | } |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 953 | else if (appctx->st0 == CLI_ST_GETREQ) { |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 954 | 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 Faulet | 2fd0c76 | 2023-03-31 10:25:07 +0200 | [diff] [blame] | 960 | se_fl_set(appctx->sedesc, SE_FL_ERROR); |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 961 | appctx->st0 = CLI_ST_END; |
| 962 | continue; |
| 963 | } |
| 964 | } |
| 965 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 966 | str = appctx->chunk->area + appctx->chunk->data; |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 967 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 968 | /* ensure we have some output room left in the event we |
| 969 | * would want to return some info right after parsing. |
| 970 | */ |
Willy Tarreau | 475e463 | 2022-05-27 10:26:46 +0200 | [diff] [blame] | 971 | if (buffer_almost_full(sc_ib(sc))) { |
Christopher Faulet | 7b3d38a | 2023-05-05 11:28:45 +0200 | [diff] [blame] | 972 | sc_need_room(sc, b_size(&res->buf) / 2); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 973 | break; |
| 974 | } |
| 975 | |
Willy Tarreau | 0011c25 | 2022-01-19 17:23:52 +0100 | [diff] [blame] | 976 | /* 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 Tarreau | 475e463 | 2022-05-27 10:26:46 +0200 | [diff] [blame] | 983 | reql = co_getline(sc_oc(sc), str, |
Willy Tarreau | 0011c25 | 2022-01-19 17:23:52 +0100 | [diff] [blame] | 984 | appctx->chunk->size - appctx->chunk->data - 1); |
| 985 | else |
Willy Tarreau | 475e463 | 2022-05-27 10:26:46 +0200 | [diff] [blame] | 986 | reql = co_getdelim(sc_oc(sc), str, |
Willy Tarreau | 0011c25 | 2022-01-19 17:23:52 +0100 | [diff] [blame] | 987 | appctx->chunk->size - appctx->chunk->data - 1, |
| 988 | "\n;", '\\'); |
| 989 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 990 | if (reql <= 0) { /* closed or EOL not found */ |
| 991 | if (reql == 0) |
| 992 | break; |
Christopher Faulet | 2fd0c76 | 2023-03-31 10:25:07 +0200 | [diff] [blame] | 993 | se_fl_set(appctx->sedesc, SE_FL_ERROR); |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 994 | appctx->st0 = CLI_ST_END; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 995 | continue; |
| 996 | } |
| 997 | |
Christopher Faulet | 6852b33 | 2024-02-20 18:30:16 +0100 | [diff] [blame] | 998 | if (str[reql-1] == '\n') |
| 999 | lf = 1; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1000 | |
| 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 Faulet | a10ee92 | 2024-02-20 16:37:11 +0100 | [diff] [blame] | 1006 | if (str[len] != '\n' && str[len] != ';') { |
Christopher Faulet | 2fd0c76 | 2023-03-31 10:25:07 +0200 | [diff] [blame] | 1007 | se_fl_set(appctx->sedesc, SE_FL_ERROR); |
Christopher Faulet | bb373bf | 2024-03-28 14:52:29 +0100 | [diff] [blame] | 1008 | 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 Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1013 | appctx->st0 = CLI_ST_END; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1014 | continue; |
| 1015 | } |
| 1016 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1017 | if (len && str[len-1] == '\r') |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1018 | len--; |
| 1019 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1020 | str[len] = '\0'; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1021 | appctx->chunk->data += len; |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1022 | |
| 1023 | if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1024 | appctx->chunk->area[appctx->chunk->data] = '\n'; |
| 1025 | appctx->chunk->area[appctx->chunk->data + 1] = 0; |
| 1026 | appctx->chunk->data++; |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1027 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1028 | |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1029 | appctx->st0 = CLI_ST_PROMPT; |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1030 | |
| 1031 | if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) { |
| 1032 | /* empty line */ |
| 1033 | if (!len) { |
| 1034 | /* remove the last two \n */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1035 | appctx->chunk->data -= 2; |
| 1036 | appctx->chunk->area[appctx->chunk->data] = 0; |
Willy Tarreau | f3697dd | 2021-03-12 15:57:47 +0100 | [diff] [blame] | 1037 | cli_parse_request(appctx); |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1038 | chunk_reset(appctx->chunk); |
| 1039 | /* NB: cli_sock_parse_request() may have put |
| 1040 | * another CLI_ST_O_* into appctx->st0. |
| 1041 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1042 | appctx->st1 &= ~APPCTX_CLI_ST1_PAYLOAD; |
Christopher Faulet | 6852b33 | 2024-02-20 18:30:16 +0100 | [diff] [blame] | 1043 | if (!(appctx->st1 & APPCTX_CLI_ST1_PROMPT) && lf) |
| 1044 | appctx->st1 |= APPCTX_CLI_ST1_SHUT_EXPECTED; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1045 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1046 | } |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1047 | 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 Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1052 | */ |
Willy Tarreau | f2dda52 | 2021-09-17 11:07:45 +0200 | [diff] [blame] | 1053 | if (strcmp(appctx->chunk->area + appctx->chunk->data - strlen(PAYLOAD_PATTERN), PAYLOAD_PATTERN) == 0) { |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1054 | appctx->st1 |= APPCTX_CLI_ST1_PAYLOAD; |
Willy Tarreau | f2dda52 | 2021-09-17 11:07:45 +0200 | [diff] [blame] | 1055 | appctx->chunk->data++; // keep the trailing \0 after '<<' |
| 1056 | } |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1057 | else { |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1058 | /* no payload, the command is complete: parse the request */ |
Willy Tarreau | f3697dd | 2021-03-12 15:57:47 +0100 | [diff] [blame] | 1059 | cli_parse_request(appctx); |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1060 | chunk_reset(appctx->chunk); |
Christopher Faulet | 6852b33 | 2024-02-20 18:30:16 +0100 | [diff] [blame] | 1061 | if (!(appctx->st1 & APPCTX_CLI_ST1_PROMPT) && lf) |
| 1062 | appctx->st1 |= APPCTX_CLI_ST1_SHUT_EXPECTED; |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1063 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1064 | } |
| 1065 | |
| 1066 | /* re-adjust req buffer */ |
Willy Tarreau | 475e463 | 2022-05-27 10:26:46 +0200 | [diff] [blame] | 1067 | co_skip(sc_oc(sc), reql); |
Christopher Faulet | 9a790f6 | 2023-03-16 14:40:03 +0100 | [diff] [blame] | 1068 | sc_opposite(sc)->flags |= SC_FL_RCV_ONCE; /* we plan to read small requests */ |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1069 | } |
| 1070 | else { /* output functions */ |
Willy Tarreau | 1c0715b | 2022-05-06 17:16:35 +0200 | [diff] [blame] | 1071 | struct cli_print_ctx *ctx; |
Willy Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1072 | const char *msg; |
| 1073 | int sev; |
Christopher Faulet | bb373bf | 2024-03-28 14:52:29 +0100 | [diff] [blame] | 1074 | cli_output: |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1075 | switch (appctx->st0) { |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1076 | case CLI_ST_PROMPT: |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1077 | break; |
Willy Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1078 | 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 Denoyelle | 56f50a0 | 2022-11-10 11:47:36 +0100 | [diff] [blame] | 1081 | case CLI_ST_PRINT_DYNERR: /* print dyn error in err, free */ |
Amaury Denoyelle | 24e9961 | 2022-11-10 14:24:51 +0100 | [diff] [blame] | 1082 | 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 Tarreau | 1c0715b | 2022-05-06 17:16:35 +0200 | [diff] [blame] | 1084 | /* the message is in the svcctx */ |
| 1085 | ctx = applet_reserve_svcctx(appctx, sizeof(*ctx)); |
Willy Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1086 | if (appctx->st0 == CLI_ST_PRINT || appctx->st0 == CLI_ST_PRINT_ERR) { |
| 1087 | sev = appctx->st0 == CLI_ST_PRINT_ERR ? |
Willy Tarreau | 1c0715b | 2022-05-06 17:16:35 +0200 | [diff] [blame] | 1088 | LOG_ERR : ctx->severity; |
| 1089 | msg = ctx->msg; |
Willy Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1090 | } |
Amaury Denoyelle | 56f50a0 | 2022-11-10 11:47:36 +0100 | [diff] [blame] | 1091 | else if (appctx->st0 == CLI_ST_PRINT_DYN || appctx->st0 == CLI_ST_PRINT_DYNERR) { |
| 1092 | sev = appctx->st0 == CLI_ST_PRINT_DYNERR ? |
Willy Tarreau | 1c0715b | 2022-05-06 17:16:35 +0200 | [diff] [blame] | 1093 | LOG_ERR : ctx->severity; |
| 1094 | msg = ctx->err; |
Willy Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1095 | if (!msg) { |
| 1096 | sev = LOG_ERR; |
| 1097 | msg = "Out of memory.\n"; |
| 1098 | } |
| 1099 | } |
Amaury Denoyelle | 24e9961 | 2022-11-10 14:24:51 +0100 | [diff] [blame] | 1100 | 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 Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1106 | else { |
| 1107 | sev = LOG_ERR; |
| 1108 | msg = "Internal error.\n"; |
| 1109 | } |
Aurélien Nephtali | c511b7c | 2018-04-16 18:50:19 +0200 | [diff] [blame] | 1110 | |
Christopher Faulet | e8ee27b | 2023-05-05 10:56:00 +0200 | [diff] [blame] | 1111 | if (cli_output_msg(appctx, msg, sev, cli_get_severity_output(appctx)) != -1) { |
Amaury Denoyelle | 56f50a0 | 2022-11-10 11:47:36 +0100 | [diff] [blame] | 1112 | if (appctx->st0 == CLI_ST_PRINT_DYN || |
| 1113 | appctx->st0 == CLI_ST_PRINT_DYNERR) { |
Willy Tarreau | 1c0715b | 2022-05-06 17:16:35 +0200 | [diff] [blame] | 1114 | ha_free(&ctx->err); |
Willy Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1115 | } |
Amaury Denoyelle | 24e9961 | 2022-11-10 14:24:51 +0100 | [diff] [blame] | 1116 | else if (appctx->st0 == CLI_ST_PRINT_UMSG || |
| 1117 | appctx->st0 == CLI_ST_PRINT_UMSGERR) { |
| 1118 | usermsgs_clr(NULL); |
| 1119 | } |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1120 | appctx->st0 = CLI_ST_PROMPT; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1121 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1122 | break; |
Willy Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1123 | |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1124 | case CLI_ST_CALLBACK: /* use custom pointer */ |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1125 | if (appctx->io_handler) |
| 1126 | if (appctx->io_handler(appctx)) { |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1127 | appctx->st0 = CLI_ST_PROMPT; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1128 | if (appctx->io_release) { |
| 1129 | appctx->io_release(appctx); |
| 1130 | appctx->io_release = NULL; |
| 1131 | } |
| 1132 | } |
| 1133 | break; |
| 1134 | default: /* abnormal state */ |
Willy Tarreau | d869e13 | 2022-05-17 18:05:31 +0200 | [diff] [blame] | 1135 | se_fl_set(appctx->sedesc, SE_FL_ERROR); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1136 | break; |
| 1137 | } |
| 1138 | |
| 1139 | /* The post-command prompt is either LF alone or LF + '> ' in interactive mode */ |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1140 | if (appctx->st0 == CLI_ST_PROMPT) { |
Willy Tarreau | 2255557 | 2023-05-04 14:22:36 +0200 | [diff] [blame] | 1141 | char prompt_buf[20]; |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1142 | 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 Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1149 | if (appctx->chunk->data && appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1150 | prompt = "+ "; |
Willy Tarreau | 2255557 | 2023-05-04 14:22:36 +0200 | [diff] [blame] | 1151 | 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 Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1158 | else |
| 1159 | prompt = "\n> "; |
| 1160 | } |
| 1161 | else { |
William Lallemand | ad03288 | 2019-07-01 10:56:15 +0200 | [diff] [blame] | 1162 | if (!(appctx->st1 & (APPCTX_CLI_ST1_PAYLOAD|APPCTX_CLI_ST1_NOLF))) |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1163 | prompt = "\n"; |
| 1164 | } |
| 1165 | |
Willy Tarreau | 1addf8b | 2022-08-18 18:04:37 +0200 | [diff] [blame] | 1166 | if (applet_putstr(appctx, prompt) != -1) { |
| 1167 | applet_reset_svcctx(appctx); |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1168 | appctx->st0 = CLI_ST_GETREQ; |
Willy Tarreau | 1addf8b | 2022-08-18 18:04:37 +0200 | [diff] [blame] | 1169 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1170 | } |
| 1171 | |
| 1172 | /* If the output functions are still there, it means they require more room. */ |
Christopher Faulet | 4167e05 | 2022-06-01 17:25:42 +0200 | [diff] [blame] | 1173 | if (appctx->st0 >= CLI_ST_OUTPUT) { |
| 1174 | applet_wont_consume(appctx); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1175 | break; |
Christopher Faulet | 4167e05 | 2022-06-01 17:25:42 +0200 | [diff] [blame] | 1176 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1177 | |
Christopher Faulet | 2fd0c76 | 2023-03-31 10:25:07 +0200 | [diff] [blame] | 1178 | /* 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 Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1182 | */ |
Christopher Faulet | 2fd0c76 | 2023-03-31 10:25:07 +0200 | [diff] [blame] | 1183 | 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 Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1185 | appctx->st0 = CLI_ST_END; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1186 | continue; |
| 1187 | } |
| 1188 | |
| 1189 | /* switch state back to GETREQ to read next requests */ |
Willy Tarreau | 1addf8b | 2022-08-18 18:04:37 +0200 | [diff] [blame] | 1190 | applet_reset_svcctx(appctx); |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1191 | appctx->st0 = CLI_ST_GETREQ; |
Christopher Faulet | 4167e05 | 2022-06-01 17:25:42 +0200 | [diff] [blame] | 1192 | applet_will_consume(appctx); |
Christopher Faulet | 806c0d6 | 2023-09-06 09:17:33 +0200 | [diff] [blame] | 1193 | applet_expect_data(appctx); |
Christopher Faulet | 4167e05 | 2022-06-01 17:25:42 +0200 | [diff] [blame] | 1194 | |
William Lallemand | ad03288 | 2019-07-01 10:56:15 +0200 | [diff] [blame] | 1195 | /* reactivate the \n at the end of the response for the next command */ |
| 1196 | appctx->st1 &= ~APPCTX_CLI_ST1_NOLF; |
Willy Tarreau | fa7b4f6 | 2022-01-19 17:11:36 +0100 | [diff] [blame] | 1197 | |
| 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 Tarreau | 475e463 | 2022-05-27 10:26:46 +0200 | [diff] [blame] | 1204 | if (co_data(sc_oc(sc))) { |
Willy Tarreau | fa7b4f6 | 2022-01-19 17:11:36 +0100 | [diff] [blame] | 1205 | appctx_wakeup(appctx); |
| 1206 | goto out; |
| 1207 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1208 | } |
| 1209 | } |
| 1210 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1211 | out: |
Christopher Faulet | 845f7c4 | 2023-04-18 18:36:43 +0200 | [diff] [blame] | 1212 | return; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1213 | } |
| 1214 | |
Willy Tarreau | 4596fe2 | 2022-05-17 19:07:51 +0200 | [diff] [blame] | 1215 | /* This is called when the stream connector is closed. For instance, upon an |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1216 | * 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 | */ |
| 1219 | static void cli_release_handler(struct appctx *appctx) |
| 1220 | { |
Willy Tarreau | 18b2a9d | 2021-05-04 16:27:45 +0200 | [diff] [blame] | 1221 | free_trash_chunk(appctx->chunk); |
| 1222 | appctx->chunk = NULL; |
| 1223 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1224 | if (appctx->io_release) { |
| 1225 | appctx->io_release(appctx); |
| 1226 | appctx->io_release = NULL; |
| 1227 | } |
Amaury Denoyelle | 56f50a0 | 2022-11-10 11:47:36 +0100 | [diff] [blame] | 1228 | else if (appctx->st0 == CLI_ST_PRINT_DYN || appctx->st0 == CLI_ST_PRINT_DYNERR) { |
Willy Tarreau | 1c0715b | 2022-05-06 17:16:35 +0200 | [diff] [blame] | 1229 | struct cli_print_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx)); |
| 1230 | |
| 1231 | ha_free(&ctx->err); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1232 | } |
Amaury Denoyelle | 24e9961 | 2022-11-10 14:24:51 +0100 | [diff] [blame] | 1233 | else if (appctx->st0 == CLI_ST_PRINT_UMSG || appctx->st0 == CLI_ST_PRINT_UMSGERR) { |
| 1234 | usermsgs_clr(NULL); |
| 1235 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1236 | } |
| 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 Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1240 | * 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 Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1242 | */ |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1243 | static int cli_io_handler_show_env(struct appctx *appctx) |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1244 | { |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1245 | struct show_env_ctx *ctx = appctx->svcctx; |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 1246 | struct stconn *sc = appctx_sc(appctx); |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1247 | char **var = ctx->var; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1248 | |
Christopher Faulet | 87633c3 | 2023-04-03 18:32:50 +0200 | [diff] [blame] | 1249 | /* FIXME: Don't watch the other side !*/ |
Christopher Faulet | 208c712 | 2023-04-13 16:16:15 +0200 | [diff] [blame] | 1250 | if (unlikely(sc_opposite(sc)->flags & SC_FL_SHUT_DONE)) |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1251 | 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 Tarreau | f6710f8 | 2016-12-16 17:45:44 +0100 | [diff] [blame] | 1258 | while (*var) { |
| 1259 | chunk_printf(&trash, "%s\n", *var); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1260 | |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 1261 | if (applet_putchk(appctx, &trash) == -1) |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1262 | return 0; |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 1263 | |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1264 | if (ctx->show_one) |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1265 | break; |
Willy Tarreau | f6710f8 | 2016-12-16 17:45:44 +0100 | [diff] [blame] | 1266 | var++; |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1267 | ctx->var = var; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1268 | } |
| 1269 | |
| 1270 | /* dump complete */ |
| 1271 | return 1; |
| 1272 | } |
| 1273 | |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1274 | /* 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 Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1276 | * 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 Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1279 | */ |
| 1280 | static int cli_io_handler_show_fd(struct appctx *appctx) |
| 1281 | { |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 1282 | struct stconn *sc = appctx_sc(appctx); |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1283 | struct show_fd_ctx *fdctx = appctx->svcctx; |
Willy Tarreau | 1cb041a | 2023-03-31 16:33:53 +0200 | [diff] [blame] | 1284 | uint match = fdctx->show_mask; |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1285 | int fd = fdctx->fd; |
Willy Tarreau | ca1b157 | 2018-12-18 15:45:11 +0100 | [diff] [blame] | 1286 | int ret = 1; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1287 | |
Christopher Faulet | 87633c3 | 2023-04-03 18:32:50 +0200 | [diff] [blame] | 1288 | /* FIXME: Don't watch the other side !*/ |
Christopher Faulet | 208c712 | 2023-04-13 16:16:15 +0200 | [diff] [blame] | 1289 | if (unlikely(sc_opposite(sc)->flags & SC_FL_SHUT_DONE)) |
Willy Tarreau | ca1b157 | 2018-12-18 15:45:11 +0100 | [diff] [blame] | 1290 | goto end; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1291 | |
| 1292 | chunk_reset(&trash); |
| 1293 | |
Willy Tarreau | ca1b157 | 2018-12-18 15:45:11 +0100 | [diff] [blame] | 1294 | /* 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 Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1299 | /* we have two inner loops here, one for the proxy, the other one for |
| 1300 | * the buffer. |
| 1301 | */ |
Aurélien Nephtali | 498a115 | 2018-03-09 18:51:16 +0100 | [diff] [blame] | 1302 | while (fd >= 0 && fd < global.maxsock) { |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1303 | struct fdtab fdt; |
Willy Tarreau | eb0595d | 2021-01-20 14:13:46 +0100 | [diff] [blame] | 1304 | const struct listener *li = NULL; |
| 1305 | const struct server *sv = NULL; |
| 1306 | const struct proxy *px = NULL; |
| 1307 | const struct connection *conn = NULL; |
Willy Tarreau | a833cd9 | 2018-03-29 13:19:37 +0200 | [diff] [blame] | 1308 | const struct mux_ops *mux = NULL; |
Willy Tarreau | 37be953 | 2021-01-20 14:40:04 +0100 | [diff] [blame] | 1309 | const struct xprt_ops *xprt = NULL; |
Willy Tarreau | eb0595d | 2021-01-20 14:13:46 +0100 | [diff] [blame] | 1310 | const void *ctx = NULL; |
Willy Tarreau | 37be953 | 2021-01-20 14:40:04 +0100 | [diff] [blame] | 1311 | const void *xprt_ctx = NULL; |
Willy Tarreau | fe0ba0e | 2023-05-11 17:06:22 +0200 | [diff] [blame] | 1312 | const struct quic_conn *qc = NULL; |
Willy Tarreau | 286ec68 | 2017-08-09 16:35:44 +0200 | [diff] [blame] | 1313 | uint32_t conn_flags = 0; |
Christopher Faulet | d52f2ad | 2023-03-14 15:48:06 +0100 | [diff] [blame] | 1314 | uint8_t conn_err = 0; |
Willy Tarreau | e9ca807 | 2018-12-19 18:40:58 +0100 | [diff] [blame] | 1315 | int is_back = 0; |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 1316 | int suspicious = 0; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1317 | |
| 1318 | fdt = fdtab[fd]; |
| 1319 | |
Willy Tarreau | 38e8a1c | 2020-06-23 10:04:54 +0200 | [diff] [blame] | 1320 | /* When DEBUG_FD is set, we also report closed FDs that have a |
| 1321 | * non-null event count to detect stuck ones. |
| 1322 | */ |
Willy Tarreau | 13c1a01 | 2020-06-29 14:23:31 +0200 | [diff] [blame] | 1323 | if (!fdt.owner) { |
Willy Tarreau | 38e8a1c | 2020-06-23 10:04:54 +0200 | [diff] [blame] | 1324 | #ifdef DEBUG_FD |
Willy Tarreau | 13c1a01 | 2020-06-29 14:23:31 +0200 | [diff] [blame] | 1325 | if (!fdt.event_count) |
Willy Tarreau | 38e8a1c | 2020-06-23 10:04:54 +0200 | [diff] [blame] | 1326 | #endif |
Willy Tarreau | 13c1a01 | 2020-06-29 14:23:31 +0200 | [diff] [blame] | 1327 | goto skip; // closed |
| 1328 | } |
Willy Tarreau | 586f71b | 2020-12-11 15:54:36 +0100 | [diff] [blame] | 1329 | else if (fdt.iocb == sock_conn_iocb) { |
Willy Tarreau | eb0595d | 2021-01-20 14:13:46 +0100 | [diff] [blame] | 1330 | conn = (const struct connection *)fdt.owner; |
| 1331 | conn_flags = conn->flags; |
Christopher Faulet | d52f2ad | 2023-03-14 15:48:06 +0100 | [diff] [blame] | 1332 | conn_err = conn->err_code; |
Willy Tarreau | eb0595d | 2021-01-20 14:13:46 +0100 | [diff] [blame] | 1333 | mux = conn->mux; |
| 1334 | ctx = conn->ctx; |
Willy Tarreau | 37be953 | 2021-01-20 14:40:04 +0100 | [diff] [blame] | 1335 | xprt = conn->xprt; |
| 1336 | xprt_ctx = conn->xprt_ctx; |
Willy Tarreau | eb0595d | 2021-01-20 14:13:46 +0100 | [diff] [blame] | 1337 | 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 Tarreau | dacfde4 | 2021-01-21 09:07:29 +0100 | [diff] [blame] | 1341 | if (atleast2(fdt.thread_mask)) |
| 1342 | suspicious = 1; |
| 1343 | if (conn->handle.fd != fd) |
| 1344 | suspicious = 1; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1345 | } |
Willy Tarreau | fe0ba0e | 2023-05-11 17:06:22 +0200 | [diff] [blame] | 1346 | #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 Tarreau | a74cb38 | 2020-10-15 21:29:49 +0200 | [diff] [blame] | 1362 | else if (fdt.iocb == sock_accept_iocb) |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1363 | li = fdt.owner; |
| 1364 | |
Willy Tarreau | fe0ba0e | 2023-05-11 17:06:22 +0200 | [diff] [blame] | 1365 | if (!(((conn || xprt_ctx) && |
Willy Tarreau | 1cb041a | 2023-03-31 16:33:53 +0200 | [diff] [blame] | 1366 | ((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 Tarreau | dacfde4 | 2021-01-21 09:07:29 +0100 | [diff] [blame] | 1376 | if (!fdt.thread_mask) |
| 1377 | suspicious = 1; |
| 1378 | |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1379 | chunk_printf(&trash, |
Willy Tarreau | 677c006 | 2023-03-02 15:05:31 +0100 | [diff] [blame] | 1380 | " %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 Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1381 | fd, |
| 1382 | fdt.state, |
Willy Tarreau | 184b212 | 2021-04-07 08:48:12 +0200 | [diff] [blame] | 1383 | (fdt.state & FD_CLONED) ? 'C' : 'c', |
| 1384 | (fdt.state & FD_LINGER_RISK) ? 'L' : 'l', |
Willy Tarreau | f509065 | 2021-04-06 17:23:40 +0200 | [diff] [blame] | 1385 | (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 Tarreau | 184b212 | 2021-04-07 08:48:12 +0200 | [diff] [blame] | 1390 | (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 Tarreau | c243182 | 2022-07-08 10:23:01 +0200 | [diff] [blame] | 1396 | (fdt.refc_tgid >> 4) & 0xffff, |
| 1397 | (fdt.refc_tgid) & 0xffff, |
Willy Tarreau | c754b34 | 2018-03-30 15:00:15 +0200 | [diff] [blame] | 1398 | fdt.thread_mask, fdt.update_mask, |
Willy Tarreau | 677c006 | 2023-03-02 15:05:31 +0100 | [diff] [blame] | 1399 | polled_mask[fd].poll_recv, |
| 1400 | polled_mask[fd].poll_send, |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1401 | fdt.owner, |
Willy Tarreau | cf12f2e | 2020-03-03 17:29:58 +0100 | [diff] [blame] | 1402 | fdt.iocb); |
| 1403 | resolve_sym_name(&trash, NULL, fdt.iocb); |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1404 | |
Willy Tarreau | 38e8a1c | 2020-06-23 10:04:54 +0200 | [diff] [blame] | 1405 | if (!fdt.owner) { |
| 1406 | chunk_appendf(&trash, ")"); |
| 1407 | } |
Willy Tarreau | fe0ba0e | 2023-05-11 17:06:22 +0200 | [diff] [blame] | 1408 | else if (conn) { |
Christopher Faulet | d52f2ad | 2023-03-14 15:48:06 +0100 | [diff] [blame] | 1409 | chunk_appendf(&trash, ") back=%d cflg=0x%08x cerr=%d", is_back, conn_flags, conn_err); |
Willy Tarreau | dacfde4 | 2021-01-21 09:07:29 +0100 | [diff] [blame] | 1410 | |
Willy Tarreau | fe0ba0e | 2023-05-11 17:06:22 +0200 | [diff] [blame] | 1411 | if (!(conn->flags & CO_FL_FDLESS) && conn->handle.fd != fd) { |
Willy Tarreau | dacfde4 | 2021-01-21 09:07:29 +0100 | [diff] [blame] | 1412 | chunk_appendf(&trash, " fd=%d(BOGUS)", conn->handle.fd); |
| 1413 | suspicious = 1; |
Willy Tarreau | fe0ba0e | 2023-05-11 17:06:22 +0200 | [diff] [blame] | 1414 | } 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 Tarreau | ed98920 | 2021-02-05 10:54:52 +0100 | [diff] [blame] | 1417 | } 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 Tarreau | dacfde4 | 2021-01-21 09:07:29 +0100 | [diff] [blame] | 1438 | } |
| 1439 | |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1440 | if (px) |
| 1441 | chunk_appendf(&trash, " px=%s", px->id); |
| 1442 | else if (sv) |
Willy Tarreau | dfb34a8 | 2021-07-06 11:41:10 +0200 | [diff] [blame] | 1443 | chunk_appendf(&trash, " sv=%s/%s", sv->proxy->id, sv->id); |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1444 | else if (li) |
| 1445 | chunk_appendf(&trash, " fe=%s", li->bind_conf->frontend->id); |
Willy Tarreau | 35b1b48 | 2018-03-28 18:41:30 +0200 | [diff] [blame] | 1446 | |
Willy Tarreau | b011d8f | 2018-03-30 14:41:19 +0200 | [diff] [blame] | 1447 | if (mux) { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 1448 | chunk_appendf(&trash, " mux=%s ctx=%p", mux->name, ctx); |
Willy Tarreau | fe0ba0e | 2023-05-11 17:06:22 +0200 | [diff] [blame] | 1449 | if (!ctx && !qc) |
Willy Tarreau | dacfde4 | 2021-01-21 09:07:29 +0100 | [diff] [blame] | 1450 | suspicious = 1; |
Willy Tarreau | b011d8f | 2018-03-30 14:41:19 +0200 | [diff] [blame] | 1451 | if (mux->show_fd) |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 1452 | suspicious |= mux->show_fd(&trash, fdt.owner); |
Willy Tarreau | b011d8f | 2018-03-30 14:41:19 +0200 | [diff] [blame] | 1453 | } |
Willy Tarreau | 35b1b48 | 2018-03-28 18:41:30 +0200 | [diff] [blame] | 1454 | else |
| 1455 | chunk_appendf(&trash, " nomux"); |
Willy Tarreau | 37be953 | 2021-01-20 14:40:04 +0100 | [diff] [blame] | 1456 | |
| 1457 | chunk_appendf(&trash, " xprt=%s", xprt ? xprt->name : ""); |
Willy Tarreau | 108a271 | 2021-01-20 15:30:56 +0100 | [diff] [blame] | 1458 | if (xprt) { |
| 1459 | if (xprt_ctx || xprt->show_fd) |
| 1460 | chunk_appendf(&trash, " xprt_ctx=%p", xprt_ctx); |
| 1461 | if (xprt->show_fd) |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 1462 | suspicious |= xprt->show_fd(&trash, conn, xprt_ctx); |
Willy Tarreau | 108a271 | 2021-01-20 15:30:56 +0100 | [diff] [blame] | 1463 | } |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1464 | } |
Willy Tarreau | fe0ba0e | 2023-05-11 17:06:22 +0200 | [diff] [blame] | 1465 | else if (li && !xprt_ctx) { |
Willy Tarreau | ed98920 | 2021-02-05 10:54:52 +0100 | [diff] [blame] | 1466 | struct sockaddr_storage sa; |
| 1467 | socklen_t salen; |
| 1468 | |
Willy Tarreau | cf12f2e | 2020-03-03 17:29:58 +0100 | [diff] [blame] | 1469 | chunk_appendf(&trash, ") l.st=%s fe=%s", |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1470 | listener_state_str(li), |
| 1471 | li->bind_conf->frontend->id); |
Willy Tarreau | ed98920 | 2021-02-05 10:54:52 +0100 | [diff] [blame] | 1472 | |
| 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 Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1482 | } |
Willy Tarreau | eb0595d | 2021-01-20 14:13:46 +0100 | [diff] [blame] | 1483 | else |
| 1484 | chunk_appendf(&trash, ")"); |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1485 | |
Willy Tarreau | 38e8a1c | 2020-06-23 10:04:54 +0200 | [diff] [blame] | 1486 | #ifdef DEBUG_FD |
| 1487 | chunk_appendf(&trash, " evcnt=%u", fdtab[fd].event_count); |
Willy Tarreau | dacfde4 | 2021-01-21 09:07:29 +0100 | [diff] [blame] | 1488 | if (fdtab[fd].event_count >= 1000000) |
| 1489 | suspicious = 1; |
Willy Tarreau | 38e8a1c | 2020-06-23 10:04:54 +0200 | [diff] [blame] | 1490 | #endif |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 1491 | chunk_appendf(&trash, "%s\n", suspicious ? " !" : ""); |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1492 | |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 1493 | if (applet_putchk(appctx, &trash) == -1) { |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1494 | fdctx->fd = fd; |
Willy Tarreau | ca1b157 | 2018-12-18 15:45:11 +0100 | [diff] [blame] | 1495 | ret = 0; |
| 1496 | break; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1497 | } |
| 1498 | skip: |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1499 | if (fdctx->show_one) |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1500 | break; |
| 1501 | |
| 1502 | fd++; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1503 | } |
| 1504 | |
Willy Tarreau | ca1b157 | 2018-12-18 15:45:11 +0100 | [diff] [blame] | 1505 | end: |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1506 | /* dump complete */ |
Willy Tarreau | ca1b157 | 2018-12-18 15:45:11 +0100 | [diff] [blame] | 1507 | |
| 1508 | thread_release(); |
| 1509 | return ret; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1510 | } |
| 1511 | |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1512 | /* |
Willy Tarreau | 3af9d83 | 2016-12-16 12:58:09 +0100 | [diff] [blame] | 1513 | * CLI IO handler for `show cli sockets`. |
Willy Tarreau | b128f49 | 2022-05-05 19:11:05 +0200 | [diff] [blame] | 1514 | * Uses the svcctx as a show_sock_ctx to store/retrieve the bind_conf and the |
| 1515 | * listener pointers. |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1516 | */ |
| 1517 | static int cli_io_handler_show_cli_sock(struct appctx *appctx) |
| 1518 | { |
Willy Tarreau | b128f49 | 2022-05-05 19:11:05 +0200 | [diff] [blame] | 1519 | struct show_sock_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx)); |
| 1520 | struct bind_conf *bind_conf = ctx->bind_conf; |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1521 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1522 | if (!global.cli_fe) |
| 1523 | goto done; |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1524 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1525 | chunk_reset(&trash); |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1526 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1527 | if (!bind_conf) { |
| 1528 | /* first call */ |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 1529 | if (applet_putstr(appctx, "# socket lvl processes\n") == -1) |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1530 | goto full; |
| 1531 | bind_conf = LIST_ELEM(global.cli_fe->conf.bind.n, typeof(bind_conf), by_fe); |
| 1532 | } |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1533 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1534 | list_for_each_entry_from(bind_conf, &global.cli_fe->conf.bind, by_fe) { |
Willy Tarreau | b128f49 | 2022-05-05 19:11:05 +0200 | [diff] [blame] | 1535 | struct listener *l = ctx->listener; |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1536 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1537 | if (!l) |
| 1538 | l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind); |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1539 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1540 | list_for_each_entry_from(l, &bind_conf->listeners, by_bind) { |
| 1541 | char addr[46]; |
| 1542 | char port[6]; |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1543 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1544 | if (l->rx.addr.ss_family == AF_UNIX) { |
| 1545 | const struct sockaddr_un *un; |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1546 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1547 | 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 Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1565 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1566 | 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 Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1574 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1575 | chunk_appendf(&trash, "all\n"); |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1576 | |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 1577 | if (applet_putchk(appctx, &trash) == -1) { |
Willy Tarreau | b128f49 | 2022-05-05 19:11:05 +0200 | [diff] [blame] | 1578 | ctx->bind_conf = bind_conf; |
| 1579 | ctx->listener = l; |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1580 | goto full; |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1581 | } |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1582 | } |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1583 | } |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1584 | done: |
| 1585 | return 1; |
| 1586 | full: |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1587 | return 0; |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1588 | } |
| 1589 | |
Willy Tarreau | 9a7fa90 | 2022-07-15 16:51:16 +0200 | [diff] [blame] | 1590 | |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1591 | /* parse a "show env" CLI request. Returns 0 if it needs to continue, 1 if it |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1592 | * 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 Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1595 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1596 | static int cli_parse_show_env(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1597 | { |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1598 | struct show_env_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx)); |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1599 | extern char **environ; |
Willy Tarreau | f6710f8 | 2016-12-16 17:45:44 +0100 | [diff] [blame] | 1600 | char **var; |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1601 | |
| 1602 | if (!cli_has_level(appctx, ACCESS_LVL_OPER)) |
| 1603 | return 1; |
| 1604 | |
Willy Tarreau | f6710f8 | 2016-12-16 17:45:44 +0100 | [diff] [blame] | 1605 | var = environ; |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1606 | |
| 1607 | if (*args[2]) { |
| 1608 | int len = strlen(args[2]); |
| 1609 | |
Willy Tarreau | f6710f8 | 2016-12-16 17:45:44 +0100 | [diff] [blame] | 1610 | for (; *var; var++) { |
| 1611 | if (strncmp(*var, args[2], len) == 0 && |
| 1612 | (*var)[len] == '=') |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1613 | break; |
| 1614 | } |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1615 | if (!*var) |
| 1616 | return cli_err(appctx, "Variable not found\n"); |
| 1617 | |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1618 | ctx->show_one = 1; |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1619 | } |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1620 | ctx->var = var; |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1621 | return 0; |
| 1622 | } |
| 1623 | |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1624 | /* parse a "show fd" CLI request. Returns 0 if it needs to continue, 1 if it |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1625 | * 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 Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1627 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1628 | static int cli_parse_show_fd(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1629 | { |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1630 | struct show_fd_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx)); |
Willy Tarreau | 1cb041a | 2023-03-31 16:33:53 +0200 | [diff] [blame] | 1631 | const char *c; |
| 1632 | int arg; |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1633 | |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1634 | if (!cli_has_level(appctx, ACCESS_LVL_OPER)) |
| 1635 | return 1; |
| 1636 | |
Willy Tarreau | 1cb041a | 2023-03-31 16:33:53 +0200 | [diff] [blame] | 1637 | 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 Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1673 | ctx->fd = atoi(args[2]); |
| 1674 | ctx->show_one = 1; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1675 | } |
Willy Tarreau | 1cb041a | 2023-03-31 16:33:53 +0200 | [diff] [blame] | 1676 | |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1677 | return 0; |
| 1678 | } |
| 1679 | |
Willy Tarreau | 599852e | 2016-11-22 20:33:32 +0100 | [diff] [blame] | 1680 | /* parse a "set timeout" CLI request. It always returns 1. */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1681 | static int cli_parse_set_timeout(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | 599852e | 2016-11-22 20:33:32 +0100 | [diff] [blame] | 1682 | { |
Willy Tarreau | 0698c80 | 2022-05-11 14:09:57 +0200 | [diff] [blame] | 1683 | struct stream *s = appctx_strm(appctx); |
Willy Tarreau | 599852e | 2016-11-22 20:33:32 +0100 | [diff] [blame] | 1684 | |
| 1685 | if (strcmp(args[2], "cli") == 0) { |
| 1686 | unsigned timeout; |
| 1687 | const char *res; |
| 1688 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1689 | if (!*args[3]) |
| 1690 | return cli_err(appctx, "Expects an integer value.\n"); |
Willy Tarreau | 599852e | 2016-11-22 20:33:32 +0100 | [diff] [blame] | 1691 | |
| 1692 | res = parse_time_err(args[3], &timeout, TIME_UNIT_S); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1693 | if (res || timeout < 1) |
| 1694 | return cli_err(appctx, "Invalid timeout value.\n"); |
Willy Tarreau | 599852e | 2016-11-22 20:33:32 +0100 | [diff] [blame] | 1695 | |
Christopher Faulet | 5aaacfb | 2023-02-15 08:13:33 +0100 | [diff] [blame] | 1696 | s->scf->ioto = 1 + MS_TO_TICKS(timeout*1000); |
Willy Tarreau | 599852e | 2016-11-22 20:33:32 +0100 | [diff] [blame] | 1697 | task_wakeup(s->task, TASK_WOKEN_MSG); // recompute timeouts |
| 1698 | return 1; |
| 1699 | } |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1700 | |
| 1701 | return cli_err(appctx, "'set timeout' only supports 'cli'.\n"); |
Willy Tarreau | 599852e | 2016-11-22 20:33:32 +0100 | [diff] [blame] | 1702 | } |
| 1703 | |
Willy Tarreau | 2af9941 | 2016-11-23 11:10:59 +0100 | [diff] [blame] | 1704 | /* parse a "set maxconn global" command. It always returns 1. */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1705 | static int cli_parse_set_maxconn_global(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | 2af9941 | 2016-11-23 11:10:59 +0100 | [diff] [blame] | 1706 | { |
| 1707 | int v; |
| 1708 | |
| 1709 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1710 | return 1; |
| 1711 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1712 | if (!*args[3]) |
| 1713 | return cli_err(appctx, "Expects an integer value.\n"); |
Willy Tarreau | 2af9941 | 2016-11-23 11:10:59 +0100 | [diff] [blame] | 1714 | |
| 1715 | v = atoi(args[3]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1716 | if (v > global.hardmaxconn) |
| 1717 | return cli_err(appctx, "Value out of range.\n"); |
Willy Tarreau | 2af9941 | 2016-11-23 11:10:59 +0100 | [diff] [blame] | 1718 | |
| 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 Tarreau | 241797a | 2019-12-10 14:10:52 +0100 | [diff] [blame] | 1726 | dequeue_all_listeners(); |
Willy Tarreau | 2af9941 | 2016-11-23 11:10:59 +0100 | [diff] [blame] | 1727 | |
| 1728 | return 1; |
| 1729 | } |
| 1730 | |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 1731 | static int set_severity_output(int *target, char *argument) |
| 1732 | { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1733 | if (strcmp(argument, "none") == 0) { |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 1734 | *target = CLI_SEVERITY_NONE; |
| 1735 | return 1; |
| 1736 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1737 | else if (strcmp(argument, "number") == 0) { |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 1738 | *target = CLI_SEVERITY_NUMBER; |
| 1739 | return 1; |
| 1740 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1741 | else if (strcmp(argument, "string") == 0) { |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 1742 | *target = CLI_SEVERITY_STRING; |
| 1743 | return 1; |
| 1744 | } |
| 1745 | return 0; |
| 1746 | } |
| 1747 | |
| 1748 | /* parse a "set severity-output" command. */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1749 | static int cli_parse_set_severity_output(char **args, char *payload, struct appctx *appctx, void *private) |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 1750 | { |
William Lallemand | 7438181 | 2023-12-06 11:15:01 +0100 | [diff] [blame] | 1751 | /* 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 Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 1755 | if (*args[2] && set_severity_output(&appctx->cli_severity_output, args[2])) |
| 1756 | return 0; |
| 1757 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1758 | return cli_err(appctx, "one of 'none', 'number', 'string' is a required argument\n"); |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 1759 | } |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1760 | |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1761 | |
| 1762 | /* show the level of the current CLI session */ |
| 1763 | static int cli_parse_show_lvl(char **args, char *payload, struct appctx *appctx, void *private) |
| 1764 | { |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1765 | if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_ADMIN) |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1766 | return cli_msg(appctx, LOG_INFO, "admin\n"); |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1767 | else if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_OPER) |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1768 | return cli_msg(appctx, LOG_INFO, "operator\n"); |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1769 | else if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_USER) |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1770 | return cli_msg(appctx, LOG_INFO, "user\n"); |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1771 | else |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1772 | return cli_msg(appctx, LOG_INFO, "unknown\n"); |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1773 | } |
| 1774 | |
| 1775 | /* parse and set the CLI level dynamically */ |
| 1776 | static int cli_parse_set_lvl(char **args, char *payload, struct appctx *appctx, void *private) |
| 1777 | { |
William Lallemand | ad03288 | 2019-07-01 10:56:15 +0200 | [diff] [blame] | 1778 | /* this will ask the applet to not output a \n after the command */ |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1779 | if (strcmp(args[1], "-") == 0) |
William Lallemand | ad03288 | 2019-07-01 10:56:15 +0200 | [diff] [blame] | 1780 | appctx->st1 |= APPCTX_CLI_ST1_NOLF; |
| 1781 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1782 | if (strcmp(args[0], "operator") == 0) { |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1783 | 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 Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1789 | } else if (strcmp(args[0], "user") == 0) { |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1790 | 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 Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1796 | appctx->cli_level &= ~(ACCESS_EXPERT|ACCESS_EXPERIMENTAL); |
Willy Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 1797 | return 1; |
| 1798 | } |
| 1799 | |
| 1800 | |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1801 | /* parse and set the CLI expert/experimental-mode dynamically */ |
| 1802 | static int cli_parse_expert_experimental_mode(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 1803 | { |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1804 | int level; |
| 1805 | char *level_str; |
| 1806 | char *output = NULL; |
| 1807 | |
William Lallemand | 7267f78 | 2022-02-01 16:08:50 +0100 | [diff] [blame] | 1808 | /* 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 Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 1812 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1813 | return 1; |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1814 | |
Tim Duesterhus | c5aa113 | 2021-10-16 17:48:15 +0200 | [diff] [blame] | 1815 | if (strcmp(args[0], "expert-mode") == 0) { |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1816 | level = ACCESS_EXPERT; |
| 1817 | level_str = "expert-mode"; |
| 1818 | } |
Tim Duesterhus | c5aa113 | 2021-10-16 17:48:15 +0200 | [diff] [blame] | 1819 | else if (strcmp(args[0], "experimental-mode") == 0) { |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1820 | level = ACCESS_EXPERIMENTAL; |
| 1821 | level_str = "experimental-mode"; |
| 1822 | } |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 1823 | else if (strcmp(args[0], "mcli-debug-mode") == 0) { |
| 1824 | level = ACCESS_MCLI_DEBUG; |
| 1825 | level_str = "mcli-debug-mode"; |
| 1826 | } |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1827 | else { |
| 1828 | return 1; |
| 1829 | } |
Willy Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 1830 | |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1831 | 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 Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 1836 | |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1837 | appctx->cli_level &= ~level; |
Willy Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 1838 | if (strcmp(args[1], "on") == 0) |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1839 | appctx->cli_level |= level; |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1840 | return 1; |
| 1841 | } |
| 1842 | |
William Lallemand | 740629e | 2021-12-14 15:22:29 +0100 | [diff] [blame] | 1843 | /* shows HAProxy version */ |
| 1844 | static 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 Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1851 | int cli_parse_default(char **args, char *payload, struct appctx *appctx, void *private) |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1852 | { |
| 1853 | return 0; |
| 1854 | } |
| 1855 | |
Erwan Le Goas | 54966df | 2022-09-14 17:24:22 +0200 | [diff] [blame] | 1856 | /* enable or disable the anonymized mode, it returns 1 when it works or displays an error message if it doesn't. */ |
| 1857 | static 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 Goas | 3f4ae61 | 2022-09-28 17:04:29 +0200 | [diff] [blame] | 1863 | |
| 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 Goas | 54966df | 2022-09-14 17:24:22 +0200 | [diff] [blame] | 1870 | else { |
Erwan Le Goas | 3f4ae61 | 2022-09-28 17:04:29 +0200 | [diff] [blame] | 1871 | 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 Goas | 54966df | 2022-09-14 17:24:22 +0200 | [diff] [blame] | 1876 | } |
| 1877 | } |
| 1878 | else if (strcmp(args[2], "off") == 0) { |
Erwan Le Goas | 3f4ae61 | 2022-09-28 17:04:29 +0200 | [diff] [blame] | 1879 | |
| 1880 | if (*args[3]) { |
Erwan Le Goas | 54966df | 2022-09-14 17:24:22 +0200 | [diff] [blame] | 1881 | 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 Goas | fad9da8 | 2022-09-14 17:24:22 +0200 | [diff] [blame] | 1896 | /* This function set the global anonyzing key, restricted to level 'admin' */ |
| 1897 | static 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 Goas | 54966df | 2022-09-14 17:24:22 +0200 | [diff] [blame] | 1914 | /* shows the anonymized mode state to everyone, and the key except for users, it always returns 1. */ |
| 1915 | static 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 Tarreau | 45c742b | 2016-11-24 14:51:17 +0100 | [diff] [blame] | 1936 | /* parse a "set rate-limit" command. It always returns 1. */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1937 | static int cli_parse_set_ratelimit(char **args, char *payload, struct appctx *appctx, void *private) |
Willy Tarreau | 45c742b | 2016-11-24 14:51:17 +0100 | [diff] [blame] | 1938 | { |
| 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 Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1959 | return cli_err(appctx, |
Willy Tarreau | 45c742b | 2016-11-24 14:51:17 +0100 | [diff] [blame] | 1960 | "'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 Nephtali | b53e208 | 2018-03-11 16:55:02 +0100 | [diff] [blame] | 1964 | " - 'ssl-sessions global' to set the per-process maximum SSL session rate\n" |
Willy Tarreau | 45c742b | 2016-11-24 14:51:17 +0100 | [diff] [blame] | 1965 | #endif |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1966 | " - 'http-compression global' to set the per-process maximum compression speed in kB/s\n"); |
Willy Tarreau | 45c742b | 2016-11-24 14:51:17 +0100 | [diff] [blame] | 1967 | } |
| 1968 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1969 | if (!*args[4]) |
| 1970 | return cli_err(appctx, "Expects an integer value.\n"); |
Willy Tarreau | 45c742b | 2016-11-24 14:51:17 +0100 | [diff] [blame] | 1971 | |
| 1972 | v = atoi(args[4]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1973 | if (v < 0) |
| 1974 | return cli_err(appctx, "Value out of range.\n"); |
Willy Tarreau | 45c742b | 2016-11-24 14:51:17 +0100 | [diff] [blame] | 1975 | |
| 1976 | *res = v * mul; |
| 1977 | |
| 1978 | /* Dequeues all of the listeners waiting for a resource */ |
Willy Tarreau | 241797a | 2019-12-10 14:10:52 +0100 | [diff] [blame] | 1979 | dequeue_all_listeners(); |
Willy Tarreau | 45c742b | 2016-11-24 14:51:17 +0100 | [diff] [blame] | 1980 | |
| 1981 | return 1; |
| 1982 | } |
| 1983 | |
William Lallemand | f6975e9 | 2017-05-26 17:42:10 +0200 | [diff] [blame] | 1984 | /* parse the "expose-fd" argument on the bind lines */ |
| 1985 | static 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 Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1991 | if (strcmp(args[cur_arg + 1], "listeners") == 0) { |
William Lallemand | f6975e9 | 2017-05-26 17:42:10 +0200 | [diff] [blame] | 1992 | 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 Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 2002 | /* parse the "level" argument on the bind lines */ |
| 2003 | static 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 Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2010 | if (strcmp(args[cur_arg + 1], "user") == 0) { |
William Lallemand | 07a62f7 | 2017-05-24 00:57:40 +0200 | [diff] [blame] | 2011 | conf->level &= ~ACCESS_LVL_MASK; |
| 2012 | conf->level |= ACCESS_LVL_USER; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2013 | } else if (strcmp(args[cur_arg + 1], "operator") == 0) { |
William Lallemand | 07a62f7 | 2017-05-24 00:57:40 +0200 | [diff] [blame] | 2014 | conf->level &= ~ACCESS_LVL_MASK; |
| 2015 | conf->level |= ACCESS_LVL_OPER; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2016 | } else if (strcmp(args[cur_arg + 1], "admin") == 0) { |
William Lallemand | 07a62f7 | 2017-05-24 00:57:40 +0200 | [diff] [blame] | 2017 | conf->level &= ~ACCESS_LVL_MASK; |
| 2018 | conf->level |= ACCESS_LVL_ADMIN; |
| 2019 | } else { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 2020 | 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 Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 2028 | static 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 Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2044 | /* Send all the bound sockets, always returns 1 */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2045 | static int _getsocks(char **args, char *payload, struct appctx *appctx, void *private) |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2046 | { |
William Lallemand | b5d062d | 2022-07-28 15:33:41 +0200 | [diff] [blame] | 2047 | static int already_sent = 0; |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2048 | char *cmsgbuf = NULL; |
| 2049 | unsigned char *tmpbuf = NULL; |
| 2050 | struct cmsghdr *cmsg; |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 2051 | struct stconn *sc = appctx_sc(appctx); |
Willy Tarreau | 475e463 | 2022-05-27 10:26:46 +0200 | [diff] [blame] | 2052 | struct stream *s = __sc_strm(sc); |
| 2053 | struct connection *remote = sc_conn(sc_opposite(sc)); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2054 | struct msghdr msghdr; |
| 2055 | struct iovec iov; |
Olivier Houchard | 5474087 | 2017-04-06 14:45:14 +0200 | [diff] [blame] | 2056 | struct timeval tv = { .tv_sec = 1, .tv_usec = 0 }; |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2057 | const char *ns_name, *if_name; |
| 2058 | unsigned char ns_nlen, if_nlen; |
| 2059 | int nb_queued; |
| 2060 | int cur_fd = 0; |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2061 | int *tmpfd; |
| 2062 | int tot_fd_nb = 0; |
Willy Tarreau | c2b7f80 | 2018-09-20 11:22:29 +0200 | [diff] [blame] | 2063 | int fd = -1; |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2064 | int curoff = 0; |
Willy Tarreau | c2b7f80 | 2018-09-20 11:22:29 +0200 | [diff] [blame] | 2065 | int old_fcntl = -1; |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2066 | int ret; |
| 2067 | |
Willy Tarreau | c2b7f80 | 2018-09-20 11:22:29 +0200 | [diff] [blame] | 2068 | if (!remote) { |
| 2069 | ha_warning("Only works on real connections\n"); |
| 2070 | goto out; |
| 2071 | } |
| 2072 | |
| 2073 | fd = remote->handle.fd; |
| 2074 | |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2075 | /* 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 Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2078 | ha_warning("Couldn't get the flags for the unix socket\n"); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2079 | goto out; |
| 2080 | } |
| 2081 | cmsgbuf = malloc(CMSG_SPACE(sizeof(int) * MAX_SEND_FD)); |
| 2082 | if (!cmsgbuf) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2083 | ha_warning("Failed to allocate memory to send sockets\n"); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2084 | goto out; |
| 2085 | } |
| 2086 | if (fcntl(fd, F_SETFL, old_fcntl &~ O_NONBLOCK) == -1) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2087 | ha_warning("Cannot make the unix socket blocking\n"); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2088 | goto out; |
| 2089 | } |
Olivier Houchard | 5474087 | 2017-04-06 14:45:14 +0200 | [diff] [blame] | 2090 | setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv)); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2091 | iov.iov_base = &tot_fd_nb; |
| 2092 | iov.iov_len = sizeof(tot_fd_nb); |
William Lallemand | f6975e9 | 2017-05-26 17:42:10 +0200 | [diff] [blame] | 2093 | if (!(strm_li(s)->bind_conf->level & ACCESS_FD_LISTENERS)) |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2094 | goto out; |
| 2095 | memset(&msghdr, 0, sizeof(msghdr)); |
| 2096 | /* |
| 2097 | * First, calculates the total number of FD, so that we can let |
Jackie Tapia | 749f74c | 2020-07-22 18:59:40 -0500 | [diff] [blame] | 2098 | * the caller know how much it should expect. |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2099 | */ |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2100 | for (cur_fd = 0;cur_fd < global.maxsock; cur_fd++) |
Willy Tarreau | 9063a66 | 2021-04-06 18:09:06 +0200 | [diff] [blame] | 2101 | tot_fd_nb += !!(fdtab[cur_fd].state & FD_EXPORTED); |
William Lallemand | 5fd3b28 | 2020-01-16 15:32:08 +0100 | [diff] [blame] | 2102 | |
William Lallemand | b5d062d | 2022-07-28 15:33:41 +0200 | [diff] [blame] | 2103 | 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 Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2106 | goto out; |
William Lallemand | b5d062d | 2022-07-28 15:33:41 +0200 | [diff] [blame] | 2107 | } |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2108 | |
| 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 Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2116 | ha_warning("Failed to send the number of sockets to send\n"); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2117 | 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 Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2129 | /* 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 Tarreau | cf1f193 | 2020-08-26 10:30:09 +0200 | [diff] [blame] | 2134 | * 32 bits of zeroes (used to be listener options). |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2135 | */ |
| 2136 | /* We will send sockets MAX_SEND_FD per MAX_SEND_FD, allocate a |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 2137 | * buffer big enough to store the socket information. |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2138 | */ |
Olivier Houchard | f143b80 | 2017-11-04 15:13:01 +0100 | [diff] [blame] | 2139 | tmpbuf = malloc(MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int))); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2140 | if (tmpbuf == NULL) { |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 2141 | ha_warning("Failed to allocate memory to transfer socket information\n"); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2142 | goto out; |
| 2143 | } |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2144 | |
| 2145 | nb_queued = 0; |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2146 | iov.iov_base = tmpbuf; |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2147 | for (cur_fd = 0; cur_fd < global.maxsock; cur_fd++) { |
Willy Tarreau | 9063a66 | 2021-04-06 18:09:06 +0200 | [diff] [blame] | 2148 | if (!(fdtab[cur_fd].state & FD_EXPORTED)) |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2149 | 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 Tarreau | a74cb38 | 2020-10-15 21:29:49 +0200 | [diff] [blame] | 2157 | if (fdtab[cur_fd].iocb == sock_accept_iocb) { |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2158 | const struct listener *l = fdtab[cur_fd].owner; |
| 2159 | |
Willy Tarreau | 818a92e | 2020-09-03 07:50:19 +0200 | [diff] [blame] | 2160 | if (l->rx.settings->interface) { |
| 2161 | if_name = l->rx.settings->interface; |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2162 | if_nlen = strlen(if_name); |
| 2163 | } |
| 2164 | |
| 2165 | #ifdef USE_NS |
Willy Tarreau | 818a92e | 2020-09-03 07:50:19 +0200 | [diff] [blame] | 2166 | if (l->rx.settings->netns) { |
| 2167 | ns_name = l->rx.settings->netns->node.key; |
| 2168 | ns_nlen = l->rx.settings->netns->name_len; |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2169 | } |
| 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 Lallemand | 5fd3b28 | 2020-01-16 15:32:08 +0100 | [diff] [blame] | 2212 | } |
| 2213 | |
William Lallemand | b5d062d | 2022-07-28 15:33:41 +0200 | [diff] [blame] | 2214 | already_sent = 1; |
| 2215 | |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2216 | /* flush pending stuff */ |
| 2217 | if (nb_queued) { |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2218 | iov.iov_len = curoff; |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2219 | cmsg->cmsg_len = CMSG_LEN(nb_queued * sizeof(int)); |
| 2220 | msghdr.msg_controllen = CMSG_SPACE(nb_queued * sizeof(int)); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2221 | if (sendmsg(fd, &msghdr, 0) != curoff) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2222 | ha_warning("Failed to transfer sockets\n"); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2223 | goto out; |
| 2224 | } |
| 2225 | } |
| 2226 | |
| 2227 | out: |
Willy Tarreau | c2b7f80 | 2018-09-20 11:22:29 +0200 | [diff] [blame] | 2228 | if (fd >= 0 && old_fcntl >= 0 && fcntl(fd, F_SETFL, old_fcntl) == -1) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2229 | ha_warning("Cannot make the unix socket non-blocking\n"); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2230 | goto out; |
| 2231 | } |
Christopher Faulet | 33af996 | 2023-04-07 17:58:21 +0200 | [diff] [blame] | 2232 | se_fl_set(appctx->sedesc, SE_FL_EOI); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2233 | appctx->st0 = CLI_ST_END; |
| 2234 | free(cmsgbuf); |
| 2235 | free(tmpbuf); |
| 2236 | return 1; |
| 2237 | } |
| 2238 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2239 | static int cli_parse_simple(char **args, char *payload, struct appctx *appctx, void *private) |
| 2240 | { |
| 2241 | if (*args[0] == 'h') |
| 2242 | /* help */ |
Willy Tarreau | 0b1b830 | 2021-05-09 20:59:23 +0200 | [diff] [blame] | 2243 | cli_gen_usage_msg(appctx, args); |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2244 | else if (*args[0] == 'p') |
| 2245 | /* prompt */ |
Willy Tarreau | 2255557 | 2023-05-04 14:22:36 +0200 | [diff] [blame] | 2246 | 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 Faulet | 33af996 | 2023-04-07 17:58:21 +0200 | [diff] [blame] | 2252 | else if (*args[0] == 'q') { |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2253 | /* quit */ |
Christopher Faulet | 33af996 | 2023-04-07 17:58:21 +0200 | [diff] [blame] | 2254 | se_fl_set(appctx->sedesc, SE_FL_EOI); |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2255 | appctx->st0 = CLI_ST_END; |
Christopher Faulet | 33af996 | 2023-04-07 17:58:21 +0200 | [diff] [blame] | 2256 | } |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2257 | |
| 2258 | return 1; |
| 2259 | } |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2260 | |
William Lallemand | 2f4ce20 | 2018-10-26 14:47:47 +0200 | [diff] [blame] | 2261 | void pcli_write_prompt(struct stream *s) |
| 2262 | { |
| 2263 | struct buffer *msg = get_trash_chunk(); |
Willy Tarreau | 40a9c32 | 2022-05-18 15:55:18 +0200 | [diff] [blame] | 2264 | struct channel *oc = sc_oc(s->scf); |
William Lallemand | 2f4ce20 | 2018-10-26 14:47:47 +0200 | [diff] [blame] | 2265 | |
William Lallemand | dc12c2e | 2018-12-13 09:05:46 +0100 | [diff] [blame] | 2266 | if (!(s->pcli_flags & PCLI_F_PROMPT)) |
William Lallemand | 5b80fa2 | 2018-12-11 16:10:54 +0100 | [diff] [blame] | 2267 | return; |
| 2268 | |
William Lallemand | dc12c2e | 2018-12-13 09:05:46 +0100 | [diff] [blame] | 2269 | if (s->pcli_flags & PCLI_F_PAYLOAD) { |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2270 | chunk_appendf(msg, "+ "); |
| 2271 | } else { |
Willy Tarreau | ea07715 | 2023-05-11 16:14:02 +0200 | [diff] [blame] | 2272 | 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 Lallemand | dae12c7 | 2022-02-02 14:13:54 +0100 | [diff] [blame] | 2280 | chunk_appendf(msg, "master%s", |
William Lallemand | 3ba7c7b | 2021-11-10 10:57:18 +0100 | [diff] [blame] | 2281 | (proc_self->failedreloads > 0) ? "[ReloadFailed]" : ""); |
Willy Tarreau | ea07715 | 2023-05-11 16:14:02 +0200 | [diff] [blame] | 2282 | } |
| 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 Lallemand | dae12c7 | 2022-02-02 14:13:54 +0100 | [diff] [blame] | 2310 | chunk_appendf(msg, "%d", s->pcli_next_pid); |
Willy Tarreau | ea07715 | 2023-05-11 16:14:02 +0200 | [diff] [blame] | 2311 | } |
William Lallemand | dae12c7 | 2022-02-02 14:13:54 +0100 | [diff] [blame] | 2312 | |
| 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 Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2331 | } |
William Lallemand | 2f4ce20 | 2018-10-26 14:47:47 +0200 | [diff] [blame] | 2332 | co_inject(oc, msg->area, msg->data); |
| 2333 | } |
| 2334 | |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2335 | /* The pcli_* functions are used for the CLI proxy in the master */ |
| 2336 | |
William Lallemand | 1601eeb | 2023-05-14 18:36:00 +0200 | [diff] [blame] | 2337 | |
| 2338 | /* flush the input buffer and output an error */ |
| 2339 | void 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 Lallemand | deeaa59 | 2018-10-26 14:47:48 +0200 | [diff] [blame] | 2355 | void 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 Faulet | 9125f3c | 2022-03-31 09:47:24 +0200 | [diff] [blame] | 2360 | stream_retnclose(s, buf); |
William Lallemand | deeaa59 | 2018-10-26 14:47:48 +0200 | [diff] [blame] | 2361 | } |
| 2362 | |
William Lallemand | 291810d | 2018-10-26 14:47:38 +0200 | [diff] [blame] | 2363 | static enum obj_type *pcli_pid_to_server(int proc_pid) |
| 2364 | { |
| 2365 | struct mworker_proc *child; |
| 2366 | |
William Lallemand | 99e0bb9 | 2020-11-05 10:28:53 +0100 | [diff] [blame] | 2367 | /* return the mCLI applet of the master */ |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2368 | if (proc_pid == 0) |
William Lallemand | 99e0bb9 | 2020-11-05 10:28:53 +0100 | [diff] [blame] | 2369 | return &mcli_applet.obj_type; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2370 | |
William Lallemand | 291810d | 2018-10-26 14:47:38 +0200 | [diff] [blame] | 2371 | 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 | */ |
| 2385 | static 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 Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 2409 | if (!(child->options & PROC_O_TYPE_WORKER)) |
William Lallemand | 16dd1b3 | 2018-11-19 18:46:18 +0100 | [diff] [blame] | 2410 | continue; |
William Lallemand | 291810d | 2018-10-26 14:47:38 +0200 | [diff] [blame] | 2411 | 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 Lallemand | bac3a82 | 2022-07-20 14:30:56 +0200 | [diff] [blame] | 2426 | if (proc_pid != 1) /* only the "@1" relative PID is supported */ |
| 2427 | return -1; |
| 2428 | |
William Lallemand | 291810d | 2018-10-26 14:47:38 +0200 | [diff] [blame] | 2429 | /* 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 Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 2432 | if (!(child->options & PROC_O_TYPE_WORKER)) |
William Lallemand | 16dd1b3 | 2018-11-19 18:46:18 +0100 | [diff] [blame] | 2433 | continue; |
Willy Tarreau | e8422bf | 2021-06-15 09:08:18 +0200 | [diff] [blame] | 2434 | if (child->reloads == 0) |
| 2435 | return child->pid; |
| 2436 | else if (chosen == NULL || child->reloads < chosen->reloads) |
| 2437 | chosen = child; |
William Lallemand | 291810d | 2018-10-26 14:47:38 +0200 | [diff] [blame] | 2438 | } |
| 2439 | if (chosen) |
| 2440 | return chosen->pid; |
| 2441 | } |
| 2442 | return -1; |
| 2443 | } |
| 2444 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2445 | /* Return:: |
| 2446 | * >= 0 : number of words to escape |
| 2447 | * = -1 : error |
| 2448 | */ |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2449 | int 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 Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2469 | } else if (strcmp("prompt", args[0]) == 0) { |
Willy Tarreau | ea07715 | 2023-05-11 16:14:02 +0200 | [diff] [blame] | 2470 | 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 Lallemand | 5b80fa2 | 2018-12-11 16:10:54 +0100 | [diff] [blame] | 2476 | return argl; /* return the number of elements in the array */ |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2477 | } else if (strcmp("quit", args[0]) == 0) { |
Christopher Faulet | 12762f0 | 2023-04-13 15:40:10 +0200 | [diff] [blame] | 2478 | sc_schedule_abort(s->scf); |
Christopher Faulet | df7cd71 | 2023-04-13 15:56:26 +0200 | [diff] [blame] | 2479 | sc_schedule_shutdown(s->scf); |
William Lallemand | 5f61068 | 2018-12-11 16:10:55 +0100 | [diff] [blame] | 2480 | return argl; /* return the number of elements in the array */ |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2481 | } else if (strcmp(args[0], "operator") == 0) { |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2482 | 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 Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2490 | } else if (strcmp(args[0], "user") == 0) { |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2491 | 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 Lallemand | 7267f78 | 2022-02-01 16:08:50 +0100 | [diff] [blame] | 2498 | |
| 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 Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 2519 | } 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 Lallemand | 7438181 | 2023-12-06 11:15:01 +0100 | [diff] [blame] | 2528 | } 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 Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2543 | } |
| 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 Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2552 | * |
| 2553 | * Return: |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2554 | * - the number of characters to forward or |
| 2555 | * - 1 if there is an error or not enough data |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2556 | */ |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2557 | int pcli_parse_request(struct stream *s, struct channel *req, char **errmsg, int *next_pid) |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2558 | { |
Willy Tarreau | a4e4d66 | 2022-01-20 08:47:35 +0100 | [diff] [blame] | 2559 | char *str; |
| 2560 | char *end; |
Willy Tarreau | f14c757 | 2021-03-13 10:59:23 +0100 | [diff] [blame] | 2561 | char *args[MAX_CLI_ARGS + 1]; /* +1 for storing a NULL */ |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2562 | int argl; /* number of args */ |
| 2563 | char *p; |
| 2564 | char *trim = NULL; |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2565 | char *payload = NULL; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2566 | int wtrim = 0; /* number of words to trim */ |
| 2567 | int reql = 0; |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2568 | int ret; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2569 | int i = 0; |
| 2570 | |
Willy Tarreau | a4e4d66 | 2022-01-20 08:47:35 +0100 | [diff] [blame] | 2571 | /* 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 Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2580 | p = str; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2581 | |
William Lallemand | dc12c2e | 2018-12-13 09:05:46 +0100 | [diff] [blame] | 2582 | if (!(s->pcli_flags & PCLI_F_PAYLOAD)) { |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2583 | |
| 2584 | /* Looks for the end of one command */ |
| 2585 | while (p+reql < end) { |
| 2586 | /* handle escaping */ |
| 2587 | if (p[reql] == '\\') { |
William Lallemand | 02c255e | 2020-06-18 18:45:04 +0200 | [diff] [blame] | 2588 | reql+=2; |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2589 | 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 Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2597 | reql++; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2598 | } |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2599 | } else { |
| 2600 | while (p+reql < end) { |
| 2601 | if (p[reql] == '\n') { |
| 2602 | /* found the end of the line */ |
| 2603 | reql++; |
| 2604 | break; |
| 2605 | } |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2606 | reql++; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2607 | } |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2608 | } |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2609 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2610 | /* set end to first byte after the end of the command */ |
| 2611 | end = p + reql; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2612 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2613 | /* there is no end to this command, need more to parse ! */ |
Willy Tarreau | 6cd93f5 | 2022-01-20 08:31:50 +0100 | [diff] [blame] | 2614 | if (!reql || *(end-1) != '\n') { |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2615 | return -1; |
| 2616 | } |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2617 | |
William Lallemand | 3301f3e | 2018-12-13 09:05:48 +0100 | [diff] [blame] | 2618 | if (s->pcli_flags & PCLI_F_PAYLOAD) { |
| 2619 | if (reql == 1) /* last line of the payload */ |
| 2620 | s->pcli_flags &= ~PCLI_F_PAYLOAD; |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2621 | return reql; |
| 2622 | } |
| 2623 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2624 | *(end-1) = '\0'; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2625 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2626 | /* splits the command in words */ |
Willy Tarreau | f14c757 | 2021-03-13 10:59:23 +0100 | [diff] [blame] | 2627 | while (i < MAX_CLI_ARGS && p < end) { |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2628 | /* skip leading spaces/tabs */ |
| 2629 | p += strspn(p, " \t"); |
| 2630 | if (!*p) |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2631 | break; |
| 2632 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2633 | args[i] = p; |
William Lallemand | fe249c3 | 2020-06-18 18:03:57 +0200 | [diff] [blame] | 2634 | 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 Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2644 | } |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2645 | } |
William Lallemand | fe249c3 | 2020-06-18 18:03:57 +0200 | [diff] [blame] | 2646 | *p++ = 0; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2647 | i++; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2648 | } |
| 2649 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2650 | argl = i; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2651 | |
Willy Tarreau | f14c757 | 2021-03-13 10:59:23 +0100 | [diff] [blame] | 2652 | for (; i < MAX_CLI_ARGS + 1; i++) |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2653 | 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 Lallemand | fe618fb | 2022-02-02 14:07:08 +0100 | [diff] [blame] | 2658 | before forwarding them */ |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2659 | p = str; |
William Lallemand | 3301f3e | 2018-12-13 09:05:48 +0100 | [diff] [blame] | 2660 | while (p < end-1) { |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2661 | if (*p == '\0') |
| 2662 | *p = ' '; |
| 2663 | p++; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2664 | } |
| 2665 | |
William Lallemand | 3301f3e | 2018-12-13 09:05:48 +0100 | [diff] [blame] | 2666 | 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 Lallemand | 3301f3e | 2018-12-13 09:05:48 +0100 | [diff] [blame] | 2670 | } |
| 2671 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2672 | *(end-1) = '\n'; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2673 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2674 | 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 Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2678 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2679 | b_del(&req->buf, trim - str); |
| 2680 | |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2681 | ret = end - trim; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2682 | } else if (wtrim < 0) { |
| 2683 | /* parsing error */ |
| 2684 | return -1; |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2685 | } else { |
| 2686 | /* the whole string */ |
| 2687 | ret = end - str; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2688 | } |
| 2689 | |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2690 | if (ret > 1) { |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 2691 | |
| 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 Lallemand | 78ad9af | 2024-08-08 17:09:15 +0200 | [diff] [blame] | 2694 | ci_insert(req, 0, "mcli-debug-mode on -;", strlen("mcli-debug-mode on -;")); |
| 2695 | ret += strlen("mcli-debug-mode on -;"); |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 2696 | } |
William Lallemand | 7267f78 | 2022-02-01 16:08:50 +0100 | [diff] [blame] | 2697 | if (s->pcli_flags & ACCESS_EXPERIMENTAL) { |
William Lallemand | 78ad9af | 2024-08-08 17:09:15 +0200 | [diff] [blame] | 2698 | ci_insert(req, 0, "experimental-mode on -;", strlen("experimental-mode on -;")); |
| 2699 | ret += strlen("experimental-mode on -;"); |
William Lallemand | 7267f78 | 2022-02-01 16:08:50 +0100 | [diff] [blame] | 2700 | } |
| 2701 | if (s->pcli_flags & ACCESS_EXPERT) { |
William Lallemand | 78ad9af | 2024-08-08 17:09:15 +0200 | [diff] [blame] | 2702 | ci_insert(req, 0, "expert-mode on -;", strlen("expert-mode on -;")); |
| 2703 | ret += strlen("expert-mode on -;"); |
William Lallemand | 7267f78 | 2022-02-01 16:08:50 +0100 | [diff] [blame] | 2704 | } |
William Lallemand | 7438181 | 2023-12-06 11:15:01 +0100 | [diff] [blame] | 2705 | if (s->pcli_flags & ACCESS_MCLI_SEVERITY_STR) { |
William Lallemand | 78ad9af | 2024-08-08 17:09:15 +0200 | [diff] [blame] | 2706 | const char *cmd = "set severity-output string -;"; |
| 2707 | ci_insert(req, 0, cmd, strlen(cmd)); |
| 2708 | ret += strlen(cmd); |
William Lallemand | 7438181 | 2023-12-06 11:15:01 +0100 | [diff] [blame] | 2709 | } |
| 2710 | if (s->pcli_flags & ACCESS_MCLI_SEVERITY_NB) { |
William Lallemand | 78ad9af | 2024-08-08 17:09:15 +0200 | [diff] [blame] | 2711 | const char *cmd = "set severity-output number -;"; |
| 2712 | ci_insert(req, 0, cmd, strlen(cmd)); |
| 2713 | ret += strlen(cmd); |
William Lallemand | 7438181 | 2023-12-06 11:15:01 +0100 | [diff] [blame] | 2714 | } |
William Lallemand | 7267f78 | 2022-02-01 16:08:50 +0100 | [diff] [blame] | 2715 | |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2716 | if (pcli_has_level(s, ACCESS_LVL_ADMIN)) { |
| 2717 | goto end; |
| 2718 | } else if (pcli_has_level(s, ACCESS_LVL_OPER)) { |
William Lallemand | 78ad9af | 2024-08-08 17:09:15 +0200 | [diff] [blame] | 2719 | ci_insert(req, 0, "operator -;", strlen("operator -;")); |
| 2720 | ret += strlen("operator -;"); |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2721 | } else if (pcli_has_level(s, ACCESS_LVL_USER)) { |
William Lallemand | 78ad9af | 2024-08-08 17:09:15 +0200 | [diff] [blame] | 2722 | ci_insert(req, 0, "user -;", strlen("user -;")); |
| 2723 | ret += strlen("user -;"); |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2724 | } |
| 2725 | } |
| 2726 | end: |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2727 | |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2728 | return ret; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2729 | } |
| 2730 | |
| 2731 | int pcli_wait_for_request(struct stream *s, struct channel *req, int an_bit) |
| 2732 | { |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2733 | int next_pid = -1; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2734 | int to_forward; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2735 | char *errmsg = NULL; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2736 | |
Ilya Shipitsin | 5e87bcf | 2021-12-25 11:45:52 +0500 | [diff] [blame] | 2737 | /* Don't read the next command if still processing the response of the |
Christopher Faulet | d98da3b | 2021-10-18 14:52:49 +0200 | [diff] [blame] | 2738 | * 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 Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2744 | 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 Lallemand | 0a0512f | 2022-09-24 16:14:50 +0200 | [diff] [blame] | 2747 | /* 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 Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2754 | read_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 Faulet | 9a790f6 | 2023-03-16 14:40:03 +0100 | [diff] [blame] | 2763 | s->scf->flags |= SC_FL_RCV_ONCE; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2764 | |
| 2765 | /* need more data */ |
| 2766 | if (!ci_data(req)) |
Christopher Faulet | 0f727da | 2022-01-18 08:44:23 +0100 | [diff] [blame] | 2767 | goto missing_data; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2768 | |
| 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 Tarreau | 69530f5 | 2023-04-28 09:16:15 +0200 | [diff] [blame] | 2771 | s->logs.t_idle = ns_to_ms(now_ns - s->logs.accept_ts) - s->logs.t_handshake; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2772 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2773 | to_forward = pcli_parse_request(s, req, &errmsg, &next_pid); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2774 | if (to_forward > 0) { |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2775 | int target_pid; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2776 | /* enough data */ |
| 2777 | |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2778 | /* forward only 1 command */ |
| 2779 | channel_forward(req, to_forward); |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2780 | |
William Lallemand | dc12c2e | 2018-12-13 09:05:46 +0100 | [diff] [blame] | 2781 | if (!(s->pcli_flags & PCLI_F_PAYLOAD)) { |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2782 | /* we send only 1 command per request, and we write close after it */ |
Christopher Faulet | df7cd71 | 2023-04-13 15:56:26 +0200 | [diff] [blame] | 2783 | sc_schedule_shutdown(s->scb); |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2784 | } else { |
| 2785 | pcli_write_prompt(s); |
| 2786 | } |
| 2787 | |
| 2788 | s->res.flags |= CF_WAKE_ONCE; /* need to be called again */ |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2789 | s->res.analysers |= AN_RES_WAIT_CLI; |
| 2790 | |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2791 | 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 Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2798 | |
William Lallemand | dcbe7b9 | 2021-12-10 14:14:53 +0100 | [diff] [blame] | 2799 | if (!s->target) |
| 2800 | goto server_disconnect; |
| 2801 | |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2802 | s->flags |= (SF_DIRECT | SF_ASSIGNED); |
| 2803 | channel_auto_connect(req); |
| 2804 | } |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2805 | |
| 2806 | } else if (to_forward == 0) { |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2807 | /* we trimmed things but we might have other commands to consume */ |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2808 | pcli_write_prompt(s); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2809 | goto read_again; |
Christopher Faulet | 0f727da | 2022-01-18 08:44:23 +0100 | [diff] [blame] | 2810 | } else if (to_forward == -1) { |
William Lallemand | 1601eeb | 2023-05-14 18:36:00 +0200 | [diff] [blame] | 2811 | 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 Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2817 | } |
| 2818 | |
| 2819 | return 0; |
| 2820 | |
| 2821 | send_help: |
| 2822 | b_reset(&req->buf); |
| 2823 | b_putblk(&req->buf, "help\n", 5); |
| 2824 | goto read_again; |
William Lallemand | dcbe7b9 | 2021-12-10 14:14:53 +0100 | [diff] [blame] | 2825 | |
William Lallemand | 0a0512f | 2022-09-24 16:14:50 +0200 | [diff] [blame] | 2826 | send_status: |
| 2827 | s->pcli_flags |= PCLI_F_RELOAD; |
Willy Tarreau | dd9f921 | 2023-05-07 07:07:44 +0200 | [diff] [blame] | 2828 | /* don't use ci_putblk here because SHUT_DONE could have been sent */ |
William Lallemand | 0a0512f | 2022-09-24 16:14:50 +0200 | [diff] [blame] | 2829 | b_reset(&req->buf); |
| 2830 | b_putblk(&req->buf, "_loadstatus;quit\n", 17); |
| 2831 | goto read_again; |
| 2832 | |
Christopher Faulet | 0f727da | 2022-01-18 08:44:23 +0100 | [diff] [blame] | 2833 | missing_data: |
Christopher Faulet | ca5309a | 2023-04-17 16:17:32 +0200 | [diff] [blame] | 2834 | if (s->scf->flags & (SC_FL_ABRT_DONE|SC_FL_EOS)) { |
Christopher Faulet | 0f727da | 2022-01-18 08:44:23 +0100 | [diff] [blame] | 2835 | /* There is no more request or a only a partial one and we |
| 2836 | * receive a close from the client, we can leave */ |
Christopher Faulet | df7cd71 | 2023-04-13 15:56:26 +0200 | [diff] [blame] | 2837 | sc_schedule_shutdown(s->scf); |
Christopher Faulet | 0f727da | 2022-01-18 08:44:23 +0100 | [diff] [blame] | 2838 | 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 Lallemand | dcbe7b9 | 2021-12-10 14:14:53 +0100 | [diff] [blame] | 2847 | server_disconnect: |
| 2848 | pcli_reply_and_close(s, "Can't connect to the target CLI!\n"); |
| 2849 | return 0; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2850 | } |
| 2851 | |
| 2852 | int 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 Faulet | d7bac88 | 2023-04-14 12:05:55 +0200 | [diff] [blame] | 2857 | if ((s->scb->flags & SC_FL_ERROR) || (rep->flags & (CF_READ_TIMEOUT|CF_WRITE_TIMEOUT)) || |
Christopher Faulet | 64350bb | 2023-04-13 16:37:37 +0200 | [diff] [blame] | 2858 | ((s->scf->flags & SC_FL_SHUT_DONE) && (rep->to_forward || co_data(rep)))) { |
William Lallemand | 6b7cd0a | 2018-11-06 17:37:11 +0100 | [diff] [blame] | 2859 | pcli_reply_and_close(s, "Can't connect to the target CLI!\n"); |
Christopher Faulet | d98da3b | 2021-10-18 14:52:49 +0200 | [diff] [blame] | 2860 | s->req.analysers &= ~AN_REQ_WAIT_CLI; |
William Lallemand | 6b7cd0a | 2018-11-06 17:37:11 +0100 | [diff] [blame] | 2861 | s->res.analysers &= ~AN_RES_WAIT_CLI; |
| 2862 | return 0; |
| 2863 | } |
Christopher Faulet | 9a790f6 | 2023-03-16 14:40:03 +0100 | [diff] [blame] | 2864 | s->scb->flags |= SC_FL_RCV_ONCE; /* try to get back here ASAP */ |
Christopher Faulet | 68ef218 | 2023-03-17 15:38:18 +0100 | [diff] [blame] | 2865 | s->scf->flags |= SC_FL_SND_NEVERWAIT; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2866 | |
| 2867 | /* don't forward the close */ |
| 2868 | channel_dont_close(&s->res); |
| 2869 | channel_dont_close(&s->req); |
| 2870 | |
William Lallemand | dc12c2e | 2018-12-13 09:05:46 +0100 | [diff] [blame] | 2871 | if (s->pcli_flags & PCLI_F_PAYLOAD) { |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2872 | 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 Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2877 | /* forward the data */ |
| 2878 | if (ci_data(rep)) { |
| 2879 | c_adv(rep, ci_data(rep)); |
| 2880 | return 0; |
| 2881 | } |
| 2882 | |
Christopher Faulet | ca5309a | 2023-04-17 16:17:32 +0200 | [diff] [blame] | 2883 | if (s->scb->flags & (SC_FL_ABRT_DONE|SC_FL_EOS)) { |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2884 | /* stream cleanup */ |
| 2885 | |
William Lallemand | 2f4ce20 | 2018-10-26 14:47:47 +0200 | [diff] [blame] | 2886 | pcli_write_prompt(s); |
| 2887 | |
Willy Tarreau | cb04166 | 2022-05-17 19:44:42 +0200 | [diff] [blame] | 2888 | s->scb->flags |= SC_FL_NOLINGER | SC_FL_NOHALF; |
Christopher Faulet | cfc11c0 | 2023-04-13 16:10:23 +0200 | [diff] [blame] | 2889 | sc_abort(s->scb); |
Christopher Faulet | b2b1c3a | 2023-04-13 16:23:48 +0200 | [diff] [blame] | 2890 | sc_shutdown(s->scb); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2891 | |
| 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 Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2901 | HA_ATOMIC_DEC(&be->beconn); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2902 | if (unlikely(s->srv_conn)) |
| 2903 | sess_change_server(s, NULL); |
| 2904 | } |
| 2905 | |
Willy Tarreau | 69530f5 | 2023-04-28 09:16:15 +0200 | [diff] [blame] | 2906 | s->logs.t_close = ns_to_ms(now_ns - s->logs.accept_ts); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2907 | 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 Tarreau | 69530f5 | 2023-04-28 09:16:15 +0200 | [diff] [blame] | 2928 | s->logs.accept_ts = now_ns; /* corrected date for internal use */ |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2929 | s->logs.t_handshake = 0; /* There are no handshake in keep alive connection. */ |
| 2930 | s->logs.t_idle = -1; |
Willy Tarreau | ad5a5f6 | 2023-04-27 09:46:02 +0200 | [diff] [blame] | 2931 | s->logs.request_ts = 0; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2932 | 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 Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2946 | HA_ATOMIC_DEC(&__objt_server(s->target)->cur_sess); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2947 | } |
Willy Tarreau | b54c40a | 2018-12-02 19:28:41 +0100 | [diff] [blame] | 2948 | if (may_dequeue_tasks(__objt_server(s->target), be)) |
Willy Tarreau | 9ab7829 | 2021-06-22 18:47:51 +0200 | [diff] [blame] | 2949 | process_srv_queue(__objt_server(s->target)); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2950 | } |
| 2951 | |
| 2952 | s->target = NULL; |
| 2953 | |
Christopher Faulet | 1c2fb4c | 2024-09-02 18:29:02 +0200 | [diff] [blame] | 2954 | /* 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 Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2962 | } |
Christopher Faulet | 1c2fb4c | 2024-09-02 18:29:02 +0200 | [diff] [blame] | 2963 | se_fl_clr(s->scb->sedesc, ~SE_FL_DETACHED); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2964 | |
Willy Tarreau | 7cb9e6c | 2022-05-17 19:40:40 +0200 | [diff] [blame] | 2965 | sockaddr_free(&s->scb->dst); |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2966 | |
Willy Tarreau | 74568cf | 2022-05-27 09:03:30 +0200 | [diff] [blame] | 2967 | sc_set_state(s->scb, SC_ST_INI); |
Christopher Faulet | a1d14a7 | 2023-04-14 10:42:08 +0200 | [diff] [blame] | 2968 | s->scb->flags &= ~(SC_FL_ERROR|SC_FL_SHUT_DONE|SC_FL_SHUT_WANTED); |
Willy Tarreau | cb04166 | 2022-05-17 19:44:42 +0200 | [diff] [blame] | 2969 | s->scb->flags &= SC_FL_ISBACK | SC_FL_DONT_WAKE; /* we're in the context of process_stream */ |
Christopher Faulet | 87633c3 | 2023-04-03 18:32:50 +0200 | [diff] [blame] | 2970 | |
| 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 Tarreau | 03bd395 | 2022-05-02 16:36:47 +0200 | [diff] [blame] | 2973 | s->flags &= ~(SF_DIRECT|SF_ASSIGNED|SF_BE_ASSIGNED|SF_FORCE_PRST|SF_IGNORE_PRST); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2974 | s->flags &= ~(SF_CURR_SESS|SF_REDIRECTABLE|SF_SRV_REUSED); |
| 2975 | s->flags &= ~(SF_ERR_MASK|SF_FINST_MASK|SF_REDISP); |
Christopher Faulet | 909f318 | 2022-03-29 15:42:09 +0200 | [diff] [blame] | 2976 | s->conn_retries = 0; /* used for logging too */ |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 2977 | s->conn_exp = TICK_ETERNITY; |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2978 | s->conn_err_type = STRM_ET_NONE; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2979 | /* 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 Faulet | 71ec2dd | 2024-07-16 14:42:20 +0200 | [diff] [blame] | 2991 | s->uniq_id = _HA_ATOMIC_FETCH_ADD(&global.req_count, 1); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2992 | |
Christopher Faulet | ca5309a | 2023-04-17 16:17:32 +0200 | [diff] [blame] | 2993 | s->scf->flags &= ~(SC_FL_EOS|SC_FL_ERROR|SC_FL_ABRT_DONE|SC_FL_ABRT_WANTED); |
Christopher Faulet | 68ef218 | 2023-03-17 15:38:18 +0100 | [diff] [blame] | 2994 | s->scf->flags &= ~SC_FL_SND_NEVERWAIT; |
Christopher Faulet | 9a790f6 | 2023-03-16 14:40:03 +0100 | [diff] [blame] | 2995 | s->scf->flags |= SC_FL_RCV_ONCE; /* one read is usually enough */ |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2996 | |
| 2997 | s->req.flags |= CF_WAKE_ONCE; /* need to be called again if there is some command left in the request */ |
| 2998 | |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2999 | 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 Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 3003 | * want to accidentally forward once we disable the analysers, nor do |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 3004 | * 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 Faulet | 5aaacfb | 2023-02-15 08:13:33 +0100 | [diff] [blame] | 3015 | s->scf->ioto = strm_fe(s)->timeout.client; |
| 3016 | s->scb->ioto = TICK_ETERNITY; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 3017 | |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 3018 | s->req.analyse_exp = TICK_ETERNITY; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 3019 | s->res.analyse_exp = TICK_ETERNITY; |
Christopher Faulet | 15315d6 | 2023-02-20 08:23:51 +0100 | [diff] [blame] | 3020 | |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 3021 | /* 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 Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3035 | /* |
| 3036 | * The mworker functions are used to initialize the CLI in the master process |
| 3037 | */ |
| 3038 | |
William Lallemand | 309dc9a | 2018-10-26 14:47:45 +0200 | [diff] [blame] | 3039 | /* |
| 3040 | * Stop the mworker proxy |
| 3041 | */ |
| 3042 | void mworker_cli_proxy_stop() |
| 3043 | { |
William Lallemand | 550db6d | 2018-11-06 17:37:12 +0100 | [diff] [blame] | 3044 | if (mworker_proxy) |
| 3045 | stop_proxy(mworker_proxy); |
William Lallemand | 309dc9a | 2018-10-26 14:47:45 +0200 | [diff] [blame] | 3046 | } |
| 3047 | |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3048 | /* |
| 3049 | * Create the mworker CLI proxy |
| 3050 | */ |
| 3051 | int mworker_cli_proxy_create() |
| 3052 | { |
| 3053 | struct mworker_proc *child; |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3054 | char *msg = NULL; |
| 3055 | char *errmsg = NULL; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3056 | |
William Lallemand | ae787ba | 2021-07-29 15:13:22 +0200 | [diff] [blame] | 3057 | mworker_proxy = alloc_new_proxy("MASTER", PR_CAP_LISTEN|PR_CAP_INT, &errmsg); |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3058 | if (!mworker_proxy) |
William Lallemand | ae787ba | 2021-07-29 15:13:22 +0200 | [diff] [blame] | 3059 | goto error_proxy; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3060 | |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 3061 | mworker_proxy->mode = PR_MODE_CLI; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3062 | 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 Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3073 | /* create all servers using the mworker_proc list */ |
| 3074 | list_for_each_entry(child, &proc_list, list) { |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3075 | struct server *newsrv = NULL; |
| 3076 | struct sockaddr_storage *sk; |
| 3077 | int port1, port2, port; |
| 3078 | struct protocol *proto; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3079 | |
William Lallemand | a31b09e | 2020-01-14 15:25:02 +0100 | [diff] [blame] | 3080 | /* only the workers support the master CLI */ |
| 3081 | if (!(child->options & PROC_O_TYPE_WORKER)) |
| 3082 | continue; |
| 3083 | |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3084 | newsrv = new_server(mworker_proxy); |
| 3085 | if (!newsrv) |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3086 | goto error; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3087 | |
| 3088 | /* we don't know the new pid yet */ |
| 3089 | if (child->pid == -1) |
Willy Tarreau | e8422bf | 2021-06-15 09:08:18 +0200 | [diff] [blame] | 3090 | memprintf(&msg, "cur-%d", 1); |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3091 | 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 Tarreau | 5fc9328 | 2020-09-16 18:25:03 +0200 | [diff] [blame] | 3101 | if ((sk = str2sa_range(msg, &port, &port1, &port2, NULL, &proto, |
Willy Tarreau | a93e5c7 | 2020-09-15 14:01:16 +0200 | [diff] [blame] | 3102 | &errmsg, NULL, NULL, PA_O_STREAM)) == 0) { |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3103 | goto error; |
Tim Duesterhus | 4cae3b2 | 2018-11-22 16:46:50 +0100 | [diff] [blame] | 3104 | } |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 3105 | ha_free(&msg); |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3106 | |
Willy Tarreau | 5fc9328 | 2020-09-16 18:25:03 +0200 | [diff] [blame] | 3107 | if (!proto->connect) { |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3108 | goto error; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3109 | } |
| 3110 | |
| 3111 | /* no port specified */ |
| 3112 | newsrv->flags |= SRV_F_MAPPORTS; |
| 3113 | newsrv->addr = *sk; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 3114 | /* don't let the server participate to load balancing */ |
| 3115 | newsrv->iweight = 0; |
| 3116 | newsrv->uweight = 0; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3117 | srv_lb_commit_status(newsrv); |
William Lallemand | 291810d | 2018-10-26 14:47:38 +0200 | [diff] [blame] | 3118 | |
| 3119 | child->srv = newsrv; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3120 | } |
William Lallemand | ae787ba | 2021-07-29 15:13:22 +0200 | [diff] [blame] | 3121 | |
| 3122 | mworker_proxy->next = proxies_list; |
| 3123 | proxies_list = mworker_proxy; |
| 3124 | |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3125 | return 0; |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3126 | |
| 3127 | error: |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3128 | |
| 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 Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 3132 | ha_free(&child->srv); |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3133 | } |
William Lallemand | ae787ba | 2021-07-29 15:13:22 +0200 | [diff] [blame] | 3134 | free_proxy(mworker_proxy); |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3135 | free(msg); |
| 3136 | |
William Lallemand | ae787ba | 2021-07-29 15:13:22 +0200 | [diff] [blame] | 3137 | error_proxy: |
| 3138 | ha_alert("%s\n", errmsg); |
| 3139 | free(errmsg); |
| 3140 | |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3141 | return -1; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3142 | } |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 3143 | |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3144 | /* |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3145 | * Create a new listener for the master CLI proxy |
| 3146 | */ |
William Lallemand | 21623b5 | 2022-09-24 15:51:27 +0200 | [diff] [blame] | 3147 | struct bind_conf *mworker_cli_proxy_new_listener(char *line) |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3148 | { |
| 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 Lallemand | 2e945c8 | 2019-11-25 09:58:37 +0100 | [diff] [blame] | 3156 | arg = 1; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3157 | 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 Lallemand | 2e945c8 | 2019-11-25 09:58:37 +0100 | [diff] [blame] | 3166 | args[arg++] = line; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3167 | } |
| 3168 | line++; |
| 3169 | } |
| 3170 | |
William Lallemand | 2e945c8 | 2019-11-25 09:58:37 +0100 | [diff] [blame] | 3171 | args[arg] = "\0"; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3172 | |
| 3173 | bind_conf = bind_conf_alloc(mworker_proxy, "master-socket", 0, "", xprt_get(XPRT_RAW)); |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3174 | if (!bind_conf) |
| 3175 | goto err; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3176 | |
| 3177 | bind_conf->level &= ~ACCESS_LVL_MASK; |
| 3178 | bind_conf->level |= ACCESS_LVL_ADMIN; |
Willy Tarreau | e283ee6 | 2021-03-12 15:00:57 +0100 | [diff] [blame] | 3179 | bind_conf->level |= ACCESS_MASTER | ACCESS_MASTER_ONLY; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3180 | |
| 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 Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3183 | goto err; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3184 | } |
| 3185 | |
| 3186 | cur_arg = 1; |
| 3187 | |
| 3188 | while (*args[cur_arg]) { |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3189 | struct bind_kw *kw; |
Willy Tarreau | 433b05f | 2021-03-12 10:14:07 +0100 | [diff] [blame] | 3190 | const char *best; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3191 | |
| 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 Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 3200 | if (kw->parse(args, cur_arg, global.cli_fe, bind_conf, &err) != 0) { |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3201 | 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 Tarreau | 433b05f | 2021-03-12 10:14:07 +0100 | [diff] [blame] | 3213 | 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 Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3220 | goto err; |
| 3221 | } |
| 3222 | |
| 3223 | |
Willy Tarreau | 3083615 | 2023-01-12 19:10:17 +0100 | [diff] [blame] | 3224 | bind_conf->accept = session_accept_fd; |
Willy Tarreau | 7dbd418 | 2023-01-12 19:32:45 +0100 | [diff] [blame] | 3225 | bind_conf->nice = -64; /* we want to boost priority for local stats */ |
Willy Tarreau | 1714680 | 2023-01-12 19:58:42 +0100 | [diff] [blame] | 3226 | bind_conf->options |= BC_O_UNLIMITED; /* don't make the peers subject to global limits */ |
Willy Tarreau | d5983ce | 2023-01-12 19:18:34 +0100 | [diff] [blame] | 3227 | |
Christopher Faulet | 8e64fdf | 2023-11-28 21:50:21 +0100 | [diff] [blame] | 3228 | /* Pin master CLI on the first thread of the first group only */ |
| 3229 | thread_set_pin_grp1(&bind_conf->thread_set, 1); |
| 3230 | |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3231 | list_for_each_entry(l, &bind_conf->listeners, by_bind) { |
Willy Tarreau | 18c20d2 | 2020-10-09 16:11:46 +0200 | [diff] [blame] | 3232 | l->rx.flags |= RX_F_MWORKER; /* we are keeping this FD in the master */ |
Willy Tarreau | 18215cb | 2019-02-27 16:25:28 +0100 | [diff] [blame] | 3233 | global.maxsock++; /* for the listening socket */ |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3234 | } |
Willy Tarreau | 18215cb | 2019-02-27 16:25:28 +0100 | [diff] [blame] | 3235 | global.maxsock += mworker_proxy->maxconn; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3236 | |
William Lallemand | 21623b5 | 2022-09-24 15:51:27 +0200 | [diff] [blame] | 3237 | return bind_conf; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3238 | |
| 3239 | err: |
| 3240 | ha_alert("%s\n", err); |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3241 | free(err); |
| 3242 | free(bind_conf); |
William Lallemand | 21623b5 | 2022-09-24 15:51:27 +0200 | [diff] [blame] | 3243 | return NULL; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3244 | |
| 3245 | } |
| 3246 | |
| 3247 | /* |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3248 | * 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 | */ |
| 3251 | int 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 Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 3265 | if (!global.cli_fe) { |
| 3266 | if ((global.cli_fe = cli_alloc_fe("GLOBAL", "master-socket", 0)) == NULL) { |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3267 | ha_alert("out of memory trying to allocate the stats frontend"); |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3268 | goto error; |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3269 | } |
| 3270 | } |
| 3271 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 3272 | bind_conf = bind_conf_alloc(global.cli_fe, "master-socket", 0, "", xprt_get(XPRT_RAW)); |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3273 | if (!bind_conf) |
| 3274 | goto error; |
| 3275 | |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3276 | bind_conf->level &= ~ACCESS_LVL_MASK; |
| 3277 | bind_conf->level |= ACCESS_LVL_ADMIN; /* TODO: need to lower the rights with a CLI keyword*/ |
William Lallemand | 2be557f | 2021-11-24 18:45:37 +0100 | [diff] [blame] | 3278 | bind_conf->level |= ACCESS_FD_LISTENERS; |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3279 | |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3280 | if (!memprintf(&path, "sockpair@%d", mworker_proc->ipc_fd[1])) { |
| 3281 | ha_alert("Cannot allocate listener.\n"); |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3282 | goto error; |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3283 | } |
| 3284 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 3285 | if (!str2listener(path, global.cli_fe, bind_conf, "master-socket", 0, &err)) { |
Tim Duesterhus | 4cae3b2 | 2018-11-22 16:46:50 +0100 | [diff] [blame] | 3286 | free(path); |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3287 | ha_alert("Cannot create a CLI sockpair listener for process #%d\n", proc); |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3288 | goto error; |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3289 | } |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 3290 | ha_free(&path); |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3291 | |
Willy Tarreau | 3083615 | 2023-01-12 19:10:17 +0100 | [diff] [blame] | 3292 | bind_conf->accept = session_accept_fd; |
Willy Tarreau | 7dbd418 | 2023-01-12 19:32:45 +0100 | [diff] [blame] | 3293 | bind_conf->nice = -64; /* we want to boost priority for local stats */ |
Willy Tarreau | 1714680 | 2023-01-12 19:58:42 +0100 | [diff] [blame] | 3294 | bind_conf->options |= BC_O_UNLIMITED | BC_O_NOSTOP; |
Willy Tarreau | d5983ce | 2023-01-12 19:18:34 +0100 | [diff] [blame] | 3295 | |
Christopher Faulet | 0df691a | 2023-09-13 10:13:30 +0200 | [diff] [blame] | 3296 | /* Pin master CLI on the first thread of the first group only */ |
| 3297 | thread_set_pin_grp1(&bind_conf->thread_set, 1); |
| 3298 | |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3299 | list_for_each_entry(l, &bind_conf->listeners, by_bind) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 3300 | HA_ATOMIC_INC(&unstoppable_jobs); |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3301 | /* it's a sockpair but we don't want to keep the fd in the master */ |
Willy Tarreau | 43046fa | 2020-09-01 15:41:59 +0200 | [diff] [blame] | 3302 | l->rx.flags &= ~RX_F_INHERITED; |
Willy Tarreau | 18215cb | 2019-02-27 16:25:28 +0100 | [diff] [blame] | 3303 | global.maxsock++; /* for the listening socket */ |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3304 | } |
| 3305 | |
| 3306 | return 0; |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3307 | |
| 3308 | error: |
| 3309 | close(mworker_proc->ipc_fd[0]); |
| 3310 | close(mworker_proc->ipc_fd[1]); |
| 3311 | free(err); |
| 3312 | |
| 3313 | return -1; |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3314 | } |
| 3315 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 3316 | static 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 Lallemand | 99e0bb9 | 2020-11-05 10:28:53 +0100 | [diff] [blame] | 3323 | /* master CLI */ |
| 3324 | static 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 Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 3331 | /* register cli keywords */ |
| 3332 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 3333 | { { "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 Lallemand | d9c2807 | 2022-02-02 11:23:58 +0100 | [diff] [blame] | 3337 | { { "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 Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 3339 | { { "mcli-debug-mode", NULL }, NULL, cli_parse_expert_experimental_mode, NULL, NULL, NULL, ACCESS_MASTER_ONLY }, // not listed |
Amaury Denoyelle | dd3a33f | 2023-03-03 17:11:10 +0100 | [diff] [blame] | 3340 | { { "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 Goas | d786931 | 2022-09-29 10:36:11 +0200 | [diff] [blame] | 3342 | { { "set", "anon", "global-key", NULL }, "set anon global-key <value> : change the global anonymizing key", cli_parse_set_global_key, NULL, NULL }, |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 3343 | { { "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 Goas | 54966df | 2022-09-14 17:24:22 +0200 | [diff] [blame] | 3347 | { { "show", "anon", NULL }, "show anon : display the current state of anonymized mode", cli_parse_show_anon, NULL }, |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 3348 | { { "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 Tarreau | 1cb041a | 2023-03-31 16:33:53 +0200 | [diff] [blame] | 3351 | { { "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 Lallemand | 740629e | 2021-12-14 15:22:29 +0100 | [diff] [blame] | 3352 | { { "show", "version", NULL }, "show version : show version of the current process", cli_parse_show_version, NULL, NULL, NULL, ACCESS_MASTER }, |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 3353 | { { "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 Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 3355 | {{},} |
| 3356 | }}; |
| 3357 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 3358 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
| 3359 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 3360 | static struct cfg_kw_list cfg_kws = {ILH, { |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 3361 | { CFG_GLOBAL, "stats", cli_parse_global }, |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 3362 | { 0, NULL, NULL }, |
| 3363 | }}; |
| 3364 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 3365 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 3366 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 3367 | static struct bind_kw_list bind_kws = { "STAT", { }, { |
William Lallemand | f6975e9 | 2017-05-26 17:42:10 +0200 | [diff] [blame] | 3368 | { "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 Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 3370 | { "severity-output", bind_parse_severity_output, 1 }, /* set the severity output format */ |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 3371 | { NULL, NULL, 0 }, |
| 3372 | }}; |
| 3373 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 3374 | INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 3375 | |
| 3376 | /* |
| 3377 | * Local variables: |
| 3378 | * c-indent-level: 8 |
| 3379 | * c-basic-offset: 8 |
| 3380 | * End: |
| 3381 | */ |