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 | c3f67cd | 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> |
| 16 | #include <fcntl.h> |
| 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 | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 21 | |
Willy Tarreau | b255105 | 2020-06-09 09:07:15 +0200 | [diff] [blame] | 22 | #if defined(USE_SYSTEMD) |
| 23 | #include <systemd/sd-daemon.h> |
| 24 | #endif |
| 25 | |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 26 | #include <haproxy/api.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 27 | #include <haproxy/cfgparse.h> |
Willy Tarreau | 83487a8 | 2020-06-04 20:19:54 +0200 | [diff] [blame] | 28 | #include <haproxy/cli.h> |
Willy Tarreau | 36979d9 | 2020-06-05 17:27:29 +0200 | [diff] [blame] | 29 | #include <haproxy/errors.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 30 | #include <haproxy/fd.h> |
| 31 | #include <haproxy/global.h> |
Willy Tarreau | 853b297 | 2020-05-27 18:01:47 +0200 | [diff] [blame] | 32 | #include <haproxy/list.h> |
Willy Tarreau | 213e990 | 2020-06-04 14:58:24 +0200 | [diff] [blame] | 33 | #include <haproxy/listener.h> |
Willy Tarreau | b5abe5b | 2020-06-04 14:07:37 +0200 | [diff] [blame] | 34 | #include <haproxy/mworker.h> |
Willy Tarreau | 3c2a7c2 | 2020-06-04 18:38:21 +0200 | [diff] [blame] | 35 | #include <haproxy/peers.h> |
Willy Tarreau | a264d96 | 2020-06-04 22:29:18 +0200 | [diff] [blame] | 36 | #include <haproxy/proxy-t.h> |
Willy Tarreau | 3727a8a | 2020-06-04 17:37:26 +0200 | [diff] [blame] | 37 | #include <haproxy/signal.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 38 | #include <haproxy/stream.h> |
Willy Tarreau | 5e539c9 | 2020-06-04 20:45:39 +0200 | [diff] [blame] | 39 | #include <haproxy/stream_interface.h> |
Willy Tarreau | d678805 | 2020-05-27 15:59:00 +0200 | [diff] [blame] | 40 | #include <haproxy/version.h> |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 41 | |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 42 | |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 43 | static int exitcode = -1; |
William Lallemand | 27edc4b | 2019-05-07 17:49:33 +0200 | [diff] [blame] | 44 | static int max_reloads = -1; /* number max of reloads a worker can have until they are killed */ |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 45 | |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 46 | /* ----- children processes handling ----- */ |
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 | * Send signal to every known children. |
| 50 | */ |
| 51 | |
| 52 | static void mworker_kill(int sig) |
| 53 | { |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 54 | struct mworker_proc *child; |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 55 | |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 56 | list_for_each_entry(child, &proc_list, list) { |
| 57 | /* 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] | 58 | 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] | 59 | kill(child->pid, sig); |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 60 | } |
| 61 | } |
| 62 | |
William Lallemand | 27edc4b | 2019-05-07 17:49:33 +0200 | [diff] [blame] | 63 | void mworker_kill_max_reloads(int sig) |
| 64 | { |
| 65 | struct mworker_proc *child; |
| 66 | |
| 67 | list_for_each_entry(child, &proc_list, list) { |
| 68 | if (max_reloads != -1 && (child->options & PROC_O_TYPE_WORKER) && |
| 69 | (child->pid > 0) && (child->reloads > max_reloads)) |
| 70 | kill(child->pid, sig); |
| 71 | } |
| 72 | } |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 73 | |
| 74 | /* return 1 if a pid is a current child otherwise 0 */ |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 75 | int mworker_current_child(int pid) |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 76 | { |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 77 | struct mworker_proc *child; |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 78 | |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 79 | list_for_each_entry(child, &proc_list, list) { |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 80 | 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] | 81 | return 1; |
| 82 | } |
| 83 | return 0; |
| 84 | } |
| 85 | |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 86 | /* |
| 87 | * Return the number of new and old children (including workers and external |
| 88 | * processes) |
| 89 | */ |
| 90 | int mworker_child_nb() |
| 91 | { |
| 92 | struct mworker_proc *child; |
| 93 | int ret = 0; |
| 94 | |
| 95 | list_for_each_entry(child, &proc_list, list) { |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 96 | if (child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 97 | ret++; |
| 98 | } |
| 99 | |
| 100 | return ret; |
| 101 | } |
| 102 | |
| 103 | |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 104 | /* |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 105 | * serialize the proc list and put it in the environment |
| 106 | */ |
| 107 | void mworker_proc_list_to_env() |
| 108 | { |
| 109 | char *msg = NULL; |
| 110 | struct mworker_proc *child; |
| 111 | |
| 112 | list_for_each_entry(child, &proc_list, list) { |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 113 | char type = '?'; |
| 114 | |
| 115 | if (child->options & PROC_O_TYPE_MASTER) |
| 116 | type = 'm'; |
| 117 | else if (child->options & PROC_O_TYPE_PROG) |
| 118 | type = 'e'; |
| 119 | else if (child->options &= PROC_O_TYPE_WORKER) |
| 120 | type = 'w'; |
| 121 | |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 122 | if (child->pid > -1) |
William Lallemand | 1dc6963 | 2019-06-12 19:11:33 +0200 | [diff] [blame] | 123 | memprintf(&msg, "%s|type=%c;fd=%d;pid=%d;rpid=%d;reloads=%d;timestamp=%d;id=%s;version=%s", msg ? msg : "", type, child->ipc_fd[0], child->pid, child->relative_pid, child->reloads, child->timestamp, child->id ? child->id : "", child->version); |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 124 | } |
| 125 | if (msg) |
| 126 | setenv("HAPROXY_PROCESSES", msg, 1); |
| 127 | } |
| 128 | |
| 129 | /* |
| 130 | * unserialize the proc list from the environment |
| 131 | */ |
Remi Tricot-Le Breton | 80dc145 | 2021-05-19 10:45:12 +0200 | [diff] [blame] | 132 | int mworker_env_to_proc_list() |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 133 | { |
| 134 | char *msg, *token = NULL, *s1; |
| 135 | |
| 136 | msg = getenv("HAPROXY_PROCESSES"); |
| 137 | if (!msg) |
Remi Tricot-Le Breton | 80dc145 | 2021-05-19 10:45:12 +0200 | [diff] [blame] | 138 | return 0; |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 139 | |
| 140 | while ((token = strtok_r(msg, "|", &s1))) { |
| 141 | struct mworker_proc *child; |
| 142 | char *subtoken = NULL; |
| 143 | char *s2; |
| 144 | |
| 145 | msg = NULL; |
| 146 | |
| 147 | child = calloc(1, sizeof(*child)); |
Remi Tricot-Le Breton | 80dc145 | 2021-05-19 10:45:12 +0200 | [diff] [blame] | 148 | if (!child) { |
| 149 | ha_alert("Out of memory while trying to allocate a worker process structure."); |
| 150 | return -1; |
| 151 | } |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 152 | |
| 153 | while ((subtoken = strtok_r(token, ";", &s2))) { |
| 154 | |
| 155 | token = NULL; |
| 156 | |
| 157 | if (strncmp(subtoken, "type=", 5) == 0) { |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 158 | char type; |
| 159 | |
| 160 | type = *(subtoken+5); |
| 161 | if (type == 'm') { /* we are in the master, assign it */ |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 162 | proc_self = child; |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 163 | child->options |= PROC_O_TYPE_MASTER; |
| 164 | } else if (type == 'e') { |
| 165 | child->options |= PROC_O_TYPE_PROG; |
| 166 | } else if (type == 'w') { |
| 167 | child->options |= PROC_O_TYPE_WORKER; |
| 168 | } |
| 169 | |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 170 | } else if (strncmp(subtoken, "fd=", 3) == 0) { |
| 171 | child->ipc_fd[0] = atoi(subtoken+3); |
| 172 | } else if (strncmp(subtoken, "pid=", 4) == 0) { |
| 173 | child->pid = atoi(subtoken+4); |
| 174 | } else if (strncmp(subtoken, "rpid=", 5) == 0) { |
| 175 | child->relative_pid = atoi(subtoken+5); |
| 176 | } else if (strncmp(subtoken, "reloads=", 8) == 0) { |
| 177 | /* we reloaded this process once more */ |
| 178 | child->reloads = atoi(subtoken+8) + 1; |
| 179 | } else if (strncmp(subtoken, "timestamp=", 10) == 0) { |
| 180 | child->timestamp = atoi(subtoken+10); |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 181 | } else if (strncmp(subtoken, "id=", 3) == 0) { |
| 182 | child->id = strdup(subtoken+3); |
William Lallemand | 1dc6963 | 2019-06-12 19:11:33 +0200 | [diff] [blame] | 183 | } else if (strncmp(subtoken, "version=", 8) == 0) { |
| 184 | child->version = strdup(subtoken+8); |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 185 | } |
| 186 | } |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 187 | if (child->pid) { |
William Lallemand | 920fc8b | 2019-05-14 11:15:18 +0200 | [diff] [blame] | 188 | /* this is a process inherited from a reload that should be leaving */ |
| 189 | child->options |= PROC_O_LEAVING; |
| 190 | |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 191 | LIST_ADDQ(&proc_list, &child->list); |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 192 | } else { |
Tim Duesterhus | 9b7a976 | 2019-05-16 20:23:22 +0200 | [diff] [blame] | 193 | mworker_free_child(child); |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 194 | } |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | unsetenv("HAPROXY_PROCESSES"); |
Remi Tricot-Le Breton | 80dc145 | 2021-05-19 10:45:12 +0200 | [diff] [blame] | 198 | |
| 199 | return 0; |
William Lallemand | 48dfbbd | 2019-04-01 11:29:53 +0200 | [diff] [blame] | 200 | } |
William Lallemand | 3cd95d2 | 2019-04-01 11:29:54 +0200 | [diff] [blame] | 201 | |
| 202 | /* Signal blocking and unblocking */ |
| 203 | |
| 204 | void mworker_block_signals() |
| 205 | { |
| 206 | sigset_t set; |
| 207 | |
| 208 | sigemptyset(&set); |
| 209 | sigaddset(&set, SIGUSR1); |
| 210 | sigaddset(&set, SIGUSR2); |
Willy Tarreau | d26c9f9 | 2019-12-11 14:24:07 +0100 | [diff] [blame] | 211 | sigaddset(&set, SIGTTIN); |
| 212 | sigaddset(&set, SIGTTOU); |
William Lallemand | 3cd95d2 | 2019-04-01 11:29:54 +0200 | [diff] [blame] | 213 | sigaddset(&set, SIGHUP); |
| 214 | sigaddset(&set, SIGCHLD); |
| 215 | ha_sigmask(SIG_SETMASK, &set, NULL); |
| 216 | } |
| 217 | |
| 218 | void mworker_unblock_signals() |
| 219 | { |
| 220 | haproxy_unblock_signals(); |
| 221 | } |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 222 | |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 223 | /* ----- mworker signal handlers ----- */ |
| 224 | |
Willy Tarreau | d26c9f9 | 2019-12-11 14:24:07 +0100 | [diff] [blame] | 225 | /* broadcast the configured signal to the workers */ |
| 226 | void mworker_broadcast_signal(struct sig_handler *sh) |
| 227 | { |
| 228 | mworker_kill(sh->arg); |
| 229 | } |
| 230 | |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 231 | /* |
| 232 | * When called, this function reexec haproxy with -sf followed by current |
| 233 | * children PIDs and possibly old children PIDs if they didn't leave yet. |
| 234 | */ |
| 235 | void mworker_catch_sighup(struct sig_handler *sh) |
| 236 | { |
| 237 | mworker_reload(); |
| 238 | } |
| 239 | |
| 240 | void mworker_catch_sigterm(struct sig_handler *sh) |
| 241 | { |
| 242 | int sig = sh->arg; |
| 243 | |
| 244 | #if defined(USE_SYSTEMD) |
| 245 | if (global.tune.options & GTUNE_USE_SYSTEMD) { |
| 246 | sd_notify(0, "STOPPING=1"); |
| 247 | } |
| 248 | #endif |
| 249 | ha_warning("Exiting Master process...\n"); |
| 250 | mworker_kill(sig); |
| 251 | } |
| 252 | |
| 253 | /* |
| 254 | * Wait for every children to exit |
| 255 | */ |
| 256 | |
| 257 | void mworker_catch_sigchld(struct sig_handler *sh) |
| 258 | { |
| 259 | int exitpid = -1; |
| 260 | int status = 0; |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 261 | int childfound; |
| 262 | |
| 263 | restart_wait: |
| 264 | |
| 265 | childfound = 0; |
| 266 | |
| 267 | exitpid = waitpid(-1, &status, WNOHANG); |
| 268 | if (exitpid > 0) { |
Tim Duesterhus | 9b7a976 | 2019-05-16 20:23:22 +0200 | [diff] [blame] | 269 | struct mworker_proc *child, *it; |
| 270 | |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 271 | if (WIFEXITED(status)) |
| 272 | status = WEXITSTATUS(status); |
| 273 | else if (WIFSIGNALED(status)) |
| 274 | status = 128 + WTERMSIG(status); |
| 275 | else if (WIFSTOPPED(status)) |
| 276 | status = 128 + WSTOPSIG(status); |
| 277 | else |
| 278 | status = 255; |
| 279 | |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 280 | /* delete the child from the process list */ |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 281 | list_for_each_entry_safe(child, it, &proc_list, list) { |
| 282 | if (child->pid != exitpid) |
| 283 | continue; |
| 284 | |
| 285 | LIST_DEL(&child->list); |
| 286 | close(child->ipc_fd[0]); |
| 287 | childfound = 1; |
| 288 | break; |
| 289 | } |
| 290 | |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 291 | if (!childfound) { |
| 292 | /* 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] | 293 | 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] | 294 | } else { |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 295 | /* check if exited child is a current child */ |
William Lallemand | 4528611 | 2019-04-12 16:09:21 +0200 | [diff] [blame] | 296 | if (!(child->options & PROC_O_LEAVING)) { |
William Lallemand | a655ba4 | 2020-05-06 17:27:03 +0200 | [diff] [blame] | 297 | if (child->options & PROC_O_TYPE_WORKER) { |
| 298 | if (status < 128) |
| 299 | ha_warning("Current worker #%d (%d) exited with code %d (%s)\n", child->relative_pid, exitpid, status, "Exit"); |
| 300 | else |
| 301 | ha_alert("Current worker #%d (%d) exited with code %d (%s)\n", child->relative_pid, exitpid, status, strsignal(status - 128)); |
| 302 | } |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 303 | else if (child->options & PROC_O_TYPE_PROG) |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 304 | 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] | 305 | |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 306 | if (status != 0 && status != 130 && status != 143 |
| 307 | && !(global.tune.options & GTUNE_NOEXIT_ONFAILURE)) { |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 308 | ha_alert("exit-on-failure: killing every processes with SIGTERM\n"); |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 309 | mworker_kill(SIGTERM); |
| 310 | } |
William Lallemand | 74f0ec3 | 2019-04-16 17:42:44 +0200 | [diff] [blame] | 311 | /* 0 & SIGTERM (143) are normal, but we should report SIGINT (130) and other signals */ |
| 312 | if (exitcode < 0 && status != 0 && status != 143) |
| 313 | exitcode = status; |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 314 | } else { |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 315 | if (child->options & PROC_O_TYPE_WORKER) { |
William Lallemand | 3f12887 | 2019-04-01 11:29:59 +0200 | [diff] [blame] | 316 | ha_warning("Former worker #%d (%d) exited with code %d (%s)\n", child->relative_pid, exitpid, status, (status >= 128) ? strsignal(status - 128) : "Exit"); |
| 317 | delete_oldpid(exitpid); |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 318 | } else if (child->options & PROC_O_TYPE_PROG) { |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 319 | 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] | 320 | } |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 321 | } |
Tim Duesterhus | 9b7a976 | 2019-05-16 20:23:22 +0200 | [diff] [blame] | 322 | mworker_free_child(child); |
| 323 | child = NULL; |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | /* do it again to check if it was the last worker */ |
| 327 | goto restart_wait; |
| 328 | } |
| 329 | /* Better rely on the system than on a list of process to check if it was the last one */ |
| 330 | else if (exitpid == -1 && errno == ECHILD) { |
William Lallemand | 4cf4b33 | 2019-04-16 17:42:43 +0200 | [diff] [blame] | 331 | 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] | 332 | atexit_flag = 0; |
| 333 | if (exitcode > 0) |
William Lallemand | 4cf4b33 | 2019-04-16 17:42:43 +0200 | [diff] [blame] | 334 | exit(exitcode); /* parent must leave using the status code that provoked the exit */ |
| 335 | exit(EXIT_SUCCESS); |
William Lallemand | e25473c | 2019-04-01 11:29:56 +0200 | [diff] [blame] | 336 | } |
| 337 | |
| 338 | } |
| 339 | |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 340 | /* ----- IPC FD (sockpair) related ----- */ |
| 341 | |
| 342 | /* This wrapper is called from the workers. It is registered instead of the |
| 343 | * normal listener_accept() so the worker can exit() when it detects that the |
| 344 | * 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] | 345 | * listener_accept() function. |
| 346 | */ |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 347 | void mworker_accept_wrapper(int fd) |
| 348 | { |
| 349 | char c; |
| 350 | int ret; |
| 351 | |
| 352 | while (1) { |
| 353 | ret = recv(fd, &c, 1, MSG_PEEK); |
| 354 | if (ret == -1) { |
| 355 | if (errno == EINTR) |
| 356 | continue; |
| 357 | if (errno == EAGAIN) { |
| 358 | fd_cant_recv(fd); |
| 359 | return; |
| 360 | } |
| 361 | break; |
| 362 | } else if (ret > 0) { |
Willy Tarreau | a74cb38 | 2020-10-15 21:29:49 +0200 | [diff] [blame] | 363 | struct listener *l = fdtab[fd].owner; |
| 364 | |
| 365 | if (l) |
| 366 | listener_accept(l); |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 367 | return; |
| 368 | } else if (ret == 0) { |
| 369 | /* At this step the master is down before |
| 370 | * this worker perform a 'normal' exit. |
| 371 | * So we want to exit with an error but |
| 372 | * other threads could currently process |
| 373 | * some stuff so we can't perform a clean |
| 374 | * deinit(). |
| 375 | */ |
| 376 | exit(EXIT_FAILURE); |
| 377 | } |
| 378 | } |
| 379 | return; |
| 380 | } |
| 381 | |
| 382 | /* |
Willy Tarreau | 619a95f | 2019-05-20 11:12:15 +0200 | [diff] [blame] | 383 | * This function registers the accept wrapper for the sockpair of the master |
| 384 | * worker. It's only handled by worker thread #0. Other threads and master do |
| 385 | * nothing here. It always returns 1 (success). |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 386 | */ |
Willy Tarreau | 619a95f | 2019-05-20 11:12:15 +0200 | [diff] [blame] | 387 | static int mworker_pipe_register_per_thread() |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 388 | { |
Willy Tarreau | 619a95f | 2019-05-20 11:12:15 +0200 | [diff] [blame] | 389 | if (!(global.mode & MODE_MWORKER) || master) |
| 390 | return 1; |
| 391 | |
| 392 | if (tid != 0) |
| 393 | return 1; |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 394 | |
| 395 | fcntl(proc_self->ipc_fd[1], F_SETFL, O_NONBLOCK); |
| 396 | /* In multi-tread, we need only one thread to process |
| 397 | * events on the pipe with master |
| 398 | */ |
Willy Tarreau | 619a95f | 2019-05-20 11:12:15 +0200 | [diff] [blame] | 399 | fd_insert(proc_self->ipc_fd[1], fdtab[proc_self->ipc_fd[1]].owner, mworker_accept_wrapper, tid_bit); |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 400 | fd_want_recv(proc_self->ipc_fd[1]); |
Willy Tarreau | 619a95f | 2019-05-20 11:12:15 +0200 | [diff] [blame] | 401 | return 1; |
William Lallemand | 3fa724d | 2019-04-01 11:29:55 +0200 | [diff] [blame] | 402 | } |
William Lallemand | 9001ce8 | 2019-04-01 11:29:57 +0200 | [diff] [blame] | 403 | |
Willy Tarreau | 619a95f | 2019-05-20 11:12:15 +0200 | [diff] [blame] | 404 | REGISTER_PER_THREAD_INIT(mworker_pipe_register_per_thread); |
| 405 | |
William Lallemand | 9001ce8 | 2019-04-01 11:29:57 +0200 | [diff] [blame] | 406 | /* ----- proxies ----- */ |
| 407 | /* |
| 408 | * Upon a reload, the master worker needs to close all listeners FDs but the mworker_pipe |
| 409 | * fd, and the FD provided by fd@ |
| 410 | */ |
| 411 | void mworker_cleanlisteners() |
| 412 | { |
| 413 | struct listener *l, *l_next; |
| 414 | struct proxy *curproxy; |
| 415 | struct peers *curpeers; |
| 416 | |
| 417 | /* we might have to unbind some peers sections from some processes */ |
| 418 | for (curpeers = cfg_peers; curpeers; curpeers = curpeers->next) { |
| 419 | if (!curpeers->peers_fe) |
| 420 | continue; |
| 421 | |
| 422 | stop_proxy(curpeers->peers_fe); |
| 423 | /* disable this peer section so that it kills itself */ |
| 424 | signal_unregister_handler(curpeers->sighandler); |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 425 | task_destroy(curpeers->sync_task); |
William Lallemand | 9001ce8 | 2019-04-01 11:29:57 +0200 | [diff] [blame] | 426 | curpeers->sync_task = NULL; |
Olivier Houchard | 3f795f7 | 2019-04-17 22:51:06 +0200 | [diff] [blame] | 427 | task_destroy(curpeers->peers_fe->task); |
William Lallemand | 9001ce8 | 2019-04-01 11:29:57 +0200 | [diff] [blame] | 428 | curpeers->peers_fe->task = NULL; |
| 429 | curpeers->peers_fe = NULL; |
| 430 | } |
| 431 | |
| 432 | for (curproxy = proxies_list; curproxy; curproxy = curproxy->next) { |
| 433 | int listen_in_master = 0; |
| 434 | |
| 435 | list_for_each_entry_safe(l, l_next, &curproxy->conf.listeners, by_fe) { |
| 436 | /* remove the listener, but not those we need in the master... */ |
Willy Tarreau | 18c20d2 | 2020-10-09 16:11:46 +0200 | [diff] [blame] | 437 | if (!(l->rx.flags & RX_F_MWORKER)) { |
Willy Tarreau | 75c98d1 | 2020-10-09 15:55:23 +0200 | [diff] [blame] | 438 | unbind_listener(l); |
William Lallemand | 9001ce8 | 2019-04-01 11:29:57 +0200 | [diff] [blame] | 439 | delete_listener(l); |
| 440 | } else { |
| 441 | listen_in_master = 1; |
| 442 | } |
| 443 | } |
| 444 | /* if the proxy shouldn't be in the master, we stop it */ |
| 445 | if (!listen_in_master) |
Willy Tarreau | c3914d4 | 2020-09-24 08:39:22 +0200 | [diff] [blame] | 446 | curproxy->disabled = 1; |
William Lallemand | 9001ce8 | 2019-04-01 11:29:57 +0200 | [diff] [blame] | 447 | } |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 448 | } |
| 449 | |
| 450 | /* Displays workers and processes */ |
| 451 | static int cli_io_handler_show_proc(struct appctx *appctx) |
| 452 | { |
| 453 | struct stream_interface *si = appctx->owner; |
| 454 | struct mworker_proc *child; |
| 455 | int old = 0; |
| 456 | int up = now.tv_sec - proc_self->timestamp; |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 457 | char *uptime = NULL; |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 458 | |
| 459 | if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW))) |
| 460 | return 1; |
| 461 | |
| 462 | chunk_reset(&trash); |
| 463 | |
William Lallemand | 1dc6963 | 2019-06-12 19:11:33 +0200 | [diff] [blame] | 464 | chunk_printf(&trash, "#%-14s %-15s %-15s %-15s %-15s %-15s\n", "<PID>", "<type>", "<relative PID>", "<reloads>", "<uptime>", "<version>"); |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 465 | memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60)); |
Willy Tarreau | 76a80c7 | 2019-06-22 07:41:38 +0200 | [diff] [blame] | 466 | chunk_appendf(&trash, "%-15u %-15s %-15u %-15d %-15s %-15s\n", (unsigned int)getpid(), "master", 0, proc_self->reloads, uptime, haproxy_version); |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 467 | free(uptime); |
| 468 | uptime = NULL; |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 469 | |
| 470 | /* displays current processes */ |
| 471 | |
| 472 | chunk_appendf(&trash, "# workers\n"); |
| 473 | list_for_each_entry(child, &proc_list, list) { |
| 474 | up = now.tv_sec - child->timestamp; |
| 475 | |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 476 | if (!(child->options & PROC_O_TYPE_WORKER)) |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 477 | continue; |
| 478 | |
William Lallemand | 4528611 | 2019-04-12 16:09:21 +0200 | [diff] [blame] | 479 | if (child->options & PROC_O_LEAVING) { |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 480 | old++; |
| 481 | continue; |
| 482 | } |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 483 | memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60)); |
William Lallemand | 1dc6963 | 2019-06-12 19:11:33 +0200 | [diff] [blame] | 484 | chunk_appendf(&trash, "%-15u %-15s %-15u %-15d %-15s %-15s\n", child->pid, "worker", child->relative_pid, child->reloads, uptime, child->version); |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 485 | free(uptime); |
| 486 | uptime = NULL; |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 487 | } |
| 488 | |
| 489 | /* displays old processes */ |
| 490 | |
| 491 | if (old) { |
| 492 | char *msg = NULL; |
| 493 | |
| 494 | chunk_appendf(&trash, "# old workers\n"); |
| 495 | list_for_each_entry(child, &proc_list, list) { |
| 496 | up = now.tv_sec - child->timestamp; |
| 497 | |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 498 | if (!(child->options & PROC_O_TYPE_WORKER)) |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 499 | continue; |
| 500 | |
William Lallemand | 4528611 | 2019-04-12 16:09:21 +0200 | [diff] [blame] | 501 | if (child->options & PROC_O_LEAVING) { |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 502 | memprintf(&msg, "[was: %u]", child->relative_pid); |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 503 | memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60)); |
William Lallemand | 1dc6963 | 2019-06-12 19:11:33 +0200 | [diff] [blame] | 504 | chunk_appendf(&trash, "%-15u %-15s %-15s %-15d %-15s %-15s\n", child->pid, "worker", msg, child->reloads, uptime, child->version); |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 505 | free(uptime); |
| 506 | uptime = NULL; |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 507 | } |
| 508 | } |
| 509 | free(msg); |
| 510 | } |
| 511 | |
William Lallemand | ad53d6d | 2019-04-01 11:30:03 +0200 | [diff] [blame] | 512 | /* displays external process */ |
| 513 | chunk_appendf(&trash, "# programs\n"); |
| 514 | old = 0; |
| 515 | list_for_each_entry(child, &proc_list, list) { |
| 516 | up = now.tv_sec - child->timestamp; |
| 517 | |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 518 | if (!(child->options & PROC_O_TYPE_PROG)) |
William Lallemand | ad53d6d | 2019-04-01 11:30:03 +0200 | [diff] [blame] | 519 | continue; |
| 520 | |
William Lallemand | 4528611 | 2019-04-12 16:09:21 +0200 | [diff] [blame] | 521 | if (child->options & PROC_O_LEAVING) { |
William Lallemand | ad53d6d | 2019-04-01 11:30:03 +0200 | [diff] [blame] | 522 | old++; |
| 523 | continue; |
| 524 | } |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 525 | memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60)); |
William Lallemand | 1dc6963 | 2019-06-12 19:11:33 +0200 | [diff] [blame] | 526 | chunk_appendf(&trash, "%-15u %-15s %-15s %-15d %-15s %-15s\n", child->pid, child->id, "-", child->reloads, uptime, "-"); |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 527 | free(uptime); |
| 528 | uptime = NULL; |
William Lallemand | ad53d6d | 2019-04-01 11:30:03 +0200 | [diff] [blame] | 529 | } |
| 530 | |
| 531 | if (old) { |
| 532 | chunk_appendf(&trash, "# old programs\n"); |
| 533 | list_for_each_entry(child, &proc_list, list) { |
| 534 | up = now.tv_sec - child->timestamp; |
| 535 | |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 536 | if (!(child->options & PROC_O_TYPE_PROG)) |
William Lallemand | ad53d6d | 2019-04-01 11:30:03 +0200 | [diff] [blame] | 537 | continue; |
| 538 | |
William Lallemand | 4528611 | 2019-04-12 16:09:21 +0200 | [diff] [blame] | 539 | if (child->options & PROC_O_LEAVING) { |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 540 | memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60)); |
William Lallemand | 1dc6963 | 2019-06-12 19:11:33 +0200 | [diff] [blame] | 541 | chunk_appendf(&trash, "%-15u %-15s %-15s %-15d %-15s %-15s\n", child->pid, child->id, "-", child->reloads, uptime, "-"); |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 542 | free(uptime); |
| 543 | uptime = NULL; |
William Lallemand | ad53d6d | 2019-04-01 11:30:03 +0200 | [diff] [blame] | 544 | } |
| 545 | } |
| 546 | } |
| 547 | |
| 548 | |
| 549 | |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 550 | if (ci_putchk(si_ic(si), &trash) == -1) { |
| 551 | si_rx_room_blk(si); |
| 552 | return 0; |
| 553 | } |
| 554 | |
| 555 | /* dump complete */ |
| 556 | return 1; |
William Lallemand | 9001ce8 | 2019-04-01 11:29:57 +0200 | [diff] [blame] | 557 | } |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 558 | |
| 559 | /* reload the master process */ |
| 560 | static int cli_parse_reload(char **args, char *payload, struct appctx *appctx, void *private) |
| 561 | { |
| 562 | if (!cli_has_level(appctx, ACCESS_LVL_OPER)) |
| 563 | return 1; |
| 564 | |
| 565 | mworker_reload(); |
| 566 | |
| 567 | return 1; |
| 568 | } |
| 569 | |
| 570 | |
William Lallemand | 27edc4b | 2019-05-07 17:49:33 +0200 | [diff] [blame] | 571 | static int mworker_parse_global_max_reloads(char **args, int section_type, struct proxy *curpx, |
| 572 | struct proxy *defpx, const char *file, int linenum, char **err) |
| 573 | { |
| 574 | |
| 575 | int err_code = 0; |
| 576 | |
| 577 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 578 | goto out; |
| 579 | |
| 580 | if (*(args[1]) == 0) { |
| 581 | memprintf(err, "%sparsing [%s:%d] : '%s' expects an integer argument.\n", *err, file, linenum, args[0]); |
| 582 | err_code |= ERR_ALERT | ERR_FATAL; |
| 583 | goto out; |
| 584 | } |
| 585 | |
| 586 | max_reloads = atol(args[1]); |
| 587 | if (max_reloads < 0) { |
| 588 | memprintf(err, "%sparsing [%s:%d] '%s' : invalid value %d, must be >= 0", *err, file, linenum, args[0], max_reloads); |
| 589 | err_code |= ERR_ALERT | ERR_FATAL; |
| 590 | goto out; |
| 591 | } |
| 592 | |
| 593 | out: |
| 594 | return err_code; |
| 595 | } |
| 596 | |
Tim Duesterhus | 9b7a976 | 2019-05-16 20:23:22 +0200 | [diff] [blame] | 597 | void mworker_free_child(struct mworker_proc *child) |
| 598 | { |
| 599 | if (child == NULL) |
| 600 | return; |
| 601 | |
| 602 | if (child->command) { |
| 603 | int i; |
| 604 | |
| 605 | for (i = 0; child->command[i]; i++) { |
| 606 | if (child->command[i]) { |
| 607 | free(child->command[i]); |
| 608 | child->command[i] = NULL; |
| 609 | } |
William Lallemand | e8669fc | 2019-06-12 18:21:17 +0200 | [diff] [blame] | 610 | |
Tim Duesterhus | 9b7a976 | 2019-05-16 20:23:22 +0200 | [diff] [blame] | 611 | } |
| 612 | free(child->command); |
| 613 | child->command = NULL; |
| 614 | } |
| 615 | if (child->id) { |
| 616 | free(child->id); |
| 617 | child->id = NULL; |
| 618 | } |
William Lallemand | 1dc6963 | 2019-06-12 19:11:33 +0200 | [diff] [blame] | 619 | if (child->version) { |
| 620 | free(child->version); |
| 621 | child->version = NULL; |
| 622 | } |
Tim Duesterhus | 9b7a976 | 2019-05-16 20:23:22 +0200 | [diff] [blame] | 623 | free(child); |
| 624 | } |
William Lallemand | 27edc4b | 2019-05-07 17:49:33 +0200 | [diff] [blame] | 625 | |
| 626 | static struct cfg_kw_list mworker_kws = {{ }, { |
| 627 | { CFG_GLOBAL, "mworker-max-reloads", mworker_parse_global_max_reloads }, |
| 628 | { 0, NULL, NULL }, |
| 629 | }}; |
| 630 | |
| 631 | INITCALL1(STG_REGISTER, cfg_register_keywords, &mworker_kws); |
| 632 | |
| 633 | |
William Lallemand | 88dc7c5 | 2019-04-01 11:30:01 +0200 | [diff] [blame] | 634 | /* register cli keywords */ |
| 635 | static struct cli_kw_list cli_kws = {{ },{ |
| 636 | { { "@<relative pid>", NULL }, "@<relative pid> : send a command to the <relative pid> process", NULL, cli_io_handler_show_proc, NULL, NULL, ACCESS_MASTER_ONLY}, |
| 637 | { { "@!<pid>", NULL }, "@!<pid> : send a command to the <pid> process", cli_parse_default, NULL, NULL, NULL, ACCESS_MASTER_ONLY}, |
| 638 | { { "@master", NULL }, "@master : send a command to the master process", cli_parse_default, NULL, NULL, NULL, ACCESS_MASTER_ONLY}, |
| 639 | { { "show", "proc", NULL }, "show proc : show processes status", cli_parse_default, cli_io_handler_show_proc, NULL, NULL, ACCESS_MASTER_ONLY}, |
| 640 | { { "reload", NULL }, "reload : reload haproxy", cli_parse_reload, NULL, NULL, NULL, ACCESS_MASTER_ONLY}, |
| 641 | {{},} |
| 642 | }}; |
| 643 | |
| 644 | INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws); |