blob: fc4dee104c57c23f745549b2ea074598fd8c2b57 [file] [log] [blame]
William Lallemand48dfbbd2019-04-01 11:29:53 +02001/*
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 Jacquin25439de2021-01-21 01:31:46 +000013#define _GNU_SOURCE
14
William Lallemand3fa724d2019-04-01 11:29:55 +020015#include <errno.h>
William Lallemandec059c22022-09-22 17:26:23 +020016#include <fcntl.h>
William Lallemand3fa724d2019-04-01 11:29:55 +020017#include <signal.h>
William Lallemand48dfbbd2019-04-01 11:29:53 +020018#include <stdlib.h>
19#include <string.h>
William Lallemande25473c2019-04-01 11:29:56 +020020#include <sys/wait.h>
William Lallemandec059c22022-09-22 17:26:23 +020021#include <unistd.h>
William Lallemand48dfbbd2019-04-01 11:29:53 +020022
Willy Tarreaub2551052020-06-09 09:07:15 +020023#if defined(USE_SYSTEMD)
24#include <systemd/sd-daemon.h>
25#endif
26
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020027#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020028#include <haproxy/cfgparse.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020029#include <haproxy/cli.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020030#include <haproxy/errors.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020031#include <haproxy/fd.h>
32#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020033#include <haproxy/list.h>
William Lallemand68192b22022-09-24 15:44:42 +020034#include <haproxy/log.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020035#include <haproxy/listener.h>
Willy Tarreaub5abe5b2020-06-04 14:07:37 +020036#include <haproxy/mworker.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020037#include <haproxy/peers.h>
William Lallemandec059c22022-09-22 17:26:23 +020038#include <haproxy/proto_sockpair.h>
Willy Tarreau7c668572021-05-08 20:21:31 +020039#include <haproxy/proxy.h>
William Lallemandec1f8a62022-10-13 17:49:54 +020040#include <haproxy/ring.h>
Willy Tarreau5edca2f2022-05-27 09:25:10 +020041#include <haproxy/sc_strm.h>
Willy Tarreau3727a8a2020-06-04 17:37:26 +020042#include <haproxy/signal.h>
Willy Tarreaucb086c62022-05-27 09:47:12 +020043#include <haproxy/stconn.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020044#include <haproxy/stream.h>
Willy Tarreau745e98c2021-05-08 13:58:19 +020045#include <haproxy/tools.h>
Willy Tarreaud6788052020-05-27 15:59:00 +020046#include <haproxy/version.h>
William Lallemand48dfbbd2019-04-01 11:29:53 +020047
William Lallemand48dfbbd2019-04-01 11:29:53 +020048
William Lallemande25473c2019-04-01 11:29:56 +020049static int exitcode = -1;
William Lallemand27edc4b2019-05-07 17:49:33 +020050static int max_reloads = -1; /* number max of reloads a worker can have until they are killed */
Willy Tarreau15f9ac32021-05-08 12:30:50 +020051struct mworker_proc *proc_self = NULL; /* process structure of current process */
William Lallemande25473c2019-04-01 11:29:56 +020052
William Lallemande25473c2019-04-01 11:29:56 +020053/* ----- children processes handling ----- */
William Lallemand48dfbbd2019-04-01 11:29:53 +020054
William Lallemand48dfbbd2019-04-01 11:29:53 +020055/*
William Lallemande25473c2019-04-01 11:29:56 +020056 * Send signal to every known children.
57 */
58
59static void mworker_kill(int sig)
60{
William Lallemand3f128872019-04-01 11:29:59 +020061 struct mworker_proc *child;
William Lallemande25473c2019-04-01 11:29:56 +020062
William Lallemand3f128872019-04-01 11:29:59 +020063 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 Lallemand32b69012019-04-16 17:42:42 +020065 if ((child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) && (child->pid > 0))
William Lallemand3f128872019-04-01 11:29:59 +020066 kill(child->pid, sig);
William Lallemande25473c2019-04-01 11:29:56 +020067 }
68}
69
William Lallemand27edc4b2019-05-07 17:49:33 +020070void 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 Lallemande25473c2019-04-01 11:29:56 +020080
81/* return 1 if a pid is a current child otherwise 0 */
William Lallemand3f128872019-04-01 11:29:59 +020082int mworker_current_child(int pid)
William Lallemande25473c2019-04-01 11:29:56 +020083{
William Lallemand3f128872019-04-01 11:29:59 +020084 struct mworker_proc *child;
William Lallemande25473c2019-04-01 11:29:56 +020085
William Lallemand3f128872019-04-01 11:29:59 +020086 list_for_each_entry(child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +020087 if ((child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) && (!(child->options & PROC_O_LEAVING)) && (child->pid == pid))
William Lallemande25473c2019-04-01 11:29:56 +020088 return 1;
89 }
90 return 0;
91}
92
William Lallemand3f128872019-04-01 11:29:59 +020093/*
94 * Return the number of new and old children (including workers and external
95 * processes)
96 */
97int mworker_child_nb()
98{
99 struct mworker_proc *child;
100 int ret = 0;
101
102 list_for_each_entry(child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +0200103 if (child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG))
William Lallemand3f128872019-04-01 11:29:59 +0200104 ret++;
105 }
106
107 return ret;
108}
109
110
William Lallemande25473c2019-04-01 11:29:56 +0200111/*
William Lallemand48dfbbd2019-04-01 11:29:53 +0200112 * serialize the proc list and put it in the environment
113 */
114void mworker_proc_list_to_env()
115{
116 char *msg = NULL;
117 struct mworker_proc *child;
William Lallemand14b98ef2022-07-27 11:57:12 +0200118 int minreloads = INT_MAX; /* minimum number of reloads to chose which processes are "current" ones */
William Lallemand48dfbbd2019-04-01 11:29:53 +0200119
120 list_for_each_entry(child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +0200121 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 Lallemand14b98ef2022-07-27 11:57:12 +0200130 if (child->reloads < minreloads)
131 minreloads = child->reloads;
132
William Lallemand48dfbbd2019-04-01 11:29:53 +0200133 if (child->pid > -1)
William Lallemandec059c22022-09-22 17:26:23 +0200134 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 Lallemand48dfbbd2019-04-01 11:29:53 +0200135 }
136 if (msg)
137 setenv("HAPROXY_PROCESSES", msg, 1);
William Lallemand14b98ef2022-07-27 11:57:12 +0200138
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 Lallemand48dfbbd2019-04-01 11:29:53 +0200146}
147
William Lallemand56be0e02022-01-28 21:11:41 +0100148struct 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 Lallemand48dfbbd2019-04-01 11:29:53 +0200167/*
168 * unserialize the proc list from the environment
169 */
Remi Tricot-Le Breton1f4fa902021-05-19 10:45:12 +0200170int mworker_env_to_proc_list()
William Lallemand48dfbbd2019-04-01 11:29:53 +0200171{
172 char *msg, *token = NULL, *s1;
William Lallemand90034bb2021-11-10 11:26:14 +0100173 struct mworker_proc *child;
174 int minreloads = INT_MAX; /* minimum number of reloads to chose which processes are "current" ones */
William Lallemand48dfbbd2019-04-01 11:29:53 +0200175
176 msg = getenv("HAPROXY_PROCESSES");
177 if (!msg)
Remi Tricot-Le Breton1f4fa902021-05-19 10:45:12 +0200178 return 0;
William Lallemand48dfbbd2019-04-01 11:29:53 +0200179
180 while ((token = strtok_r(msg, "|", &s1))) {
William Lallemand48dfbbd2019-04-01 11:29:53 +0200181 char *subtoken = NULL;
182 char *s2;
183
184 msg = NULL;
185
William Lallemand56be0e02022-01-28 21:11:41 +0100186 child = mworker_proc_new();
Remi Tricot-Le Breton1f4fa902021-05-19 10:45:12 +0200187 if (!child) {
188 ha_alert("Out of memory while trying to allocate a worker process structure.");
189 return -1;
190 }
William Lallemand48dfbbd2019-04-01 11:29:53 +0200191
192 while ((subtoken = strtok_r(token, ";", &s2))) {
193
194 token = NULL;
195
196 if (strncmp(subtoken, "type=", 5) == 0) {
William Lallemand8f7069a2019-04-12 16:09:23 +0200197 char type;
198
199 type = *(subtoken+5);
200 if (type == 'm') { /* we are in the master, assign it */
William Lallemand48dfbbd2019-04-01 11:29:53 +0200201 proc_self = child;
William Lallemand8f7069a2019-04-12 16:09:23 +0200202 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 Lallemand48dfbbd2019-04-01 11:29:53 +0200209 } else if (strncmp(subtoken, "fd=", 3) == 0) {
210 child->ipc_fd[0] = atoi(subtoken+3);
William Lallemandec059c22022-09-22 17:26:23 +0200211 } else if (strncmp(subtoken, "cfd=", 4) == 0) {
212 child->ipc_fd[1] = atoi(subtoken+4);
William Lallemand48dfbbd2019-04-01 11:29:53 +0200213 } else if (strncmp(subtoken, "pid=", 4) == 0) {
214 child->pid = atoi(subtoken+4);
William Lallemand48dfbbd2019-04-01 11:29:53 +0200215 } else if (strncmp(subtoken, "reloads=", 8) == 0) {
William Lallemandad221f42021-11-09 18:43:59 +0100216 /* we only increment the number of asked reload */
217 child->reloads = atoi(subtoken+8);
William Lallemand90034bb2021-11-10 11:26:14 +0100218
219 if (child->reloads < minreloads)
220 minreloads = child->reloads;
William Lallemand68836742021-11-10 10:49:06 +0100221 } else if (strncmp(subtoken, "failedreloads=", 14) == 0) {
222 child->failedreloads = atoi(subtoken+14);
William Lallemand48dfbbd2019-04-01 11:29:53 +0200223 } else if (strncmp(subtoken, "timestamp=", 10) == 0) {
224 child->timestamp = atoi(subtoken+10);
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200225 } else if (strncmp(subtoken, "id=", 3) == 0) {
226 child->id = strdup(subtoken+3);
William Lallemand1dc69632019-06-12 19:11:33 +0200227 } else if (strncmp(subtoken, "version=", 8) == 0) {
228 child->version = strdup(subtoken+8);
William Lallemand48dfbbd2019-04-01 11:29:53 +0200229 }
230 }
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200231 if (child->pid) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200232 LIST_APPEND(&proc_list, &child->list);
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200233 } else {
Tim Duesterhus9b7a9762019-05-16 20:23:22 +0200234 mworker_free_child(child);
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200235 }
William Lallemand48dfbbd2019-04-01 11:29:53 +0200236 }
237
William Lallemand90034bb2021-11-10 11:26:14 +0100238 /* 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 Lallemand48dfbbd2019-04-01 11:29:53 +0200245 unsetenv("HAPROXY_PROCESSES");
Remi Tricot-Le Breton1f4fa902021-05-19 10:45:12 +0200246
247 return 0;
William Lallemand48dfbbd2019-04-01 11:29:53 +0200248}
William Lallemand3cd95d22019-04-01 11:29:54 +0200249
250/* Signal blocking and unblocking */
251
252void mworker_block_signals()
253{
254 sigset_t set;
255
256 sigemptyset(&set);
257 sigaddset(&set, SIGUSR1);
258 sigaddset(&set, SIGUSR2);
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100259 sigaddset(&set, SIGTTIN);
260 sigaddset(&set, SIGTTOU);
William Lallemand3cd95d22019-04-01 11:29:54 +0200261 sigaddset(&set, SIGHUP);
262 sigaddset(&set, SIGCHLD);
263 ha_sigmask(SIG_SETMASK, &set, NULL);
264}
265
266void mworker_unblock_signals()
267{
268 haproxy_unblock_signals();
269}
William Lallemand3fa724d2019-04-01 11:29:55 +0200270
William Lallemande25473c2019-04-01 11:29:56 +0200271/* ----- mworker signal handlers ----- */
272
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100273/* broadcast the configured signal to the workers */
274void mworker_broadcast_signal(struct sig_handler *sh)
275{
276 mworker_kill(sh->arg);
277}
278
William Lallemande25473c2019-04-01 11:29:56 +0200279/*
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 */
283void mworker_catch_sighup(struct sig_handler *sh)
284{
285 mworker_reload();
286}
287
288void 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
305void mworker_catch_sigchld(struct sig_handler *sh)
306{
307 int exitpid = -1;
308 int status = 0;
William Lallemande25473c2019-04-01 11:29:56 +0200309 int childfound;
310
311restart_wait:
312
313 childfound = 0;
314
315 exitpid = waitpid(-1, &status, WNOHANG);
316 if (exitpid > 0) {
Tim Duesterhus9b7a9762019-05-16 20:23:22 +0200317 struct mworker_proc *child, *it;
318
William Lallemande25473c2019-04-01 11:29:56 +0200319 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 Lallemand3f128872019-04-01 11:29:59 +0200328 /* delete the child from the process list */
William Lallemande25473c2019-04-01 11:29:56 +0200329 list_for_each_entry_safe(child, it, &proc_list, list) {
330 if (child->pid != exitpid)
331 continue;
332
Willy Tarreau2b718102021-04-21 07:32:39 +0200333 LIST_DELETE(&child->list);
William Lallemande25473c2019-04-01 11:29:56 +0200334 close(child->ipc_fd[0]);
335 childfound = 1;
336 break;
337 }
338
William Lallemand3f128872019-04-01 11:29:59 +0200339 if (!childfound) {
340 /* We didn't find the PID in the list, that shouldn't happen but we can emit a warning */
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200341 ha_warning("Process %d exited with code %d (%s)\n", exitpid, status, (status >= 128) ? strsignal(status - 128) : "Exit");
William Lallemande25473c2019-04-01 11:29:56 +0200342 } else {
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200343 /* check if exited child is a current child */
William Lallemand45286112019-04-12 16:09:21 +0200344 if (!(child->options & PROC_O_LEAVING)) {
William Lallemanda655ba42020-05-06 17:27:03 +0200345 if (child->options & PROC_O_TYPE_WORKER) {
346 if (status < 128)
William Lallemand5d71a6b2021-11-09 15:25:31 +0100347 ha_warning("Current worker (%d) exited with code %d (%s)\n", exitpid, status, "Exit");
William Lallemanda655ba42020-05-06 17:27:03 +0200348 else
William Lallemand5d71a6b2021-11-09 15:25:31 +0100349 ha_alert("Current worker (%d) exited with code %d (%s)\n", exitpid, status, strsignal(status - 128));
William Lallemanda655ba42020-05-06 17:27:03 +0200350 }
William Lallemand8f7069a2019-04-12 16:09:23 +0200351 else if (child->options & PROC_O_TYPE_PROG)
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200352 ha_alert("Current program '%s' (%d) exited with code %d (%s)\n", child->id, exitpid, status, (status >= 128) ? strsignal(status - 128) : "Exit");
William Lallemand3f128872019-04-01 11:29:59 +0200353
William Lallemande25473c2019-04-01 11:29:56 +0200354 if (status != 0 && status != 130 && status != 143
355 && !(global.tune.options & GTUNE_NOEXIT_ONFAILURE)) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200356 ha_alert("exit-on-failure: killing every processes with SIGTERM\n");
William Lallemande25473c2019-04-01 11:29:56 +0200357 mworker_kill(SIGTERM);
358 }
William Lallemand74f0ec32019-04-16 17:42:44 +0200359 /* 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 Lallemande25473c2019-04-01 11:29:56 +0200362 } else {
William Lallemand8f7069a2019-04-12 16:09:23 +0200363 if (child->options & PROC_O_TYPE_WORKER) {
William Lallemand5d71a6b2021-11-09 15:25:31 +0100364 ha_warning("Former worker (%d) exited with code %d (%s)\n", exitpid, status, (status >= 128) ? strsignal(status - 128) : "Exit");
William Lallemand3f128872019-04-01 11:29:59 +0200365 delete_oldpid(exitpid);
William Lallemand8f7069a2019-04-12 16:09:23 +0200366 } else if (child->options & PROC_O_TYPE_PROG) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200367 ha_warning("Former program '%s' (%d) exited with code %d (%s)\n", child->id, exitpid, status, (status >= 128) ? strsignal(status - 128) : "Exit");
William Lallemand3f128872019-04-01 11:29:59 +0200368 }
William Lallemande25473c2019-04-01 11:29:56 +0200369 }
Tim Duesterhus9b7a9762019-05-16 20:23:22 +0200370 mworker_free_child(child);
371 child = NULL;
William Lallemande25473c2019-04-01 11:29:56 +0200372 }
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 Lallemand4cf4b332019-04-16 17:42:43 +0200379 ha_warning("All workers exited. Exiting... (%d)\n", (exitcode > 0) ? exitcode : EXIT_SUCCESS);
William Lallemande25473c2019-04-01 11:29:56 +0200380 atexit_flag = 0;
381 if (exitcode > 0)
William Lallemand4cf4b332019-04-16 17:42:43 +0200382 exit(exitcode); /* parent must leave using the status code that provoked the exit */
383 exit(EXIT_SUCCESS);
William Lallemande25473c2019-04-01 11:29:56 +0200384 }
385
386}
387
William Lallemand3fa724d2019-04-01 11:29:55 +0200388/* ----- 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 Tarreaua74cb382020-10-15 21:29:49 +0200393 * listener_accept() function.
394 */
William Lallemand3fa724d2019-04-01 11:29:55 +0200395void 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 Tarreauacef5e22022-04-25 20:32:15 +0200405 if (errno == EAGAIN || errno == EWOULDBLOCK) {
William Lallemand3fa724d2019-04-01 11:29:55 +0200406 fd_cant_recv(fd);
407 return;
408 }
409 break;
410 } else if (ret > 0) {
Willy Tarreaua74cb382020-10-15 21:29:49 +0200411 struct listener *l = fdtab[fd].owner;
412
413 if (l)
414 listener_accept(l);
William Lallemand3fa724d2019-04-01 11:29:55 +0200415 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 Tarreau619a95f2019-05-20 11:12:15 +0200431 * 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 Lallemand3fa724d2019-04-01 11:29:55 +0200434 */
William Lallemand2ee490f2022-07-05 09:04:03 +0200435static int mworker_sockpair_register_per_thread()
William Lallemand3fa724d2019-04-01 11:29:55 +0200436{
Willy Tarreau619a95f2019-05-20 11:12:15 +0200437 if (!(global.mode & MODE_MWORKER) || master)
438 return 1;
439
440 if (tid != 0)
441 return 1;
William Lallemand3fa724d2019-04-01 11:29:55 +0200442
Willy Tarreau38247432022-04-26 10:24:14 +0200443 fd_set_nonblock(proc_self->ipc_fd[1]);
William Lallemand2ee490f2022-07-05 09:04:03 +0200444 /* register the wrapper to handle read 0 when the master exits */
William Lallemand34aae2f2022-07-05 00:55:09 +0200445 fdtab[proc_self->ipc_fd[1]].iocb = mworker_accept_wrapper;
William Lallemand3fa724d2019-04-01 11:29:55 +0200446 fd_want_recv(proc_self->ipc_fd[1]);
Willy Tarreau619a95f2019-05-20 11:12:15 +0200447 return 1;
William Lallemand3fa724d2019-04-01 11:29:55 +0200448}
William Lallemand9001ce82019-04-01 11:29:57 +0200449
William Lallemand2ee490f2022-07-05 09:04:03 +0200450REGISTER_PER_THREAD_INIT(mworker_sockpair_register_per_thread);
Willy Tarreau619a95f2019-05-20 11:12:15 +0200451
William Lallemand9001ce82019-04-01 11:29:57 +0200452/* ----- 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 */
457void 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 Houchard3f795f72019-04-17 22:51:06 +0200471 task_destroy(curpeers->sync_task);
William Lallemand9001ce82019-04-01 11:29:57 +0200472 curpeers->sync_task = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +0200473 task_destroy(curpeers->peers_fe->task);
William Lallemand9001ce82019-04-01 11:29:57 +0200474 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 Tarreau18c20d22020-10-09 16:11:46 +0200483 if (!(l->rx.flags & RX_F_MWORKER)) {
Willy Tarreau75c98d12020-10-09 15:55:23 +0200484 unbind_listener(l);
William Lallemand9001ce82019-04-01 11:29:57 +0200485 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 Fauletdfd10ab2021-10-06 14:24:19 +0200492 curproxy->flags |= PR_FL_DISABLED;
William Lallemand9001ce82019-04-01 11:29:57 +0200493 }
William Lallemand88dc7c52019-04-01 11:30:01 +0200494}
495
William Lallemand55a921c2022-01-28 21:17:30 +0100496/* 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 */
500void 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 Lallemand88dc7c52019-04-01 11:30:01 +0200526/* Displays workers and processes */
527static int cli_io_handler_show_proc(struct appctx *appctx)
528{
Willy Tarreauc12b3212022-05-27 11:08:15 +0200529 struct stconn *sc = appctx_sc(appctx);
William Lallemand88dc7c52019-04-01 11:30:01 +0200530 struct mworker_proc *child;
531 int old = 0;
532 int up = now.tv_sec - proc_self->timestamp;
William Lallemande8669fc2019-06-12 18:21:17 +0200533 char *uptime = NULL;
William Lallemand68836742021-11-10 10:49:06 +0100534 char *reloadtxt = NULL;
William Lallemand88dc7c52019-04-01 11:30:01 +0200535
Willy Tarreau475e4632022-05-27 10:26:46 +0200536 if (unlikely(sc_ic(sc)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
William Lallemand88dc7c52019-04-01 11:30:01 +0200537 return 1;
538
539 chunk_reset(&trash);
540
William Lallemand68836742021-11-10 10:49:06 +0100541 memprintf(&reloadtxt, "%d [failed: %d]", proc_self->reloads, proc_self->failedreloads);
William Lallemand5d71a6b2021-11-09 15:25:31 +0100542 chunk_printf(&trash, "#%-14s %-15s %-15s %-15s %-15s\n", "<PID>", "<type>", "<reloads>", "<uptime>", "<version>");
William Lallemande8669fc2019-06-12 18:21:17 +0200543 memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60));
William Lallemand68836742021-11-10 10:49:06 +0100544 chunk_appendf(&trash, "%-15u %-15s %-15s %-15s %-15s\n", (unsigned int)getpid(), "master", reloadtxt, uptime, haproxy_version);
545 ha_free(&reloadtxt);
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100546 ha_free(&uptime);
William Lallemand88dc7c52019-04-01 11:30:01 +0200547
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 Lallemand8f7069a2019-04-12 16:09:23 +0200554 if (!(child->options & PROC_O_TYPE_WORKER))
William Lallemand88dc7c52019-04-01 11:30:01 +0200555 continue;
556
William Lallemand45286112019-04-12 16:09:21 +0200557 if (child->options & PROC_O_LEAVING) {
William Lallemand88dc7c52019-04-01 11:30:01 +0200558 old++;
559 continue;
560 }
William Lallemande8669fc2019-06-12 18:21:17 +0200561 memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60));
William Lallemand5d71a6b2021-11-09 15:25:31 +0100562 chunk_appendf(&trash, "%-15u %-15s %-15d %-15s %-15s\n", child->pid, "worker", child->reloads, uptime, child->version);
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100563 ha_free(&uptime);
William Lallemand88dc7c52019-04-01 11:30:01 +0200564 }
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 Lallemand8f7069a2019-04-12 16:09:23 +0200575 if (!(child->options & PROC_O_TYPE_WORKER))
William Lallemand88dc7c52019-04-01 11:30:01 +0200576 continue;
577
William Lallemand45286112019-04-12 16:09:21 +0200578 if (child->options & PROC_O_LEAVING) {
William Lallemande8669fc2019-06-12 18:21:17 +0200579 memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60));
William Lallemand5d71a6b2021-11-09 15:25:31 +0100580 chunk_appendf(&trash, "%-15u %-15s %-15d %-15s %-15s\n", child->pid, "worker", child->reloads, uptime, child->version);
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100581 ha_free(&uptime);
William Lallemand88dc7c52019-04-01 11:30:01 +0200582 }
583 }
584 free(msg);
585 }
586
William Lallemandad53d6d2019-04-01 11:30:03 +0200587 /* 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 Lallemand8f7069a2019-04-12 16:09:23 +0200593 if (!(child->options & PROC_O_TYPE_PROG))
William Lallemandad53d6d2019-04-01 11:30:03 +0200594 continue;
595
William Lallemand45286112019-04-12 16:09:21 +0200596 if (child->options & PROC_O_LEAVING) {
William Lallemandad53d6d2019-04-01 11:30:03 +0200597 old++;
598 continue;
599 }
William Lallemande8669fc2019-06-12 18:21:17 +0200600 memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60));
William Lallemand5d71a6b2021-11-09 15:25:31 +0100601 chunk_appendf(&trash, "%-15u %-15s %-15d %-15s %-15s\n", child->pid, child->id, child->reloads, uptime, "-");
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100602 ha_free(&uptime);
William Lallemandad53d6d2019-04-01 11:30:03 +0200603 }
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 Lallemand8f7069a2019-04-12 16:09:23 +0200610 if (!(child->options & PROC_O_TYPE_PROG))
William Lallemandad53d6d2019-04-01 11:30:03 +0200611 continue;
612
William Lallemand45286112019-04-12 16:09:21 +0200613 if (child->options & PROC_O_LEAVING) {
William Lallemande8669fc2019-06-12 18:21:17 +0200614 memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60));
William Lallemand5d71a6b2021-11-09 15:25:31 +0100615 chunk_appendf(&trash, "%-15u %-15s %-15d %-15s %-15s\n", child->pid, child->id, child->reloads, uptime, "-");
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100616 ha_free(&uptime);
William Lallemandad53d6d2019-04-01 11:30:03 +0200617 }
618 }
619 }
620
621
622
Willy Tarreaud0a06d52022-05-18 15:07:19 +0200623 if (applet_putchk(appctx, &trash) == -1)
William Lallemand88dc7c52019-04-01 11:30:01 +0200624 return 0;
William Lallemand88dc7c52019-04-01 11:30:01 +0200625
626 /* dump complete */
627 return 1;
William Lallemand9001ce82019-04-01 11:29:57 +0200628}
William Lallemand88dc7c52019-04-01 11:30:01 +0200629
630/* reload the master process */
631static int cli_parse_reload(char **args, char *payload, struct appctx *appctx, void *private)
632{
William Lallemandec059c22022-09-22 17:26:23 +0200633 struct stconn *scb = NULL;
634 struct stream *strm = NULL;
635 struct connection *conn = NULL;
636 int fd = -1;
637
William Lallemand88dc7c52019-04-01 11:30:01 +0200638 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
639 return 1;
640
William Lallemandec059c22022-09-22 17:26:23 +0200641 /* 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 Lallemand479cb3e2022-09-23 10:21:32 +0200654 fd_delete(fd); /* avoid the leak of the FD after sending it via the socketpair */
William Lallemandec059c22022-09-22 17:26:23 +0200655 }
William Lallemand88dc7c52019-04-01 11:30:01 +0200656 mworker_reload();
657
658 return 1;
659}
660
William Lallemandec1f8a62022-10-13 17:49:54 +0200661/* Displays if the current reload failed or succeed.
662 * If the startup-logs is available, dump it. */
William Lallemand2f67dd92022-10-21 14:00:05 +0200663static int cli_io_handler_show_loadstatus(struct appctx *appctx)
William Lallemand68192b22022-09-24 15:44:42 +0200664{
665 char *env;
William Lallemandec1f8a62022-10-13 17:49:54 +0200666 struct stconn *sc = appctx_sc(appctx);
William Lallemand68192b22022-09-24 15:44:42 +0200667
668 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
669 return 1;
670
William Lallemandec1f8a62022-10-13 17:49:54 +0200671 if (unlikely(sc_ic(sc)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
672 return 1;
673
674
William Lallemand68192b22022-09-24 15:44:42 +0200675 env = getenv("HAPROXY_LOAD_SUCCESS");
676 if (!env)
677 return 1;
678
679 if (strcmp(env, "0") == 0) {
William Lallemandec1f8a62022-10-13 17:49:54 +0200680 chunk_printf(&trash, "Success=0\n");
William Lallemand68192b22022-09-24 15:44:42 +0200681 } else if (strcmp(env, "1") == 0) {
William Lallemandec1f8a62022-10-13 17:49:54 +0200682 chunk_printf(&trash, "Success=1\n");
William Lallemand68192b22022-09-24 15:44:42 +0200683 }
William Lallemand1344ebd2022-10-21 14:03:29 +0200684#ifdef USE_SHM_OPEN
William Lallemandec1f8a62022-10-13 17:49:54 +0200685 if (startup_logs && b_data(&startup_logs->buf) > 1)
686 chunk_appendf(&trash, "--\n");
William Lallemand68192b22022-09-24 15:44:42 +0200687
William Lallemandec1f8a62022-10-13 17:49:54 +0200688 if (applet_putchk(appctx, &trash) == -1)
689 return 0;
William Lallemand68192b22022-09-24 15:44:42 +0200690
William Lallemandec1f8a62022-10-13 17:49:54 +0200691 if (startup_logs) {
692 appctx->io_handler = NULL;
693 ring_attach_cli(startup_logs, appctx, 0);
694 return 0;
695 }
William Lallemand1344ebd2022-10-21 14:03:29 +0200696#else
697 if (applet_putchk(appctx, &trash) == -1)
698 return 0;
699#endif
William Lallemandec1f8a62022-10-13 17:49:54 +0200700 return 1;
701}
William Lallemand88dc7c52019-04-01 11:30:01 +0200702
William Lallemand27edc4b2019-05-07 17:49:33 +0200703static int mworker_parse_global_max_reloads(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +0100704 const struct proxy *defpx, const char *file, int linenum, char **err)
William Lallemand27edc4b2019-05-07 17:49:33 +0200705{
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
725out:
726 return err_code;
727}
728
Tim Duesterhus9b7a9762019-05-16 20:23:22 +0200729void mworker_free_child(struct mworker_proc *child)
730{
William Lallemand08cb9452022-01-27 15:33:40 +0100731 int i;
732
Tim Duesterhus9b7a9762019-05-16 20:23:22 +0200733 if (child == NULL)
734 return;
735
William Lallemand08cb9452022-01-27 15:33:40 +0100736 for (i = 0; child->command && child->command[i]; i++)
737 ha_free(&child->command[i]);
William Lallemande8669fc2019-06-12 18:21:17 +0200738
William Lallemand08cb9452022-01-27 15:33:40 +0100739 ha_free(&child->command);
740 ha_free(&child->id);
741 ha_free(&child->version);
Tim Duesterhus9b7a9762019-05-16 20:23:22 +0200742 free(child);
743}
William Lallemand27edc4b2019-05-07 17:49:33 +0200744
745static struct cfg_kw_list mworker_kws = {{ }, {
746 { CFG_GLOBAL, "mworker-max-reloads", mworker_parse_global_max_reloads },
747 { 0, NULL, NULL },
748}};
749
750INITCALL1(STG_REGISTER, cfg_register_keywords, &mworker_kws);
751
752
William Lallemand88dc7c52019-04-01 11:30:01 +0200753/* register cli keywords */
754static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau23c740e2021-05-09 22:49:44 +0200755 { { "@<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 Lallemand2f67dd92022-10-21 14:00:05 +0200760 { { "_loadstatus", NULL }, NULL, cli_parse_default, cli_io_handler_show_loadstatus, NULL, NULL, ACCESS_MASTER_ONLY},
William Lallemand88dc7c52019-04-01 11:30:01 +0200761 {{},}
762}};
763
764INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);