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