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