William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Master Worker |
| 3 | * |
| 4 | * Copyright HAProxy Technologies 2019 - William Lallemand <wlallemand@haproxy.com> |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | */ |
| 12 | |
Bertrand Jacquin | 25439de | 2021-01-21 01:31:46 +0000 | [diff] [blame] | 13 | #define _GNU_SOURCE |
| 14 | |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 15 | #include <errno.h> |
William Lallemand | ec059c2 | 2022-09-22 17:26:23 +0200 | [diff] [blame] | 16 | #include <fcntl.h> |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 17 | #include <signal.h> |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 18 | #include <stdlib.h> |
| 19 | #include <string.h> |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 20 | #include <sys/wait.h> |
William Lallemand | ec059c2 | 2022-09-22 17:26:23 +0200 | [diff] [blame] | 21 | #include <unistd.h> |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 22 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 23 | #if defined(USE_SYSTEMD) |
| 24 | #include <systemd/sd-daemon.h> |
| 25 | #endif |
| 26 | |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 27 | #include <haproxy/api.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 28 | #include <haproxy/cfgparse.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 29 | #include <haproxy/cli.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 30 | #include <haproxy/errors.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 31 | #include <haproxy/fd.h> |
| 32 | #include <haproxy/global.h> |
Willy Tarreau | 853b297 | 2020-05-27 18:01:47 +0200 | [diff] [blame] | 33 | #include <haproxy/list.h> |
William Lallemand | 68192b2 | 2022-09-24 15:44:42 +0200 | [diff] [blame] | 34 | #include <haproxy/log.h> |
Willy Tarreau | 213e990 | 2020-06-04 14:58:24 +0200 | [diff] [blame] | 35 | #include <haproxy/listener.h> |
Willy Tarreau | b5abe5b | 2020-06-04 14:07:37 +0200 | [diff] [blame] | 36 | #include <haproxy/mworker.h> |
Willy Tarreau | 3c2a7c2 | 2020-06-04 18:38:21 +0200 | [diff] [blame] | 37 | #include <haproxy/peers.h> |
William Lallemand | ec059c2 | 2022-09-22 17:26:23 +0200 | [diff] [blame] | 38 | #include <haproxy/proto_sockpair.h> |
Willy Tarreau | 7c66857 | 2021-05-08 20:21:31 +0200 | [diff] [blame] | 39 | #include <haproxy/proxy.h> |
William Lallemand | ec1f8a6 | 2022-10-13 17:49:54 +0200 | [diff] [blame] | 40 | #include <haproxy/ring.h> |
Willy Tarreau | 5edca2f | 2022-05-27 09:25:10 +0200 | [diff] [blame] | 41 | #include <haproxy/sc_strm.h> |
Willy Tarreau | 3727a8a | 2020-06-04 17:37:26 +0200 | [diff] [blame] | 42 | #include <haproxy/signal.h> |
Willy Tarreau | cb086c6 | 2022-05-27 09:47:12 +0200 | [diff] [blame] | 43 | #include <haproxy/stconn.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 44 | #include <haproxy/stream.h> |
Willy Tarreau | 745e98c | 2021-05-08 13:58:19 +0200 | [diff] [blame] | 45 | #include <haproxy/tools.h> |
Willy Tarreau | d678805 | 2020-05-27 15:59:00 +0200 | [diff] [blame] | 46 | #include <haproxy/version.h> |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 47 | |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 48 | |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 49 | static int exitcode = -1; |
William Lallemand | 27edc4b | 2019-05-07 17:49:33 +0200 | [diff] [blame] | 50 | static int max_reloads = -1; /* number max of reloads a worker can have until they are killed */ |
Willy Tarreau | 15f9ac3 | 2021-05-08 12:30:50 +0200 | [diff] [blame] | 51 | struct mworker_proc *proc_self = NULL; /* process structure of current process */ |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 52 | |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 53 | /* ----- children processes handling ----- */ |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 54 | |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 55 | /* |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 56 | * Send signal to every known children. |
| 57 | */ |
| 58 | |
| 59 | static void mworker_kill(int sig) |
| 60 | { |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 61 | struct mworker_proc *child; |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 62 | |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 63 | list_for_each_entry(child, &proc_list, list) { |
| 64 | /* careful there, we must be sure that the pid > 0, we don't want to emit a kill -1 */ |
William Lallemand | 32b6901 | 2019-04-16 17:42:42 +0200 | [diff] [blame] | 65 | if ((child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) && (child->pid > 0)) |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 66 | kill(child->pid, sig); |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 67 | } |
| 68 | } |
| 69 | |
William Lallemand | 27edc4b | 2019-05-07 17:49:33 +0200 | [diff] [blame] | 70 | void mworker_kill_max_reloads(int sig) |
| 71 | { |
| 72 | struct mworker_proc *child; |
| 73 | |
| 74 | list_for_each_entry(child, &proc_list, list) { |
| 75 | if (max_reloads != -1 && (child->options & PROC_O_TYPE_WORKER) && |
| 76 | (child->pid > 0) && (child->reloads > max_reloads)) |
| 77 | kill(child->pid, sig); |
| 78 | } |
| 79 | } |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 80 | |
| 81 | /* return 1 if a pid is a current child otherwise 0 */ |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 82 | int mworker_current_child(int pid) |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 83 | { |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 84 | struct mworker_proc *child; |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 85 | |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 86 | list_for_each_entry(child, &proc_list, list) { |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 87 | if ((child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) && (!(child->options & PROC_O_LEAVING)) && (child->pid == pid)) |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 88 | return 1; |
| 89 | } |
| 90 | return 0; |
| 91 | } |
| 92 | |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 93 | /* |
| 94 | * Return the number of new and old children (including workers and external |
| 95 | * processes) |
| 96 | */ |
| 97 | int mworker_child_nb() |
| 98 | { |
| 99 | struct mworker_proc *child; |
| 100 | int ret = 0; |
| 101 | |
| 102 | list_for_each_entry(child, &proc_list, list) { |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 103 | if (child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 104 | ret++; |
| 105 | } |
| 106 | |
| 107 | return ret; |
| 108 | } |
| 109 | |
| 110 | |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 111 | /* |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 112 | * serialize the proc list and put it in the environment |
| 113 | */ |
| 114 | void mworker_proc_list_to_env() |
| 115 | { |
| 116 | char *msg = NULL; |
| 117 | struct mworker_proc *child; |
William Lallemand | 14b98ef | 2022-07-27 11:57:12 +0200 | [diff] [blame] | 118 | int minreloads = INT_MAX; /* minimum number of reloads to chose which processes are "current" ones */ |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 119 | |
| 120 | list_for_each_entry(child, &proc_list, list) { |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 121 | char type = '?'; |
| 122 | |
| 123 | if (child->options & PROC_O_TYPE_MASTER) |
| 124 | type = 'm'; |
| 125 | else if (child->options & PROC_O_TYPE_PROG) |
| 126 | type = 'e'; |
| 127 | else if (child->options &= PROC_O_TYPE_WORKER) |
| 128 | type = 'w'; |
| 129 | |
William Lallemand | 14b98ef | 2022-07-27 11:57:12 +0200 | [diff] [blame] | 130 | if (child->reloads < minreloads) |
| 131 | minreloads = child->reloads; |
| 132 | |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 133 | if (child->pid > -1) |
William Lallemand | ec059c2 | 2022-09-22 17:26:23 +0200 | [diff] [blame] | 134 | memprintf(&msg, "%s|type=%c;fd=%d;cfd=%d;pid=%d;reloads=%d;failedreloads=%d;timestamp=%d;id=%s;version=%s", msg ? msg : "", type, child->ipc_fd[0], child->ipc_fd[1], child->pid, child->reloads, child->failedreloads, child->timestamp, child->id ? child->id : "", child->version); |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 135 | } |
| 136 | if (msg) |
| 137 | setenv("HAPROXY_PROCESSES", msg, 1); |
William Lallemand | 14b98ef | 2022-07-27 11:57:12 +0200 | [diff] [blame] | 138 | |
| 139 | list_for_each_entry(child, &proc_list, list) { |
| 140 | if (child->reloads > minreloads && !(child->options & PROC_O_TYPE_MASTER)) { |
| 141 | child->options |= PROC_O_LEAVING; |
| 142 | } |
| 143 | } |
| 144 | |
| 145 | |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 146 | } |
| 147 | |
William Lallemand | 56be0e0 | 2022-01-28 21:11:41 +0100 | [diff] [blame] | 148 | struct mworker_proc *mworker_proc_new() |
| 149 | { |
| 150 | struct mworker_proc *child; |
| 151 | |
| 152 | child = calloc(1, sizeof(*child)); |
| 153 | if (!child) |
| 154 | return NULL; |
| 155 | |
| 156 | child->failedreloads = 0; |
| 157 | child->reloads = 0; |
| 158 | child->pid = -1; |
| 159 | child->ipc_fd[0] = -1; |
| 160 | child->ipc_fd[1] = -1; |
| 161 | child->timestamp = -1; |
| 162 | |
| 163 | return child; |
| 164 | } |
| 165 | |
| 166 | |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 167 | /* |
| 168 | * unserialize the proc list from the environment |
| 169 | */ |
Remi Tricot-Le Breton | 1f4fa90 | 2021-05-19 10:45:12 +0200 | [diff] [blame] | 170 | int mworker_env_to_proc_list() |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 171 | { |
| 172 | char *msg, *token = NULL, *s1; |
William Lallemand | 90034bb | 2021-11-10 11:26:14 +0100 | [diff] [blame] | 173 | struct mworker_proc *child; |
| 174 | int minreloads = INT_MAX; /* minimum number of reloads to chose which processes are "current" ones */ |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 175 | |
| 176 | msg = getenv("HAPROXY_PROCESSES"); |
| 177 | if (!msg) |
Remi Tricot-Le Breton | 1f4fa90 | 2021-05-19 10:45:12 +0200 | [diff] [blame] | 178 | return 0; |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 179 | |
| 180 | while ((token = strtok_r(msg, "|", &s1))) { |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 181 | char *subtoken = NULL; |
| 182 | char *s2; |
| 183 | |
| 184 | msg = NULL; |
| 185 | |
William Lallemand | 56be0e0 | 2022-01-28 21:11:41 +0100 | [diff] [blame] | 186 | child = mworker_proc_new(); |
Remi Tricot-Le Breton | 1f4fa90 | 2021-05-19 10:45:12 +0200 | [diff] [blame] | 187 | if (!child) { |
| 188 | ha_alert("Out of memory while trying to allocate a worker process structure."); |
| 189 | return -1; |
| 190 | } |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 191 | |
| 192 | while ((subtoken = strtok_r(token, ";", &s2))) { |
| 193 | |
| 194 | token = NULL; |
| 195 | |
| 196 | if (strncmp(subtoken, "type=", 5) == 0) { |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 197 | char type; |
| 198 | |
| 199 | type = *(subtoken+5); |
| 200 | if (type == 'm') { /* we are in the master, assign it */ |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 201 | proc_self = child; |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 202 | child->options |= PROC_O_TYPE_MASTER; |
| 203 | } else if (type == 'e') { |
| 204 | child->options |= PROC_O_TYPE_PROG; |
| 205 | } else if (type == 'w') { |
| 206 | child->options |= PROC_O_TYPE_WORKER; |
| 207 | } |
| 208 | |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 209 | } else if (strncmp(subtoken, "fd=", 3) == 0) { |
| 210 | child->ipc_fd[0] = atoi(subtoken+3); |
William Lallemand | ec059c2 | 2022-09-22 17:26:23 +0200 | [diff] [blame] | 211 | } else if (strncmp(subtoken, "cfd=", 4) == 0) { |
| 212 | child->ipc_fd[1] = atoi(subtoken+4); |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 213 | } else if (strncmp(subtoken, "pid=", 4) == 0) { |
| 214 | child->pid = atoi(subtoken+4); |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 215 | } else if (strncmp(subtoken, "reloads=", 8) == 0) { |
William Lallemand | ad221f4 | 2021-11-09 18:43:59 +0100 | [diff] [blame] | 216 | /* we only increment the number of asked reload */ |
| 217 | child->reloads = atoi(subtoken+8); |
William Lallemand | 90034bb | 2021-11-10 11:26:14 +0100 | [diff] [blame] | 218 | |
| 219 | if (child->reloads < minreloads) |
| 220 | minreloads = child->reloads; |
William Lallemand | 6883674 | 2021-11-10 10:49:06 +0100 | [diff] [blame] | 221 | } else if (strncmp(subtoken, "failedreloads=", 14) == 0) { |
| 222 | child->failedreloads = atoi(subtoken+14); |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 223 | } else if (strncmp(subtoken, "timestamp=", 10) == 0) { |
| 224 | child->timestamp = atoi(subtoken+10); |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 225 | } else if (strncmp(subtoken, "id=", 3) == 0) { |
| 226 | child->id = strdup(subtoken+3); |
William Lallemand | 1dc6963 | 2019-06-12 19:11:33 +0200 | [diff] [blame] | 227 | } else if (strncmp(subtoken, "version=", 8) == 0) { |
| 228 | child->version = strdup(subtoken+8); |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 229 | } |
| 230 | } |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 231 | if (child->pid) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 232 | LIST_APPEND(&proc_list, &child->list); |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 233 | } else { |
Tim Duesterhus | 9b7a976 | 2019-05-16 20:23:22 +0200 | [diff] [blame] | 234 | mworker_free_child(child); |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 235 | } |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 236 | } |
| 237 | |
William Lallemand | 90034bb | 2021-11-10 11:26:14 +0100 | [diff] [blame] | 238 | /* set the leaving processes once we know which number of reloads are the current processes */ |
| 239 | |
| 240 | list_for_each_entry(child, &proc_list, list) { |
| 241 | if (child->reloads > minreloads) |
| 242 | child->options |= PROC_O_LEAVING; |
| 243 | } |
| 244 | |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 245 | unsetenv("HAPROXY_PROCESSES"); |
Remi Tricot-Le Breton | 1f4fa90 | 2021-05-19 10:45:12 +0200 | [diff] [blame] | 246 | |
| 247 | return 0; |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 248 | } |
William Lallemand | 3cd95d2 | 2019-04-01 11:29:54 +0200 | [diff] [blame] | 249 | |
| 250 | /* Signal blocking and unblocking */ |
| 251 | |
| 252 | void mworker_block_signals() |
| 253 | { |
| 254 | sigset_t set; |
| 255 | |
| 256 | sigemptyset(&set); |
| 257 | sigaddset(&set, SIGUSR1); |
| 258 | sigaddset(&set, SIGUSR2); |
Willy Tarreau | d26c9f9 | 2019-12-11 14:24:07 +0100 | [diff] [blame] | 259 | sigaddset(&set, SIGTTIN); |
| 260 | sigaddset(&set, SIGTTOU); |
William Lallemand | 3cd95d2 | 2019-04-01 11:29:54 +0200 | [diff] [blame] | 261 | sigaddset(&set, SIGHUP); |
| 262 | sigaddset(&set, SIGCHLD); |
| 263 | ha_sigmask(SIG_SETMASK, &set, NULL); |
| 264 | } |
| 265 | |
| 266 | void mworker_unblock_signals() |
| 267 | { |
| 268 | haproxy_unblock_signals(); |
| 269 | } |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 270 | |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 271 | /* ----- mworker signal handlers ----- */ |
| 272 | |
Willy Tarreau | d26c9f9 | 2019-12-11 14:24:07 +0100 | [diff] [blame] | 273 | /* broadcast the configured signal to the workers */ |
| 274 | void mworker_broadcast_signal(struct sig_handler *sh) |
| 275 | { |
| 276 | mworker_kill(sh->arg); |
| 277 | } |
| 278 | |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 279 | /* |
| 280 | * When called, this function reexec haproxy with -sf followed by current |
| 281 | * children PIDs and possibly old children PIDs if they didn't leave yet. |
| 282 | */ |
| 283 | void mworker_catch_sighup(struct sig_handler *sh) |
| 284 | { |
| 285 | mworker_reload(); |
| 286 | } |
| 287 | |
| 288 | void mworker_catch_sigterm(struct sig_handler *sh) |
| 289 | { |
| 290 | int sig = sh->arg; |
| 291 | |
| 292 | #if defined(USE_SYSTEMD) |
| 293 | if (global.tune.options & GTUNE_USE_SYSTEMD) { |
| 294 | sd_notify(0, "STOPPING=1"); |
| 295 | } |
| 296 | #endif |
| 297 | ha_warning("Exiting Master process...\n"); |
| 298 | mworker_kill(sig); |
| 299 | } |
| 300 | |
| 301 | /* |
| 302 | * Wait for every children to exit |
| 303 | */ |
| 304 | |
| 305 | void mworker_catch_sigchld(struct sig_handler *sh) |
| 306 | { |
| 307 | int exitpid = -1; |
| 308 | int status = 0; |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 309 | int childfound; |
| 310 | |
| 311 | restart_wait: |
| 312 | |
| 313 | childfound = 0; |
| 314 | |
| 315 | exitpid = waitpid(-1, &status, WNOHANG); |
| 316 | if (exitpid > 0) { |
Tim Duesterhus | 9b7a976 | 2019-05-16 20:23:22 +0200 | [diff] [blame] | 317 | struct mworker_proc *child, *it; |
| 318 | |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 319 | if (WIFEXITED(status)) |
| 320 | status = WEXITSTATUS(status); |
| 321 | else if (WIFSIGNALED(status)) |
| 322 | status = 128 + WTERMSIG(status); |
| 323 | else if (WIFSTOPPED(status)) |
| 324 | status = 128 + WSTOPSIG(status); |
| 325 | else |
| 326 | status = 255; |
| 327 | |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 328 | /* delete the child from the process list */ |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 329 | list_for_each_entry_safe(child, it, &proc_list, list) { |
| 330 | if (child->pid != exitpid) |
| 331 | continue; |
| 332 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 333 | LIST_DELETE(&child->list); |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 334 | close(child->ipc_fd[0]); |
| 335 | childfound = 1; |
| 336 | break; |
| 337 | } |
| 338 | |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 339 | if (!childfound) { |
| 340 | /* We didn't find the PID in the list, that shouldn't happen but we can emit a warning */ |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 341 | ha_warning("Process %d exited with code %d (%s)\n", exitpid, status, (status >= 128) ? strsignal(status - 128) : "Exit"); |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 342 | } else { |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 343 | /* check if exited child is a current child */ |
William Lallemand | 4528611 | 2019-04-12 16:09:21 +0200 | [diff] [blame] | 344 | if (!(child->options & PROC_O_LEAVING)) { |
William Lallemand | a655ba4 | 2020-05-06 17:27:03 +0200 | [diff] [blame] | 345 | if (child->options & PROC_O_TYPE_WORKER) { |
| 346 | if (status < 128) |
William Lallemand | 5d71a6b | 2021-11-09 15:25:31 +0100 | [diff] [blame] | 347 | ha_warning("Current worker (%d) exited with code %d (%s)\n", exitpid, status, "Exit"); |
William Lallemand | a655ba4 | 2020-05-06 17:27:03 +0200 | [diff] [blame] | 348 | else |
William Lallemand | 5d71a6b | 2021-11-09 15:25:31 +0100 | [diff] [blame] | 349 | ha_alert("Current worker (%d) exited with code %d (%s)\n", exitpid, status, strsignal(status - 128)); |
William Lallemand | a655ba4 | 2020-05-06 17:27:03 +0200 | [diff] [blame] | 350 | } |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 351 | else if (child->options & PROC_O_TYPE_PROG) |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 352 | ha_alert("Current program '%s' (%d) exited with code %d (%s)\n", child->id, exitpid, status, (status >= 128) ? strsignal(status - 128) : "Exit"); |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 353 | |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 354 | if (status != 0 && status != 130 && status != 143 |
| 355 | && !(global.tune.options & GTUNE_NOEXIT_ONFAILURE)) { |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 356 | ha_alert("exit-on-failure: killing every processes with SIGTERM\n"); |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 357 | mworker_kill(SIGTERM); |
| 358 | } |
William Lallemand | 74f0ec3 | 2019-04-16 17:42:44 +0200 | [diff] [blame] | 359 | /* 0 & SIGTERM (143) are normal, but we should report SIGINT (130) and other signals */ |
| 360 | if (exitcode < 0 && status != 0 && status != 143) |
| 361 | exitcode = status; |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 362 | } else { |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 363 | if (child->options & PROC_O_TYPE_WORKER) { |
William Lallemand | 5d71a6b | 2021-11-09 15:25:31 +0100 | [diff] [blame] | 364 | ha_warning("Former worker (%d) exited with code %d (%s)\n", exitpid, status, (status >= 128) ? strsignal(status - 128) : "Exit"); |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 365 | delete_oldpid(exitpid); |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 366 | } else if (child->options & PROC_O_TYPE_PROG) { |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 367 | ha_warning("Former program '%s' (%d) exited with code %d (%s)\n", child->id, exitpid, status, (status >= 128) ? strsignal(status - 128) : "Exit"); |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 368 | } |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 369 | } |
Tim Duesterhus | 9b7a976 | 2019-05-16 20:23:22 +0200 | [diff] [blame] | 370 | mworker_free_child(child); |
| 371 | child = NULL; |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 372 | } |
| 373 | |
| 374 | /* do it again to check if it was the last worker */ |
| 375 | goto restart_wait; |
| 376 | } |
| 377 | /* Better rely on the system than on a list of process to check if it was the last one */ |
| 378 | else if (exitpid == -1 && errno == ECHILD) { |
William Lallemand | 4cf4b33 | 2019-04-16 17:42:43 +0200 | [diff] [blame] | 379 | ha_warning("All workers exited. Exiting... (%d)\n", (exitcode > 0) ? exitcode : EXIT_SUCCESS); |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 380 | atexit_flag = 0; |
| 381 | if (exitcode > 0) |
William Lallemand | 4cf4b33 | 2019-04-16 17:42:43 +0200 | [diff] [blame] | 382 | exit(exitcode); /* parent must leave using the status code that provoked the exit */ |
| 383 | exit(EXIT_SUCCESS); |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | } |
| 387 | |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 388 | /* ----- IPC FD (sockpair) related ----- */ |
| 389 | |
| 390 | /* This wrapper is called from the workers. It is registered instead of the |
| 391 | * normal listener_accept() so the worker can exit() when it detects that the |
| 392 | * master closed the IPC FD. If it's not a close, we just call the regular |
Willy Tarreau | a74cb38 | 2020-10-15 21:29:49 +0200 | [diff] [blame] | 393 | * listener_accept() function. |
| 394 | */ |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 395 | void mworker_accept_wrapper(int fd) |
| 396 | { |
| 397 | char c; |
| 398 | int ret; |
| 399 | |
| 400 | while (1) { |
| 401 | ret = recv(fd, &c, 1, MSG_PEEK); |
| 402 | if (ret == -1) { |
| 403 | if (errno == EINTR) |
| 404 | continue; |
Willy Tarreau | acef5e2 | 2022-04-25 20:32:15 +0200 | [diff] [blame] | 405 | if (errno == EAGAIN || errno == EWOULDBLOCK) { |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 406 | fd_cant_recv(fd); |
| 407 | return; |
| 408 | } |
| 409 | break; |
| 410 | } else if (ret > 0) { |
Willy Tarreau | a74cb38 | 2020-10-15 21:29:49 +0200 | [diff] [blame] | 411 | struct listener *l = fdtab[fd].owner; |
| 412 | |
| 413 | if (l) |
| 414 | listener_accept(l); |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 415 | return; |
| 416 | } else if (ret == 0) { |
| 417 | /* At this step the master is down before |
| 418 | * this worker perform a 'normal' exit. |
| 419 | * So we want to exit with an error but |
| 420 | * other threads could currently process |
| 421 | * some stuff so we can't perform a clean |
| 422 | * deinit(). |
| 423 | */ |
| 424 | exit(EXIT_FAILURE); |
| 425 | } |
| 426 | } |
| 427 | return; |
| 428 | } |
| 429 | |
| 430 | /* |
Willy Tarreau | 619a95f | 2019-05-20 11:12:15 +0200 | [diff] [blame] | 431 | * This function registers the accept wrapper for the sockpair of the master |
| 432 | * worker. It's only handled by worker thread #0. Other threads and master do |
| 433 | * nothing here. It always returns 1 (success). |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 434 | */ |
William Lallemand | 2ee490f | 2022-07-05 09:04:03 +0200 | [diff] [blame] | 435 | static int mworker_sockpair_register_per_thread() |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 436 | { |
Willy Tarreau | 619a95f | 2019-05-20 11:12:15 +0200 | [diff] [blame] | 437 | if (!(global.mode & MODE_MWORKER) || master) |
| 438 | return 1; |
| 439 | |
| 440 | if (tid != 0) |
| 441 | return 1; |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 442 | |
Willy Tarreau | 3824743 | 2022-04-26 10:24:14 +0200 | [diff] [blame] | 443 | fd_set_nonblock(proc_self->ipc_fd[1]); |
William Lallemand | 2ee490f | 2022-07-05 09:04:03 +0200 | [diff] [blame] | 444 | /* register the wrapper to handle read 0 when the master exits */ |
William Lallemand | 34aae2f | 2022-07-05 00:55:09 +0200 | [diff] [blame] | 445 | fdtab[proc_self->ipc_fd[1]].iocb = mworker_accept_wrapper; |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 446 | fd_want_recv(proc_self->ipc_fd[1]); |
Willy Tarreau | 619a95f | 2019-05-20 11:12:15 +0200 | [diff] [blame] | 447 | return 1; |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 448 | } |
William Lallemand | 9001ce8 | 2019-04-01 11:29:57 +0200 | [diff] [blame] | 449 | |
William Lallemand | 2ee490f | 2022-07-05 09:04:03 +0200 | [diff] [blame] | 450 | REGISTER_PER_THREAD_INIT(mworker_sockpair_register_per_thread); |
Willy Tarreau | 619a95f | 2019-05-20 11:12:15 +0200 | [diff] [blame] | 451 | |
William Lallemand | 9001ce8 | 2019-04-01 11:29:57 +0200 | [diff] [blame] | 452 | /* ----- proxies ----- */ |
| 453 | /* |
| 454 | * Upon a reload, the master worker needs to close all listeners FDs but the mworker_pipe |
| 455 | * fd, and the FD provided by fd@ |
| 456 | */ |
| 457 | void mworker_cleanlisteners() |
| 458 | { |
| 459 | struct listener *l, *l_next; |
| 460 | struct proxy *curproxy; |
| 461 | struct peers *curpeers; |
| 462 | |
| 463 | /* we might have to unbind some peers sections from some processes */ |
| 464 | for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) { |
| 465 | if (!curpeers->peers_fe) |
| 466 | continue; |
| 467 | |
| 468 | stop_proxy(curpeers->peers_fe); |
| 469 | /* disable this peer section so that it kills itself */ |
| 470 | signal_unregister_handler(curpeers->sighandler); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 471 | task_destroy(curpeers->sync_task); |
William Lallemand | 9001ce8 | 2019-04-01 11:29:57 +0200 | [diff] [blame] | 472 | curpeers->sync_task = NULL; |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 473 | task_destroy(curpeers->peers_fe->task); |
William Lallemand | 9001ce8 | 2019-04-01 11:29:57 +0200 | [diff] [blame] | 474 | curpeers->peers_fe->task = NULL; |
| 475 | curpeers->peers_fe = NULL; |
| 476 | } |
| 477 | |
| 478 | for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) { |
| 479 | int listen_in_master = 0; |
| 480 | |
| 481 | list_for_each_entry_safe(l, l_next, &curproxy->conf.listeners, by_fe) { |
| 482 | /* remove the listener, but not those we need in the master... */ |
Willy Tarreau | 18c20d2 | 2020-10-09 16:11:46 +0200 | [diff] [blame] | 483 | if (!(l->rx.flags & RX_F_MWORKER)) { |
Willy Tarreau | 75c98d1 | 2020-10-09 15:55:23 +0200 | [diff] [blame] | 484 | unbind_listener(l); |
William Lallemand | 9001ce8 | 2019-04-01 11:29:57 +0200 | [diff] [blame] | 485 | delete_listener(l); |
| 486 | } else { |
| 487 | listen_in_master = 1; |
| 488 | } |
| 489 | } |
| 490 | /* if the proxy shouldn't be in the master, we stop it */ |
| 491 | if (!listen_in_master) |
Christopher Faulet | dfd10ab | 2021-10-06 14:24:19 +0200 | [diff] [blame] | 492 | curproxy->flags |= PR_FL_DISABLED; |
William Lallemand | 9001ce8 | 2019-04-01 11:29:57 +0200 | [diff] [blame] | 493 | } |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 494 | } |
| 495 | |
William Lallemand | 55a921c | 2022-01-28 21:17:30 +0100 | [diff] [blame] | 496 | /* Upon a configuration loading error some mworker_proc and FDs/server were |
| 497 | * assigned but the worker was never forked, we must close the FDs and |
| 498 | * remove the server |
| 499 | */ |
| 500 | void mworker_cleanup_proc() |
| 501 | { |
| 502 | struct mworker_proc *child, *it; |
| 503 | |
| 504 | list_for_each_entry_safe(child, it, &proc_list, list) { |
| 505 | |
| 506 | if (child->pid == -1) { |
| 507 | /* Close the socketpair master side. We don't need to |
| 508 | * close the worker side, because it's stored in the |
| 509 | * GLOBAL cli listener which was supposed to be in the |
| 510 | * worker and which will be closed in |
| 511 | * mworker_cleanlisteners() |
| 512 | */ |
| 513 | if (child->ipc_fd[0] > -1) |
| 514 | close(child->ipc_fd[0]); |
| 515 | if (child->srv) { |
| 516 | /* only exists if we created a master CLI listener */ |
| 517 | srv_drop(child->srv); |
| 518 | } |
| 519 | LIST_DELETE(&child->list); |
| 520 | mworker_free_child(child); |
| 521 | } |
| 522 | } |
| 523 | } |
| 524 | |
| 525 | |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 526 | /* Displays workers and processes */ |
| 527 | static int cli_io_handler_show_proc(struct appctx *appctx) |
| 528 | { |
Willy Tarreau | c12b321 | 2022-05-27 11:08:15 +0200 | [diff] [blame] | 529 | struct stconn *sc = appctx_sc(appctx); |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 530 | struct mworker_proc *child; |
| 531 | int old = 0; |
| 532 | int up = now.tv_sec - proc_self->timestamp; |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 533 | char *uptime = NULL; |
William Lallemand | 6883674 | 2021-11-10 10:49:06 +0100 | [diff] [blame] | 534 | char *reloadtxt = NULL; |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 535 | |
Willy Tarreau | 475e463 | 2022-05-27 10:26:46 +0200 | [diff] [blame] | 536 | if (unlikely(sc_ic(sc)->flags & (CF_WRITE_ERROR|CF_SHUTW))) |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 537 | return 1; |
| 538 | |
| 539 | chunk_reset(&trash); |
| 540 | |
William Lallemand | 6883674 | 2021-11-10 10:49:06 +0100 | [diff] [blame] | 541 | memprintf(&reloadtxt, "%d [failed: %d]", proc_self->reloads, proc_self->failedreloads); |
William Lallemand | 5d71a6b | 2021-11-09 15:25:31 +0100 | [diff] [blame] | 542 | chunk_printf(&trash, "#%-14s %-15s %-15s %-15s %-15s\n", "<PID>", "<type>", "<reloads>", "<uptime>", "<version>"); |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 543 | memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60)); |
William Lallemand | 6883674 | 2021-11-10 10:49:06 +0100 | [diff] [blame] | 544 | chunk_appendf(&trash, "%-15u %-15s %-15s %-15s %-15s\n", (unsigned int)getpid(), "master", reloadtxt, uptime, haproxy_version); |
| 545 | ha_free(&reloadtxt); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 546 | ha_free(&uptime); |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 547 | |
| 548 | /* displays current processes */ |
| 549 | |
| 550 | chunk_appendf(&trash, "# workers\n"); |
| 551 | list_for_each_entry(child, &proc_list, list) { |
| 552 | up = now.tv_sec - child->timestamp; |
| 553 | |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 554 | if (!(child->options & PROC_O_TYPE_WORKER)) |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 555 | continue; |
| 556 | |
William Lallemand | 4528611 | 2019-04-12 16:09:21 +0200 | [diff] [blame] | 557 | if (child->options & PROC_O_LEAVING) { |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 558 | old++; |
| 559 | continue; |
| 560 | } |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 561 | memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60)); |
William Lallemand | 5d71a6b | 2021-11-09 15:25:31 +0100 | [diff] [blame] | 562 | chunk_appendf(&trash, "%-15u %-15s %-15d %-15s %-15s\n", child->pid, "worker", child->reloads, uptime, child->version); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 563 | ha_free(&uptime); |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 564 | } |
| 565 | |
| 566 | /* displays old processes */ |
| 567 | |
| 568 | if (old) { |
| 569 | char *msg = NULL; |
| 570 | |
| 571 | chunk_appendf(&trash, "# old workers\n"); |
| 572 | list_for_each_entry(child, &proc_list, list) { |
| 573 | up = now.tv_sec - child->timestamp; |
| 574 | |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 575 | if (!(child->options & PROC_O_TYPE_WORKER)) |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 576 | continue; |
| 577 | |
William Lallemand | 4528611 | 2019-04-12 16:09:21 +0200 | [diff] [blame] | 578 | if (child->options & PROC_O_LEAVING) { |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 579 | memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60)); |
William Lallemand | 5d71a6b | 2021-11-09 15:25:31 +0100 | [diff] [blame] | 580 | chunk_appendf(&trash, "%-15u %-15s %-15d %-15s %-15s\n", child->pid, "worker", child->reloads, uptime, child->version); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 581 | ha_free(&uptime); |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 582 | } |
| 583 | } |
| 584 | free(msg); |
| 585 | } |
| 586 | |
William Lallemand | ad53d6d | 2019-04-01 11:30:03 +0200 | [diff] [blame] | 587 | /* displays external process */ |
| 588 | chunk_appendf(&trash, "# programs\n"); |
| 589 | old = 0; |
| 590 | list_for_each_entry(child, &proc_list, list) { |
| 591 | up = now.tv_sec - child->timestamp; |
| 592 | |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 593 | if (!(child->options & PROC_O_TYPE_PROG)) |
William Lallemand | ad53d6d | 2019-04-01 11:30:03 +0200 | [diff] [blame] | 594 | continue; |
| 595 | |
William Lallemand | 4528611 | 2019-04-12 16:09:21 +0200 | [diff] [blame] | 596 | if (child->options & PROC_O_LEAVING) { |
William Lallemand | ad53d6d | 2019-04-01 11:30:03 +0200 | [diff] [blame] | 597 | old++; |
| 598 | continue; |
| 599 | } |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 600 | memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60)); |
William Lallemand | 5d71a6b | 2021-11-09 15:25:31 +0100 | [diff] [blame] | 601 | chunk_appendf(&trash, "%-15u %-15s %-15d %-15s %-15s\n", child->pid, child->id, child->reloads, uptime, "-"); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 602 | ha_free(&uptime); |
William Lallemand | ad53d6d | 2019-04-01 11:30:03 +0200 | [diff] [blame] | 603 | } |
| 604 | |
| 605 | if (old) { |
| 606 | chunk_appendf(&trash, "# old programs\n"); |
| 607 | list_for_each_entry(child, &proc_list, list) { |
| 608 | up = now.tv_sec - child->timestamp; |
| 609 | |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 610 | if (!(child->options & PROC_O_TYPE_PROG)) |
William Lallemand | ad53d6d | 2019-04-01 11:30:03 +0200 | [diff] [blame] | 611 | continue; |
| 612 | |
William Lallemand | 4528611 | 2019-04-12 16:09:21 +0200 | [diff] [blame] | 613 | if (child->options & PROC_O_LEAVING) { |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 614 | memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60)); |
William Lallemand | 5d71a6b | 2021-11-09 15:25:31 +0100 | [diff] [blame] | 615 | chunk_appendf(&trash, "%-15u %-15s %-15d %-15s %-15s\n", child->pid, child->id, child->reloads, uptime, "-"); |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 616 | ha_free(&uptime); |
William Lallemand | ad53d6d | 2019-04-01 11:30:03 +0200 | [diff] [blame] | 617 | } |
| 618 | } |
| 619 | } |
| 620 | |
| 621 | |
| 622 | |
Willy Tarreau | d0a06d5 | 2022-05-18 15:07:19 +0200 | [diff] [blame] | 623 | if (applet_putchk(appctx, &trash) == -1) |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 624 | return 0; |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 625 | |
| 626 | /* dump complete */ |
| 627 | return 1; |
William Lallemand | 9001ce8 | 2019-04-01 11:29:57 +0200 | [diff] [blame] | 628 | } |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 629 | |
| 630 | /* reload the master process */ |
| 631 | static int cli_parse_reload(char **args, char *payload, struct appctx *appctx, void *private) |
| 632 | { |
William Lallemand | ec059c2 | 2022-09-22 17:26:23 +0200 | [diff] [blame] | 633 | struct stconn *scb = NULL; |
| 634 | struct stream *strm = NULL; |
| 635 | struct connection *conn = NULL; |
| 636 | int fd = -1; |
| 637 | |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 638 | if (!cli_has_level(appctx, ACCESS_LVL_OPER)) |
| 639 | return 1; |
| 640 | |
William Lallemand | ec059c2 | 2022-09-22 17:26:23 +0200 | [diff] [blame] | 641 | /* This ask for a synchronous reload, which means we will keep this FD |
| 642 | instead of closing it. */ |
| 643 | |
| 644 | scb = appctx_sc(appctx); |
| 645 | if (scb) |
| 646 | strm = sc_strm(scb); |
| 647 | if (strm && strm->scf) |
| 648 | conn = sc_conn(strm->scf); |
| 649 | if (conn) |
| 650 | fd = conn_fd(conn); |
| 651 | |
| 652 | /* Send the FD of the current session to the "cli_reload" FD, which won't be polled */ |
| 653 | if (fd != -1 && send_fd_uxst(proc_self->ipc_fd[0], fd) == 0) { |
William Lallemand | 479cb3e | 2022-09-23 10:21:32 +0200 | [diff] [blame] | 654 | fd_delete(fd); /* avoid the leak of the FD after sending it via the socketpair */ |
William Lallemand | ec059c2 | 2022-09-22 17:26:23 +0200 | [diff] [blame] | 655 | } |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 656 | mworker_reload(); |
| 657 | |
| 658 | return 1; |
| 659 | } |
| 660 | |
William Lallemand | ec1f8a6 | 2022-10-13 17:49:54 +0200 | [diff] [blame] | 661 | /* Displays if the current reload failed or succeed. |
| 662 | * If the startup-logs is available, dump it. */ |
William Lallemand | 2f67dd9 | 2022-10-21 14:00:05 +0200 | [diff] [blame] | 663 | static int cli_io_handler_show_loadstatus(struct appctx *appctx) |
William Lallemand | 68192b2 | 2022-09-24 15:44:42 +0200 | [diff] [blame] | 664 | { |
| 665 | char *env; |
William Lallemand | ec1f8a6 | 2022-10-13 17:49:54 +0200 | [diff] [blame] | 666 | struct stconn *sc = appctx_sc(appctx); |
William Lallemand | 68192b2 | 2022-09-24 15:44:42 +0200 | [diff] [blame] | 667 | |
| 668 | if (!cli_has_level(appctx, ACCESS_LVL_OPER)) |
| 669 | return 1; |
| 670 | |
William Lallemand | ec1f8a6 | 2022-10-13 17:49:54 +0200 | [diff] [blame] | 671 | if (unlikely(sc_ic(sc)->flags & (CF_WRITE_ERROR|CF_SHUTW))) |
| 672 | return 1; |
| 673 | |
| 674 | |
William Lallemand | 68192b2 | 2022-09-24 15:44:42 +0200 | [diff] [blame] | 675 | env = getenv("HAPROXY_LOAD_SUCCESS"); |
| 676 | if (!env) |
| 677 | return 1; |
| 678 | |
| 679 | if (strcmp(env, "0") == 0) { |
William Lallemand | ec1f8a6 | 2022-10-13 17:49:54 +0200 | [diff] [blame] | 680 | chunk_printf(&trash, "Success=0\n"); |
William Lallemand | 68192b2 | 2022-09-24 15:44:42 +0200 | [diff] [blame] | 681 | } else if (strcmp(env, "1") == 0) { |
William Lallemand | ec1f8a6 | 2022-10-13 17:49:54 +0200 | [diff] [blame] | 682 | chunk_printf(&trash, "Success=1\n"); |
William Lallemand | 68192b2 | 2022-09-24 15:44:42 +0200 | [diff] [blame] | 683 | } |
William Lallemand | 1344ebd | 2022-10-21 14:03:29 +0200 | [diff] [blame^] | 684 | #ifdef USE_SHM_OPEN |
William Lallemand | ec1f8a6 | 2022-10-13 17:49:54 +0200 | [diff] [blame] | 685 | if (startup_logs && b_data(&startup_logs->buf) > 1) |
| 686 | chunk_appendf(&trash, "--\n"); |
William Lallemand | 68192b2 | 2022-09-24 15:44:42 +0200 | [diff] [blame] | 687 | |
William Lallemand | ec1f8a6 | 2022-10-13 17:49:54 +0200 | [diff] [blame] | 688 | if (applet_putchk(appctx, &trash) == -1) |
| 689 | return 0; |
William Lallemand | 68192b2 | 2022-09-24 15:44:42 +0200 | [diff] [blame] | 690 | |
William Lallemand | ec1f8a6 | 2022-10-13 17:49:54 +0200 | [diff] [blame] | 691 | if (startup_logs) { |
| 692 | appctx->io_handler = NULL; |
| 693 | ring_attach_cli(startup_logs, appctx, 0); |
| 694 | return 0; |
| 695 | } |
William Lallemand | 1344ebd | 2022-10-21 14:03:29 +0200 | [diff] [blame^] | 696 | #else |
| 697 | if (applet_putchk(appctx, &trash) == -1) |
| 698 | return 0; |
| 699 | #endif |
William Lallemand | ec1f8a6 | 2022-10-13 17:49:54 +0200 | [diff] [blame] | 700 | return 1; |
| 701 | } |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 702 | |
William Lallemand | 27edc4b | 2019-05-07 17:49:33 +0200 | [diff] [blame] | 703 | static int mworker_parse_global_max_reloads(char **args, int section_type, struct proxy *curpx, |
Willy Tarreau | 0182516 | 2021-03-09 09:53:46 +0100 | [diff] [blame] | 704 | const struct proxy *defpx, const char *file, int linenum, char **err) |
William Lallemand | 27edc4b | 2019-05-07 17:49:33 +0200 | [diff] [blame] | 705 | { |
| 706 | |
| 707 | int err_code = 0; |
| 708 | |
| 709 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 710 | goto out; |
| 711 | |
| 712 | if (*(args[1]) == 0) { |
| 713 | memprintf(err, "%sparsing [%s:%d] : '%s' expects an integer argument.\n", *err, file, linenum, args[0]); |
| 714 | err_code |= ERR_ALERT | ERR_FATAL; |
| 715 | goto out; |
| 716 | } |
| 717 | |
| 718 | max_reloads = atol(args[1]); |
| 719 | if (max_reloads < 0) { |
| 720 | memprintf(err, "%sparsing [%s:%d] '%s' : invalid value %d, must be >= 0", *err, file, linenum, args[0], max_reloads); |
| 721 | err_code |= ERR_ALERT | ERR_FATAL; |
| 722 | goto out; |
| 723 | } |
| 724 | |
| 725 | out: |
| 726 | return err_code; |
| 727 | } |
| 728 | |
Tim Duesterhus | 9b7a976 | 2019-05-16 20:23:22 +0200 | [diff] [blame] | 729 | void mworker_free_child(struct mworker_proc *child) |
| 730 | { |
William Lallemand | 08cb945 | 2022-01-27 15:33:40 +0100 | [diff] [blame] | 731 | int i; |
| 732 | |
Tim Duesterhus | 9b7a976 | 2019-05-16 20:23:22 +0200 | [diff] [blame] | 733 | if (child == NULL) |
| 734 | return; |
| 735 | |
William Lallemand | 08cb945 | 2022-01-27 15:33:40 +0100 | [diff] [blame] | 736 | for (i = 0; child->command && child->command[i]; i++) |
| 737 | ha_free(&child->command[i]); |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 738 | |
William Lallemand | 08cb945 | 2022-01-27 15:33:40 +0100 | [diff] [blame] | 739 | ha_free(&child->command); |
| 740 | ha_free(&child->id); |
| 741 | ha_free(&child->version); |
Tim Duesterhus | 9b7a976 | 2019-05-16 20:23:22 +0200 | [diff] [blame] | 742 | free(child); |
| 743 | } |
William Lallemand | 27edc4b | 2019-05-07 17:49:33 +0200 | [diff] [blame] | 744 | |
| 745 | static struct cfg_kw_list mworker_kws = {{ }, { |
| 746 | { CFG_GLOBAL, "mworker-max-reloads", mworker_parse_global_max_reloads }, |
| 747 | { 0, NULL, NULL }, |
| 748 | }}; |
| 749 | |
| 750 | INITCALL1(STG_REGISTER, cfg_register_keywords, &mworker_kws); |
| 751 | |
| 752 | |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 753 | /* register cli keywords */ |
| 754 | static struct cli_kw_list cli_kws = {{ },{ |
Willy Tarreau | 23c740e | 2021-05-09 22:49:44 +0200 | [diff] [blame] | 755 | { { "@<relative pid>", NULL }, "@<relative pid> : send a command to the <relative pid> process", NULL, cli_io_handler_show_proc, NULL, NULL, ACCESS_MASTER_ONLY}, |
| 756 | { { "@!<pid>", NULL }, "@!<pid> : send a command to the <pid> process", cli_parse_default, NULL, NULL, NULL, ACCESS_MASTER_ONLY}, |
| 757 | { { "@master", NULL }, "@master : send a command to the master process", cli_parse_default, NULL, NULL, NULL, ACCESS_MASTER_ONLY}, |
| 758 | { { "show", "proc", NULL }, "show proc : show processes status", cli_parse_default, cli_io_handler_show_proc, NULL, NULL, ACCESS_MASTER_ONLY}, |
| 759 | { { "reload", NULL }, "reload : reload haproxy", cli_parse_reload, NULL, NULL, NULL, ACCESS_MASTER_ONLY}, |
William Lallemand | 2f67dd9 | 2022-10-21 14:00:05 +0200 | [diff] [blame] | 760 | { { "_loadstatus", NULL }, NULL, cli_parse_default, cli_io_handler_show_loadstatus, NULL, NULL, ACCESS_MASTER_ONLY}, |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 761 | {{},} |
| 762 | }}; |
| 763 | |
| 764 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |