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 | e6ce10b | 2020-06-04 15:33:47 +0200 | [diff] [blame] | 53 | #include <haproxy/sample-t.h> |
Willy Tarreau | 5edca2f | 2022-05-27 09:25:10 +0200 | [diff] [blame] | 54 | #include <haproxy/sc_strm.h> |
Willy Tarreau | 1e56f92 | 2020-06-04 23:20:13 +0200 | [diff] [blame] | 55 | #include <haproxy/server.h> |
Willy Tarreau | 48d25b3 | 2020-06-04 18:58:52 +0200 | [diff] [blame] | 56 | #include <haproxy/session.h> |
Willy Tarreau | a74cb38 | 2020-10-15 21:29:49 +0200 | [diff] [blame] | 57 | #include <haproxy/sock.h> |
Willy Tarreau | 2eec9b5 | 2020-06-04 19:58:55 +0200 | [diff] [blame] | 58 | #include <haproxy/stats-t.h> |
Willy Tarreau | cb086c6 | 2022-05-27 09:47:12 +0200 | [diff] [blame] | 59 | #include <haproxy/stconn.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 60 | #include <haproxy/stream.h> |
Willy Tarreau | cea0e1b | 2020-06-04 17:25:40 +0200 | [diff] [blame] | 61 | #include <haproxy/task.h> |
Willy Tarreau | c2f7c58 | 2020-06-02 18:15:32 +0200 | [diff] [blame] | 62 | #include <haproxy/ticks.h> |
Willy Tarreau | 92b4f13 | 2020-06-01 11:05:15 +0200 | [diff] [blame] | 63 | #include <haproxy/time.h> |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 64 | #include <haproxy/tools.h> |
Willy Tarreau | d678805 | 2020-05-27 15:59:00 +0200 | [diff] [blame] | 65 | #include <haproxy/version.h> |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 66 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 67 | #define PAYLOAD_PATTERN "<<" |
| 68 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 69 | static struct applet cli_applet; |
William Lallemand | 99e0bb9 | 2020-11-05 10:28:53 +0100 | [diff] [blame] | 70 | static struct applet mcli_applet; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 71 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 72 | static const char cli_permission_denied_msg[] = |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 73 | "Permission denied\n" |
| 74 | ""; |
| 75 | |
| 76 | |
Christopher Faulet | 1bc04c7 | 2017-10-29 20:14:08 +0100 | [diff] [blame] | 77 | static THREAD_LOCAL char *dynamic_usage_msg = NULL; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 78 | |
| 79 | /* List head of cli keywords */ |
| 80 | static struct cli_kw_list cli_keywords = { |
| 81 | .list = LIST_HEAD_INIT(cli_keywords.list) |
| 82 | }; |
| 83 | |
| 84 | extern const char *stat_status_codes[]; |
| 85 | |
Eric Salama | 1b8dacc | 2021-03-16 15:12:17 +0100 | [diff] [blame] | 86 | struct proxy *mworker_proxy; /* CLI proxy of the master */ |
William Lallemand | 56f73b2 | 2022-09-24 15:56:25 +0200 | [diff] [blame] | 87 | struct bind_conf *mcli_reload_bind_conf; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 88 | |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 89 | /* CLI context for the "show env" command */ |
| 90 | struct show_env_ctx { |
| 91 | char **var; /* first variable to show */ |
| 92 | int show_one; /* stop after showing the first one */ |
| 93 | }; |
| 94 | |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 95 | /* CLI context for the "show fd" command */ |
Willy Tarreau | 1cb041a | 2023-03-31 16:33:53 +0200 | [diff] [blame] | 96 | /* flags for show_fd_ctx->show_mask */ |
| 97 | #define CLI_SHOWFD_F_PI 0x00000001 /* pipes */ |
| 98 | #define CLI_SHOWFD_F_LI 0x00000002 /* listeners */ |
| 99 | #define CLI_SHOWFD_F_FE 0x00000004 /* frontend conns */ |
| 100 | #define CLI_SHOWFD_F_SV 0x00000010 /* server-only conns */ |
| 101 | #define CLI_SHOWFD_F_PX 0x00000020 /* proxy-only conns */ |
| 102 | #define CLI_SHOWFD_F_BE 0x00000030 /* backend: srv+px */ |
| 103 | #define CLI_SHOWFD_F_CO 0x00000034 /* conn: be+fe */ |
| 104 | #define CLI_SHOWFD_F_ANY 0x0000003f /* any type */ |
| 105 | |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 106 | struct show_fd_ctx { |
| 107 | int fd; /* first FD to show */ |
| 108 | int show_one; /* stop after showing one FD */ |
Willy Tarreau | 1cb041a | 2023-03-31 16:33:53 +0200 | [diff] [blame] | 109 | uint show_mask; /* CLI_SHOWFD_F_xxx */ |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 110 | }; |
| 111 | |
Willy Tarreau | b128f49 | 2022-05-05 19:11:05 +0200 | [diff] [blame] | 112 | /* CLI context for the "show cli sockets" command */ |
| 113 | struct show_sock_ctx { |
| 114 | struct bind_conf *bind_conf; |
| 115 | struct listener *listener; |
| 116 | }; |
| 117 | |
Willy Tarreau | 92fbbcc | 2021-05-09 21:45:29 +0200 | [diff] [blame] | 118 | static int cmp_kw_entries(const void *a, const void *b) |
| 119 | { |
| 120 | const struct cli_kw *l = *(const struct cli_kw **)a; |
| 121 | const struct cli_kw *r = *(const struct cli_kw **)b; |
| 122 | |
| 123 | return strcmp(l->usage ? l->usage : "", r->usage ? r->usage : ""); |
| 124 | } |
| 125 | |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 126 | /* This will show the help message and list the commands supported at the |
| 127 | * current level that match all of the first words of <args> if args is not |
| 128 | * NULL, or all args if none matches or if args is null. |
| 129 | */ |
| 130 | static char *cli_gen_usage_msg(struct appctx *appctx, char * const *args) |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 131 | { |
Willy Tarreau | 92fbbcc | 2021-05-09 21:45:29 +0200 | [diff] [blame] | 132 | struct cli_kw *entries[CLI_MAX_HELP_ENTRIES]; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 133 | struct cli_kw_list *kw_list; |
| 134 | struct cli_kw *kw; |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 135 | struct buffer *tmp = get_trash_chunk(); |
| 136 | struct buffer out; |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 137 | struct { struct cli_kw *kw; int dist; } matches[CLI_MAX_MATCHES], swp; |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 138 | int idx; |
Willy Tarreau | 0b1b830 | 2021-05-09 20:59:23 +0200 | [diff] [blame] | 139 | int ishelp = 0; |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 140 | int length = 0; |
Willy Tarreau | 92fbbcc | 2021-05-09 21:45:29 +0200 | [diff] [blame] | 141 | int help_entries = 0; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 142 | |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 143 | ha_free(&dynamic_usage_msg); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 144 | |
Willy Tarreau | 0b1b830 | 2021-05-09 20:59:23 +0200 | [diff] [blame] | 145 | if (args && *args && strcmp(*args, "help") == 0) { |
| 146 | args++; |
| 147 | ishelp = 1; |
| 148 | } |
| 149 | |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 150 | /* first, let's measure the longest match */ |
| 151 | list_for_each_entry(kw_list, &cli_keywords.list, list) { |
| 152 | for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) { |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 153 | 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] | 154 | continue; |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 155 | if (!(appctx->cli_level & ACCESS_MCLI_DEBUG) && |
| 156 | (appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) == |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 157 | (ACCESS_MASTER_ONLY|ACCESS_MASTER)) |
| 158 | continue; |
| 159 | |
| 160 | /* OK this command is visible */ |
| 161 | for (idx = 0; idx < CLI_PREFIX_KW_NB; idx++) { |
| 162 | if (!kw->str_kw[idx]) |
| 163 | break; // end of keyword |
| 164 | if (!args || !args[idx] || !*args[idx]) |
| 165 | break; // end of command line |
| 166 | if (strcmp(kw->str_kw[idx], args[idx]) != 0) |
| 167 | break; |
| 168 | if (idx + 1 > length) |
| 169 | length = idx + 1; |
| 170 | } |
| 171 | } |
| 172 | } |
| 173 | |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 174 | /* now <length> equals the number of exactly matching words */ |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 175 | chunk_reset(tmp); |
Willy Tarreau | 0b1b830 | 2021-05-09 20:59:23 +0200 | [diff] [blame] | 176 | if (ishelp) // this is the help message. |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 177 | chunk_strcat(tmp, "The following commands are valid at this level:\n"); |
Abhijeet Rastogi | c860150 | 2022-11-17 04:42:38 -0800 | [diff] [blame] | 178 | else { |
| 179 | chunk_strcat(tmp, "Unknown command: '"); |
| 180 | if (args && *args) |
| 181 | chunk_strcat(tmp, *args); |
| 182 | chunk_strcat(tmp, "'"); |
| 183 | |
| 184 | if (!length && (!args || !*args || !**args)) // no match |
| 185 | chunk_strcat(tmp, ". Please enter one of the following commands only:\n"); |
| 186 | else // partial match |
| 187 | chunk_strcat(tmp, ", but maybe one of the following ones is a better match:\n"); |
| 188 | } |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 189 | |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 190 | for (idx = 0; idx < CLI_MAX_MATCHES; idx++) { |
| 191 | matches[idx].kw = NULL; |
| 192 | matches[idx].dist = INT_MAX; |
| 193 | } |
| 194 | |
| 195 | /* In case of partial match we'll look for the best matching entries |
| 196 | * starting from position <length> |
| 197 | */ |
Willy Tarreau | 9c18747 | 2021-03-13 12:25:43 +0100 | [diff] [blame] | 198 | if (args && args[length] && *args[length]) { |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 199 | list_for_each_entry(kw_list, &cli_keywords.list, list) { |
| 200 | for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) { |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 201 | 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] | 202 | continue; |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 203 | if (!(appctx->cli_level & ACCESS_MCLI_DEBUG) && |
| 204 | ((appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) == |
| 205 | (ACCESS_MASTER_ONLY|ACCESS_MASTER))) |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 206 | continue; |
| 207 | |
| 208 | for (idx = 0; idx < length; idx++) { |
| 209 | if (!kw->str_kw[idx]) |
| 210 | break; // end of keyword |
| 211 | if (!args || !args[idx] || !*args[idx]) |
| 212 | break; // end of command line |
| 213 | if (strcmp(kw->str_kw[idx], args[idx]) != 0) |
| 214 | break; |
| 215 | } |
| 216 | |
| 217 | /* extra non-matching words are fuzzy-matched */ |
| 218 | if (kw->usage && idx == length && args[idx] && *args[idx]) { |
| 219 | uint8_t word_sig[1024]; |
| 220 | uint8_t list_sig[1024]; |
| 221 | int dist = 0; |
| 222 | int totlen = 0; |
Willy Tarreau | a9aa628 | 2021-03-15 10:00:29 +0100 | [diff] [blame] | 223 | int i; |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 224 | |
| 225 | /* this one matches, let's compute the distance between the two |
Willy Tarreau | a9aa628 | 2021-03-15 10:00:29 +0100 | [diff] [blame] | 226 | * on the remaining words. For this we're computing the signature |
| 227 | * of everything that remains and the cumulated length of the |
| 228 | * strings. |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 229 | */ |
Willy Tarreau | c57dcfe | 2021-03-12 19:01:59 +0100 | [diff] [blame] | 230 | memset(word_sig, 0, sizeof(word_sig)); |
Willy Tarreau | a9aa628 | 2021-03-15 10:00:29 +0100 | [diff] [blame] | 231 | for (i = idx; i < CLI_PREFIX_KW_NB && args[i] && *args[i]; i++) { |
| 232 | update_word_fingerprint(word_sig, args[i]); |
| 233 | totlen += strlen(args[i]); |
| 234 | } |
Willy Tarreau | c57dcfe | 2021-03-12 19:01:59 +0100 | [diff] [blame] | 235 | |
Willy Tarreau | a9aa628 | 2021-03-15 10:00:29 +0100 | [diff] [blame] | 236 | memset(list_sig, 0, sizeof(list_sig)); |
| 237 | for (i = idx; i < CLI_PREFIX_KW_NB && kw->str_kw[i]; i++) { |
| 238 | update_word_fingerprint(list_sig, kw->str_kw[i]); |
| 239 | totlen += strlen(kw->str_kw[i]); |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 240 | } |
Willy Tarreau | a9aa628 | 2021-03-15 10:00:29 +0100 | [diff] [blame] | 241 | |
Willy Tarreau | c57dcfe | 2021-03-12 19:01:59 +0100 | [diff] [blame] | 242 | dist = word_fingerprint_distance(word_sig, list_sig); |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 243 | |
| 244 | /* insert this one at its place if relevant, in order to keep only |
| 245 | * the best matches. |
| 246 | */ |
| 247 | swp.kw = kw; swp.dist = dist; |
Willy Tarreau | a9aa628 | 2021-03-15 10:00:29 +0100 | [diff] [blame] | 248 | if (dist < 5*totlen/2 && dist < matches[CLI_MAX_MATCHES-1].dist) { |
Willy Tarreau | b736458 | 2021-03-12 18:24:46 +0100 | [diff] [blame] | 249 | matches[CLI_MAX_MATCHES-1] = swp; |
| 250 | for (idx = CLI_MAX_MATCHES - 1; --idx >= 0;) { |
| 251 | if (matches[idx+1].dist >= matches[idx].dist) |
| 252 | break; |
| 253 | matches[idx+1] = matches[idx]; |
| 254 | matches[idx] = swp; |
| 255 | } |
| 256 | } |
| 257 | } |
| 258 | } |
| 259 | } |
| 260 | } |
| 261 | |
Willy Tarreau | ec197e8 | 2021-03-15 10:35:04 +0100 | [diff] [blame] | 262 | if (matches[0].kw) { |
| 263 | /* we have fuzzy matches, let's propose them */ |
| 264 | for (idx = 0; idx < CLI_MAX_MATCHES; idx++) { |
| 265 | kw = matches[idx].kw; |
| 266 | if (!kw) |
| 267 | break; |
| 268 | |
| 269 | /* stop the dump if some words look very unlikely candidates */ |
| 270 | if (matches[idx].dist > 5*matches[0].dist/2) |
| 271 | break; |
| 272 | |
Willy Tarreau | 92fbbcc | 2021-05-09 21:45:29 +0200 | [diff] [blame] | 273 | if (help_entries < CLI_MAX_HELP_ENTRIES) |
| 274 | entries[help_entries++] = kw; |
Willy Tarreau | ec197e8 | 2021-03-15 10:35:04 +0100 | [diff] [blame] | 275 | } |
| 276 | } |
| 277 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 278 | list_for_each_entry(kw_list, &cli_keywords.list, list) { |
Willy Tarreau | ec197e8 | 2021-03-15 10:35:04 +0100 | [diff] [blame] | 279 | /* no full dump if we've already found nice candidates */ |
| 280 | if (matches[0].kw) |
| 281 | break; |
| 282 | |
Willy Tarreau | 91bc359 | 2021-03-12 15:20:39 +0100 | [diff] [blame] | 283 | for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) { |
William Lallemand | 14721be | 2018-10-26 14:47:37 +0200 | [diff] [blame] | 284 | |
Willy Tarreau | 91bc359 | 2021-03-12 15:20:39 +0100 | [diff] [blame] | 285 | /* in a worker or normal process, don't display master-only commands |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 286 | * nor expert/experimental mode commands if not in this mode. |
Willy Tarreau | 91bc359 | 2021-03-12 15:20:39 +0100 | [diff] [blame] | 287 | */ |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 288 | 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] | 289 | continue; |
William Lallemand | 14721be | 2018-10-26 14:47:37 +0200 | [diff] [blame] | 290 | |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 291 | /* in master, if the CLI don't have the |
| 292 | * ACCESS_MCLI_DEBUG don't display commands that have |
| 293 | * neither the master bit nor the master-only bit. |
Willy Tarreau | 91bc359 | 2021-03-12 15:20:39 +0100 | [diff] [blame] | 294 | */ |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 295 | if (!(appctx->cli_level & ACCESS_MCLI_DEBUG) && |
| 296 | ((appctx->cli_level & ~kw->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) == |
| 297 | (ACCESS_MASTER_ONLY|ACCESS_MASTER))) |
Willy Tarreau | 91bc359 | 2021-03-12 15:20:39 +0100 | [diff] [blame] | 298 | continue; |
Willy Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 299 | |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 300 | for (idx = 0; idx < length; idx++) { |
| 301 | if (!kw->str_kw[idx]) |
| 302 | break; // end of keyword |
| 303 | if (!args || !args[idx] || !*args[idx]) |
| 304 | break; // end of command line |
| 305 | if (strcmp(kw->str_kw[idx], args[idx]) != 0) |
| 306 | break; |
| 307 | } |
| 308 | |
Willy Tarreau | 92fbbcc | 2021-05-09 21:45:29 +0200 | [diff] [blame] | 309 | if (kw->usage && idx == length && help_entries < CLI_MAX_HELP_ENTRIES) |
| 310 | entries[help_entries++] = kw; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 311 | } |
| 312 | } |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 313 | |
Willy Tarreau | 92fbbcc | 2021-05-09 21:45:29 +0200 | [diff] [blame] | 314 | qsort(entries, help_entries, sizeof(*entries), cmp_kw_entries); |
| 315 | |
| 316 | for (idx = 0; idx < help_entries; idx++) |
| 317 | chunk_appendf(tmp, " %s\n", entries[idx]->usage); |
| 318 | |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 319 | /* always show the prompt/help/quit commands */ |
| 320 | chunk_strcat(tmp, |
Willy Tarreau | 0b1b830 | 2021-05-09 20:59:23 +0200 | [diff] [blame] | 321 | " help [<command>] : list matching or all commands\n" |
Willy Tarreau | 2255557 | 2023-05-04 14:22:36 +0200 | [diff] [blame^] | 322 | " prompt [timed] : toggle interactive mode with prompt\n" |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 323 | " quit : disconnect\n"); |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 324 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 325 | chunk_init(&out, NULL, 0); |
| 326 | chunk_dup(&out, tmp); |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 327 | dynamic_usage_msg = out.area; |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 328 | |
Willy Tarreau | 1c0715b | 2022-05-06 17:16:35 +0200 | [diff] [blame] | 329 | cli_msg(appctx, LOG_INFO, dynamic_usage_msg); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 330 | return dynamic_usage_msg; |
| 331 | } |
| 332 | |
| 333 | struct cli_kw* cli_find_kw(char **args) |
| 334 | { |
| 335 | struct cli_kw_list *kw_list; |
| 336 | struct cli_kw *kw;/* current cli_kw */ |
| 337 | char **tmp_args; |
| 338 | const char **tmp_str_kw; |
| 339 | int found = 0; |
| 340 | |
| 341 | if (LIST_ISEMPTY(&cli_keywords.list)) |
| 342 | return NULL; |
| 343 | |
| 344 | list_for_each_entry(kw_list, &cli_keywords.list, list) { |
| 345 | kw = &kw_list->kw[0]; |
| 346 | while (*kw->str_kw) { |
| 347 | tmp_args = args; |
| 348 | tmp_str_kw = kw->str_kw; |
| 349 | while (*tmp_str_kw) { |
| 350 | if (strcmp(*tmp_str_kw, *tmp_args) == 0) { |
| 351 | found = 1; |
| 352 | } else { |
| 353 | found = 0; |
| 354 | break; |
| 355 | } |
| 356 | tmp_args++; |
| 357 | tmp_str_kw++; |
| 358 | } |
| 359 | if (found) |
| 360 | return (kw); |
| 361 | kw++; |
| 362 | } |
| 363 | } |
| 364 | return NULL; |
| 365 | } |
| 366 | |
Thierry Fournier | a51a1fd | 2020-11-28 20:10:08 +0100 | [diff] [blame] | 367 | struct cli_kw* cli_find_kw_exact(char **args) |
| 368 | { |
| 369 | struct cli_kw_list *kw_list; |
| 370 | int found = 0; |
| 371 | int i; |
| 372 | int j; |
| 373 | |
| 374 | if (LIST_ISEMPTY(&cli_keywords.list)) |
| 375 | return NULL; |
| 376 | |
| 377 | list_for_each_entry(kw_list, &cli_keywords.list, list) { |
| 378 | for (i = 0; kw_list->kw[i].str_kw[0]; i++) { |
| 379 | found = 1; |
| 380 | for (j = 0; j < CLI_PREFIX_KW_NB; j++) { |
| 381 | if (args[j] == NULL && kw_list->kw[i].str_kw[j] == NULL) { |
| 382 | break; |
| 383 | } |
| 384 | if (args[j] == NULL || kw_list->kw[i].str_kw[j] == NULL) { |
| 385 | found = 0; |
| 386 | break; |
| 387 | } |
| 388 | if (strcmp(args[j], kw_list->kw[i].str_kw[j]) != 0) { |
| 389 | found = 0; |
| 390 | break; |
| 391 | } |
| 392 | } |
| 393 | if (found) |
| 394 | return &kw_list->kw[i]; |
| 395 | } |
| 396 | } |
| 397 | return NULL; |
| 398 | } |
| 399 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 400 | void cli_register_kw(struct cli_kw_list *kw_list) |
| 401 | { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 402 | LIST_APPEND(&cli_keywords.list, &kw_list->list); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 403 | } |
| 404 | |
Willy Tarreau | 06d0e2e | 2022-03-29 15:25:30 +0200 | [diff] [blame] | 405 | /* list all known keywords on stdout, one per line */ |
| 406 | void cli_list_keywords(void) |
| 407 | { |
| 408 | struct cli_kw_list *kw_list; |
Willy Tarreau | 4465171 | 2022-03-30 12:02:35 +0200 | [diff] [blame] | 409 | struct cli_kw *kwp, *kwn, *kw; |
Willy Tarreau | 06d0e2e | 2022-03-29 15:25:30 +0200 | [diff] [blame] | 410 | int idx; |
| 411 | |
Willy Tarreau | 4465171 | 2022-03-30 12:02:35 +0200 | [diff] [blame] | 412 | for (kwn = kwp = NULL;; kwp = kwn) { |
| 413 | list_for_each_entry(kw_list, &cli_keywords.list, list) { |
| 414 | /* note: we sort based on the usage message when available, |
| 415 | * otherwise we fall back to the first keyword. |
| 416 | */ |
| 417 | for (kw = &kw_list->kw[0]; kw->str_kw[0]; kw++) { |
| 418 | if (strordered(kwp ? kwp->usage ? kwp->usage : kwp->str_kw[0] : NULL, |
| 419 | kw->usage ? kw->usage : kw->str_kw[0], |
| 420 | kwn != kwp ? kwn->usage ? kwn->usage : kwn->str_kw[0] : NULL)) |
| 421 | kwn = kw; |
Willy Tarreau | 06d0e2e | 2022-03-29 15:25:30 +0200 | [diff] [blame] | 422 | } |
Willy Tarreau | 4465171 | 2022-03-30 12:02:35 +0200 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | if (kwn == kwp) |
| 426 | break; |
| 427 | |
| 428 | for (idx = 0; kwn->str_kw[idx]; idx++) { |
| 429 | printf("%s ", kwn->str_kw[idx]); |
Willy Tarreau | 06d0e2e | 2022-03-29 15:25:30 +0200 | [diff] [blame] | 430 | } |
Willy Tarreau | 4465171 | 2022-03-30 12:02:35 +0200 | [diff] [blame] | 431 | if (kwn->level & (ACCESS_MASTER_ONLY|ACCESS_MASTER)) |
| 432 | printf("[MASTER] "); |
| 433 | if (!(kwn->level & ACCESS_MASTER_ONLY)) |
| 434 | printf("[WORKER] "); |
| 435 | if (kwn->level & ACCESS_EXPERT) |
| 436 | printf("[EXPERT] "); |
| 437 | if (kwn->level & ACCESS_EXPERIMENTAL) |
| 438 | printf("[EXPERIM] "); |
| 439 | printf("\n"); |
Willy Tarreau | 06d0e2e | 2022-03-29 15:25:30 +0200 | [diff] [blame] | 440 | } |
| 441 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 442 | |
| 443 | /* allocate a new stats frontend named <name>, and return it |
| 444 | * (or NULL in case of lack of memory). |
| 445 | */ |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 446 | 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] | 447 | { |
| 448 | struct proxy *fe; |
| 449 | |
| 450 | fe = calloc(1, sizeof(*fe)); |
| 451 | if (!fe) |
| 452 | return NULL; |
| 453 | |
| 454 | init_new_proxy(fe); |
Olivier Houchard | fbc74e8 | 2017-11-24 16:54:05 +0100 | [diff] [blame] | 455 | fe->next = proxies_list; |
| 456 | proxies_list = fe; |
Willy Tarreau | 69530f5 | 2023-04-28 09:16:15 +0200 | [diff] [blame] | 457 | fe->last_change = ns_to_sec(now_ns); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 458 | fe->id = strdup("GLOBAL"); |
William Lallemand | 6640dbb | 2021-08-13 15:31:33 +0200 | [diff] [blame] | 459 | fe->cap = PR_CAP_FE|PR_CAP_INT; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 460 | fe->maxconn = 10; /* default to 10 concurrent connections */ |
| 461 | fe->timeout.client = MS_TO_TICKS(10000); /* default timeout of 10 seconds */ |
| 462 | fe->conf.file = strdup(file); |
| 463 | fe->conf.line = line; |
| 464 | fe->accept = frontend_accept; |
| 465 | fe->default_target = &cli_applet.obj_type; |
| 466 | |
| 467 | /* the stats frontend is the only one able to assign ID #0 */ |
| 468 | fe->conf.id.key = fe->uuid = 0; |
| 469 | eb32_insert(&used_proxy_id, &fe->conf.id); |
| 470 | return fe; |
| 471 | } |
| 472 | |
| 473 | /* This function parses a "stats" statement in the "global" section. It returns |
| 474 | * -1 if there is any error, otherwise zero. If it returns -1, it will write an |
| 475 | * error message into the <err> buffer which will be preallocated. The trailing |
| 476 | * '\n' must not be written. The function must be called with <args> pointing to |
| 477 | * the first word after "stats". |
| 478 | */ |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 479 | static int cli_parse_global(char **args, int section_type, struct proxy *curpx, |
| 480 | const struct proxy *defpx, const char *file, int line, |
| 481 | char **err) |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 482 | { |
| 483 | struct bind_conf *bind_conf; |
| 484 | struct listener *l; |
| 485 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 486 | if (strcmp(args[1], "socket") == 0) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 487 | int cur_arg; |
| 488 | |
| 489 | if (*args[2] == 0) { |
| 490 | memprintf(err, "'%s %s' in global section expects an address or a path to a UNIX socket", args[0], args[1]); |
| 491 | return -1; |
| 492 | } |
| 493 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 494 | if (!global.cli_fe) { |
| 495 | if ((global.cli_fe = cli_alloc_fe("GLOBAL", file, line)) == NULL) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 496 | memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]); |
| 497 | return -1; |
| 498 | } |
| 499 | } |
| 500 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 501 | 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] | 502 | if (!bind_conf) { |
| 503 | memprintf(err, "'%s %s' : out of memory trying to allocate a bind_conf", args[0], args[1]); |
| 504 | return -1; |
| 505 | } |
William Lallemand | 07a62f7 | 2017-05-24 00:57:40 +0200 | [diff] [blame] | 506 | bind_conf->level &= ~ACCESS_LVL_MASK; |
| 507 | bind_conf->level |= ACCESS_LVL_OPER; /* default access level */ |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 508 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 509 | if (!str2listener(args[2], global.cli_fe, bind_conf, file, line, err)) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 510 | memprintf(err, "parsing [%s:%d] : '%s %s' : %s\n", |
| 511 | file, line, args[0], args[1], err && *err ? *err : "error"); |
| 512 | return -1; |
| 513 | } |
| 514 | |
| 515 | cur_arg = 3; |
| 516 | while (*args[cur_arg]) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 517 | struct bind_kw *kw; |
Willy Tarreau | 433b05f | 2021-03-12 10:14:07 +0100 | [diff] [blame] | 518 | const char *best; |
Willy Tarreau | 0a1e1cb | 2021-11-20 20:10:41 +0100 | [diff] [blame] | 519 | int code; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 520 | |
| 521 | kw = bind_find_kw(args[cur_arg]); |
| 522 | if (kw) { |
| 523 | if (!kw->parse) { |
| 524 | memprintf(err, "'%s %s' : '%s' option is not implemented in this version (check build options).", |
| 525 | args[0], args[1], args[cur_arg]); |
| 526 | return -1; |
| 527 | } |
| 528 | |
Willy Tarreau | 0a1e1cb | 2021-11-20 20:10:41 +0100 | [diff] [blame] | 529 | code = kw->parse(args, cur_arg, global.cli_fe, bind_conf, err); |
| 530 | |
| 531 | /* FIXME: this is ugly, we don't have a way to collect warnings, |
| 532 | * yet some important bind keywords may report warnings that we |
| 533 | * must display. |
| 534 | */ |
| 535 | if (((code & (ERR_WARN|ERR_FATAL|ERR_ALERT)) == ERR_WARN) && err && *err) { |
| 536 | indent_msg(err, 2); |
| 537 | ha_warning("parsing [%s:%d] : '%s %s' : %s\n", file, line, args[0], args[1], *err); |
| 538 | ha_free(err); |
| 539 | } |
| 540 | |
| 541 | if (code & ~ERR_WARN) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 542 | if (err && *err) |
| 543 | memprintf(err, "'%s %s' : '%s'", args[0], args[1], *err); |
| 544 | else |
| 545 | memprintf(err, "'%s %s' : error encountered while processing '%s'", |
| 546 | args[0], args[1], args[cur_arg]); |
| 547 | return -1; |
| 548 | } |
| 549 | |
| 550 | cur_arg += 1 + kw->skip; |
| 551 | continue; |
| 552 | } |
| 553 | |
Willy Tarreau | 433b05f | 2021-03-12 10:14:07 +0100 | [diff] [blame] | 554 | best = bind_find_best_kw(args[cur_arg]); |
| 555 | if (best) |
| 556 | memprintf(err, "'%s %s' : unknown keyword '%s'. Did you mean '%s' maybe ?", |
| 557 | args[0], args[1], args[cur_arg], best); |
| 558 | else |
| 559 | memprintf(err, "'%s %s' : unknown keyword '%s'.", |
| 560 | args[0], args[1], args[cur_arg]); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 561 | return -1; |
| 562 | } |
| 563 | |
Willy Tarreau | 3083615 | 2023-01-12 19:10:17 +0100 | [diff] [blame] | 564 | bind_conf->accept = session_accept_fd; |
Willy Tarreau | 7dbd418 | 2023-01-12 19:32:45 +0100 | [diff] [blame] | 565 | bind_conf->nice = -64; /* we want to boost priority for local stats */ |
Willy Tarreau | 1714680 | 2023-01-12 19:58:42 +0100 | [diff] [blame] | 566 | 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] | 567 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 568 | list_for_each_entry(l, &bind_conf->listeners, by_bind) { |
Willy Tarreau | 18215cb | 2019-02-27 16:25:28 +0100 | [diff] [blame] | 569 | global.maxsock++; /* for the listening socket */ |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 570 | } |
| 571 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 572 | else if (strcmp(args[1], "timeout") == 0) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 573 | unsigned timeout; |
| 574 | const char *res = parse_time_err(args[2], &timeout, TIME_UNIT_MS); |
| 575 | |
Willy Tarreau | 9faebe3 | 2019-06-07 19:00:37 +0200 | [diff] [blame] | 576 | if (res == PARSE_TIME_OVER) { |
| 577 | memprintf(err, "timer overflow in argument '%s' to '%s %s' (maximum value is 2147483647 ms or ~24.8 days)", |
| 578 | args[2], args[0], args[1]); |
| 579 | return -1; |
| 580 | } |
| 581 | else if (res == PARSE_TIME_UNDER) { |
| 582 | memprintf(err, "timer underflow in argument '%s' to '%s %s' (minimum non-null value is 1 ms)", |
| 583 | args[2], args[0], args[1]); |
| 584 | return -1; |
| 585 | } |
| 586 | else if (res) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 587 | memprintf(err, "'%s %s' : unexpected character '%c'", args[0], args[1], *res); |
| 588 | return -1; |
| 589 | } |
| 590 | |
| 591 | if (!timeout) { |
| 592 | memprintf(err, "'%s %s' expects a positive value", args[0], args[1]); |
| 593 | return -1; |
| 594 | } |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 595 | if (!global.cli_fe) { |
| 596 | if ((global.cli_fe = cli_alloc_fe("GLOBAL", file, line)) == NULL) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 597 | memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]); |
| 598 | return -1; |
| 599 | } |
| 600 | } |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 601 | global.cli_fe->timeout.client = MS_TO_TICKS(timeout); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 602 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 603 | else if (strcmp(args[1], "maxconn") == 0) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 604 | int maxconn = atol(args[2]); |
| 605 | |
| 606 | if (maxconn <= 0) { |
| 607 | memprintf(err, "'%s %s' expects a positive value", args[0], args[1]); |
| 608 | return -1; |
| 609 | } |
| 610 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 611 | if (!global.cli_fe) { |
| 612 | if ((global.cli_fe = cli_alloc_fe("GLOBAL", file, line)) == NULL) { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 613 | memprintf(err, "'%s %s' : out of memory trying to allocate a frontend", args[0], args[1]); |
| 614 | return -1; |
| 615 | } |
| 616 | } |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 617 | global.cli_fe->maxconn = maxconn; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 618 | } |
Willy Tarreau | 94f763b | 2022-07-15 17:14:40 +0200 | [diff] [blame] | 619 | else if (strcmp(args[1], "bind-process") == 0) { |
Willy Tarreau | 023c311 | 2023-04-23 09:40:56 +0200 | [diff] [blame] | 620 | memprintf(err, "'%s %s' is not supported anymore.", args[0], args[1]); |
Willy Tarreau | 94f763b | 2022-07-15 17:14:40 +0200 | [diff] [blame] | 621 | return -1; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 622 | } |
| 623 | else { |
| 624 | memprintf(err, "'%s' only supports 'socket', 'maxconn', 'bind-process' and 'timeout' (got '%s')", args[0], args[1]); |
| 625 | return -1; |
| 626 | } |
| 627 | return 0; |
| 628 | } |
| 629 | |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 630 | /* |
William Lallemand | 9a37fd0 | 2019-04-12 16:09:24 +0200 | [diff] [blame] | 631 | * This function exports the bound addresses of a <frontend> in the environment |
| 632 | * variable <varname>. Those addresses are separated by semicolons and prefixed |
| 633 | * with their type (abns@, unix@, sockpair@ etc) |
| 634 | * Return -1 upon error, 0 otherwise |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 635 | */ |
William Lallemand | 9a37fd0 | 2019-04-12 16:09:24 +0200 | [diff] [blame] | 636 | int listeners_setenv(struct proxy *frontend, const char *varname) |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 637 | { |
| 638 | struct buffer *trash = get_trash_chunk(); |
| 639 | struct bind_conf *bind_conf; |
| 640 | |
William Lallemand | 9a37fd0 | 2019-04-12 16:09:24 +0200 | [diff] [blame] | 641 | if (frontend) { |
| 642 | list_for_each_entry(bind_conf, &frontend->conf.bind, by_fe) { |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 643 | struct listener *l; |
| 644 | |
| 645 | list_for_each_entry(l, &bind_conf->listeners, by_bind) { |
| 646 | char addr[46]; |
| 647 | char port[6]; |
| 648 | |
William Lallemand | 620072b | 2019-04-12 16:09:25 +0200 | [diff] [blame] | 649 | /* separate listener by semicolons */ |
| 650 | if (trash->data) |
| 651 | chunk_appendf(trash, ";"); |
| 652 | |
Willy Tarreau | 3715906 | 2020-08-27 07:48:42 +0200 | [diff] [blame] | 653 | if (l->rx.addr.ss_family == AF_UNIX) { |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 654 | const struct sockaddr_un *un; |
| 655 | |
Willy Tarreau | 3715906 | 2020-08-27 07:48:42 +0200 | [diff] [blame] | 656 | un = (struct sockaddr_un *)&l->rx.addr; |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 657 | if (un->sun_path[0] == '\0') { |
| 658 | chunk_appendf(trash, "abns@%s", un->sun_path+1); |
| 659 | } else { |
| 660 | chunk_appendf(trash, "unix@%s", un->sun_path); |
| 661 | } |
Willy Tarreau | 3715906 | 2020-08-27 07:48:42 +0200 | [diff] [blame] | 662 | } else if (l->rx.addr.ss_family == AF_INET) { |
| 663 | addr_to_str(&l->rx.addr, addr, sizeof(addr)); |
| 664 | port_to_str(&l->rx.addr, port, sizeof(port)); |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 665 | chunk_appendf(trash, "ipv4@%s:%s", addr, port); |
Willy Tarreau | 3715906 | 2020-08-27 07:48:42 +0200 | [diff] [blame] | 666 | } else if (l->rx.addr.ss_family == AF_INET6) { |
| 667 | addr_to_str(&l->rx.addr, addr, sizeof(addr)); |
| 668 | port_to_str(&l->rx.addr, port, sizeof(port)); |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 669 | chunk_appendf(trash, "ipv6@[%s]:%s", addr, port); |
Willy Tarreau | 3715906 | 2020-08-27 07:48:42 +0200 | [diff] [blame] | 670 | } else if (l->rx.addr.ss_family == AF_CUST_SOCKPAIR) { |
| 671 | 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] | 672 | } |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 673 | } |
| 674 | } |
| 675 | trash->area[trash->data++] = '\0'; |
William Lallemand | 9a37fd0 | 2019-04-12 16:09:24 +0200 | [diff] [blame] | 676 | if (setenv(varname, trash->area, 1) < 0) |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 677 | return -1; |
| 678 | } |
| 679 | |
| 680 | return 0; |
| 681 | } |
| 682 | |
William Lallemand | 9a37fd0 | 2019-04-12 16:09:24 +0200 | [diff] [blame] | 683 | int cli_socket_setenv() |
| 684 | { |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 685 | if (listeners_setenv(global.cli_fe, "HAPROXY_CLI") < 0) |
William Lallemand | 9a37fd0 | 2019-04-12 16:09:24 +0200 | [diff] [blame] | 686 | return -1; |
| 687 | if (listeners_setenv(mworker_proxy, "HAPROXY_MASTER_CLI") < 0) |
| 688 | return -1; |
| 689 | |
| 690 | return 0; |
| 691 | } |
| 692 | |
William Lallemand | 33d29e2 | 2019-04-01 11:30:06 +0200 | [diff] [blame] | 693 | REGISTER_CONFIG_POSTPARSER("cli", cli_socket_setenv); |
| 694 | |
Willy Tarreau | de57a57 | 2016-11-23 17:01:39 +0100 | [diff] [blame] | 695 | /* Verifies that the CLI at least has a level at least as high as <level> |
| 696 | * (typically ACCESS_LVL_ADMIN). Returns 1 if OK, otherwise 0. In case of |
| 697 | * failure, an error message is prepared and the appctx's state is adjusted |
| 698 | * to print it so that a return 1 is enough to abort any processing. |
| 699 | */ |
| 700 | int cli_has_level(struct appctx *appctx, int level) |
| 701 | { |
Willy Tarreau | de57a57 | 2016-11-23 17:01:39 +0100 | [diff] [blame] | 702 | |
William Lallemand | f630d01 | 2018-12-13 09:05:44 +0100 | [diff] [blame] | 703 | if ((appctx->cli_level & ACCESS_LVL_MASK) < level) { |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 704 | cli_err(appctx, cli_permission_denied_msg); |
Willy Tarreau | de57a57 | 2016-11-23 17:01:39 +0100 | [diff] [blame] | 705 | return 0; |
| 706 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 707 | return 1; |
| 708 | } |
| 709 | |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 710 | /* same as cli_has_level but for the CLI proxy and without error message */ |
| 711 | int pcli_has_level(struct stream *s, int level) |
| 712 | { |
| 713 | if ((s->pcli_flags & ACCESS_LVL_MASK) < level) { |
| 714 | return 0; |
| 715 | } |
| 716 | return 1; |
| 717 | } |
| 718 | |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 719 | /* Returns severity_output for the current session if set, or default for the socket */ |
| 720 | static int cli_get_severity_output(struct appctx *appctx) |
| 721 | { |
| 722 | if (appctx->cli_severity_output) |
| 723 | return appctx->cli_severity_output; |
Willy Tarreau | 0698c80 | 2022-05-11 14:09:57 +0200 | [diff] [blame] | 724 | return strm_li(appctx_strm(appctx))->bind_conf->severity_output; |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 725 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 726 | |
Willy Tarreau | 4190856 | 2016-11-24 16:23:38 +0100 | [diff] [blame] | 727 | /* Processes the CLI interpreter on the stats socket. This function is called |
Willy Tarreau | f3697dd | 2021-03-12 15:57:47 +0100 | [diff] [blame] | 728 | * from the CLI's IO handler running in an appctx context. The function returns |
| 729 | * 1 if the request was understood, otherwise zero (in which case an error |
| 730 | * message will be displayed). It is called with appctx->st0 |
Willy Tarreau | 4190856 | 2016-11-24 16:23:38 +0100 | [diff] [blame] | 731 | * set to CLI_ST_GETREQ and presets ->st2 to 0 so that parsers don't have to do |
| 732 | * it. It will possilbly leave st0 to CLI_ST_CALLBACK if the keyword needs to |
| 733 | * have its own I/O handler called again. Most of the time, parsers will only |
| 734 | * 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] | 735 | * If a keyword parser is NULL and an I/O handler is declared, the I/O handler |
| 736 | * will automatically be used. |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 737 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 738 | static int cli_parse_request(struct appctx *appctx) |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 739 | { |
Willy Tarreau | f14c757 | 2021-03-13 10:59:23 +0100 | [diff] [blame] | 740 | char *args[MAX_CLI_ARGS + 1], *p, *end, *payload = NULL; |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 741 | int i = 0; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 742 | struct cli_kw *kw; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 743 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 744 | p = appctx->chunk->area; |
| 745 | end = p + appctx->chunk->data; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 746 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 747 | /* |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 748 | * Get pointers on words. |
| 749 | * One extra slot is reserved to store a pointer on a null byte. |
| 750 | */ |
Willy Tarreau | f14c757 | 2021-03-13 10:59:23 +0100 | [diff] [blame] | 751 | while (i < MAX_CLI_ARGS && p < end) { |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 752 | int j, k; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 753 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 754 | /* skip leading spaces/tabs */ |
| 755 | p += strspn(p, " \t"); |
| 756 | if (!*p) |
| 757 | break; |
Willy Tarreau | f2dda52 | 2021-09-17 11:07:45 +0200 | [diff] [blame] | 758 | |
| 759 | if (strcmp(p, PAYLOAD_PATTERN) == 0) { |
| 760 | /* payload pattern recognized here, this is not an arg anymore, |
| 761 | * the payload starts at the first byte that follows the zero |
| 762 | * after the pattern. |
| 763 | */ |
| 764 | payload = p + strlen(PAYLOAD_PATTERN) + 1; |
| 765 | break; |
| 766 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 767 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 768 | args[i] = p; |
Yves Lafon | b08c6d0 | 2020-06-08 16:08:06 +0200 | [diff] [blame] | 769 | while (1) { |
| 770 | p += strcspn(p, " \t\\"); |
| 771 | /* escaped chars using backlashes (\) */ |
| 772 | if (*p == '\\') { |
| 773 | if (!*++p) |
| 774 | break; |
| 775 | if (!*++p) |
| 776 | break; |
| 777 | } else { |
| 778 | break; |
| 779 | } |
| 780 | } |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 781 | *p++ = 0; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 782 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 783 | /* unescape backslashes (\) */ |
| 784 | for (j = 0, k = 0; args[i][k]; k++) { |
| 785 | if (args[i][k] == '\\') { |
| 786 | if (args[i][k + 1] == '\\') |
| 787 | k++; |
Dragan Dosen | a1c35ab | 2016-11-24 11:33:12 +0100 | [diff] [blame] | 788 | else |
| 789 | continue; |
| 790 | } |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 791 | args[i][j] = args[i][k]; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 792 | j++; |
| 793 | } |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 794 | args[i][j] = 0; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 795 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 796 | i++; |
| 797 | } |
| 798 | /* fill unused slots */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 799 | p = appctx->chunk->area + appctx->chunk->data; |
Willy Tarreau | f14c757 | 2021-03-13 10:59:23 +0100 | [diff] [blame] | 800 | for (; i < MAX_CLI_ARGS + 1; i++) |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 801 | args[i] = p; |
Willy Tarreau | 4190856 | 2016-11-24 16:23:38 +0100 | [diff] [blame] | 802 | |
Willy Tarreau | 21d7125 | 2023-05-11 16:32:56 +0200 | [diff] [blame] | 803 | if (!**args) |
| 804 | return 0; |
| 805 | |
Willy Tarreau | 4190856 | 2016-11-24 16:23:38 +0100 | [diff] [blame] | 806 | kw = cli_find_kw(args); |
Willy Tarreau | f3697dd | 2021-03-12 15:57:47 +0100 | [diff] [blame] | 807 | if (!kw || |
| 808 | (kw->level & ~appctx->cli_level & ACCESS_MASTER_ONLY) || |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 809 | (!(appctx->cli_level & ACCESS_MCLI_DEBUG) && |
| 810 | (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] | 811 | /* keyword not found in this mode */ |
Willy Tarreau | b96a74c | 2021-03-12 17:13:28 +0100 | [diff] [blame] | 812 | cli_gen_usage_msg(appctx, args); |
Willy Tarreau | 4190856 | 2016-11-24 16:23:38 +0100 | [diff] [blame] | 813 | return 0; |
Willy Tarreau | f3697dd | 2021-03-12 15:57:47 +0100 | [diff] [blame] | 814 | } |
William Lallemand | 14721be | 2018-10-26 14:47:37 +0200 | [diff] [blame] | 815 | |
Willy Tarreau | f3697dd | 2021-03-12 15:57:47 +0100 | [diff] [blame] | 816 | /* don't handle expert mode commands if not in this mode. */ |
| 817 | if (kw->level & ~appctx->cli_level & ACCESS_EXPERT) { |
| 818 | cli_err(appctx, "This command is restricted to expert mode only.\n"); |
Willy Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 819 | return 0; |
Willy Tarreau | f3697dd | 2021-03-12 15:57:47 +0100 | [diff] [blame] | 820 | } |
Willy Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 821 | |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 822 | if (kw->level & ~appctx->cli_level & ACCESS_EXPERIMENTAL) { |
| 823 | cli_err(appctx, "This command is restricted to experimental mode only.\n"); |
| 824 | return 0; |
| 825 | } |
| 826 | |
Amaury Denoyelle | f492992 | 2021-05-05 16:29:23 +0200 | [diff] [blame] | 827 | if (kw->level == ACCESS_EXPERT) |
| 828 | mark_tainted(TAINTED_CLI_EXPERT_MODE); |
| 829 | else if (kw->level == ACCESS_EXPERIMENTAL) |
| 830 | mark_tainted(TAINTED_CLI_EXPERIMENTAL_MODE); |
| 831 | |
Willy Tarreau | 4190856 | 2016-11-24 16:23:38 +0100 | [diff] [blame] | 832 | appctx->io_handler = kw->io_handler; |
Emeric Brun | d6871f7 | 2017-06-29 19:54:13 +0200 | [diff] [blame] | 833 | appctx->io_release = kw->io_release; |
William Lallemand | 90b098c | 2019-10-25 21:10:14 +0200 | [diff] [blame] | 834 | |
| 835 | if (kw->parse && kw->parse(args, payload, appctx, kw->private) != 0) |
| 836 | goto fail; |
| 837 | |
| 838 | /* kw->parse could set its own io_handler or io_release handler */ |
| 839 | if (!appctx->io_handler) |
| 840 | goto fail; |
| 841 | |
| 842 | appctx->st0 = CLI_ST_CALLBACK; |
| 843 | return 1; |
| 844 | fail: |
| 845 | appctx->io_handler = NULL; |
| 846 | appctx->io_release = NULL; |
Willy Tarreau | 4190856 | 2016-11-24 16:23:38 +0100 | [diff] [blame] | 847 | return 1; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 848 | } |
| 849 | |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 850 | /* 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] | 851 | 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] | 852 | { |
Willy Tarreau | 83061a8 | 2018-07-13 11:56:34 +0200 | [diff] [blame] | 853 | struct buffer *tmp; |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 854 | |
| 855 | if (likely(severity_output == CLI_SEVERITY_NONE)) |
Christopher Faulet | e8ee27b | 2023-05-05 10:56:00 +0200 | [diff] [blame] | 856 | return applet_putstr(appctx, msg); |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 857 | |
| 858 | tmp = get_trash_chunk(); |
| 859 | chunk_reset(tmp); |
| 860 | |
| 861 | if (severity < 0 || severity > 7) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 862 | ha_warning("socket command feedback with invalid severity %d", severity); |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 863 | chunk_printf(tmp, "[%d]: ", severity); |
| 864 | } |
| 865 | else { |
| 866 | switch (severity_output) { |
| 867 | case CLI_SEVERITY_NUMBER: |
| 868 | chunk_printf(tmp, "[%d]: ", severity); |
| 869 | break; |
| 870 | case CLI_SEVERITY_STRING: |
| 871 | chunk_printf(tmp, "[%s]: ", log_levels[severity]); |
| 872 | break; |
| 873 | default: |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 874 | ha_warning("Unrecognized severity output %d", severity_output); |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 875 | } |
| 876 | } |
| 877 | chunk_appendf(tmp, "%s", msg); |
| 878 | |
Christopher Faulet | e8ee27b | 2023-05-05 10:56:00 +0200 | [diff] [blame] | 879 | return applet_putchk(appctx, tmp); |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 880 | } |
| 881 | |
Willy Tarreau | 4596fe2 | 2022-05-17 19:07:51 +0200 | [diff] [blame] | 882 | /* 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] | 883 | * used to processes I/O from/to the stats unix socket. The system relies on a |
| 884 | * state machine handling requests and various responses. We read a request, |
| 885 | * then we process it and send the response, and we possibly display a prompt. |
| 886 | * 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] | 887 | * 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] | 888 | * or not. |
| 889 | */ |
| 890 | static void cli_io_handler(struct appctx *appctx) |
| 891 | { |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 892 | struct stconn *sc = appctx_sc(appctx); |
Willy Tarreau | 475e463 | 2022-05-27 10:26:46 +0200 | [diff] [blame] | 893 | struct channel *req = sc_oc(sc); |
| 894 | struct channel *res = sc_ic(sc); |
| 895 | struct bind_conf *bind_conf = strm_li(__sc_strm(sc))->bind_conf; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 896 | int reql; |
| 897 | int len; |
| 898 | |
Christopher Faulet | 1fb97e4 | 2023-04-07 18:07:51 +0200 | [diff] [blame] | 899 | if (unlikely(se_fl_test(appctx->sedesc, (SE_FL_EOS|SE_FL_ERROR|SE_FL_SHR|SE_FL_SHW)))) { |
| 900 | co_skip(sc_oc(sc), co_data(sc_oc(sc))); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 901 | goto out; |
Christopher Faulet | 1fb97e4 | 2023-04-07 18:07:51 +0200 | [diff] [blame] | 902 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 903 | |
Joseph Herlant | 008b3ce | 2018-11-25 12:51:45 -0800 | [diff] [blame] | 904 | /* Check if the input buffer is available. */ |
Christopher Faulet | 2fd0c76 | 2023-03-31 10:25:07 +0200 | [diff] [blame] | 905 | if (!b_size(&res->buf)) { |
Christopher Faulet | 7b3d38a | 2023-05-05 11:28:45 +0200 | [diff] [blame] | 906 | sc_need_room(sc, 0); |
Christopher Faulet | a73e59b | 2016-12-09 17:30:18 +0100 | [diff] [blame] | 907 | goto out; |
| 908 | } |
| 909 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 910 | while (1) { |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 911 | if (appctx->st0 == CLI_ST_INIT) { |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 912 | /* reset severity to default at init */ |
| 913 | appctx->cli_severity_output = bind_conf->severity_output; |
Willy Tarreau | 1addf8b | 2022-08-18 18:04:37 +0200 | [diff] [blame] | 914 | applet_reset_svcctx(appctx); |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 915 | appctx->st0 = CLI_ST_GETREQ; |
William Lallemand | f630d01 | 2018-12-13 09:05:44 +0100 | [diff] [blame] | 916 | appctx->cli_level = bind_conf->level; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 917 | } |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 918 | else if (appctx->st0 == CLI_ST_END) { |
Christopher Faulet | 2fd0c76 | 2023-03-31 10:25:07 +0200 | [diff] [blame] | 919 | se_fl_set(appctx->sedesc, SE_FL_EOS); |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 920 | free_trash_chunk(appctx->chunk); |
Willy Tarreau | 18b2a9d | 2021-05-04 16:27:45 +0200 | [diff] [blame] | 921 | appctx->chunk = NULL; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 922 | break; |
| 923 | } |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 924 | else if (appctx->st0 == CLI_ST_GETREQ) { |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 925 | char *str; |
| 926 | |
| 927 | /* use a trash chunk to store received data */ |
| 928 | if (!appctx->chunk) { |
| 929 | appctx->chunk = alloc_trash_chunk(); |
| 930 | if (!appctx->chunk) { |
Christopher Faulet | 2fd0c76 | 2023-03-31 10:25:07 +0200 | [diff] [blame] | 931 | se_fl_set(appctx->sedesc, SE_FL_ERROR); |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 932 | appctx->st0 = CLI_ST_END; |
| 933 | continue; |
| 934 | } |
| 935 | } |
| 936 | |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 937 | str = appctx->chunk->area + appctx->chunk->data; |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 938 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 939 | /* ensure we have some output room left in the event we |
| 940 | * would want to return some info right after parsing. |
| 941 | */ |
Willy Tarreau | 475e463 | 2022-05-27 10:26:46 +0200 | [diff] [blame] | 942 | if (buffer_almost_full(sc_ib(sc))) { |
Christopher Faulet | 7b3d38a | 2023-05-05 11:28:45 +0200 | [diff] [blame] | 943 | sc_need_room(sc, b_size(&res->buf) / 2); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 944 | break; |
| 945 | } |
| 946 | |
Willy Tarreau | 0011c25 | 2022-01-19 17:23:52 +0100 | [diff] [blame] | 947 | /* payload doesn't take escapes nor does it end on semi-colons, so |
| 948 | * we use the regular getline. Normal mode however must stop on |
| 949 | * LFs and semi-colons that are not prefixed by a backslash. Note |
| 950 | * that we reserve one byte at the end to insert a trailing nul byte. |
| 951 | */ |
| 952 | |
| 953 | if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) |
Willy Tarreau | 475e463 | 2022-05-27 10:26:46 +0200 | [diff] [blame] | 954 | reql = co_getline(sc_oc(sc), str, |
Willy Tarreau | 0011c25 | 2022-01-19 17:23:52 +0100 | [diff] [blame] | 955 | appctx->chunk->size - appctx->chunk->data - 1); |
| 956 | else |
Willy Tarreau | 475e463 | 2022-05-27 10:26:46 +0200 | [diff] [blame] | 957 | reql = co_getdelim(sc_oc(sc), str, |
Willy Tarreau | 0011c25 | 2022-01-19 17:23:52 +0100 | [diff] [blame] | 958 | appctx->chunk->size - appctx->chunk->data - 1, |
| 959 | "\n;", '\\'); |
| 960 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 961 | if (reql <= 0) { /* closed or EOL not found */ |
| 962 | if (reql == 0) |
| 963 | break; |
Christopher Faulet | 2fd0c76 | 2023-03-31 10:25:07 +0200 | [diff] [blame] | 964 | se_fl_set(appctx->sedesc, SE_FL_ERROR); |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 965 | appctx->st0 = CLI_ST_END; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 966 | continue; |
| 967 | } |
| 968 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 969 | if (!(appctx->st1 & APPCTX_CLI_ST1_PAYLOAD)) { |
| 970 | /* seek for a possible unescaped semi-colon. If we find |
| 971 | * one, we replace it with an LF and skip only this part. |
| 972 | */ |
| 973 | for (len = 0; len < reql; len++) { |
| 974 | if (str[len] == '\\') { |
| 975 | len++; |
| 976 | continue; |
| 977 | } |
| 978 | if (str[len] == ';') { |
| 979 | str[len] = '\n'; |
| 980 | reql = len + 1; |
| 981 | break; |
| 982 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 983 | } |
| 984 | } |
| 985 | |
| 986 | /* now it is time to check that we have a full line, |
| 987 | * remove the trailing \n and possibly \r, then cut the |
| 988 | * line. |
| 989 | */ |
| 990 | len = reql - 1; |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 991 | if (str[len] != '\n') { |
Christopher Faulet | 2fd0c76 | 2023-03-31 10:25:07 +0200 | [diff] [blame] | 992 | se_fl_set(appctx->sedesc, SE_FL_ERROR); |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 993 | appctx->st0 = CLI_ST_END; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 994 | continue; |
| 995 | } |
| 996 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 997 | if (len && str[len-1] == '\r') |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 998 | len--; |
| 999 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1000 | str[len] = '\0'; |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1001 | appctx->chunk->data += len; |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1002 | |
| 1003 | if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) { |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1004 | appctx->chunk->area[appctx->chunk->data] = '\n'; |
| 1005 | appctx->chunk->area[appctx->chunk->data + 1] = 0; |
| 1006 | appctx->chunk->data++; |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1007 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1008 | |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1009 | appctx->st0 = CLI_ST_PROMPT; |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1010 | |
| 1011 | if (appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) { |
| 1012 | /* empty line */ |
| 1013 | if (!len) { |
| 1014 | /* remove the last two \n */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1015 | appctx->chunk->data -= 2; |
| 1016 | appctx->chunk->area[appctx->chunk->data] = 0; |
Willy Tarreau | f3697dd | 2021-03-12 15:57:47 +0100 | [diff] [blame] | 1017 | cli_parse_request(appctx); |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1018 | chunk_reset(appctx->chunk); |
| 1019 | /* NB: cli_sock_parse_request() may have put |
| 1020 | * another CLI_ST_O_* into appctx->st0. |
| 1021 | */ |
| 1022 | |
| 1023 | appctx->st1 &= ~APPCTX_CLI_ST1_PAYLOAD; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1024 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1025 | } |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1026 | else { |
| 1027 | /* |
| 1028 | * Look for the "payload start" pattern at the end of a line |
| 1029 | * Its location is not remembered here, this is just to switch |
| 1030 | * to a gathering mode. |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1031 | */ |
Willy Tarreau | f2dda52 | 2021-09-17 11:07:45 +0200 | [diff] [blame] | 1032 | 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] | 1033 | appctx->st1 |= APPCTX_CLI_ST1_PAYLOAD; |
Willy Tarreau | f2dda52 | 2021-09-17 11:07:45 +0200 | [diff] [blame] | 1034 | appctx->chunk->data++; // keep the trailing \0 after '<<' |
| 1035 | } |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1036 | else { |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1037 | /* no payload, the command is complete: parse the request */ |
Willy Tarreau | f3697dd | 2021-03-12 15:57:47 +0100 | [diff] [blame] | 1038 | cli_parse_request(appctx); |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1039 | chunk_reset(appctx->chunk); |
Andjelko Iharos | c3680ec | 2017-07-20 16:49:14 +0200 | [diff] [blame] | 1040 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1041 | } |
| 1042 | |
| 1043 | /* re-adjust req buffer */ |
Willy Tarreau | 475e463 | 2022-05-27 10:26:46 +0200 | [diff] [blame] | 1044 | co_skip(sc_oc(sc), reql); |
Christopher Faulet | 9a790f6 | 2023-03-16 14:40:03 +0100 | [diff] [blame] | 1045 | 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] | 1046 | } |
| 1047 | else { /* output functions */ |
Willy Tarreau | 1c0715b | 2022-05-06 17:16:35 +0200 | [diff] [blame] | 1048 | struct cli_print_ctx *ctx; |
Willy Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1049 | const char *msg; |
| 1050 | int sev; |
| 1051 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1052 | switch (appctx->st0) { |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1053 | case CLI_ST_PROMPT: |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1054 | break; |
Willy Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1055 | case CLI_ST_PRINT: /* print const message in msg */ |
| 1056 | case CLI_ST_PRINT_ERR: /* print const error in msg */ |
| 1057 | case CLI_ST_PRINT_DYN: /* print dyn message in msg, free */ |
Amaury Denoyelle | 56f50a0 | 2022-11-10 11:47:36 +0100 | [diff] [blame] | 1058 | case CLI_ST_PRINT_DYNERR: /* print dyn error in err, free */ |
Amaury Denoyelle | 24e9961 | 2022-11-10 14:24:51 +0100 | [diff] [blame] | 1059 | case CLI_ST_PRINT_UMSG: /* print usermsgs_ctx and reset it */ |
| 1060 | 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] | 1061 | /* the message is in the svcctx */ |
| 1062 | ctx = applet_reserve_svcctx(appctx, sizeof(*ctx)); |
Willy Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1063 | if (appctx->st0 == CLI_ST_PRINT || appctx->st0 == CLI_ST_PRINT_ERR) { |
| 1064 | sev = appctx->st0 == CLI_ST_PRINT_ERR ? |
Willy Tarreau | 1c0715b | 2022-05-06 17:16:35 +0200 | [diff] [blame] | 1065 | LOG_ERR : ctx->severity; |
| 1066 | msg = ctx->msg; |
Willy Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1067 | } |
Amaury Denoyelle | 56f50a0 | 2022-11-10 11:47:36 +0100 | [diff] [blame] | 1068 | else if (appctx->st0 == CLI_ST_PRINT_DYN || appctx->st0 == CLI_ST_PRINT_DYNERR) { |
| 1069 | sev = appctx->st0 == CLI_ST_PRINT_DYNERR ? |
Willy Tarreau | 1c0715b | 2022-05-06 17:16:35 +0200 | [diff] [blame] | 1070 | LOG_ERR : ctx->severity; |
| 1071 | msg = ctx->err; |
Willy Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1072 | if (!msg) { |
| 1073 | sev = LOG_ERR; |
| 1074 | msg = "Out of memory.\n"; |
| 1075 | } |
| 1076 | } |
Amaury Denoyelle | 24e9961 | 2022-11-10 14:24:51 +0100 | [diff] [blame] | 1077 | else if (appctx->st0 == CLI_ST_PRINT_UMSG || |
| 1078 | appctx->st0 == CLI_ST_PRINT_UMSGERR) { |
| 1079 | sev = appctx->st0 == CLI_ST_PRINT_UMSGERR ? |
| 1080 | LOG_ERR : ctx->severity; |
| 1081 | msg = usermsgs_str(); |
| 1082 | } |
Willy Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1083 | else { |
| 1084 | sev = LOG_ERR; |
| 1085 | msg = "Internal error.\n"; |
| 1086 | } |
Aurélien Nephtali | c511b7c | 2018-04-16 18:50:19 +0200 | [diff] [blame] | 1087 | |
Christopher Faulet | e8ee27b | 2023-05-05 10:56:00 +0200 | [diff] [blame] | 1088 | 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] | 1089 | if (appctx->st0 == CLI_ST_PRINT_DYN || |
| 1090 | appctx->st0 == CLI_ST_PRINT_DYNERR) { |
Willy Tarreau | 1c0715b | 2022-05-06 17:16:35 +0200 | [diff] [blame] | 1091 | ha_free(&ctx->err); |
Willy Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1092 | } |
Amaury Denoyelle | 24e9961 | 2022-11-10 14:24:51 +0100 | [diff] [blame] | 1093 | else if (appctx->st0 == CLI_ST_PRINT_UMSG || |
| 1094 | appctx->st0 == CLI_ST_PRINT_UMSGERR) { |
| 1095 | usermsgs_clr(NULL); |
| 1096 | } |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1097 | appctx->st0 = CLI_ST_PROMPT; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1098 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1099 | break; |
Willy Tarreau | d50c7fe | 2019-08-09 09:57:36 +0200 | [diff] [blame] | 1100 | |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1101 | case CLI_ST_CALLBACK: /* use custom pointer */ |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1102 | if (appctx->io_handler) |
| 1103 | if (appctx->io_handler(appctx)) { |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1104 | appctx->st0 = CLI_ST_PROMPT; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1105 | if (appctx->io_release) { |
| 1106 | appctx->io_release(appctx); |
| 1107 | appctx->io_release = NULL; |
| 1108 | } |
| 1109 | } |
| 1110 | break; |
| 1111 | default: /* abnormal state */ |
Willy Tarreau | d869e13 | 2022-05-17 18:05:31 +0200 | [diff] [blame] | 1112 | se_fl_set(appctx->sedesc, SE_FL_ERROR); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1113 | break; |
| 1114 | } |
| 1115 | |
| 1116 | /* 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] | 1117 | if (appctx->st0 == CLI_ST_PROMPT) { |
Willy Tarreau | 2255557 | 2023-05-04 14:22:36 +0200 | [diff] [blame^] | 1118 | char prompt_buf[20]; |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1119 | const char *prompt = ""; |
| 1120 | |
| 1121 | if (appctx->st1 & APPCTX_CLI_ST1_PROMPT) { |
| 1122 | /* |
| 1123 | * when entering a payload with interactive mode, change the prompt |
| 1124 | * to emphasize that more data can still be sent |
| 1125 | */ |
Willy Tarreau | 843b7cb | 2018-07-13 10:54:26 +0200 | [diff] [blame] | 1126 | if (appctx->chunk->data && appctx->st1 & APPCTX_CLI_ST1_PAYLOAD) |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1127 | prompt = "+ "; |
Willy Tarreau | 2255557 | 2023-05-04 14:22:36 +0200 | [diff] [blame^] | 1128 | else if (appctx->st1 & APPCTX_CLI_ST1_TIMED) { |
| 1129 | uint up = ns_to_sec(now_ns - start_time_ns); |
| 1130 | snprintf(prompt_buf, sizeof(prompt_buf), |
| 1131 | "\n[%u:%02u:%02u:%02u]> ", |
| 1132 | (up / 86400), (up / 3600) % 24, (up / 60) % 60, up % 60); |
| 1133 | prompt = prompt_buf; |
| 1134 | } |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1135 | else |
| 1136 | prompt = "\n> "; |
| 1137 | } |
| 1138 | else { |
William Lallemand | ad03288 | 2019-07-01 10:56:15 +0200 | [diff] [blame] | 1139 | if (!(appctx->st1 & (APPCTX_CLI_ST1_PAYLOAD|APPCTX_CLI_ST1_NOLF))) |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1140 | prompt = "\n"; |
| 1141 | } |
| 1142 | |
Willy Tarreau | 1addf8b | 2022-08-18 18:04:37 +0200 | [diff] [blame] | 1143 | if (applet_putstr(appctx, prompt) != -1) { |
| 1144 | applet_reset_svcctx(appctx); |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1145 | appctx->st0 = CLI_ST_GETREQ; |
Willy Tarreau | 1addf8b | 2022-08-18 18:04:37 +0200 | [diff] [blame] | 1146 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1147 | } |
| 1148 | |
| 1149 | /* 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] | 1150 | if (appctx->st0 >= CLI_ST_OUTPUT) { |
| 1151 | applet_wont_consume(appctx); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1152 | break; |
Christopher Faulet | 4167e05 | 2022-06-01 17:25:42 +0200 | [diff] [blame] | 1153 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1154 | |
Christopher Faulet | 2fd0c76 | 2023-03-31 10:25:07 +0200 | [diff] [blame] | 1155 | /* Now we close the output if we're not in interactive |
| 1156 | * mode and the request buffer is empty. This still |
| 1157 | * allows pipelined requests to be sent in |
| 1158 | * non-interactive mode. |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1159 | */ |
Christopher Faulet | 2fd0c76 | 2023-03-31 10:25:07 +0200 | [diff] [blame] | 1160 | if (!(appctx->st1 & APPCTX_CLI_ST1_PROMPT) && !co_data(req) && (!(appctx->st1 & APPCTX_CLI_ST1_PAYLOAD))) { |
| 1161 | se_fl_set(appctx->sedesc, SE_FL_EOI); |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1162 | appctx->st0 = CLI_ST_END; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1163 | continue; |
| 1164 | } |
| 1165 | |
| 1166 | /* switch state back to GETREQ to read next requests */ |
Willy Tarreau | 1addf8b | 2022-08-18 18:04:37 +0200 | [diff] [blame] | 1167 | applet_reset_svcctx(appctx); |
Willy Tarreau | 3b6e547 | 2016-11-24 15:53:53 +0100 | [diff] [blame] | 1168 | appctx->st0 = CLI_ST_GETREQ; |
Christopher Faulet | 4167e05 | 2022-06-01 17:25:42 +0200 | [diff] [blame] | 1169 | applet_will_consume(appctx); |
| 1170 | |
William Lallemand | ad03288 | 2019-07-01 10:56:15 +0200 | [diff] [blame] | 1171 | /* reactivate the \n at the end of the response for the next command */ |
| 1172 | appctx->st1 &= ~APPCTX_CLI_ST1_NOLF; |
Willy Tarreau | fa7b4f6 | 2022-01-19 17:11:36 +0100 | [diff] [blame] | 1173 | |
| 1174 | /* this forces us to yield between pipelined commands and |
| 1175 | * avoid extremely long latencies (e.g. "del map" etc). In |
| 1176 | * addition this increases the likelihood that the stream |
| 1177 | * refills the buffer with new bytes in non-interactive |
| 1178 | * mode, avoiding to close on apparently empty commands. |
| 1179 | */ |
Willy Tarreau | 475e463 | 2022-05-27 10:26:46 +0200 | [diff] [blame] | 1180 | if (co_data(sc_oc(sc))) { |
Willy Tarreau | fa7b4f6 | 2022-01-19 17:11:36 +0100 | [diff] [blame] | 1181 | appctx_wakeup(appctx); |
| 1182 | goto out; |
| 1183 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1184 | } |
| 1185 | } |
| 1186 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1187 | out: |
Christopher Faulet | 845f7c4 | 2023-04-18 18:36:43 +0200 | [diff] [blame] | 1188 | return; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1189 | } |
| 1190 | |
Willy Tarreau | 4596fe2 | 2022-05-17 19:07:51 +0200 | [diff] [blame] | 1191 | /* 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] | 1192 | * external abort, we won't call the i/o handler anymore so we may need to |
| 1193 | * remove back references to the stream currently being dumped. |
| 1194 | */ |
| 1195 | static void cli_release_handler(struct appctx *appctx) |
| 1196 | { |
Willy Tarreau | 18b2a9d | 2021-05-04 16:27:45 +0200 | [diff] [blame] | 1197 | free_trash_chunk(appctx->chunk); |
| 1198 | appctx->chunk = NULL; |
| 1199 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1200 | if (appctx->io_release) { |
| 1201 | appctx->io_release(appctx); |
| 1202 | appctx->io_release = NULL; |
| 1203 | } |
Amaury Denoyelle | 56f50a0 | 2022-11-10 11:47:36 +0100 | [diff] [blame] | 1204 | 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] | 1205 | struct cli_print_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx)); |
| 1206 | |
| 1207 | ha_free(&ctx->err); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1208 | } |
Amaury Denoyelle | 24e9961 | 2022-11-10 14:24:51 +0100 | [diff] [blame] | 1209 | else if (appctx->st0 == CLI_ST_PRINT_UMSG || appctx->st0 == CLI_ST_PRINT_UMSGERR) { |
| 1210 | usermsgs_clr(NULL); |
| 1211 | } |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1212 | } |
| 1213 | |
| 1214 | /* This function dumps all environmnent variables to the buffer. It returns 0 |
| 1215 | * 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] | 1216 | * non-zero. It takes its context from the show_env_ctx in svcctx, and will |
| 1217 | * 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] | 1218 | */ |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1219 | static int cli_io_handler_show_env(struct appctx *appctx) |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1220 | { |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1221 | struct show_env_ctx *ctx = appctx->svcctx; |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 1222 | struct stconn *sc = appctx_sc(appctx); |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1223 | char **var = ctx->var; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1224 | |
Christopher Faulet | 87633c3 | 2023-04-03 18:32:50 +0200 | [diff] [blame] | 1225 | /* FIXME: Don't watch the other side !*/ |
Christopher Faulet | 208c712 | 2023-04-13 16:16:15 +0200 | [diff] [blame] | 1226 | if (unlikely(sc_opposite(sc)->flags & SC_FL_SHUT_DONE)) |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1227 | return 1; |
| 1228 | |
| 1229 | chunk_reset(&trash); |
| 1230 | |
| 1231 | /* we have two inner loops here, one for the proxy, the other one for |
| 1232 | * the buffer. |
| 1233 | */ |
Willy Tarreau | f6710f8 | 2016-12-16 17:45:44 +0100 | [diff] [blame] | 1234 | while (*var) { |
| 1235 | chunk_printf(&trash, "%s\n", *var); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1236 | |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 1237 | if (applet_putchk(appctx, &trash) == -1) |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1238 | return 0; |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 1239 | |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1240 | if (ctx->show_one) |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1241 | break; |
Willy Tarreau | f6710f8 | 2016-12-16 17:45:44 +0100 | [diff] [blame] | 1242 | var++; |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1243 | ctx->var = var; |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1244 | } |
| 1245 | |
| 1246 | /* dump complete */ |
| 1247 | return 1; |
| 1248 | } |
| 1249 | |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1250 | /* This function dumps all file descriptors states (or the requested one) to |
| 1251 | * 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] | 1252 | * called again, otherwise non-zero. It takes its context from the show_fd_ctx |
| 1253 | * in svcctx, only dumps one entry if ->show_one is non-zero, and (re)starts |
| 1254 | * from ->fd. |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1255 | */ |
| 1256 | static int cli_io_handler_show_fd(struct appctx *appctx) |
| 1257 | { |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 1258 | struct stconn *sc = appctx_sc(appctx); |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1259 | struct show_fd_ctx *fdctx = appctx->svcctx; |
Willy Tarreau | 1cb041a | 2023-03-31 16:33:53 +0200 | [diff] [blame] | 1260 | uint match = fdctx->show_mask; |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1261 | int fd = fdctx->fd; |
Willy Tarreau | ca1b157 | 2018-12-18 15:45:11 +0100 | [diff] [blame] | 1262 | int ret = 1; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1263 | |
Christopher Faulet | 87633c3 | 2023-04-03 18:32:50 +0200 | [diff] [blame] | 1264 | /* FIXME: Don't watch the other side !*/ |
Christopher Faulet | 208c712 | 2023-04-13 16:16:15 +0200 | [diff] [blame] | 1265 | if (unlikely(sc_opposite(sc)->flags & SC_FL_SHUT_DONE)) |
Willy Tarreau | ca1b157 | 2018-12-18 15:45:11 +0100 | [diff] [blame] | 1266 | goto end; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1267 | |
| 1268 | chunk_reset(&trash); |
| 1269 | |
Willy Tarreau | ca1b157 | 2018-12-18 15:45:11 +0100 | [diff] [blame] | 1270 | /* isolate the threads once per round. We're limited to a buffer worth |
| 1271 | * of output anyway, it cannot last very long. |
| 1272 | */ |
| 1273 | thread_isolate(); |
| 1274 | |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1275 | /* we have two inner loops here, one for the proxy, the other one for |
| 1276 | * the buffer. |
| 1277 | */ |
Aurélien Nephtali | 498a115 | 2018-03-09 18:51:16 +0100 | [diff] [blame] | 1278 | while (fd >= 0 && fd < global.maxsock) { |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1279 | struct fdtab fdt; |
Willy Tarreau | eb0595d | 2021-01-20 14:13:46 +0100 | [diff] [blame] | 1280 | const struct listener *li = NULL; |
| 1281 | const struct server *sv = NULL; |
| 1282 | const struct proxy *px = NULL; |
| 1283 | const struct connection *conn = NULL; |
Willy Tarreau | a833cd9 | 2018-03-29 13:19:37 +0200 | [diff] [blame] | 1284 | const struct mux_ops *mux = NULL; |
Willy Tarreau | 37be953 | 2021-01-20 14:40:04 +0100 | [diff] [blame] | 1285 | const struct xprt_ops *xprt = NULL; |
Willy Tarreau | eb0595d | 2021-01-20 14:13:46 +0100 | [diff] [blame] | 1286 | const void *ctx = NULL; |
Willy Tarreau | 37be953 | 2021-01-20 14:40:04 +0100 | [diff] [blame] | 1287 | const void *xprt_ctx = NULL; |
Willy Tarreau | 286ec68 | 2017-08-09 16:35:44 +0200 | [diff] [blame] | 1288 | uint32_t conn_flags = 0; |
Christopher Faulet | d52f2ad | 2023-03-14 15:48:06 +0100 | [diff] [blame] | 1289 | uint8_t conn_err = 0; |
Willy Tarreau | e9ca807 | 2018-12-19 18:40:58 +0100 | [diff] [blame] | 1290 | int is_back = 0; |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 1291 | int suspicious = 0; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1292 | |
| 1293 | fdt = fdtab[fd]; |
| 1294 | |
Willy Tarreau | 38e8a1c | 2020-06-23 10:04:54 +0200 | [diff] [blame] | 1295 | /* When DEBUG_FD is set, we also report closed FDs that have a |
| 1296 | * non-null event count to detect stuck ones. |
| 1297 | */ |
Willy Tarreau | 13c1a01 | 2020-06-29 14:23:31 +0200 | [diff] [blame] | 1298 | if (!fdt.owner) { |
Willy Tarreau | 38e8a1c | 2020-06-23 10:04:54 +0200 | [diff] [blame] | 1299 | #ifdef DEBUG_FD |
Willy Tarreau | 13c1a01 | 2020-06-29 14:23:31 +0200 | [diff] [blame] | 1300 | if (!fdt.event_count) |
Willy Tarreau | 38e8a1c | 2020-06-23 10:04:54 +0200 | [diff] [blame] | 1301 | #endif |
Willy Tarreau | 13c1a01 | 2020-06-29 14:23:31 +0200 | [diff] [blame] | 1302 | goto skip; // closed |
| 1303 | } |
Willy Tarreau | 586f71b | 2020-12-11 15:54:36 +0100 | [diff] [blame] | 1304 | else if (fdt.iocb == sock_conn_iocb) { |
Willy Tarreau | eb0595d | 2021-01-20 14:13:46 +0100 | [diff] [blame] | 1305 | conn = (const struct connection *)fdt.owner; |
| 1306 | conn_flags = conn->flags; |
Christopher Faulet | d52f2ad | 2023-03-14 15:48:06 +0100 | [diff] [blame] | 1307 | conn_err = conn->err_code; |
Willy Tarreau | eb0595d | 2021-01-20 14:13:46 +0100 | [diff] [blame] | 1308 | mux = conn->mux; |
| 1309 | ctx = conn->ctx; |
Willy Tarreau | 37be953 | 2021-01-20 14:40:04 +0100 | [diff] [blame] | 1310 | xprt = conn->xprt; |
| 1311 | xprt_ctx = conn->xprt_ctx; |
Willy Tarreau | eb0595d | 2021-01-20 14:13:46 +0100 | [diff] [blame] | 1312 | li = objt_listener(conn->target); |
| 1313 | sv = objt_server(conn->target); |
| 1314 | px = objt_proxy(conn->target); |
| 1315 | is_back = conn_is_back(conn); |
Willy Tarreau | dacfde4 | 2021-01-21 09:07:29 +0100 | [diff] [blame] | 1316 | if (atleast2(fdt.thread_mask)) |
| 1317 | suspicious = 1; |
| 1318 | if (conn->handle.fd != fd) |
| 1319 | suspicious = 1; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1320 | } |
Willy Tarreau | a74cb38 | 2020-10-15 21:29:49 +0200 | [diff] [blame] | 1321 | else if (fdt.iocb == sock_accept_iocb) |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1322 | li = fdt.owner; |
| 1323 | |
Willy Tarreau | 1cb041a | 2023-03-31 16:33:53 +0200 | [diff] [blame] | 1324 | if (!((conn && |
| 1325 | ((match & CLI_SHOWFD_F_SV && sv) || |
| 1326 | (match & CLI_SHOWFD_F_PX && px) || |
| 1327 | (match & CLI_SHOWFD_F_FE && li))) || |
| 1328 | (!conn && |
| 1329 | ((match & CLI_SHOWFD_F_LI && li) || |
| 1330 | (match & CLI_SHOWFD_F_PI && !li /* only pipes match this */))))) { |
| 1331 | /* not a desired type */ |
| 1332 | goto skip; |
| 1333 | } |
| 1334 | |
Willy Tarreau | dacfde4 | 2021-01-21 09:07:29 +0100 | [diff] [blame] | 1335 | if (!fdt.thread_mask) |
| 1336 | suspicious = 1; |
| 1337 | |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1338 | chunk_printf(&trash, |
Willy Tarreau | 677c006 | 2023-03-02 15:05:31 +0100 | [diff] [blame] | 1339 | " %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] | 1340 | fd, |
| 1341 | fdt.state, |
Willy Tarreau | 184b212 | 2021-04-07 08:48:12 +0200 | [diff] [blame] | 1342 | (fdt.state & FD_CLONED) ? 'C' : 'c', |
| 1343 | (fdt.state & FD_LINGER_RISK) ? 'L' : 'l', |
Willy Tarreau | f509065 | 2021-04-06 17:23:40 +0200 | [diff] [blame] | 1344 | (fdt.state & FD_POLL_HUP) ? 'H' : 'h', |
| 1345 | (fdt.state & FD_POLL_ERR) ? 'E' : 'e', |
| 1346 | (fdt.state & FD_POLL_OUT) ? 'O' : 'o', |
| 1347 | (fdt.state & FD_POLL_PRI) ? 'P' : 'p', |
| 1348 | (fdt.state & FD_POLL_IN) ? 'I' : 'i', |
Willy Tarreau | 184b212 | 2021-04-07 08:48:12 +0200 | [diff] [blame] | 1349 | (fdt.state & FD_EV_SHUT_W) ? 'S' : 's', |
| 1350 | (fdt.state & FD_EV_READY_W) ? 'R' : 'r', |
| 1351 | (fdt.state & FD_EV_ACTIVE_W) ? 'A' : 'a', |
| 1352 | (fdt.state & FD_EV_SHUT_R) ? 'S' : 's', |
| 1353 | (fdt.state & FD_EV_READY_R) ? 'R' : 'r', |
| 1354 | (fdt.state & FD_EV_ACTIVE_R) ? 'A' : 'a', |
Willy Tarreau | c243182 | 2022-07-08 10:23:01 +0200 | [diff] [blame] | 1355 | (fdt.refc_tgid >> 4) & 0xffff, |
| 1356 | (fdt.refc_tgid) & 0xffff, |
Willy Tarreau | c754b34 | 2018-03-30 15:00:15 +0200 | [diff] [blame] | 1357 | fdt.thread_mask, fdt.update_mask, |
Willy Tarreau | 677c006 | 2023-03-02 15:05:31 +0100 | [diff] [blame] | 1358 | polled_mask[fd].poll_recv, |
| 1359 | polled_mask[fd].poll_send, |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1360 | fdt.owner, |
Willy Tarreau | cf12f2e | 2020-03-03 17:29:58 +0100 | [diff] [blame] | 1361 | fdt.iocb); |
| 1362 | resolve_sym_name(&trash, NULL, fdt.iocb); |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1363 | |
Willy Tarreau | 38e8a1c | 2020-06-23 10:04:54 +0200 | [diff] [blame] | 1364 | if (!fdt.owner) { |
| 1365 | chunk_appendf(&trash, ")"); |
| 1366 | } |
Willy Tarreau | 586f71b | 2020-12-11 15:54:36 +0100 | [diff] [blame] | 1367 | else if (fdt.iocb == sock_conn_iocb) { |
Christopher Faulet | d52f2ad | 2023-03-14 15:48:06 +0100 | [diff] [blame] | 1368 | 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] | 1369 | |
| 1370 | if (conn->handle.fd != fd) { |
| 1371 | chunk_appendf(&trash, " fd=%d(BOGUS)", conn->handle.fd); |
| 1372 | suspicious = 1; |
Willy Tarreau | ed98920 | 2021-02-05 10:54:52 +0100 | [diff] [blame] | 1373 | } else { |
| 1374 | struct sockaddr_storage sa; |
| 1375 | socklen_t salen; |
| 1376 | |
| 1377 | salen = sizeof(sa); |
| 1378 | if (getsockname(fd, (struct sockaddr *)&sa, &salen) != -1) { |
| 1379 | if (sa.ss_family == AF_INET) |
| 1380 | chunk_appendf(&trash, " fam=ipv4 lport=%d", ntohs(((const struct sockaddr_in *)&sa)->sin_port)); |
| 1381 | else if (sa.ss_family == AF_INET6) |
| 1382 | chunk_appendf(&trash, " fam=ipv6 lport=%d", ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port)); |
| 1383 | else if (sa.ss_family == AF_UNIX) |
| 1384 | chunk_appendf(&trash, " fam=unix"); |
| 1385 | } |
| 1386 | |
| 1387 | salen = sizeof(sa); |
| 1388 | if (getpeername(fd, (struct sockaddr *)&sa, &salen) != -1) { |
| 1389 | if (sa.ss_family == AF_INET) |
| 1390 | chunk_appendf(&trash, " rport=%d", ntohs(((const struct sockaddr_in *)&sa)->sin_port)); |
| 1391 | else if (sa.ss_family == AF_INET6) |
| 1392 | chunk_appendf(&trash, " rport=%d", ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port)); |
| 1393 | } |
Willy Tarreau | dacfde4 | 2021-01-21 09:07:29 +0100 | [diff] [blame] | 1394 | } |
| 1395 | |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1396 | if (px) |
| 1397 | chunk_appendf(&trash, " px=%s", px->id); |
| 1398 | else if (sv) |
Willy Tarreau | dfb34a8 | 2021-07-06 11:41:10 +0200 | [diff] [blame] | 1399 | chunk_appendf(&trash, " sv=%s/%s", sv->proxy->id, sv->id); |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1400 | else if (li) |
| 1401 | chunk_appendf(&trash, " fe=%s", li->bind_conf->frontend->id); |
Willy Tarreau | 35b1b48 | 2018-03-28 18:41:30 +0200 | [diff] [blame] | 1402 | |
Willy Tarreau | b011d8f | 2018-03-30 14:41:19 +0200 | [diff] [blame] | 1403 | if (mux) { |
Willy Tarreau | 3d2ee55 | 2018-12-19 14:12:10 +0100 | [diff] [blame] | 1404 | chunk_appendf(&trash, " mux=%s ctx=%p", mux->name, ctx); |
Willy Tarreau | dacfde4 | 2021-01-21 09:07:29 +0100 | [diff] [blame] | 1405 | if (!ctx) |
| 1406 | suspicious = 1; |
Willy Tarreau | b011d8f | 2018-03-30 14:41:19 +0200 | [diff] [blame] | 1407 | if (mux->show_fd) |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 1408 | suspicious |= mux->show_fd(&trash, fdt.owner); |
Willy Tarreau | b011d8f | 2018-03-30 14:41:19 +0200 | [diff] [blame] | 1409 | } |
Willy Tarreau | 35b1b48 | 2018-03-28 18:41:30 +0200 | [diff] [blame] | 1410 | else |
| 1411 | chunk_appendf(&trash, " nomux"); |
Willy Tarreau | 37be953 | 2021-01-20 14:40:04 +0100 | [diff] [blame] | 1412 | |
| 1413 | chunk_appendf(&trash, " xprt=%s", xprt ? xprt->name : ""); |
Willy Tarreau | 108a271 | 2021-01-20 15:30:56 +0100 | [diff] [blame] | 1414 | if (xprt) { |
| 1415 | if (xprt_ctx || xprt->show_fd) |
| 1416 | chunk_appendf(&trash, " xprt_ctx=%p", xprt_ctx); |
| 1417 | if (xprt->show_fd) |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 1418 | suspicious |= xprt->show_fd(&trash, conn, xprt_ctx); |
Willy Tarreau | 108a271 | 2021-01-20 15:30:56 +0100 | [diff] [blame] | 1419 | } |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1420 | } |
Willy Tarreau | a74cb38 | 2020-10-15 21:29:49 +0200 | [diff] [blame] | 1421 | else if (fdt.iocb == sock_accept_iocb) { |
Willy Tarreau | ed98920 | 2021-02-05 10:54:52 +0100 | [diff] [blame] | 1422 | struct sockaddr_storage sa; |
| 1423 | socklen_t salen; |
| 1424 | |
Willy Tarreau | cf12f2e | 2020-03-03 17:29:58 +0100 | [diff] [blame] | 1425 | chunk_appendf(&trash, ") l.st=%s fe=%s", |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1426 | listener_state_str(li), |
| 1427 | li->bind_conf->frontend->id); |
Willy Tarreau | ed98920 | 2021-02-05 10:54:52 +0100 | [diff] [blame] | 1428 | |
| 1429 | salen = sizeof(sa); |
| 1430 | if (getsockname(fd, (struct sockaddr *)&sa, &salen) != -1) { |
| 1431 | if (sa.ss_family == AF_INET) |
| 1432 | chunk_appendf(&trash, " fam=ipv4 lport=%d", ntohs(((const struct sockaddr_in *)&sa)->sin_port)); |
| 1433 | else if (sa.ss_family == AF_INET6) |
| 1434 | chunk_appendf(&trash, " fam=ipv6 lport=%d", ntohs(((const struct sockaddr_in6 *)&sa)->sin6_port)); |
| 1435 | else if (sa.ss_family == AF_UNIX) |
| 1436 | chunk_appendf(&trash, " fam=unix"); |
| 1437 | } |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1438 | } |
Willy Tarreau | eb0595d | 2021-01-20 14:13:46 +0100 | [diff] [blame] | 1439 | else |
| 1440 | chunk_appendf(&trash, ")"); |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1441 | |
Willy Tarreau | 38e8a1c | 2020-06-23 10:04:54 +0200 | [diff] [blame] | 1442 | #ifdef DEBUG_FD |
| 1443 | chunk_appendf(&trash, " evcnt=%u", fdtab[fd].event_count); |
Willy Tarreau | dacfde4 | 2021-01-21 09:07:29 +0100 | [diff] [blame] | 1444 | if (fdtab[fd].event_count >= 1000000) |
| 1445 | suspicious = 1; |
Willy Tarreau | 38e8a1c | 2020-06-23 10:04:54 +0200 | [diff] [blame] | 1446 | #endif |
Willy Tarreau | 8050efe | 2021-01-21 08:26:06 +0100 | [diff] [blame] | 1447 | chunk_appendf(&trash, "%s\n", suspicious ? " !" : ""); |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1448 | |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 1449 | if (applet_putchk(appctx, &trash) == -1) { |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1450 | fdctx->fd = fd; |
Willy Tarreau | ca1b157 | 2018-12-18 15:45:11 +0100 | [diff] [blame] | 1451 | ret = 0; |
| 1452 | break; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1453 | } |
| 1454 | skip: |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1455 | if (fdctx->show_one) |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1456 | break; |
| 1457 | |
| 1458 | fd++; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1459 | } |
| 1460 | |
Willy Tarreau | ca1b157 | 2018-12-18 15:45:11 +0100 | [diff] [blame] | 1461 | end: |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1462 | /* dump complete */ |
Willy Tarreau | ca1b157 | 2018-12-18 15:45:11 +0100 | [diff] [blame] | 1463 | |
| 1464 | thread_release(); |
| 1465 | return ret; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1466 | } |
| 1467 | |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1468 | /* |
Willy Tarreau | 3af9d83 | 2016-12-16 12:58:09 +0100 | [diff] [blame] | 1469 | * CLI IO handler for `show cli sockets`. |
Willy Tarreau | b128f49 | 2022-05-05 19:11:05 +0200 | [diff] [blame] | 1470 | * Uses the svcctx as a show_sock_ctx to store/retrieve the bind_conf and the |
| 1471 | * listener pointers. |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1472 | */ |
| 1473 | static int cli_io_handler_show_cli_sock(struct appctx *appctx) |
| 1474 | { |
Willy Tarreau | b128f49 | 2022-05-05 19:11:05 +0200 | [diff] [blame] | 1475 | struct show_sock_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx)); |
| 1476 | struct bind_conf *bind_conf = ctx->bind_conf; |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1477 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1478 | if (!global.cli_fe) |
| 1479 | goto done; |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1480 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1481 | chunk_reset(&trash); |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1482 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1483 | if (!bind_conf) { |
| 1484 | /* first call */ |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 1485 | if (applet_putstr(appctx, "# socket lvl processes\n") == -1) |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1486 | goto full; |
| 1487 | bind_conf = LIST_ELEM(global.cli_fe->conf.bind.n, typeof(bind_conf), by_fe); |
| 1488 | } |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1489 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1490 | 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] | 1491 | struct listener *l = ctx->listener; |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1492 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1493 | if (!l) |
| 1494 | l = LIST_ELEM(bind_conf->listeners.n, typeof(l), by_bind); |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1495 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1496 | list_for_each_entry_from(l, &bind_conf->listeners, by_bind) { |
| 1497 | char addr[46]; |
| 1498 | char port[6]; |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1499 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1500 | if (l->rx.addr.ss_family == AF_UNIX) { |
| 1501 | const struct sockaddr_un *un; |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1502 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1503 | un = (struct sockaddr_un *)&l->rx.addr; |
| 1504 | if (un->sun_path[0] == '\0') { |
| 1505 | chunk_appendf(&trash, "abns@%s ", un->sun_path+1); |
| 1506 | } else { |
| 1507 | chunk_appendf(&trash, "unix@%s ", un->sun_path); |
| 1508 | } |
| 1509 | } else if (l->rx.addr.ss_family == AF_INET) { |
| 1510 | addr_to_str(&l->rx.addr, addr, sizeof(addr)); |
| 1511 | port_to_str(&l->rx.addr, port, sizeof(port)); |
| 1512 | chunk_appendf(&trash, "ipv4@%s:%s ", addr, port); |
| 1513 | } else if (l->rx.addr.ss_family == AF_INET6) { |
| 1514 | addr_to_str(&l->rx.addr, addr, sizeof(addr)); |
| 1515 | port_to_str(&l->rx.addr, port, sizeof(port)); |
| 1516 | chunk_appendf(&trash, "ipv6@[%s]:%s ", addr, port); |
| 1517 | } else if (l->rx.addr.ss_family == AF_CUST_SOCKPAIR) { |
| 1518 | chunk_appendf(&trash, "sockpair@%d ", ((struct sockaddr_in *)&l->rx.addr)->sin_addr.s_addr); |
| 1519 | } else |
| 1520 | chunk_appendf(&trash, "unknown "); |
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 ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_ADMIN) |
| 1523 | chunk_appendf(&trash, "admin "); |
| 1524 | else if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_OPER) |
| 1525 | chunk_appendf(&trash, "operator "); |
| 1526 | else if ((bind_conf->level & ACCESS_LVL_MASK) == ACCESS_LVL_USER) |
| 1527 | chunk_appendf(&trash, "user "); |
| 1528 | else |
| 1529 | chunk_appendf(&trash, " "); |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1530 | |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1531 | chunk_appendf(&trash, "all\n"); |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1532 | |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 1533 | if (applet_putchk(appctx, &trash) == -1) { |
Willy Tarreau | b128f49 | 2022-05-05 19:11:05 +0200 | [diff] [blame] | 1534 | ctx->bind_conf = bind_conf; |
| 1535 | ctx->listener = l; |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1536 | goto full; |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1537 | } |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1538 | } |
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 | done: |
| 1541 | return 1; |
| 1542 | full: |
Willy Tarreau | 4df54eb | 2022-05-05 18:52:36 +0200 | [diff] [blame] | 1543 | return 0; |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1544 | } |
| 1545 | |
Willy Tarreau | 9a7fa90 | 2022-07-15 16:51:16 +0200 | [diff] [blame] | 1546 | |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1547 | /* 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] | 1548 | * wants to stop here. It reserves a sohw_env_ctx where it puts the variable to |
| 1549 | * be dumped as well as a flag if a single variable is requested, otherwise puts |
| 1550 | * environ there. |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1551 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1552 | 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] | 1553 | { |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1554 | struct show_env_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx)); |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1555 | extern char **environ; |
Willy Tarreau | f6710f8 | 2016-12-16 17:45:44 +0100 | [diff] [blame] | 1556 | char **var; |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1557 | |
| 1558 | if (!cli_has_level(appctx, ACCESS_LVL_OPER)) |
| 1559 | return 1; |
| 1560 | |
Willy Tarreau | f6710f8 | 2016-12-16 17:45:44 +0100 | [diff] [blame] | 1561 | var = environ; |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1562 | |
| 1563 | if (*args[2]) { |
| 1564 | int len = strlen(args[2]); |
| 1565 | |
Willy Tarreau | f6710f8 | 2016-12-16 17:45:44 +0100 | [diff] [blame] | 1566 | for (; *var; var++) { |
| 1567 | if (strncmp(*var, args[2], len) == 0 && |
| 1568 | (*var)[len] == '=') |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1569 | break; |
| 1570 | } |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1571 | if (!*var) |
| 1572 | return cli_err(appctx, "Variable not found\n"); |
| 1573 | |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1574 | ctx->show_one = 1; |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1575 | } |
Willy Tarreau | 307dbb3 | 2022-05-05 17:45:52 +0200 | [diff] [blame] | 1576 | ctx->var = var; |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 1577 | return 0; |
| 1578 | } |
| 1579 | |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1580 | /* 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] | 1581 | * wants to stop here. It sets a show_fd_ctx context where, if a specific fd is |
| 1582 | * 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] | 1583 | */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1584 | 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] | 1585 | { |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1586 | struct show_fd_ctx *ctx = applet_reserve_svcctx(appctx, sizeof(*ctx)); |
Willy Tarreau | 1cb041a | 2023-03-31 16:33:53 +0200 | [diff] [blame] | 1587 | const char *c; |
| 1588 | int arg; |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1589 | |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1590 | if (!cli_has_level(appctx, ACCESS_LVL_OPER)) |
| 1591 | return 1; |
| 1592 | |
Willy Tarreau | 1cb041a | 2023-03-31 16:33:53 +0200 | [diff] [blame] | 1593 | arg = 2; |
| 1594 | |
| 1595 | /* when starting with an inversion we preset every flag */ |
| 1596 | if (*args[arg] == '!' || *args[arg] == '-') |
| 1597 | ctx->show_mask = CLI_SHOWFD_F_ANY; |
| 1598 | |
| 1599 | while (*args[arg] && !isdigit((uchar)*args[arg])) { |
| 1600 | uint flag = 0, inv = 0; |
| 1601 | c = args[arg]; |
| 1602 | while (*c) { |
| 1603 | switch (*c) { |
| 1604 | case '!': inv = !inv; break; |
| 1605 | case '-': inv = !inv; break; |
| 1606 | case 'p': flag = CLI_SHOWFD_F_PI; break; |
| 1607 | case 'l': flag = CLI_SHOWFD_F_LI; break; |
| 1608 | case 'c': flag = CLI_SHOWFD_F_CO; break; |
| 1609 | case 'f': flag = CLI_SHOWFD_F_FE; break; |
| 1610 | case 'b': flag = CLI_SHOWFD_F_BE; break; |
| 1611 | case 's': flag = CLI_SHOWFD_F_SV; break; |
| 1612 | case 'd': flag = CLI_SHOWFD_F_PX; break; |
| 1613 | default: return cli_err(appctx, "Invalid FD type\n"); |
| 1614 | } |
| 1615 | c++; |
| 1616 | if (!inv) |
| 1617 | ctx->show_mask |= flag; |
| 1618 | else |
| 1619 | ctx->show_mask &= ~flag; |
| 1620 | } |
| 1621 | arg++; |
| 1622 | } |
| 1623 | |
| 1624 | /* default mask is to show everything */ |
| 1625 | if (!ctx->show_mask) |
| 1626 | ctx->show_mask = CLI_SHOWFD_F_ANY; |
| 1627 | |
| 1628 | if (*args[arg]) { |
Willy Tarreau | 741a5a9 | 2022-05-05 17:56:58 +0200 | [diff] [blame] | 1629 | ctx->fd = atoi(args[2]); |
| 1630 | ctx->show_one = 1; |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1631 | } |
Willy Tarreau | 1cb041a | 2023-03-31 16:33:53 +0200 | [diff] [blame] | 1632 | |
Willy Tarreau | 7a4a0ac | 2017-07-25 19:32:50 +0200 | [diff] [blame] | 1633 | return 0; |
| 1634 | } |
| 1635 | |
Willy Tarreau | 599852e | 2016-11-22 20:33:32 +0100 | [diff] [blame] | 1636 | /* parse a "set timeout" CLI request. It always returns 1. */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1637 | 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] | 1638 | { |
Willy Tarreau | 0698c80 | 2022-05-11 14:09:57 +0200 | [diff] [blame] | 1639 | struct stream *s = appctx_strm(appctx); |
Willy Tarreau | 599852e | 2016-11-22 20:33:32 +0100 | [diff] [blame] | 1640 | |
| 1641 | if (strcmp(args[2], "cli") == 0) { |
| 1642 | unsigned timeout; |
| 1643 | const char *res; |
| 1644 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1645 | if (!*args[3]) |
| 1646 | return cli_err(appctx, "Expects an integer value.\n"); |
Willy Tarreau | 599852e | 2016-11-22 20:33:32 +0100 | [diff] [blame] | 1647 | |
| 1648 | res = parse_time_err(args[3], &timeout, TIME_UNIT_S); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1649 | if (res || timeout < 1) |
| 1650 | return cli_err(appctx, "Invalid timeout value.\n"); |
Willy Tarreau | 599852e | 2016-11-22 20:33:32 +0100 | [diff] [blame] | 1651 | |
Christopher Faulet | 5aaacfb | 2023-02-15 08:13:33 +0100 | [diff] [blame] | 1652 | s->scf->ioto = 1 + MS_TO_TICKS(timeout*1000); |
Willy Tarreau | 599852e | 2016-11-22 20:33:32 +0100 | [diff] [blame] | 1653 | task_wakeup(s->task, TASK_WOKEN_MSG); // recompute timeouts |
| 1654 | return 1; |
| 1655 | } |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1656 | |
| 1657 | return cli_err(appctx, "'set timeout' only supports 'cli'.\n"); |
Willy Tarreau | 599852e | 2016-11-22 20:33:32 +0100 | [diff] [blame] | 1658 | } |
| 1659 | |
Willy Tarreau | 2af9941 | 2016-11-23 11:10:59 +0100 | [diff] [blame] | 1660 | /* parse a "set maxconn global" command. It always returns 1. */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1661 | 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] | 1662 | { |
| 1663 | int v; |
| 1664 | |
| 1665 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1666 | return 1; |
| 1667 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1668 | if (!*args[3]) |
| 1669 | return cli_err(appctx, "Expects an integer value.\n"); |
Willy Tarreau | 2af9941 | 2016-11-23 11:10:59 +0100 | [diff] [blame] | 1670 | |
| 1671 | v = atoi(args[3]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1672 | if (v > global.hardmaxconn) |
| 1673 | return cli_err(appctx, "Value out of range.\n"); |
Willy Tarreau | 2af9941 | 2016-11-23 11:10:59 +0100 | [diff] [blame] | 1674 | |
| 1675 | /* check for unlimited values */ |
| 1676 | if (v <= 0) |
| 1677 | v = global.hardmaxconn; |
| 1678 | |
| 1679 | global.maxconn = v; |
| 1680 | |
| 1681 | /* Dequeues all of the listeners waiting for a resource */ |
Willy Tarreau | 241797a | 2019-12-10 14:10:52 +0100 | [diff] [blame] | 1682 | dequeue_all_listeners(); |
Willy Tarreau | 2af9941 | 2016-11-23 11:10:59 +0100 | [diff] [blame] | 1683 | |
| 1684 | return 1; |
| 1685 | } |
| 1686 | |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 1687 | static int set_severity_output(int *target, char *argument) |
| 1688 | { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1689 | if (strcmp(argument, "none") == 0) { |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 1690 | *target = CLI_SEVERITY_NONE; |
| 1691 | return 1; |
| 1692 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1693 | else if (strcmp(argument, "number") == 0) { |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 1694 | *target = CLI_SEVERITY_NUMBER; |
| 1695 | return 1; |
| 1696 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1697 | else if (strcmp(argument, "string") == 0) { |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 1698 | *target = CLI_SEVERITY_STRING; |
| 1699 | return 1; |
| 1700 | } |
| 1701 | return 0; |
| 1702 | } |
| 1703 | |
| 1704 | /* parse a "set severity-output" command. */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1705 | 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] | 1706 | { |
| 1707 | if (*args[2] && set_severity_output(&appctx->cli_severity_output, args[2])) |
| 1708 | return 0; |
| 1709 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1710 | 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] | 1711 | } |
William Lallemand | eceddf7 | 2016-12-15 18:06:44 +0100 | [diff] [blame] | 1712 | |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1713 | |
| 1714 | /* show the level of the current CLI session */ |
| 1715 | static int cli_parse_show_lvl(char **args, char *payload, struct appctx *appctx, void *private) |
| 1716 | { |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1717 | if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_ADMIN) |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1718 | return cli_msg(appctx, LOG_INFO, "admin\n"); |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1719 | else if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_OPER) |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1720 | return cli_msg(appctx, LOG_INFO, "operator\n"); |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1721 | else if ((appctx->cli_level & ACCESS_LVL_MASK) == ACCESS_LVL_USER) |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1722 | return cli_msg(appctx, LOG_INFO, "user\n"); |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1723 | else |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1724 | return cli_msg(appctx, LOG_INFO, "unknown\n"); |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1725 | } |
| 1726 | |
| 1727 | /* parse and set the CLI level dynamically */ |
| 1728 | static int cli_parse_set_lvl(char **args, char *payload, struct appctx *appctx, void *private) |
| 1729 | { |
William Lallemand | ad03288 | 2019-07-01 10:56:15 +0200 | [diff] [blame] | 1730 | /* 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] | 1731 | if (strcmp(args[1], "-") == 0) |
William Lallemand | ad03288 | 2019-07-01 10:56:15 +0200 | [diff] [blame] | 1732 | appctx->st1 |= APPCTX_CLI_ST1_NOLF; |
| 1733 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1734 | if (strcmp(args[0], "operator") == 0) { |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1735 | if (!cli_has_level(appctx, ACCESS_LVL_OPER)) { |
| 1736 | return 1; |
| 1737 | } |
| 1738 | appctx->cli_level &= ~ACCESS_LVL_MASK; |
| 1739 | appctx->cli_level |= ACCESS_LVL_OPER; |
| 1740 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1741 | } else if (strcmp(args[0], "user") == 0) { |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1742 | if (!cli_has_level(appctx, ACCESS_LVL_USER)) { |
| 1743 | return 1; |
| 1744 | } |
| 1745 | appctx->cli_level &= ~ACCESS_LVL_MASK; |
| 1746 | appctx->cli_level |= ACCESS_LVL_USER; |
| 1747 | } |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1748 | appctx->cli_level &= ~(ACCESS_EXPERT|ACCESS_EXPERIMENTAL); |
Willy Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 1749 | return 1; |
| 1750 | } |
| 1751 | |
| 1752 | |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1753 | /* parse and set the CLI expert/experimental-mode dynamically */ |
| 1754 | 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] | 1755 | { |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1756 | int level; |
| 1757 | char *level_str; |
| 1758 | char *output = NULL; |
| 1759 | |
William Lallemand | 7267f78 | 2022-02-01 16:08:50 +0100 | [diff] [blame] | 1760 | /* this will ask the applet to not output a \n after the command */ |
| 1761 | if (*args[1] && *args[2] && strcmp(args[2], "-") == 0) |
| 1762 | appctx->st1 |= APPCTX_CLI_ST1_NOLF; |
| 1763 | |
Willy Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 1764 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1765 | return 1; |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1766 | |
Tim Duesterhus | c5aa113 | 2021-10-16 17:48:15 +0200 | [diff] [blame] | 1767 | if (strcmp(args[0], "expert-mode") == 0) { |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1768 | level = ACCESS_EXPERT; |
| 1769 | level_str = "expert-mode"; |
| 1770 | } |
Tim Duesterhus | c5aa113 | 2021-10-16 17:48:15 +0200 | [diff] [blame] | 1771 | else if (strcmp(args[0], "experimental-mode") == 0) { |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1772 | level = ACCESS_EXPERIMENTAL; |
| 1773 | level_str = "experimental-mode"; |
| 1774 | } |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 1775 | else if (strcmp(args[0], "mcli-debug-mode") == 0) { |
| 1776 | level = ACCESS_MCLI_DEBUG; |
| 1777 | level_str = "mcli-debug-mode"; |
| 1778 | } |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1779 | else { |
| 1780 | return 1; |
| 1781 | } |
Willy Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 1782 | |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1783 | if (!*args[1]) { |
| 1784 | memprintf(&output, "%s is %s\n", level_str, |
| 1785 | (appctx->cli_level & level) ? "ON" : "OFF"); |
| 1786 | return cli_dynmsg(appctx, LOG_INFO, output); |
| 1787 | } |
Willy Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 1788 | |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1789 | appctx->cli_level &= ~level; |
Willy Tarreau | abb9f9b | 2019-10-24 17:55:53 +0200 | [diff] [blame] | 1790 | if (strcmp(args[1], "on") == 0) |
Amaury Denoyelle | 18487fb | 2021-03-18 15:32:53 +0100 | [diff] [blame] | 1791 | appctx->cli_level |= level; |
William Lallemand | 67a234f | 2018-12-13 09:05:45 +0100 | [diff] [blame] | 1792 | return 1; |
| 1793 | } |
| 1794 | |
William Lallemand | 740629e | 2021-12-14 15:22:29 +0100 | [diff] [blame] | 1795 | /* shows HAProxy version */ |
| 1796 | static int cli_parse_show_version(char **args, char *payload, struct appctx *appctx, void *private) |
| 1797 | { |
| 1798 | char *msg = NULL; |
| 1799 | |
| 1800 | return cli_dynmsg(appctx, LOG_INFO, memprintf(&msg, "%s\n", haproxy_version)); |
| 1801 | } |
| 1802 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1803 | 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] | 1804 | { |
| 1805 | return 0; |
| 1806 | } |
| 1807 | |
Erwan Le Goas | 54966df | 2022-09-14 17:24:22 +0200 | [diff] [blame] | 1808 | /* enable or disable the anonymized mode, it returns 1 when it works or displays an error message if it doesn't. */ |
| 1809 | static int cli_parse_set_anon(char **args, char *payload, struct appctx *appctx, void *private) |
| 1810 | { |
| 1811 | uint32_t tmp; |
| 1812 | long long key; |
| 1813 | |
| 1814 | if (strcmp(args[2], "on") == 0) { |
Erwan Le Goas | 3f4ae61 | 2022-09-28 17:04:29 +0200 | [diff] [blame] | 1815 | |
| 1816 | if (*args[3]) { |
| 1817 | key = atoll(args[3]); |
| 1818 | if (key < 1 || key > UINT_MAX) |
| 1819 | return cli_err(appctx, "Value out of range (1 to 4294967295 expected).\n"); |
| 1820 | appctx->cli_anon_key = key; |
| 1821 | } |
Erwan Le Goas | 54966df | 2022-09-14 17:24:22 +0200 | [diff] [blame] | 1822 | else { |
Erwan Le Goas | 3f4ae61 | 2022-09-28 17:04:29 +0200 | [diff] [blame] | 1823 | tmp = HA_ATOMIC_LOAD(&global.anon_key); |
| 1824 | if (tmp != 0) |
| 1825 | appctx->cli_anon_key = tmp; |
| 1826 | else |
| 1827 | appctx->cli_anon_key = ha_random32(); |
Erwan Le Goas | 54966df | 2022-09-14 17:24:22 +0200 | [diff] [blame] | 1828 | } |
| 1829 | } |
| 1830 | else if (strcmp(args[2], "off") == 0) { |
Erwan Le Goas | 3f4ae61 | 2022-09-28 17:04:29 +0200 | [diff] [blame] | 1831 | |
| 1832 | if (*args[3]) { |
Erwan Le Goas | 54966df | 2022-09-14 17:24:22 +0200 | [diff] [blame] | 1833 | return cli_err(appctx, "Key can't be added while disabling anonymized mode\n"); |
| 1834 | } |
| 1835 | else { |
| 1836 | appctx->cli_anon_key = 0; |
| 1837 | } |
| 1838 | } |
| 1839 | else { |
| 1840 | return cli_err(appctx, |
| 1841 | "'set anon' only supports :\n" |
| 1842 | " - 'on' [key] to enable the anonymized mode\n" |
| 1843 | " - 'off' to disable the anonymized mode"); |
| 1844 | } |
| 1845 | return 1; |
| 1846 | } |
| 1847 | |
Erwan Le Goas | fad9da8 | 2022-09-14 17:24:22 +0200 | [diff] [blame] | 1848 | /* This function set the global anonyzing key, restricted to level 'admin' */ |
| 1849 | static int cli_parse_set_global_key(char **args, char *payload, struct appctx *appctx, void *private) |
| 1850 | { |
| 1851 | long long key; |
| 1852 | |
| 1853 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1854 | return cli_err(appctx, "Permission denied\n"); |
| 1855 | if (!*args[2]) |
| 1856 | return cli_err(appctx, "Expects an integer value.\n"); |
| 1857 | |
| 1858 | key = atoll(args[2]); |
| 1859 | if (key < 0 || key > UINT_MAX) |
| 1860 | return cli_err(appctx, "Value out of range (0 to 4294967295 expected).\n"); |
| 1861 | |
| 1862 | HA_ATOMIC_STORE(&global.anon_key, key); |
| 1863 | return 1; |
| 1864 | } |
| 1865 | |
Erwan Le Goas | 54966df | 2022-09-14 17:24:22 +0200 | [diff] [blame] | 1866 | /* shows the anonymized mode state to everyone, and the key except for users, it always returns 1. */ |
| 1867 | static int cli_parse_show_anon(char **args, char *payload, struct appctx *appctx, void *private) |
| 1868 | { |
| 1869 | char *msg = NULL; |
| 1870 | char *anon_mode = NULL; |
| 1871 | uint32_t c_key = appctx->cli_anon_key; |
| 1872 | |
| 1873 | if (!c_key) |
| 1874 | anon_mode = "Anonymized mode disabled"; |
| 1875 | else |
| 1876 | anon_mode = "Anonymized mode enabled"; |
| 1877 | |
| 1878 | if ( !((appctx->cli_level & ACCESS_LVL_MASK) < ACCESS_LVL_OPER) && c_key != 0) { |
| 1879 | cli_dynmsg(appctx, LOG_INFO, memprintf(&msg, "%s\nKey : %u\n", anon_mode, c_key)); |
| 1880 | } |
| 1881 | else { |
| 1882 | cli_dynmsg(appctx, LOG_INFO, memprintf(&msg, "%s\n", anon_mode)); |
| 1883 | } |
| 1884 | |
| 1885 | return 1; |
| 1886 | } |
| 1887 | |
Willy Tarreau | 45c742b | 2016-11-24 14:51:17 +0100 | [diff] [blame] | 1888 | /* parse a "set rate-limit" command. It always returns 1. */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1889 | 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] | 1890 | { |
| 1891 | int v; |
| 1892 | int *res; |
| 1893 | int mul = 1; |
| 1894 | |
| 1895 | if (!cli_has_level(appctx, ACCESS_LVL_ADMIN)) |
| 1896 | return 1; |
| 1897 | |
| 1898 | if (strcmp(args[2], "connections") == 0 && strcmp(args[3], "global") == 0) |
| 1899 | res = &global.cps_lim; |
| 1900 | else if (strcmp(args[2], "sessions") == 0 && strcmp(args[3], "global") == 0) |
| 1901 | res = &global.sps_lim; |
| 1902 | #ifdef USE_OPENSSL |
| 1903 | else if (strcmp(args[2], "ssl-sessions") == 0 && strcmp(args[3], "global") == 0) |
| 1904 | res = &global.ssl_lim; |
| 1905 | #endif |
| 1906 | else if (strcmp(args[2], "http-compression") == 0 && strcmp(args[3], "global") == 0) { |
| 1907 | res = &global.comp_rate_lim; |
| 1908 | mul = 1024; |
| 1909 | } |
| 1910 | else { |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1911 | return cli_err(appctx, |
Willy Tarreau | 45c742b | 2016-11-24 14:51:17 +0100 | [diff] [blame] | 1912 | "'set rate-limit' only supports :\n" |
| 1913 | " - 'connections global' to set the per-process maximum connection rate\n" |
| 1914 | " - 'sessions global' to set the per-process maximum session rate\n" |
| 1915 | #ifdef USE_OPENSSL |
Aurélien Nephtali | b53e208 | 2018-03-11 16:55:02 +0100 | [diff] [blame] | 1916 | " - '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] | 1917 | #endif |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1918 | " - '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] | 1919 | } |
| 1920 | |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1921 | if (!*args[4]) |
| 1922 | return cli_err(appctx, "Expects an integer value.\n"); |
Willy Tarreau | 45c742b | 2016-11-24 14:51:17 +0100 | [diff] [blame] | 1923 | |
| 1924 | v = atoi(args[4]); |
Willy Tarreau | 9d00869 | 2019-08-09 11:21:01 +0200 | [diff] [blame] | 1925 | if (v < 0) |
| 1926 | return cli_err(appctx, "Value out of range.\n"); |
Willy Tarreau | 45c742b | 2016-11-24 14:51:17 +0100 | [diff] [blame] | 1927 | |
| 1928 | *res = v * mul; |
| 1929 | |
| 1930 | /* Dequeues all of the listeners waiting for a resource */ |
Willy Tarreau | 241797a | 2019-12-10 14:10:52 +0100 | [diff] [blame] | 1931 | dequeue_all_listeners(); |
Willy Tarreau | 45c742b | 2016-11-24 14:51:17 +0100 | [diff] [blame] | 1932 | |
| 1933 | return 1; |
| 1934 | } |
| 1935 | |
William Lallemand | f6975e9 | 2017-05-26 17:42:10 +0200 | [diff] [blame] | 1936 | /* parse the "expose-fd" argument on the bind lines */ |
| 1937 | static int bind_parse_expose_fd(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1938 | { |
| 1939 | if (!*args[cur_arg + 1]) { |
| 1940 | memprintf(err, "'%s' : missing fd type", args[cur_arg]); |
| 1941 | return ERR_ALERT | ERR_FATAL; |
| 1942 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1943 | if (strcmp(args[cur_arg + 1], "listeners") == 0) { |
William Lallemand | f6975e9 | 2017-05-26 17:42:10 +0200 | [diff] [blame] | 1944 | conf->level |= ACCESS_FD_LISTENERS; |
| 1945 | } else { |
| 1946 | memprintf(err, "'%s' only supports 'listeners' (got '%s')", |
| 1947 | args[cur_arg], args[cur_arg+1]); |
| 1948 | return ERR_ALERT | ERR_FATAL; |
| 1949 | } |
| 1950 | |
| 1951 | return 0; |
| 1952 | } |
| 1953 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1954 | /* parse the "level" argument on the bind lines */ |
| 1955 | static int bind_parse_level(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1956 | { |
| 1957 | if (!*args[cur_arg + 1]) { |
| 1958 | memprintf(err, "'%s' : missing level", args[cur_arg]); |
| 1959 | return ERR_ALERT | ERR_FATAL; |
| 1960 | } |
| 1961 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1962 | if (strcmp(args[cur_arg + 1], "user") == 0) { |
William Lallemand | 07a62f7 | 2017-05-24 00:57:40 +0200 | [diff] [blame] | 1963 | conf->level &= ~ACCESS_LVL_MASK; |
| 1964 | conf->level |= ACCESS_LVL_USER; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1965 | } else if (strcmp(args[cur_arg + 1], "operator") == 0) { |
William Lallemand | 07a62f7 | 2017-05-24 00:57:40 +0200 | [diff] [blame] | 1966 | conf->level &= ~ACCESS_LVL_MASK; |
| 1967 | conf->level |= ACCESS_LVL_OPER; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 1968 | } else if (strcmp(args[cur_arg + 1], "admin") == 0) { |
William Lallemand | 07a62f7 | 2017-05-24 00:57:40 +0200 | [diff] [blame] | 1969 | conf->level &= ~ACCESS_LVL_MASK; |
| 1970 | conf->level |= ACCESS_LVL_ADMIN; |
| 1971 | } else { |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 1972 | memprintf(err, "'%s' only supports 'user', 'operator', and 'admin' (got '%s')", |
| 1973 | args[cur_arg], args[cur_arg+1]); |
| 1974 | return ERR_ALERT | ERR_FATAL; |
| 1975 | } |
| 1976 | |
| 1977 | return 0; |
| 1978 | } |
| 1979 | |
Andjelko Iharos | c4df59e | 2017-07-20 11:59:48 +0200 | [diff] [blame] | 1980 | static int bind_parse_severity_output(char **args, int cur_arg, struct proxy *px, struct bind_conf *conf, char **err) |
| 1981 | { |
| 1982 | if (!*args[cur_arg + 1]) { |
| 1983 | memprintf(err, "'%s' : missing severity format", args[cur_arg]); |
| 1984 | return ERR_ALERT | ERR_FATAL; |
| 1985 | } |
| 1986 | |
| 1987 | if (set_severity_output(&conf->severity_output, args[cur_arg+1])) |
| 1988 | return 0; |
| 1989 | else { |
| 1990 | memprintf(err, "'%s' only supports 'none', 'number', and 'string' (got '%s')", |
| 1991 | args[cur_arg], args[cur_arg+1]); |
| 1992 | return ERR_ALERT | ERR_FATAL; |
| 1993 | } |
| 1994 | } |
| 1995 | |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 1996 | /* Send all the bound sockets, always returns 1 */ |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 1997 | static int _getsocks(char **args, char *payload, struct appctx *appctx, void *private) |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 1998 | { |
William Lallemand | b5d062d | 2022-07-28 15:33:41 +0200 | [diff] [blame] | 1999 | static int already_sent = 0; |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2000 | char *cmsgbuf = NULL; |
| 2001 | unsigned char *tmpbuf = NULL; |
| 2002 | struct cmsghdr *cmsg; |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 2003 | struct stconn *sc = appctx_sc(appctx); |
Willy Tarreau | 475e463 | 2022-05-27 10:26:46 +0200 | [diff] [blame] | 2004 | struct stream *s = __sc_strm(sc); |
| 2005 | struct connection *remote = sc_conn(sc_opposite(sc)); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2006 | struct msghdr msghdr; |
| 2007 | struct iovec iov; |
Olivier Houchard | 5474087 | 2017-04-06 14:45:14 +0200 | [diff] [blame] | 2008 | struct timeval tv = { .tv_sec = 1, .tv_usec = 0 }; |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2009 | const char *ns_name, *if_name; |
| 2010 | unsigned char ns_nlen, if_nlen; |
| 2011 | int nb_queued; |
| 2012 | int cur_fd = 0; |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2013 | int *tmpfd; |
| 2014 | int tot_fd_nb = 0; |
Willy Tarreau | c2b7f80 | 2018-09-20 11:22:29 +0200 | [diff] [blame] | 2015 | int fd = -1; |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2016 | int curoff = 0; |
Willy Tarreau | c2b7f80 | 2018-09-20 11:22:29 +0200 | [diff] [blame] | 2017 | int old_fcntl = -1; |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2018 | int ret; |
| 2019 | |
Willy Tarreau | c2b7f80 | 2018-09-20 11:22:29 +0200 | [diff] [blame] | 2020 | if (!remote) { |
| 2021 | ha_warning("Only works on real connections\n"); |
| 2022 | goto out; |
| 2023 | } |
| 2024 | |
| 2025 | fd = remote->handle.fd; |
| 2026 | |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2027 | /* Temporary set the FD in blocking mode, that will make our life easier */ |
| 2028 | old_fcntl = fcntl(fd, F_GETFL); |
| 2029 | if (old_fcntl < 0) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2030 | ha_warning("Couldn't get the flags for the unix socket\n"); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2031 | goto out; |
| 2032 | } |
| 2033 | cmsgbuf = malloc(CMSG_SPACE(sizeof(int) * MAX_SEND_FD)); |
| 2034 | if (!cmsgbuf) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2035 | ha_warning("Failed to allocate memory to send sockets\n"); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2036 | goto out; |
| 2037 | } |
| 2038 | if (fcntl(fd, F_SETFL, old_fcntl &~ O_NONBLOCK) == -1) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2039 | ha_warning("Cannot make the unix socket blocking\n"); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2040 | goto out; |
| 2041 | } |
Olivier Houchard | 5474087 | 2017-04-06 14:45:14 +0200 | [diff] [blame] | 2042 | setsockopt(fd, SOL_SOCKET, SO_RCVTIMEO, (void *)&tv, sizeof(tv)); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2043 | iov.iov_base = &tot_fd_nb; |
| 2044 | iov.iov_len = sizeof(tot_fd_nb); |
William Lallemand | f6975e9 | 2017-05-26 17:42:10 +0200 | [diff] [blame] | 2045 | if (!(strm_li(s)->bind_conf->level & ACCESS_FD_LISTENERS)) |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2046 | goto out; |
| 2047 | memset(&msghdr, 0, sizeof(msghdr)); |
| 2048 | /* |
| 2049 | * First, calculates the total number of FD, so that we can let |
Jackie Tapia | 749f74c | 2020-07-22 18:59:40 -0500 | [diff] [blame] | 2050 | * the caller know how much it should expect. |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2051 | */ |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2052 | for (cur_fd = 0;cur_fd < global.maxsock; cur_fd++) |
Willy Tarreau | 9063a66 | 2021-04-06 18:09:06 +0200 | [diff] [blame] | 2053 | tot_fd_nb += !!(fdtab[cur_fd].state & FD_EXPORTED); |
William Lallemand | 5fd3b28 | 2020-01-16 15:32:08 +0100 | [diff] [blame] | 2054 | |
William Lallemand | b5d062d | 2022-07-28 15:33:41 +0200 | [diff] [blame] | 2055 | if (tot_fd_nb == 0) { |
| 2056 | if (already_sent) |
| 2057 | 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] | 2058 | goto out; |
William Lallemand | b5d062d | 2022-07-28 15:33:41 +0200 | [diff] [blame] | 2059 | } |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2060 | |
| 2061 | /* First send the total number of file descriptors, so that the |
| 2062 | * receiving end knows what to expect. |
| 2063 | */ |
| 2064 | msghdr.msg_iov = &iov; |
| 2065 | msghdr.msg_iovlen = 1; |
| 2066 | ret = sendmsg(fd, &msghdr, 0); |
| 2067 | if (ret != sizeof(tot_fd_nb)) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2068 | ha_warning("Failed to send the number of sockets to send\n"); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2069 | goto out; |
| 2070 | } |
| 2071 | |
| 2072 | /* Now send the fds */ |
| 2073 | msghdr.msg_control = cmsgbuf; |
| 2074 | msghdr.msg_controllen = CMSG_SPACE(sizeof(int) * MAX_SEND_FD); |
| 2075 | cmsg = CMSG_FIRSTHDR(&msghdr); |
| 2076 | cmsg->cmsg_len = CMSG_LEN(MAX_SEND_FD * sizeof(int)); |
| 2077 | cmsg->cmsg_level = SOL_SOCKET; |
| 2078 | cmsg->cmsg_type = SCM_RIGHTS; |
| 2079 | tmpfd = (int *)CMSG_DATA(cmsg); |
| 2080 | |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2081 | /* For each socket, e message is sent, containing the following : |
| 2082 | * Size of the namespace name (or 0 if none), as an unsigned char. |
| 2083 | * The namespace name, if any |
| 2084 | * Size of the interface name (or 0 if none), as an unsigned char |
| 2085 | * The interface name, if any |
Willy Tarreau | cf1f193 | 2020-08-26 10:30:09 +0200 | [diff] [blame] | 2086 | * 32 bits of zeroes (used to be listener options). |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2087 | */ |
| 2088 | /* 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] | 2089 | * buffer big enough to store the socket information. |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2090 | */ |
Olivier Houchard | f143b80 | 2017-11-04 15:13:01 +0100 | [diff] [blame] | 2091 | tmpbuf = malloc(MAX_SEND_FD * (1 + MAXPATHLEN + 1 + IFNAMSIZ + sizeof(int))); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2092 | if (tmpbuf == NULL) { |
Ilya Shipitsin | d425950 | 2020-04-08 01:07:56 +0500 | [diff] [blame] | 2093 | ha_warning("Failed to allocate memory to transfer socket information\n"); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2094 | goto out; |
| 2095 | } |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2096 | |
| 2097 | nb_queued = 0; |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2098 | iov.iov_base = tmpbuf; |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2099 | for (cur_fd = 0; cur_fd < global.maxsock; cur_fd++) { |
Willy Tarreau | 9063a66 | 2021-04-06 18:09:06 +0200 | [diff] [blame] | 2100 | if (!(fdtab[cur_fd].state & FD_EXPORTED)) |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2101 | continue; |
| 2102 | |
| 2103 | ns_name = if_name = ""; |
| 2104 | ns_nlen = if_nlen = 0; |
| 2105 | |
| 2106 | /* for now we can only retrieve namespaces and interfaces from |
| 2107 | * pure listeners. |
| 2108 | */ |
Willy Tarreau | a74cb38 | 2020-10-15 21:29:49 +0200 | [diff] [blame] | 2109 | if (fdtab[cur_fd].iocb == sock_accept_iocb) { |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2110 | const struct listener *l = fdtab[cur_fd].owner; |
| 2111 | |
Willy Tarreau | 818a92e | 2020-09-03 07:50:19 +0200 | [diff] [blame] | 2112 | if (l->rx.settings->interface) { |
| 2113 | if_name = l->rx.settings->interface; |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2114 | if_nlen = strlen(if_name); |
| 2115 | } |
| 2116 | |
| 2117 | #ifdef USE_NS |
Willy Tarreau | 818a92e | 2020-09-03 07:50:19 +0200 | [diff] [blame] | 2118 | if (l->rx.settings->netns) { |
| 2119 | ns_name = l->rx.settings->netns->node.key; |
| 2120 | ns_nlen = l->rx.settings->netns->name_len; |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2121 | } |
| 2122 | #endif |
| 2123 | } |
| 2124 | |
| 2125 | /* put the FD into the CMSG_DATA */ |
| 2126 | tmpfd[nb_queued++] = cur_fd; |
| 2127 | |
| 2128 | /* first block is <ns_name_len> <ns_name> */ |
| 2129 | tmpbuf[curoff++] = ns_nlen; |
| 2130 | if (ns_nlen) |
| 2131 | memcpy(tmpbuf + curoff, ns_name, ns_nlen); |
| 2132 | curoff += ns_nlen; |
| 2133 | |
| 2134 | /* second block is <if_name_len> <if_name> */ |
| 2135 | tmpbuf[curoff++] = if_nlen; |
| 2136 | if (if_nlen) |
| 2137 | memcpy(tmpbuf + curoff, if_name, if_nlen); |
| 2138 | curoff += if_nlen; |
| 2139 | |
| 2140 | /* we used to send the listener options here before 2.3 */ |
| 2141 | memset(tmpbuf + curoff, 0, sizeof(int)); |
| 2142 | curoff += sizeof(int); |
| 2143 | |
| 2144 | /* there's a limit to how many FDs may be sent at once */ |
| 2145 | if (nb_queued == MAX_SEND_FD) { |
| 2146 | iov.iov_len = curoff; |
| 2147 | if (sendmsg(fd, &msghdr, 0) != curoff) { |
| 2148 | ha_warning("Failed to transfer sockets\n"); |
| 2149 | return -1; |
| 2150 | } |
| 2151 | |
| 2152 | /* Wait for an ack */ |
| 2153 | do { |
| 2154 | ret = recv(fd, &tot_fd_nb, sizeof(tot_fd_nb), 0); |
| 2155 | } while (ret == -1 && errno == EINTR); |
| 2156 | |
| 2157 | if (ret <= 0) { |
| 2158 | ha_warning("Unexpected error while transferring sockets\n"); |
| 2159 | return -1; |
| 2160 | } |
| 2161 | curoff = 0; |
| 2162 | nb_queued = 0; |
| 2163 | } |
William Lallemand | 5fd3b28 | 2020-01-16 15:32:08 +0100 | [diff] [blame] | 2164 | } |
| 2165 | |
William Lallemand | b5d062d | 2022-07-28 15:33:41 +0200 | [diff] [blame] | 2166 | already_sent = 1; |
| 2167 | |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2168 | /* flush pending stuff */ |
| 2169 | if (nb_queued) { |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2170 | iov.iov_len = curoff; |
Willy Tarreau | b5a1f9e | 2020-08-19 17:03:55 +0200 | [diff] [blame] | 2171 | cmsg->cmsg_len = CMSG_LEN(nb_queued * sizeof(int)); |
| 2172 | msghdr.msg_controllen = CMSG_SPACE(nb_queued * sizeof(int)); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2173 | if (sendmsg(fd, &msghdr, 0) != curoff) { |
Christopher Faulet | 767a84b | 2017-11-24 16:50:31 +0100 | [diff] [blame] | 2174 | ha_warning("Failed to transfer sockets\n"); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2175 | goto out; |
| 2176 | } |
| 2177 | } |
| 2178 | |
| 2179 | out: |
Willy Tarreau | c2b7f80 | 2018-09-20 11:22:29 +0200 | [diff] [blame] | 2180 | 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] | 2181 | ha_warning("Cannot make the unix socket non-blocking\n"); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2182 | goto out; |
| 2183 | } |
Christopher Faulet | 33af996 | 2023-04-07 17:58:21 +0200 | [diff] [blame] | 2184 | se_fl_set(appctx->sedesc, SE_FL_EOI); |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2185 | appctx->st0 = CLI_ST_END; |
| 2186 | free(cmsgbuf); |
| 2187 | free(tmpbuf); |
| 2188 | return 1; |
| 2189 | } |
| 2190 | |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2191 | static int cli_parse_simple(char **args, char *payload, struct appctx *appctx, void *private) |
| 2192 | { |
| 2193 | if (*args[0] == 'h') |
| 2194 | /* help */ |
Willy Tarreau | 0b1b830 | 2021-05-09 20:59:23 +0200 | [diff] [blame] | 2195 | cli_gen_usage_msg(appctx, args); |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2196 | else if (*args[0] == 'p') |
| 2197 | /* prompt */ |
Willy Tarreau | 2255557 | 2023-05-04 14:22:36 +0200 | [diff] [blame^] | 2198 | if (strcmp(args[1], "timed") == 0) { |
| 2199 | appctx->st1 |= APPCTX_CLI_ST1_PROMPT; |
| 2200 | appctx->st1 ^= APPCTX_CLI_ST1_TIMED; |
| 2201 | } |
| 2202 | else |
| 2203 | appctx->st1 ^= APPCTX_CLI_ST1_PROMPT; |
Christopher Faulet | 33af996 | 2023-04-07 17:58:21 +0200 | [diff] [blame] | 2204 | else if (*args[0] == 'q') { |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2205 | /* quit */ |
Christopher Faulet | 33af996 | 2023-04-07 17:58:21 +0200 | [diff] [blame] | 2206 | se_fl_set(appctx->sedesc, SE_FL_EOI); |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2207 | appctx->st0 = CLI_ST_END; |
Christopher Faulet | 33af996 | 2023-04-07 17:58:21 +0200 | [diff] [blame] | 2208 | } |
Aurélien Nephtali | abbf607 | 2018-04-18 13:26:46 +0200 | [diff] [blame] | 2209 | |
| 2210 | return 1; |
| 2211 | } |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 2212 | |
William Lallemand | 2f4ce20 | 2018-10-26 14:47:47 +0200 | [diff] [blame] | 2213 | void pcli_write_prompt(struct stream *s) |
| 2214 | { |
| 2215 | struct buffer *msg = get_trash_chunk(); |
Willy Tarreau | 40a9c32 | 2022-05-18 15:55:18 +0200 | [diff] [blame] | 2216 | struct channel *oc = sc_oc(s->scf); |
William Lallemand | 2f4ce20 | 2018-10-26 14:47:47 +0200 | [diff] [blame] | 2217 | |
William Lallemand | dc12c2e | 2018-12-13 09:05:46 +0100 | [diff] [blame] | 2218 | if (!(s->pcli_flags & PCLI_F_PROMPT)) |
William Lallemand | 5b80fa2 | 2018-12-11 16:10:54 +0100 | [diff] [blame] | 2219 | return; |
| 2220 | |
William Lallemand | dc12c2e | 2018-12-13 09:05:46 +0100 | [diff] [blame] | 2221 | if (s->pcli_flags & PCLI_F_PAYLOAD) { |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2222 | chunk_appendf(msg, "+ "); |
| 2223 | } else { |
| 2224 | if (s->pcli_next_pid == 0) |
William Lallemand | dae12c7 | 2022-02-02 14:13:54 +0100 | [diff] [blame] | 2225 | chunk_appendf(msg, "master%s", |
William Lallemand | 3ba7c7b | 2021-11-10 10:57:18 +0100 | [diff] [blame] | 2226 | (proc_self->failedreloads > 0) ? "[ReloadFailed]" : ""); |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2227 | else |
William Lallemand | dae12c7 | 2022-02-02 14:13:54 +0100 | [diff] [blame] | 2228 | chunk_appendf(msg, "%d", s->pcli_next_pid); |
| 2229 | |
| 2230 | if (s->pcli_flags & (ACCESS_EXPERIMENTAL|ACCESS_EXPERT|ACCESS_MCLI_DEBUG)) { |
| 2231 | chunk_appendf(msg, "("); |
| 2232 | |
| 2233 | if (s->pcli_flags & ACCESS_EXPERIMENTAL) |
| 2234 | chunk_appendf(msg, "x"); |
| 2235 | |
| 2236 | if (s->pcli_flags & ACCESS_EXPERT) |
| 2237 | chunk_appendf(msg, "e"); |
| 2238 | |
| 2239 | if (s->pcli_flags & ACCESS_MCLI_DEBUG) |
| 2240 | chunk_appendf(msg, "d"); |
| 2241 | |
| 2242 | chunk_appendf(msg, ")"); |
| 2243 | } |
| 2244 | |
| 2245 | chunk_appendf(msg, "> "); |
| 2246 | |
| 2247 | |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2248 | } |
William Lallemand | 2f4ce20 | 2018-10-26 14:47:47 +0200 | [diff] [blame] | 2249 | co_inject(oc, msg->area, msg->data); |
| 2250 | } |
| 2251 | |
William Lallemand | 291810d | 2018-10-26 14:47:38 +0200 | [diff] [blame] | 2252 | |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2253 | /* The pcli_* functions are used for the CLI proxy in the master */ |
| 2254 | |
William Lallemand | deeaa59 | 2018-10-26 14:47:48 +0200 | [diff] [blame] | 2255 | void pcli_reply_and_close(struct stream *s, const char *msg) |
| 2256 | { |
| 2257 | struct buffer *buf = get_trash_chunk(); |
| 2258 | |
| 2259 | chunk_initstr(buf, msg); |
Christopher Faulet | 9125f3c | 2022-03-31 09:47:24 +0200 | [diff] [blame] | 2260 | stream_retnclose(s, buf); |
William Lallemand | deeaa59 | 2018-10-26 14:47:48 +0200 | [diff] [blame] | 2261 | } |
| 2262 | |
William Lallemand | 291810d | 2018-10-26 14:47:38 +0200 | [diff] [blame] | 2263 | static enum obj_type *pcli_pid_to_server(int proc_pid) |
| 2264 | { |
| 2265 | struct mworker_proc *child; |
| 2266 | |
William Lallemand | 99e0bb9 | 2020-11-05 10:28:53 +0100 | [diff] [blame] | 2267 | /* return the mCLI applet of the master */ |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2268 | if (proc_pid == 0) |
William Lallemand | 99e0bb9 | 2020-11-05 10:28:53 +0100 | [diff] [blame] | 2269 | return &mcli_applet.obj_type; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2270 | |
William Lallemand | 291810d | 2018-10-26 14:47:38 +0200 | [diff] [blame] | 2271 | list_for_each_entry(child, &proc_list, list) { |
| 2272 | if (child->pid == proc_pid){ |
| 2273 | return &child->srv->obj_type; |
| 2274 | } |
| 2275 | } |
| 2276 | return NULL; |
| 2277 | } |
| 2278 | |
| 2279 | /* Take a CLI prefix in argument (eg: @!1234 @master @1) |
| 2280 | * Return: |
| 2281 | * 0: master |
| 2282 | * > 0: pid of a worker |
| 2283 | * < 0: didn't find a worker |
| 2284 | */ |
| 2285 | static int pcli_prefix_to_pid(const char *prefix) |
| 2286 | { |
| 2287 | int proc_pid; |
| 2288 | struct mworker_proc *child; |
| 2289 | char *errtol = NULL; |
| 2290 | |
| 2291 | if (*prefix != '@') /* not a prefix, should not happen */ |
| 2292 | return -1; |
| 2293 | |
| 2294 | prefix++; |
| 2295 | if (!*prefix) /* sent @ alone, return the master */ |
| 2296 | return 0; |
| 2297 | |
| 2298 | if (strcmp("master", prefix) == 0) { |
| 2299 | return 0; |
| 2300 | } else if (*prefix == '!') { |
| 2301 | prefix++; |
| 2302 | if (!*prefix) |
| 2303 | return -1; |
| 2304 | |
| 2305 | proc_pid = strtol(prefix, &errtol, 10); |
| 2306 | if (*errtol != '\0') |
| 2307 | return -1; |
| 2308 | list_for_each_entry(child, &proc_list, list) { |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 2309 | if (!(child->options & PROC_O_TYPE_WORKER)) |
William Lallemand | 16dd1b3 | 2018-11-19 18:46:18 +0100 | [diff] [blame] | 2310 | continue; |
William Lallemand | 291810d | 2018-10-26 14:47:38 +0200 | [diff] [blame] | 2311 | if (child->pid == proc_pid){ |
| 2312 | return child->pid; |
| 2313 | } |
| 2314 | } |
| 2315 | } else { |
| 2316 | struct mworker_proc *chosen = NULL; |
| 2317 | /* this is a relative pid */ |
| 2318 | |
| 2319 | proc_pid = strtol(prefix, &errtol, 10); |
| 2320 | if (*errtol != '\0') |
| 2321 | return -1; |
| 2322 | |
| 2323 | if (proc_pid == 0) /* return the master */ |
| 2324 | return 0; |
| 2325 | |
William Lallemand | bac3a82 | 2022-07-20 14:30:56 +0200 | [diff] [blame] | 2326 | if (proc_pid != 1) /* only the "@1" relative PID is supported */ |
| 2327 | return -1; |
| 2328 | |
William Lallemand | 291810d | 2018-10-26 14:47:38 +0200 | [diff] [blame] | 2329 | /* chose the right process, the current one is the one with the |
| 2330 | least number of reloads */ |
| 2331 | list_for_each_entry(child, &proc_list, list) { |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 2332 | if (!(child->options & PROC_O_TYPE_WORKER)) |
William Lallemand | 16dd1b3 | 2018-11-19 18:46:18 +0100 | [diff] [blame] | 2333 | continue; |
Willy Tarreau | e8422bf | 2021-06-15 09:08:18 +0200 | [diff] [blame] | 2334 | if (child->reloads == 0) |
| 2335 | return child->pid; |
| 2336 | else if (chosen == NULL || child->reloads < chosen->reloads) |
| 2337 | chosen = child; |
William Lallemand | 291810d | 2018-10-26 14:47:38 +0200 | [diff] [blame] | 2338 | } |
| 2339 | if (chosen) |
| 2340 | return chosen->pid; |
| 2341 | } |
| 2342 | return -1; |
| 2343 | } |
| 2344 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2345 | /* Return:: |
| 2346 | * >= 0 : number of words to escape |
| 2347 | * = -1 : error |
| 2348 | */ |
| 2349 | |
| 2350 | int pcli_find_and_exec_kw(struct stream *s, char **args, int argl, char **errmsg, int *next_pid) |
| 2351 | { |
| 2352 | if (argl < 1) |
| 2353 | return 0; |
| 2354 | |
| 2355 | /* there is a prefix */ |
| 2356 | if (args[0][0] == '@') { |
| 2357 | int target_pid = pcli_prefix_to_pid(args[0]); |
| 2358 | |
| 2359 | if (target_pid == -1) { |
| 2360 | memprintf(errmsg, "Can't find the target PID matching the prefix '%s'\n", args[0]); |
| 2361 | return -1; |
| 2362 | } |
| 2363 | |
| 2364 | /* if the prefix is alone, define a default target */ |
| 2365 | if (argl == 1) |
| 2366 | s->pcli_next_pid = target_pid; |
| 2367 | else |
| 2368 | *next_pid = target_pid; |
| 2369 | return 1; |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2370 | } else if (strcmp("prompt", args[0]) == 0) { |
William Lallemand | dc12c2e | 2018-12-13 09:05:46 +0100 | [diff] [blame] | 2371 | s->pcli_flags ^= PCLI_F_PROMPT; |
William Lallemand | 5b80fa2 | 2018-12-11 16:10:54 +0100 | [diff] [blame] | 2372 | return argl; /* return the number of elements in the array */ |
William Lallemand | 5f61068 | 2018-12-11 16:10:55 +0100 | [diff] [blame] | 2373 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2374 | } else if (strcmp("quit", args[0]) == 0) { |
Christopher Faulet | 12762f0 | 2023-04-13 15:40:10 +0200 | [diff] [blame] | 2375 | sc_schedule_abort(s->scf); |
Christopher Faulet | df7cd71 | 2023-04-13 15:56:26 +0200 | [diff] [blame] | 2376 | sc_schedule_shutdown(s->scf); |
William Lallemand | 5f61068 | 2018-12-11 16:10:55 +0100 | [diff] [blame] | 2377 | return argl; /* return the number of elements in the array */ |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2378 | } else if (strcmp(args[0], "operator") == 0) { |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2379 | if (!pcli_has_level(s, ACCESS_LVL_OPER)) { |
| 2380 | memprintf(errmsg, "Permission denied!\n"); |
| 2381 | return -1; |
| 2382 | } |
| 2383 | s->pcli_flags &= ~ACCESS_LVL_MASK; |
| 2384 | s->pcli_flags |= ACCESS_LVL_OPER; |
| 2385 | return argl; |
| 2386 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 2387 | } else if (strcmp(args[0], "user") == 0) { |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2388 | if (!pcli_has_level(s, ACCESS_LVL_USER)) { |
| 2389 | memprintf(errmsg, "Permission denied!\n"); |
| 2390 | return -1; |
| 2391 | } |
| 2392 | s->pcli_flags &= ~ACCESS_LVL_MASK; |
| 2393 | s->pcli_flags |= ACCESS_LVL_USER; |
| 2394 | return argl; |
William Lallemand | 7267f78 | 2022-02-01 16:08:50 +0100 | [diff] [blame] | 2395 | |
| 2396 | } else if (strcmp(args[0], "expert-mode") == 0) { |
| 2397 | if (!pcli_has_level(s, ACCESS_LVL_ADMIN)) { |
| 2398 | memprintf(errmsg, "Permission denied!\n"); |
| 2399 | return -1; |
| 2400 | } |
| 2401 | |
| 2402 | s->pcli_flags &= ~ACCESS_EXPERT; |
| 2403 | if ((argl > 1) && (strcmp(args[1], "on") == 0)) |
| 2404 | s->pcli_flags |= ACCESS_EXPERT; |
| 2405 | return argl; |
| 2406 | |
| 2407 | } else if (strcmp(args[0], "experimental-mode") == 0) { |
| 2408 | if (!pcli_has_level(s, ACCESS_LVL_ADMIN)) { |
| 2409 | memprintf(errmsg, "Permission denied!\n"); |
| 2410 | return -1; |
| 2411 | } |
| 2412 | s->pcli_flags &= ~ACCESS_EXPERIMENTAL; |
| 2413 | if ((argl > 1) && (strcmp(args[1], "on") == 0)) |
| 2414 | s->pcli_flags |= ACCESS_EXPERIMENTAL; |
| 2415 | return argl; |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 2416 | } else if (strcmp(args[0], "mcli-debug-mode") == 0) { |
| 2417 | if (!pcli_has_level(s, ACCESS_LVL_ADMIN)) { |
| 2418 | memprintf(errmsg, "Permission denied!\n"); |
| 2419 | return -1; |
| 2420 | } |
| 2421 | s->pcli_flags &= ~ACCESS_MCLI_DEBUG; |
| 2422 | if ((argl > 1) && (strcmp(args[1], "on") == 0)) |
| 2423 | s->pcli_flags |= ACCESS_MCLI_DEBUG; |
| 2424 | return argl; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2425 | } |
| 2426 | |
| 2427 | return 0; |
| 2428 | } |
| 2429 | |
| 2430 | /* |
| 2431 | * Parse the CLI request: |
| 2432 | * - It does basically the same as the cli_io_handler, but as a proxy |
| 2433 | * - It can exec a command and strip non forwardable commands |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2434 | * |
| 2435 | * Return: |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2436 | * - the number of characters to forward or |
| 2437 | * - 1 if there is an error or not enough data |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2438 | */ |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2439 | 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] | 2440 | { |
Willy Tarreau | a4e4d66 | 2022-01-20 08:47:35 +0100 | [diff] [blame] | 2441 | char *str; |
| 2442 | char *end; |
Willy Tarreau | f14c757 | 2021-03-13 10:59:23 +0100 | [diff] [blame] | 2443 | char *args[MAX_CLI_ARGS + 1]; /* +1 for storing a NULL */ |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2444 | int argl; /* number of args */ |
| 2445 | char *p; |
| 2446 | char *trim = NULL; |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2447 | char *payload = NULL; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2448 | int wtrim = 0; /* number of words to trim */ |
| 2449 | int reql = 0; |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2450 | int ret; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2451 | int i = 0; |
| 2452 | |
Willy Tarreau | a4e4d66 | 2022-01-20 08:47:35 +0100 | [diff] [blame] | 2453 | /* we cannot deal with a wrapping buffer, so let's take care of this |
| 2454 | * first. |
| 2455 | */ |
| 2456 | if (b_head(&req->buf) + b_data(&req->buf) > b_wrap(&req->buf)) |
| 2457 | b_slow_realign(&req->buf, trash.area, co_data(req)); |
| 2458 | |
| 2459 | str = (char *)ci_head(req); |
| 2460 | end = (char *)ci_stop(req); |
| 2461 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2462 | p = str; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2463 | |
William Lallemand | dc12c2e | 2018-12-13 09:05:46 +0100 | [diff] [blame] | 2464 | if (!(s->pcli_flags & PCLI_F_PAYLOAD)) { |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2465 | |
| 2466 | /* Looks for the end of one command */ |
| 2467 | while (p+reql < end) { |
| 2468 | /* handle escaping */ |
| 2469 | if (p[reql] == '\\') { |
William Lallemand | 02c255e | 2020-06-18 18:45:04 +0200 | [diff] [blame] | 2470 | reql+=2; |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2471 | continue; |
| 2472 | } |
| 2473 | if (p[reql] == ';' || p[reql] == '\n') { |
| 2474 | /* found the end of the command */ |
| 2475 | p[reql] = '\n'; |
| 2476 | reql++; |
| 2477 | break; |
| 2478 | } |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2479 | reql++; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2480 | } |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2481 | } else { |
| 2482 | while (p+reql < end) { |
| 2483 | if (p[reql] == '\n') { |
| 2484 | /* found the end of the line */ |
| 2485 | reql++; |
| 2486 | break; |
| 2487 | } |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2488 | reql++; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2489 | } |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2490 | } |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2491 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2492 | /* set end to first byte after the end of the command */ |
| 2493 | end = p + reql; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2494 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2495 | /* there is no end to this command, need more to parse ! */ |
Willy Tarreau | 6cd93f5 | 2022-01-20 08:31:50 +0100 | [diff] [blame] | 2496 | if (!reql || *(end-1) != '\n') { |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2497 | return -1; |
| 2498 | } |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2499 | |
William Lallemand | 3301f3e | 2018-12-13 09:05:48 +0100 | [diff] [blame] | 2500 | if (s->pcli_flags & PCLI_F_PAYLOAD) { |
| 2501 | if (reql == 1) /* last line of the payload */ |
| 2502 | s->pcli_flags &= ~PCLI_F_PAYLOAD; |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2503 | return reql; |
| 2504 | } |
| 2505 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2506 | *(end-1) = '\0'; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2507 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2508 | /* splits the command in words */ |
Willy Tarreau | f14c757 | 2021-03-13 10:59:23 +0100 | [diff] [blame] | 2509 | while (i < MAX_CLI_ARGS && p < end) { |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2510 | /* skip leading spaces/tabs */ |
| 2511 | p += strspn(p, " \t"); |
| 2512 | if (!*p) |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2513 | break; |
| 2514 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2515 | args[i] = p; |
William Lallemand | fe249c3 | 2020-06-18 18:03:57 +0200 | [diff] [blame] | 2516 | while (1) { |
| 2517 | p += strcspn(p, " \t\\"); |
| 2518 | /* escaped chars using backlashes (\) */ |
| 2519 | if (*p == '\\') { |
| 2520 | if (!*++p) |
| 2521 | break; |
| 2522 | if (!*++p) |
| 2523 | break; |
| 2524 | } else { |
| 2525 | break; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2526 | } |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2527 | } |
William Lallemand | fe249c3 | 2020-06-18 18:03:57 +0200 | [diff] [blame] | 2528 | *p++ = 0; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2529 | i++; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2530 | } |
| 2531 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2532 | argl = i; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2533 | |
Willy Tarreau | f14c757 | 2021-03-13 10:59:23 +0100 | [diff] [blame] | 2534 | for (; i < MAX_CLI_ARGS + 1; i++) |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2535 | args[i] = NULL; |
| 2536 | |
| 2537 | wtrim = pcli_find_and_exec_kw(s, args, argl, errmsg, next_pid); |
| 2538 | |
| 2539 | /* 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] | 2540 | before forwarding them */ |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2541 | p = str; |
William Lallemand | 3301f3e | 2018-12-13 09:05:48 +0100 | [diff] [blame] | 2542 | while (p < end-1) { |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2543 | if (*p == '\0') |
| 2544 | *p = ' '; |
| 2545 | p++; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2546 | } |
| 2547 | |
William Lallemand | 3301f3e | 2018-12-13 09:05:48 +0100 | [diff] [blame] | 2548 | payload = strstr(str, PAYLOAD_PATTERN); |
| 2549 | if ((end - 1) == (payload + strlen(PAYLOAD_PATTERN))) { |
| 2550 | /* if the payload pattern is at the end */ |
| 2551 | s->pcli_flags |= PCLI_F_PAYLOAD; |
William Lallemand | 3301f3e | 2018-12-13 09:05:48 +0100 | [diff] [blame] | 2552 | } |
| 2553 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2554 | *(end-1) = '\n'; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2555 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2556 | if (wtrim > 0) { |
| 2557 | trim = &args[wtrim][0]; |
| 2558 | if (trim == NULL) /* if this was the last word in the table */ |
| 2559 | trim = end; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2560 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2561 | b_del(&req->buf, trim - str); |
| 2562 | |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2563 | ret = end - trim; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2564 | } else if (wtrim < 0) { |
| 2565 | /* parsing error */ |
| 2566 | return -1; |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2567 | } else { |
| 2568 | /* the whole string */ |
| 2569 | ret = end - str; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2570 | } |
| 2571 | |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2572 | if (ret > 1) { |
William Lallemand | 2a17191 | 2022-02-02 11:43:20 +0100 | [diff] [blame] | 2573 | |
| 2574 | /* the mcli-debug-mode is only sent to the applet of the master */ |
| 2575 | if ((s->pcli_flags & ACCESS_MCLI_DEBUG) && *next_pid <= 0) { |
| 2576 | ci_insert_line2(req, 0, "mcli-debug-mode on -", strlen("mcli-debug-mode on -")); |
| 2577 | ret += strlen("mcli-debug-mode on -") + 2; |
| 2578 | } |
William Lallemand | 7267f78 | 2022-02-01 16:08:50 +0100 | [diff] [blame] | 2579 | if (s->pcli_flags & ACCESS_EXPERIMENTAL) { |
| 2580 | ci_insert_line2(req, 0, "experimental-mode on -", strlen("experimental-mode on -")); |
| 2581 | ret += strlen("experimental-mode on -") + 2; |
| 2582 | } |
| 2583 | if (s->pcli_flags & ACCESS_EXPERT) { |
| 2584 | ci_insert_line2(req, 0, "expert-mode on -", strlen("expert-mode on -")); |
| 2585 | ret += strlen("expert-mode on -") + 2; |
| 2586 | } |
| 2587 | |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2588 | if (pcli_has_level(s, ACCESS_LVL_ADMIN)) { |
| 2589 | goto end; |
| 2590 | } else if (pcli_has_level(s, ACCESS_LVL_OPER)) { |
William Lallemand | ad03288 | 2019-07-01 10:56:15 +0200 | [diff] [blame] | 2591 | ci_insert_line2(req, 0, "operator -", strlen("operator -")); |
| 2592 | ret += strlen("operator -") + 2; |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2593 | } else if (pcli_has_level(s, ACCESS_LVL_USER)) { |
William Lallemand | ad03288 | 2019-07-01 10:56:15 +0200 | [diff] [blame] | 2594 | ci_insert_line2(req, 0, "user -", strlen("user -")); |
| 2595 | ret += strlen("user -") + 2; |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2596 | } |
| 2597 | } |
| 2598 | end: |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2599 | |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2600 | return ret; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2601 | } |
| 2602 | |
| 2603 | int pcli_wait_for_request(struct stream *s, struct channel *req, int an_bit) |
| 2604 | { |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2605 | int next_pid = -1; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2606 | int to_forward; |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2607 | char *errmsg = NULL; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2608 | |
Ilya Shipitsin | 5e87bcf | 2021-12-25 11:45:52 +0500 | [diff] [blame] | 2609 | /* 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] | 2610 | * current one. Just wait. At this stage, errors should be handled by |
| 2611 | * the response analyzer. |
| 2612 | */ |
| 2613 | if (s->res.analysers & AN_RES_WAIT_CLI) |
| 2614 | return 0; |
| 2615 | |
William Lallemand | b7ea141 | 2018-12-13 09:05:47 +0100 | [diff] [blame] | 2616 | if ((s->pcli_flags & ACCESS_LVL_MASK) == ACCESS_LVL_NONE) |
| 2617 | s->pcli_flags |= strm_li(s)->bind_conf->level & ACCESS_LVL_MASK; |
| 2618 | |
William Lallemand | 0a0512f | 2022-09-24 16:14:50 +0200 | [diff] [blame] | 2619 | /* stream that comes from the reload listener only responses the reload |
| 2620 | * status and quits */ |
| 2621 | if (!(s->pcli_flags & PCLI_F_RELOAD) |
| 2622 | && strm_li(s)->bind_conf == mcli_reload_bind_conf) |
| 2623 | goto send_status; |
| 2624 | |
| 2625 | |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2626 | read_again: |
| 2627 | /* if the channel is closed for read, we won't receive any more data |
| 2628 | from the client, but we don't want to forward this close to the |
| 2629 | server */ |
| 2630 | channel_dont_close(req); |
| 2631 | |
| 2632 | /* We don't know yet to which server we will connect */ |
| 2633 | channel_dont_connect(req); |
| 2634 | |
Christopher Faulet | 9a790f6 | 2023-03-16 14:40:03 +0100 | [diff] [blame] | 2635 | s->scf->flags |= SC_FL_RCV_ONCE; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2636 | |
| 2637 | /* need more data */ |
| 2638 | if (!ci_data(req)) |
Christopher Faulet | 0f727da | 2022-01-18 08:44:23 +0100 | [diff] [blame] | 2639 | goto missing_data; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2640 | |
| 2641 | /* If there is data available for analysis, log the end of the idle time. */ |
| 2642 | if (c_data(req) && s->logs.t_idle == -1) |
Willy Tarreau | 69530f5 | 2023-04-28 09:16:15 +0200 | [diff] [blame] | 2643 | 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] | 2644 | |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2645 | to_forward = pcli_parse_request(s, req, &errmsg, &next_pid); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2646 | if (to_forward > 0) { |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2647 | int target_pid; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2648 | /* enough data */ |
| 2649 | |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2650 | /* forward only 1 command */ |
| 2651 | channel_forward(req, to_forward); |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2652 | |
William Lallemand | dc12c2e | 2018-12-13 09:05:46 +0100 | [diff] [blame] | 2653 | if (!(s->pcli_flags & PCLI_F_PAYLOAD)) { |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2654 | /* 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] | 2655 | sc_schedule_shutdown(s->scb); |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2656 | } else { |
| 2657 | pcli_write_prompt(s); |
| 2658 | } |
| 2659 | |
| 2660 | s->res.flags |= CF_WAKE_ONCE; /* need to be called again */ |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2661 | s->res.analysers |= AN_RES_WAIT_CLI; |
| 2662 | |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2663 | if (!(s->flags & SF_ASSIGNED)) { |
| 2664 | if (next_pid > -1) |
| 2665 | target_pid = next_pid; |
| 2666 | else |
| 2667 | target_pid = s->pcli_next_pid; |
| 2668 | /* we can connect now */ |
| 2669 | s->target = pcli_pid_to_server(target_pid); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2670 | |
William Lallemand | dcbe7b9 | 2021-12-10 14:14:53 +0100 | [diff] [blame] | 2671 | if (!s->target) |
| 2672 | goto server_disconnect; |
| 2673 | |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2674 | s->flags |= (SF_DIRECT | SF_ASSIGNED); |
| 2675 | channel_auto_connect(req); |
| 2676 | } |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2677 | |
| 2678 | } else if (to_forward == 0) { |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2679 | /* we trimmed things but we might have other commands to consume */ |
William Lallemand | bddd33a | 2018-12-11 16:10:53 +0100 | [diff] [blame] | 2680 | pcli_write_prompt(s); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2681 | goto read_again; |
Christopher Faulet | 0f727da | 2022-01-18 08:44:23 +0100 | [diff] [blame] | 2682 | } else if (to_forward == -1) { |
| 2683 | if (errmsg) { |
| 2684 | /* there was an error during the parsing */ |
| 2685 | pcli_reply_and_close(s, errmsg); |
| 2686 | s->req.analysers &= ~AN_REQ_WAIT_CLI; |
| 2687 | return 0; |
| 2688 | } |
| 2689 | goto missing_data; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2690 | } |
| 2691 | |
| 2692 | return 0; |
| 2693 | |
| 2694 | send_help: |
| 2695 | b_reset(&req->buf); |
| 2696 | b_putblk(&req->buf, "help\n", 5); |
| 2697 | goto read_again; |
William Lallemand | dcbe7b9 | 2021-12-10 14:14:53 +0100 | [diff] [blame] | 2698 | |
William Lallemand | 0a0512f | 2022-09-24 16:14:50 +0200 | [diff] [blame] | 2699 | send_status: |
| 2700 | s->pcli_flags |= PCLI_F_RELOAD; |
Willy Tarreau | dd9f921 | 2023-05-07 07:07:44 +0200 | [diff] [blame] | 2701 | /* 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] | 2702 | b_reset(&req->buf); |
| 2703 | b_putblk(&req->buf, "_loadstatus;quit\n", 17); |
| 2704 | goto read_again; |
| 2705 | |
Christopher Faulet | 0f727da | 2022-01-18 08:44:23 +0100 | [diff] [blame] | 2706 | missing_data: |
Christopher Faulet | ca5309a | 2023-04-17 16:17:32 +0200 | [diff] [blame] | 2707 | if (s->scf->flags & (SC_FL_ABRT_DONE|SC_FL_EOS)) { |
Christopher Faulet | 0f727da | 2022-01-18 08:44:23 +0100 | [diff] [blame] | 2708 | /* There is no more request or a only a partial one and we |
| 2709 | * receive a close from the client, we can leave */ |
Christopher Faulet | df7cd71 | 2023-04-13 15:56:26 +0200 | [diff] [blame] | 2710 | sc_schedule_shutdown(s->scf); |
Christopher Faulet | 0f727da | 2022-01-18 08:44:23 +0100 | [diff] [blame] | 2711 | s->req.analysers &= ~AN_REQ_WAIT_CLI; |
| 2712 | return 1; |
| 2713 | } |
| 2714 | else if (channel_full(req, global.tune.maxrewrite)) { |
| 2715 | /* buffer is full and we didn't catch the end of a command */ |
| 2716 | goto send_help; |
| 2717 | } |
| 2718 | return 0; |
| 2719 | |
William Lallemand | dcbe7b9 | 2021-12-10 14:14:53 +0100 | [diff] [blame] | 2720 | server_disconnect: |
| 2721 | pcli_reply_and_close(s, "Can't connect to the target CLI!\n"); |
| 2722 | return 0; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2723 | } |
| 2724 | |
| 2725 | int pcli_wait_for_response(struct stream *s, struct channel *rep, int an_bit) |
| 2726 | { |
| 2727 | struct proxy *fe = strm_fe(s); |
| 2728 | struct proxy *be = s->be; |
| 2729 | |
Christopher Faulet | d7bac88 | 2023-04-14 12:05:55 +0200 | [diff] [blame] | 2730 | 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] | 2731 | ((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] | 2732 | 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] | 2733 | s->req.analysers &= ~AN_REQ_WAIT_CLI; |
William Lallemand | 6b7cd0a | 2018-11-06 17:37:11 +0100 | [diff] [blame] | 2734 | s->res.analysers &= ~AN_RES_WAIT_CLI; |
| 2735 | return 0; |
| 2736 | } |
Christopher Faulet | 9a790f6 | 2023-03-16 14:40:03 +0100 | [diff] [blame] | 2737 | 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] | 2738 | s->scf->flags |= SC_FL_SND_NEVERWAIT; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2739 | |
| 2740 | /* don't forward the close */ |
| 2741 | channel_dont_close(&s->res); |
| 2742 | channel_dont_close(&s->req); |
| 2743 | |
William Lallemand | dc12c2e | 2018-12-13 09:05:46 +0100 | [diff] [blame] | 2744 | if (s->pcli_flags & PCLI_F_PAYLOAD) { |
William Lallemand | ebf6180 | 2018-12-11 16:10:57 +0100 | [diff] [blame] | 2745 | s->res.analysers &= ~AN_RES_WAIT_CLI; |
| 2746 | s->req.flags |= CF_WAKE_ONCE; /* need to be called again if there is some command left in the request */ |
| 2747 | return 0; |
| 2748 | } |
| 2749 | |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2750 | /* forward the data */ |
| 2751 | if (ci_data(rep)) { |
| 2752 | c_adv(rep, ci_data(rep)); |
| 2753 | return 0; |
| 2754 | } |
| 2755 | |
Christopher Faulet | ca5309a | 2023-04-17 16:17:32 +0200 | [diff] [blame] | 2756 | if (s->scb->flags & (SC_FL_ABRT_DONE|SC_FL_EOS)) { |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2757 | /* stream cleanup */ |
| 2758 | |
William Lallemand | 2f4ce20 | 2018-10-26 14:47:47 +0200 | [diff] [blame] | 2759 | pcli_write_prompt(s); |
| 2760 | |
Willy Tarreau | cb04166 | 2022-05-17 19:44:42 +0200 | [diff] [blame] | 2761 | s->scb->flags |= SC_FL_NOLINGER | SC_FL_NOHALF; |
Christopher Faulet | cfc11c0 | 2023-04-13 16:10:23 +0200 | [diff] [blame] | 2762 | sc_abort(s->scb); |
Christopher Faulet | b2b1c3a | 2023-04-13 16:23:48 +0200 | [diff] [blame] | 2763 | sc_shutdown(s->scb); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2764 | |
| 2765 | /* |
| 2766 | * starting from there this the same code as |
| 2767 | * http_end_txn_clean_session(). |
| 2768 | * |
| 2769 | * It allows to do frontend keepalive while reconnecting to a |
| 2770 | * new server for each request. |
| 2771 | */ |
| 2772 | |
| 2773 | if (s->flags & SF_BE_ASSIGNED) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2774 | HA_ATOMIC_DEC(&be->beconn); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2775 | if (unlikely(s->srv_conn)) |
| 2776 | sess_change_server(s, NULL); |
| 2777 | } |
| 2778 | |
Willy Tarreau | 69530f5 | 2023-04-28 09:16:15 +0200 | [diff] [blame] | 2779 | 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] | 2780 | stream_process_counters(s); |
| 2781 | |
| 2782 | /* don't count other requests' data */ |
| 2783 | s->logs.bytes_in -= ci_data(&s->req); |
| 2784 | s->logs.bytes_out -= ci_data(&s->res); |
| 2785 | |
| 2786 | /* we may need to know the position in the queue */ |
| 2787 | pendconn_free(s); |
| 2788 | |
| 2789 | /* let's do a final log if we need it */ |
| 2790 | if (!LIST_ISEMPTY(&fe->logformat) && s->logs.logwait && |
| 2791 | !(s->flags & SF_MONITOR) && |
| 2792 | (!(fe->options & PR_O_NULLNOLOG) || s->req.total)) { |
| 2793 | s->do_log(s); |
| 2794 | } |
| 2795 | |
| 2796 | /* stop tracking content-based counters */ |
| 2797 | stream_stop_content_counters(s); |
| 2798 | stream_update_time_stats(s); |
| 2799 | |
| 2800 | s->logs.accept_date = date; /* user-visible date for logging */ |
Willy Tarreau | 69530f5 | 2023-04-28 09:16:15 +0200 | [diff] [blame] | 2801 | s->logs.accept_ts = now_ns; /* corrected date for internal use */ |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2802 | s->logs.t_handshake = 0; /* There are no handshake in keep alive connection. */ |
| 2803 | s->logs.t_idle = -1; |
Willy Tarreau | ad5a5f6 | 2023-04-27 09:46:02 +0200 | [diff] [blame] | 2804 | s->logs.request_ts = 0; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2805 | s->logs.t_queue = -1; |
| 2806 | s->logs.t_connect = -1; |
| 2807 | s->logs.t_data = -1; |
| 2808 | s->logs.t_close = 0; |
| 2809 | s->logs.prx_queue_pos = 0; /* we get the number of pending conns before us */ |
| 2810 | s->logs.srv_queue_pos = 0; /* we will get this number soon */ |
| 2811 | |
| 2812 | s->logs.bytes_in = s->req.total = ci_data(&s->req); |
| 2813 | s->logs.bytes_out = s->res.total = ci_data(&s->res); |
| 2814 | |
| 2815 | stream_del_srv_conn(s); |
| 2816 | if (objt_server(s->target)) { |
| 2817 | if (s->flags & SF_CURR_SESS) { |
| 2818 | s->flags &= ~SF_CURR_SESS; |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 2819 | HA_ATOMIC_DEC(&__objt_server(s->target)->cur_sess); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2820 | } |
Willy Tarreau | b54c40a | 2018-12-02 19:28:41 +0100 | [diff] [blame] | 2821 | if (may_dequeue_tasks(__objt_server(s->target), be)) |
Willy Tarreau | 9ab7829 | 2021-06-22 18:47:51 +0200 | [diff] [blame] | 2822 | process_srv_queue(__objt_server(s->target)); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2823 | } |
| 2824 | |
| 2825 | s->target = NULL; |
| 2826 | |
| 2827 | /* only release our endpoint if we don't intend to reuse the |
| 2828 | * connection. |
| 2829 | */ |
Willy Tarreau | 462b989 | 2022-05-18 18:06:53 +0200 | [diff] [blame] | 2830 | if (!sc_conn_ready(s->scb)) { |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2831 | s->srv_conn = NULL; |
Willy Tarreau | 19c65a9 | 2022-05-27 08:49:24 +0200 | [diff] [blame] | 2832 | if (sc_reset_endp(s->scb) < 0) { |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2833 | if (!s->conn_err_type) |
| 2834 | s->conn_err_type = STRM_ET_CONN_OTHER; |
Christopher Faulet | 9ec2f4d | 2022-03-23 15:15:29 +0100 | [diff] [blame] | 2835 | if (s->srv_error) |
Willy Tarreau | 7cb9e6c | 2022-05-17 19:40:40 +0200 | [diff] [blame] | 2836 | s->srv_error(s, s->scb); |
Christopher Faulet | 9ec2f4d | 2022-03-23 15:15:29 +0100 | [diff] [blame] | 2837 | return 1; |
| 2838 | } |
Willy Tarreau | 7cb9e6c | 2022-05-17 19:40:40 +0200 | [diff] [blame] | 2839 | se_fl_clr(s->scb->sedesc, ~SE_FL_DETACHED); |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2840 | } |
| 2841 | |
Willy Tarreau | 7cb9e6c | 2022-05-17 19:40:40 +0200 | [diff] [blame] | 2842 | sockaddr_free(&s->scb->dst); |
Willy Tarreau | 1c8d32b | 2019-07-18 15:47:45 +0200 | [diff] [blame] | 2843 | |
Willy Tarreau | 74568cf | 2022-05-27 09:03:30 +0200 | [diff] [blame] | 2844 | sc_set_state(s->scb, SC_ST_INI); |
Christopher Faulet | a1d14a7 | 2023-04-14 10:42:08 +0200 | [diff] [blame] | 2845 | 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] | 2846 | 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] | 2847 | |
| 2848 | s->req.flags &= ~(CF_AUTO_CONNECT|CF_STREAMER|CF_STREAMER_FAST|CF_WROTE_DATA); |
| 2849 | 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] | 2850 | 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] | 2851 | s->flags &= ~(SF_CURR_SESS|SF_REDIRECTABLE|SF_SRV_REUSED); |
| 2852 | s->flags &= ~(SF_ERR_MASK|SF_FINST_MASK|SF_REDISP); |
Christopher Faulet | 909f318 | 2022-03-29 15:42:09 +0200 | [diff] [blame] | 2853 | s->conn_retries = 0; /* used for logging too */ |
Christopher Faulet | ae024ce | 2022-03-29 19:02:31 +0200 | [diff] [blame] | 2854 | s->conn_exp = TICK_ETERNITY; |
Christopher Faulet | 50264b4 | 2022-03-30 19:39:30 +0200 | [diff] [blame] | 2855 | s->conn_err_type = STRM_ET_NONE; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2856 | /* reinitialise the current rule list pointer to NULL. We are sure that |
| 2857 | * any rulelist match the NULL pointer. |
| 2858 | */ |
| 2859 | s->current_rule_list = NULL; |
| 2860 | |
| 2861 | s->be = strm_fe(s); |
| 2862 | s->logs.logwait = strm_fe(s)->to_log; |
| 2863 | s->logs.level = 0; |
| 2864 | stream_del_srv_conn(s); |
| 2865 | s->target = NULL; |
| 2866 | /* re-init store persistence */ |
| 2867 | s->store_count = 0; |
| 2868 | s->uniq_id = global.req_count++; |
| 2869 | |
Christopher Faulet | ca5309a | 2023-04-17 16:17:32 +0200 | [diff] [blame] | 2870 | 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] | 2871 | s->scf->flags &= ~SC_FL_SND_NEVERWAIT; |
Christopher Faulet | 9a790f6 | 2023-03-16 14:40:03 +0100 | [diff] [blame] | 2872 | s->scf->flags |= SC_FL_RCV_ONCE; /* one read is usually enough */ |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2873 | |
| 2874 | s->req.flags |= CF_WAKE_ONCE; /* need to be called again if there is some command left in the request */ |
| 2875 | |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2876 | s->res.analysers &= ~AN_RES_WAIT_CLI; |
| 2877 | |
| 2878 | /* We must trim any excess data from the response buffer, because we |
| 2879 | * 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] | 2880 | * want to accidentally forward once we disable the analysers, nor do |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2881 | * we want those data to come along with next response. A typical |
| 2882 | * example of such data would be from a buggy server responding to |
| 2883 | * a HEAD with some data, or sending more than the advertised |
| 2884 | * content-length. |
| 2885 | */ |
| 2886 | if (unlikely(ci_data(&s->res))) |
| 2887 | b_set_data(&s->res.buf, co_data(&s->res)); |
| 2888 | |
| 2889 | /* Now we can realign the response buffer */ |
| 2890 | c_realign_if_empty(&s->res); |
| 2891 | |
Christopher Faulet | 5aaacfb | 2023-02-15 08:13:33 +0100 | [diff] [blame] | 2892 | s->scf->ioto = strm_fe(s)->timeout.client; |
| 2893 | s->scb->ioto = TICK_ETERNITY; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2894 | |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2895 | s->req.analyse_exp = TICK_ETERNITY; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2896 | s->res.analyse_exp = TICK_ETERNITY; |
Christopher Faulet | 15315d6 | 2023-02-20 08:23:51 +0100 | [diff] [blame] | 2897 | |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2898 | /* we're removing the analysers, we MUST re-enable events detection. |
| 2899 | * We don't enable close on the response channel since it's either |
| 2900 | * already closed, or in keep-alive with an idle connection handler. |
| 2901 | */ |
| 2902 | channel_auto_read(&s->req); |
| 2903 | channel_auto_close(&s->req); |
| 2904 | channel_auto_read(&s->res); |
| 2905 | |
| 2906 | |
| 2907 | return 1; |
| 2908 | } |
| 2909 | return 0; |
| 2910 | } |
| 2911 | |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 2912 | /* |
| 2913 | * The mworker functions are used to initialize the CLI in the master process |
| 2914 | */ |
| 2915 | |
William Lallemand | 309dc9a | 2018-10-26 14:47:45 +0200 | [diff] [blame] | 2916 | /* |
| 2917 | * Stop the mworker proxy |
| 2918 | */ |
| 2919 | void mworker_cli_proxy_stop() |
| 2920 | { |
William Lallemand | 550db6d | 2018-11-06 17:37:12 +0100 | [diff] [blame] | 2921 | if (mworker_proxy) |
| 2922 | stop_proxy(mworker_proxy); |
William Lallemand | 309dc9a | 2018-10-26 14:47:45 +0200 | [diff] [blame] | 2923 | } |
| 2924 | |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 2925 | /* |
| 2926 | * Create the mworker CLI proxy |
| 2927 | */ |
| 2928 | int mworker_cli_proxy_create() |
| 2929 | { |
| 2930 | struct mworker_proc *child; |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 2931 | char *msg = NULL; |
| 2932 | char *errmsg = NULL; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 2933 | |
William Lallemand | ae787ba | 2021-07-29 15:13:22 +0200 | [diff] [blame] | 2934 | 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] | 2935 | if (!mworker_proxy) |
William Lallemand | ae787ba | 2021-07-29 15:13:22 +0200 | [diff] [blame] | 2936 | goto error_proxy; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 2937 | |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2938 | mworker_proxy->mode = PR_MODE_CLI; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 2939 | mworker_proxy->maxconn = 10; /* default to 10 concurrent connections */ |
| 2940 | mworker_proxy->timeout.client = 0; /* no timeout */ |
| 2941 | mworker_proxy->conf.file = strdup("MASTER"); |
| 2942 | mworker_proxy->conf.line = 0; |
| 2943 | mworker_proxy->accept = frontend_accept; |
| 2944 | mworker_proxy-> lbprm.algo = BE_LB_ALGO_NONE; |
| 2945 | |
| 2946 | /* Does not init the default target the CLI applet, but must be done in |
| 2947 | * the request parsing code */ |
| 2948 | mworker_proxy->default_target = NULL; |
| 2949 | |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 2950 | /* create all servers using the mworker_proc list */ |
| 2951 | list_for_each_entry(child, &proc_list, list) { |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 2952 | struct server *newsrv = NULL; |
| 2953 | struct sockaddr_storage *sk; |
| 2954 | int port1, port2, port; |
| 2955 | struct protocol *proto; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 2956 | |
William Lallemand | a31b09e | 2020-01-14 15:25:02 +0100 | [diff] [blame] | 2957 | /* only the workers support the master CLI */ |
| 2958 | if (!(child->options & PROC_O_TYPE_WORKER)) |
| 2959 | continue; |
| 2960 | |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 2961 | newsrv = new_server(mworker_proxy); |
| 2962 | if (!newsrv) |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 2963 | goto error; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 2964 | |
| 2965 | /* we don't know the new pid yet */ |
| 2966 | if (child->pid == -1) |
Willy Tarreau | e8422bf | 2021-06-15 09:08:18 +0200 | [diff] [blame] | 2967 | memprintf(&msg, "cur-%d", 1); |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 2968 | else |
| 2969 | memprintf(&msg, "old-%d", child->pid); |
| 2970 | |
| 2971 | newsrv->next = mworker_proxy->srv; |
| 2972 | mworker_proxy->srv = newsrv; |
| 2973 | newsrv->conf.file = strdup(msg); |
| 2974 | newsrv->id = strdup(msg); |
| 2975 | newsrv->conf.line = 0; |
| 2976 | |
| 2977 | memprintf(&msg, "sockpair@%d", child->ipc_fd[0]); |
Willy Tarreau | 5fc9328 | 2020-09-16 18:25:03 +0200 | [diff] [blame] | 2978 | if ((sk = str2sa_range(msg, &port, &port1, &port2, NULL, &proto, |
Willy Tarreau | a93e5c7 | 2020-09-15 14:01:16 +0200 | [diff] [blame] | 2979 | &errmsg, NULL, NULL, PA_O_STREAM)) == 0) { |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 2980 | goto error; |
Tim Duesterhus | 4cae3b2 | 2018-11-22 16:46:50 +0100 | [diff] [blame] | 2981 | } |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 2982 | ha_free(&msg); |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 2983 | |
Willy Tarreau | 5fc9328 | 2020-09-16 18:25:03 +0200 | [diff] [blame] | 2984 | if (!proto->connect) { |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 2985 | goto error; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 2986 | } |
| 2987 | |
| 2988 | /* no port specified */ |
| 2989 | newsrv->flags |= SRV_F_MAPPORTS; |
| 2990 | newsrv->addr = *sk; |
William Lallemand | cf62f7e | 2018-10-26 14:47:40 +0200 | [diff] [blame] | 2991 | /* don't let the server participate to load balancing */ |
| 2992 | newsrv->iweight = 0; |
| 2993 | newsrv->uweight = 0; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 2994 | srv_lb_commit_status(newsrv); |
William Lallemand | 291810d | 2018-10-26 14:47:38 +0200 | [diff] [blame] | 2995 | |
| 2996 | child->srv = newsrv; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 2997 | } |
William Lallemand | ae787ba | 2021-07-29 15:13:22 +0200 | [diff] [blame] | 2998 | |
| 2999 | mworker_proxy->next = proxies_list; |
| 3000 | proxies_list = mworker_proxy; |
| 3001 | |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3002 | return 0; |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3003 | |
| 3004 | error: |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3005 | |
| 3006 | list_for_each_entry(child, &proc_list, list) { |
| 3007 | free((char *)child->srv->conf.file); /* cast because of const char * */ |
| 3008 | free(child->srv->id); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 3009 | ha_free(&child->srv); |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3010 | } |
William Lallemand | ae787ba | 2021-07-29 15:13:22 +0200 | [diff] [blame] | 3011 | free_proxy(mworker_proxy); |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3012 | free(msg); |
| 3013 | |
William Lallemand | ae787ba | 2021-07-29 15:13:22 +0200 | [diff] [blame] | 3014 | error_proxy: |
| 3015 | ha_alert("%s\n", errmsg); |
| 3016 | free(errmsg); |
| 3017 | |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3018 | return -1; |
William Lallemand | 8a02257 | 2018-10-26 14:47:35 +0200 | [diff] [blame] | 3019 | } |
Olivier Houchard | f886e34 | 2017-04-05 22:24:59 +0200 | [diff] [blame] | 3020 | |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3021 | /* |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3022 | * Create a new listener for the master CLI proxy |
| 3023 | */ |
William Lallemand | 21623b5 | 2022-09-24 15:51:27 +0200 | [diff] [blame] | 3024 | struct bind_conf *mworker_cli_proxy_new_listener(char *line) |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3025 | { |
| 3026 | struct bind_conf *bind_conf; |
| 3027 | struct listener *l; |
| 3028 | char *err = NULL; |
| 3029 | char *args[MAX_LINE_ARGS + 1]; |
| 3030 | int arg; |
| 3031 | int cur_arg; |
| 3032 | |
William Lallemand | 2e945c8 | 2019-11-25 09:58:37 +0100 | [diff] [blame] | 3033 | arg = 1; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3034 | args[0] = line; |
| 3035 | |
| 3036 | /* args is a bind configuration with spaces replaced by commas */ |
| 3037 | while (*line && arg < MAX_LINE_ARGS) { |
| 3038 | |
| 3039 | if (*line == ',') { |
| 3040 | *line++ = '\0'; |
| 3041 | while (*line == ',') |
| 3042 | line++; |
William Lallemand | 2e945c8 | 2019-11-25 09:58:37 +0100 | [diff] [blame] | 3043 | args[arg++] = line; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3044 | } |
| 3045 | line++; |
| 3046 | } |
| 3047 | |
William Lallemand | 2e945c8 | 2019-11-25 09:58:37 +0100 | [diff] [blame] | 3048 | args[arg] = "\0"; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3049 | |
| 3050 | 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] | 3051 | if (!bind_conf) |
| 3052 | goto err; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3053 | |
| 3054 | bind_conf->level &= ~ACCESS_LVL_MASK; |
| 3055 | bind_conf->level |= ACCESS_LVL_ADMIN; |
Willy Tarreau | e283ee6 | 2021-03-12 15:00:57 +0100 | [diff] [blame] | 3056 | bind_conf->level |= ACCESS_MASTER | ACCESS_MASTER_ONLY; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3057 | |
| 3058 | if (!str2listener(args[0], mworker_proxy, bind_conf, "master-socket", 0, &err)) { |
| 3059 | ha_alert("Cannot create the listener of the master CLI\n"); |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3060 | goto err; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3061 | } |
| 3062 | |
| 3063 | cur_arg = 1; |
| 3064 | |
| 3065 | while (*args[cur_arg]) { |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3066 | struct bind_kw *kw; |
Willy Tarreau | 433b05f | 2021-03-12 10:14:07 +0100 | [diff] [blame] | 3067 | const char *best; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3068 | |
| 3069 | kw = bind_find_kw(args[cur_arg]); |
| 3070 | if (kw) { |
| 3071 | if (!kw->parse) { |
| 3072 | memprintf(&err, "'%s %s' : '%s' option is not implemented in this version (check build options).", |
| 3073 | args[0], args[1], args[cur_arg]); |
| 3074 | goto err; |
| 3075 | } |
| 3076 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 3077 | 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] | 3078 | if (err) |
| 3079 | memprintf(&err, "'%s %s' : '%s'", args[0], args[1], err); |
| 3080 | else |
| 3081 | memprintf(&err, "'%s %s' : error encountered while processing '%s'", |
| 3082 | args[0], args[1], args[cur_arg]); |
| 3083 | goto err; |
| 3084 | } |
| 3085 | |
| 3086 | cur_arg += 1 + kw->skip; |
| 3087 | continue; |
| 3088 | } |
| 3089 | |
Willy Tarreau | 433b05f | 2021-03-12 10:14:07 +0100 | [diff] [blame] | 3090 | best = bind_find_best_kw(args[cur_arg]); |
| 3091 | if (best) |
| 3092 | memprintf(&err, "'%s %s' : unknown keyword '%s'. Did you mean '%s' maybe ?", |
| 3093 | args[0], args[1], args[cur_arg], best); |
| 3094 | else |
| 3095 | memprintf(&err, "'%s %s' : unknown keyword '%s'.", |
| 3096 | args[0], args[1], args[cur_arg]); |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3097 | goto err; |
| 3098 | } |
| 3099 | |
| 3100 | |
Willy Tarreau | 3083615 | 2023-01-12 19:10:17 +0100 | [diff] [blame] | 3101 | bind_conf->accept = session_accept_fd; |
Willy Tarreau | 7dbd418 | 2023-01-12 19:32:45 +0100 | [diff] [blame] | 3102 | bind_conf->nice = -64; /* we want to boost priority for local stats */ |
Willy Tarreau | 1714680 | 2023-01-12 19:58:42 +0100 | [diff] [blame] | 3103 | 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] | 3104 | |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3105 | list_for_each_entry(l, &bind_conf->listeners, by_bind) { |
Willy Tarreau | 18c20d2 | 2020-10-09 16:11:46 +0200 | [diff] [blame] | 3106 | 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] | 3107 | global.maxsock++; /* for the listening socket */ |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3108 | } |
Willy Tarreau | 18215cb | 2019-02-27 16:25:28 +0100 | [diff] [blame] | 3109 | global.maxsock += mworker_proxy->maxconn; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3110 | |
William Lallemand | 21623b5 | 2022-09-24 15:51:27 +0200 | [diff] [blame] | 3111 | return bind_conf; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3112 | |
| 3113 | err: |
| 3114 | ha_alert("%s\n", err); |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3115 | free(err); |
| 3116 | free(bind_conf); |
William Lallemand | 21623b5 | 2022-09-24 15:51:27 +0200 | [diff] [blame] | 3117 | return NULL; |
William Lallemand | e736115 | 2018-10-26 14:47:36 +0200 | [diff] [blame] | 3118 | |
| 3119 | } |
| 3120 | |
| 3121 | /* |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3122 | * Create a new CLI socket using a socketpair for a worker process |
| 3123 | * <mworker_proc> is the process structure, and <proc> is the process number |
| 3124 | */ |
| 3125 | int mworker_cli_sockpair_new(struct mworker_proc *mworker_proc, int proc) |
| 3126 | { |
| 3127 | struct bind_conf *bind_conf; |
| 3128 | struct listener *l; |
| 3129 | char *path = NULL; |
| 3130 | char *err = NULL; |
| 3131 | |
| 3132 | /* master pipe to ensure the master is still alive */ |
| 3133 | if (socketpair(AF_UNIX, SOCK_STREAM, 0, mworker_proc->ipc_fd) < 0) { |
| 3134 | ha_alert("Cannot create worker socketpair.\n"); |
| 3135 | return -1; |
| 3136 | } |
| 3137 | |
| 3138 | /* XXX: we might want to use a separate frontend at some point */ |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 3139 | if (!global.cli_fe) { |
| 3140 | if ((global.cli_fe = cli_alloc_fe("GLOBAL", "master-socket", 0)) == NULL) { |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3141 | ha_alert("out of memory trying to allocate the stats frontend"); |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3142 | goto error; |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3143 | } |
| 3144 | } |
| 3145 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 3146 | 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] | 3147 | if (!bind_conf) |
| 3148 | goto error; |
| 3149 | |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3150 | bind_conf->level &= ~ACCESS_LVL_MASK; |
| 3151 | 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] | 3152 | bind_conf->level |= ACCESS_FD_LISTENERS; |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3153 | |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3154 | if (!memprintf(&path, "sockpair@%d", mworker_proc->ipc_fd[1])) { |
| 3155 | ha_alert("Cannot allocate listener.\n"); |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3156 | goto error; |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3157 | } |
| 3158 | |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 3159 | if (!str2listener(path, global.cli_fe, bind_conf, "master-socket", 0, &err)) { |
Tim Duesterhus | 4cae3b2 | 2018-11-22 16:46:50 +0100 | [diff] [blame] | 3160 | free(path); |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3161 | 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] | 3162 | goto error; |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3163 | } |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 3164 | ha_free(&path); |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3165 | |
Willy Tarreau | 3083615 | 2023-01-12 19:10:17 +0100 | [diff] [blame] | 3166 | bind_conf->accept = session_accept_fd; |
Willy Tarreau | 7dbd418 | 2023-01-12 19:32:45 +0100 | [diff] [blame] | 3167 | bind_conf->nice = -64; /* we want to boost priority for local stats */ |
Willy Tarreau | 1714680 | 2023-01-12 19:58:42 +0100 | [diff] [blame] | 3168 | bind_conf->options |= BC_O_UNLIMITED | BC_O_NOSTOP; |
Willy Tarreau | d5983ce | 2023-01-12 19:18:34 +0100 | [diff] [blame] | 3169 | |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3170 | list_for_each_entry(l, &bind_conf->listeners, by_bind) { |
Willy Tarreau | 4781b15 | 2021-04-06 13:53:36 +0200 | [diff] [blame] | 3171 | HA_ATOMIC_INC(&unstoppable_jobs); |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3172 | /* 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] | 3173 | l->rx.flags &= ~RX_F_INHERITED; |
Willy Tarreau | 18215cb | 2019-02-27 16:25:28 +0100 | [diff] [blame] | 3174 | global.maxsock++; /* for the listening socket */ |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3175 | } |
| 3176 | |
| 3177 | return 0; |
William Lallemand | 744a089 | 2018-11-22 16:46:51 +0100 | [diff] [blame] | 3178 | |
| 3179 | error: |
| 3180 | close(mworker_proc->ipc_fd[0]); |
| 3181 | close(mworker_proc->ipc_fd[1]); |
| 3182 | free(err); |
| 3183 | |
| 3184 | return -1; |
William Lallemand | ce83b4a | 2018-10-26 14:47:30 +0200 | [diff] [blame] | 3185 | } |
| 3186 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 3187 | static struct applet cli_applet = { |
| 3188 | .obj_type = OBJ_TYPE_APPLET, |
| 3189 | .name = "<CLI>", /* used for logging */ |
| 3190 | .fct = cli_io_handler, |
| 3191 | .release = cli_release_handler, |
| 3192 | }; |
| 3193 | |
William Lallemand | 99e0bb9 | 2020-11-05 10:28:53 +0100 | [diff] [blame] | 3194 | /* master CLI */ |
| 3195 | static struct applet mcli_applet = { |
| 3196 | .obj_type = OBJ_TYPE_APPLET, |
| 3197 | .name = "<MCLI>", /* used for logging */ |
| 3198 | .fct = cli_io_handler, |
| 3199 | .release = cli_release_handler, |
| 3200 | }; |
| 3201 | |
Willy Tarreau | 0a73929 | 2016-11-22 20:21:23 +0100 | [diff] [blame] | 3202 | /* register cli keywords */ |
| 3203 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | b205bfd | 2021-05-07 11:38:37 +0200 | [diff] [blame] | 3204 | { { "help", NULL }, NULL, cli_parse_simple, NULL, NULL, NULL, ACCESS_MASTER }, |
| 3205 | { { "prompt", NULL }, NULL, cli_parse_simple, NULL, NULL, NULL, ACCESS_MASTER }, |
| 3206 | { { "quit", NULL }, NULL, cli_parse_simple, NULL, NULL, NULL, ACCESS_MASTER }, |
| 3207 | { { "_getsocks", NULL }, NULL, _getsocks, NULL }, |
William Lallemand | d9c2807 | 2022-02-02 11:23:58 +0100 | [diff] [blame] | 3208 | { { "expert-mode", NULL }, NULL, cli_parse_expert_experimental_mode, NULL, NULL, NULL, ACCESS_MASTER }, // not listed |
| 3209 | { { "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] | 3210 | { { "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] | 3211 | { { "set", "anon", "on" }, "set anon on [value] : activate the anonymized mode", cli_parse_set_anon, NULL, NULL }, |
| 3212 | { { "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] | 3213 | { { "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] | 3214 | { { "set", "maxconn", "global", NULL }, "set maxconn global <value> : change the per-process maxconn setting", cli_parse_set_maxconn_global, NULL }, |
| 3215 | { { "set", "rate-limit", NULL }, "set rate-limit <setting> <value> : change a rate limiting value", cli_parse_set_ratelimit, NULL }, |
| 3216 | { { "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 }, |
| 3217 | { { "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] | 3218 | { { "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] | 3219 | { { "show", "env", NULL }, "show env [var] : dump environment variables known to the process", cli_parse_show_env, cli_io_handler_show_env, NULL }, |
| 3220 | { { "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 }, |
| 3221 | { { "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] | 3222 | { { "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] | 3223 | { { "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] | 3224 | { { "operator", NULL }, "operator : lower the level of the current CLI session to operator", cli_parse_set_lvl, NULL, NULL, NULL, ACCESS_MASTER}, |
| 3225 | { { "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] | 3226 | {{},} |
| 3227 | }}; |
| 3228 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 3229 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |
| 3230 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 3231 | static struct cfg_kw_list cfg_kws = {ILH, { |
Willy Tarreau | 4975d14 | 2021-03-13 11:00:33 +0100 | [diff] [blame] | 3232 | { CFG_GLOBAL, "stats", cli_parse_global }, |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 3233 | { 0, NULL, NULL }, |
| 3234 | }}; |
| 3235 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 3236 | INITCALL1(STG_REGISTER, cfg_register_keywords, &cfg_kws); |
| 3237 | |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 3238 | static struct bind_kw_list bind_kws = { "STAT", { }, { |
William Lallemand | f6975e9 | 2017-05-26 17:42:10 +0200 | [diff] [blame] | 3239 | { "level", bind_parse_level, 1 }, /* set the unix socket admin level */ |
| 3240 | { "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] | 3241 | { "severity-output", bind_parse_severity_output, 1 }, /* set the severity output format */ |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 3242 | { NULL, NULL, 0 }, |
| 3243 | }}; |
| 3244 | |
Willy Tarreau | 0108d90 | 2018-11-25 19:14:37 +0100 | [diff] [blame] | 3245 | INITCALL1(STG_REGISTER, bind_register_keywords, &bind_kws); |
William Lallemand | 74c24fb | 2016-11-21 17:18:36 +0100 | [diff] [blame] | 3246 | |
| 3247 | /* |
| 3248 | * Local variables: |
| 3249 | * c-indent-level: 8 |
| 3250 | * c-basic-offset: 8 |
| 3251 | * End: |
| 3252 | */ |