blob: ca1cc74248f0b4dda7dbb1dc128f1b2773dfe912 [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>
16#include <fcntl.h>
17#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 Lallemand48dfbbd2019-04-01 11:29:53 +020021
Willy Tarreaub2551052020-06-09 09:07:15 +020022#if defined(USE_SYSTEMD)
23#include <systemd/sd-daemon.h>
24#endif
25
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020026#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020027#include <haproxy/cfgparse.h>
Willy Tarreau83487a82020-06-04 20:19:54 +020028#include <haproxy/cli.h>
Willy Tarreau36979d92020-06-05 17:27:29 +020029#include <haproxy/errors.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020030#include <haproxy/fd.h>
31#include <haproxy/global.h>
Willy Tarreau853b2972020-05-27 18:01:47 +020032#include <haproxy/list.h>
Willy Tarreau213e9902020-06-04 14:58:24 +020033#include <haproxy/listener.h>
Willy Tarreaub5abe5b2020-06-04 14:07:37 +020034#include <haproxy/mworker.h>
Willy Tarreau3c2a7c22020-06-04 18:38:21 +020035#include <haproxy/peers.h>
Willy Tarreau7c668572021-05-08 20:21:31 +020036#include <haproxy/proxy.h>
Willy Tarreau3727a8a2020-06-04 17:37:26 +020037#include <haproxy/signal.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020038#include <haproxy/stream.h>
Willy Tarreau5e539c92020-06-04 20:45:39 +020039#include <haproxy/stream_interface.h>
Willy Tarreau745e98c2021-05-08 13:58:19 +020040#include <haproxy/tools.h>
Willy Tarreaud6788052020-05-27 15:59:00 +020041#include <haproxy/version.h>
William Lallemand48dfbbd2019-04-01 11:29:53 +020042
William Lallemand48dfbbd2019-04-01 11:29:53 +020043
William Lallemande25473c2019-04-01 11:29:56 +020044static int exitcode = -1;
William Lallemand27edc4b2019-05-07 17:49:33 +020045static int max_reloads = -1; /* number max of reloads a worker can have until they are killed */
Willy Tarreau15f9ac32021-05-08 12:30:50 +020046struct mworker_proc *proc_self = NULL; /* process structure of current process */
William Lallemande25473c2019-04-01 11:29:56 +020047
William Lallemande25473c2019-04-01 11:29:56 +020048/* ----- children processes handling ----- */
William Lallemand48dfbbd2019-04-01 11:29:53 +020049
William Lallemand48dfbbd2019-04-01 11:29:53 +020050/*
William Lallemande25473c2019-04-01 11:29:56 +020051 * Send signal to every known children.
52 */
53
54static void mworker_kill(int sig)
55{
William Lallemand3f128872019-04-01 11:29:59 +020056 struct mworker_proc *child;
William Lallemande25473c2019-04-01 11:29:56 +020057
William Lallemand3f128872019-04-01 11:29:59 +020058 list_for_each_entry(child, &proc_list, list) {
59 /* 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 +020060 if ((child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG)) && (child->pid > 0))
William Lallemand3f128872019-04-01 11:29:59 +020061 kill(child->pid, sig);
William Lallemande25473c2019-04-01 11:29:56 +020062 }
63}
64
William Lallemand27edc4b2019-05-07 17:49:33 +020065void mworker_kill_max_reloads(int sig)
66{
67 struct mworker_proc *child;
68
69 list_for_each_entry(child, &proc_list, list) {
70 if (max_reloads != -1 && (child->options & PROC_O_TYPE_WORKER) &&
71 (child->pid > 0) && (child->reloads > max_reloads))
72 kill(child->pid, sig);
73 }
74}
William Lallemande25473c2019-04-01 11:29:56 +020075
76/* return 1 if a pid is a current child otherwise 0 */
William Lallemand3f128872019-04-01 11:29:59 +020077int mworker_current_child(int pid)
William Lallemande25473c2019-04-01 11:29:56 +020078{
William Lallemand3f128872019-04-01 11:29:59 +020079 struct mworker_proc *child;
William Lallemande25473c2019-04-01 11:29:56 +020080
William Lallemand3f128872019-04-01 11:29:59 +020081 list_for_each_entry(child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +020082 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 +020083 return 1;
84 }
85 return 0;
86}
87
William Lallemand3f128872019-04-01 11:29:59 +020088/*
89 * Return the number of new and old children (including workers and external
90 * processes)
91 */
92int mworker_child_nb()
93{
94 struct mworker_proc *child;
95 int ret = 0;
96
97 list_for_each_entry(child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +020098 if (child->options & (PROC_O_TYPE_WORKER|PROC_O_TYPE_PROG))
William Lallemand3f128872019-04-01 11:29:59 +020099 ret++;
100 }
101
102 return ret;
103}
104
105
William Lallemande25473c2019-04-01 11:29:56 +0200106/*
William Lallemand48dfbbd2019-04-01 11:29:53 +0200107 * serialize the proc list and put it in the environment
108 */
109void mworker_proc_list_to_env()
110{
111 char *msg = NULL;
112 struct mworker_proc *child;
113
114 list_for_each_entry(child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +0200115 char type = '?';
116
117 if (child->options & PROC_O_TYPE_MASTER)
118 type = 'm';
119 else if (child->options & PROC_O_TYPE_PROG)
120 type = 'e';
121 else if (child->options &= PROC_O_TYPE_WORKER)
122 type = 'w';
123
William Lallemand48dfbbd2019-04-01 11:29:53 +0200124 if (child->pid > -1)
Willy Tarreaue8422bf2021-06-15 09:08:18 +0200125 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, 1, child->reloads, child->timestamp, child->id ? child->id : "", child->version);
William Lallemand48dfbbd2019-04-01 11:29:53 +0200126 }
127 if (msg)
128 setenv("HAPROXY_PROCESSES", msg, 1);
129}
130
131/*
132 * unserialize the proc list from the environment
133 */
Remi Tricot-Le Breton1f4fa902021-05-19 10:45:12 +0200134int mworker_env_to_proc_list()
William Lallemand48dfbbd2019-04-01 11:29:53 +0200135{
136 char *msg, *token = NULL, *s1;
137
138 msg = getenv("HAPROXY_PROCESSES");
139 if (!msg)
Remi Tricot-Le Breton1f4fa902021-05-19 10:45:12 +0200140 return 0;
William Lallemand48dfbbd2019-04-01 11:29:53 +0200141
142 while ((token = strtok_r(msg, "|", &s1))) {
143 struct mworker_proc *child;
144 char *subtoken = NULL;
145 char *s2;
146
147 msg = NULL;
148
149 child = calloc(1, sizeof(*child));
Remi Tricot-Le Breton1f4fa902021-05-19 10:45:12 +0200150 if (!child) {
151 ha_alert("Out of memory while trying to allocate a worker process structure.");
152 return -1;
153 }
William Lallemand48dfbbd2019-04-01 11:29:53 +0200154
155 while ((subtoken = strtok_r(token, ";", &s2))) {
156
157 token = NULL;
158
159 if (strncmp(subtoken, "type=", 5) == 0) {
William Lallemand8f7069a2019-04-12 16:09:23 +0200160 char type;
161
162 type = *(subtoken+5);
163 if (type == 'm') { /* we are in the master, assign it */
William Lallemand48dfbbd2019-04-01 11:29:53 +0200164 proc_self = child;
William Lallemand8f7069a2019-04-12 16:09:23 +0200165 child->options |= PROC_O_TYPE_MASTER;
166 } else if (type == 'e') {
167 child->options |= PROC_O_TYPE_PROG;
168 } else if (type == 'w') {
169 child->options |= PROC_O_TYPE_WORKER;
170 }
171
William Lallemand48dfbbd2019-04-01 11:29:53 +0200172 } else if (strncmp(subtoken, "fd=", 3) == 0) {
173 child->ipc_fd[0] = atoi(subtoken+3);
174 } else if (strncmp(subtoken, "pid=", 4) == 0) {
175 child->pid = atoi(subtoken+4);
William Lallemand48dfbbd2019-04-01 11:29:53 +0200176 } 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 Lallemand9a1ee7a2019-04-01 11:30:02 +0200181 } else if (strncmp(subtoken, "id=", 3) == 0) {
182 child->id = strdup(subtoken+3);
William Lallemand1dc69632019-06-12 19:11:33 +0200183 } else if (strncmp(subtoken, "version=", 8) == 0) {
184 child->version = strdup(subtoken+8);
William Lallemand48dfbbd2019-04-01 11:29:53 +0200185 }
186 }
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200187 if (child->pid) {
William Lallemand920fc8b2019-05-14 11:15:18 +0200188 /* this is a process inherited from a reload that should be leaving */
189 child->options |= PROC_O_LEAVING;
190
Willy Tarreau2b718102021-04-21 07:32:39 +0200191 LIST_APPEND(&proc_list, &child->list);
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200192 } else {
Tim Duesterhus9b7a9762019-05-16 20:23:22 +0200193 mworker_free_child(child);
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200194 }
William Lallemand48dfbbd2019-04-01 11:29:53 +0200195 }
196
197 unsetenv("HAPROXY_PROCESSES");
Remi Tricot-Le Breton1f4fa902021-05-19 10:45:12 +0200198
199 return 0;
William Lallemand48dfbbd2019-04-01 11:29:53 +0200200}
William Lallemand3cd95d22019-04-01 11:29:54 +0200201
202/* Signal blocking and unblocking */
203
204void mworker_block_signals()
205{
206 sigset_t set;
207
208 sigemptyset(&set);
209 sigaddset(&set, SIGUSR1);
210 sigaddset(&set, SIGUSR2);
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100211 sigaddset(&set, SIGTTIN);
212 sigaddset(&set, SIGTTOU);
William Lallemand3cd95d22019-04-01 11:29:54 +0200213 sigaddset(&set, SIGHUP);
214 sigaddset(&set, SIGCHLD);
215 ha_sigmask(SIG_SETMASK, &set, NULL);
216}
217
218void mworker_unblock_signals()
219{
220 haproxy_unblock_signals();
221}
William Lallemand3fa724d2019-04-01 11:29:55 +0200222
William Lallemande25473c2019-04-01 11:29:56 +0200223/* ----- mworker signal handlers ----- */
224
Willy Tarreaud26c9f92019-12-11 14:24:07 +0100225/* broadcast the configured signal to the workers */
226void mworker_broadcast_signal(struct sig_handler *sh)
227{
228 mworker_kill(sh->arg);
229}
230
William Lallemande25473c2019-04-01 11:29:56 +0200231/*
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 */
235void mworker_catch_sighup(struct sig_handler *sh)
236{
237 mworker_reload();
238}
239
240void 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
257void mworker_catch_sigchld(struct sig_handler *sh)
258{
259 int exitpid = -1;
260 int status = 0;
William Lallemande25473c2019-04-01 11:29:56 +0200261 int childfound;
262
263restart_wait:
264
265 childfound = 0;
266
267 exitpid = waitpid(-1, &status, WNOHANG);
268 if (exitpid > 0) {
Tim Duesterhus9b7a9762019-05-16 20:23:22 +0200269 struct mworker_proc *child, *it;
270
William Lallemande25473c2019-04-01 11:29:56 +0200271 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 Lallemand3f128872019-04-01 11:29:59 +0200280 /* delete the child from the process list */
William Lallemande25473c2019-04-01 11:29:56 +0200281 list_for_each_entry_safe(child, it, &proc_list, list) {
282 if (child->pid != exitpid)
283 continue;
284
Willy Tarreau2b718102021-04-21 07:32:39 +0200285 LIST_DELETE(&child->list);
William Lallemande25473c2019-04-01 11:29:56 +0200286 close(child->ipc_fd[0]);
287 childfound = 1;
288 break;
289 }
290
William Lallemand3f128872019-04-01 11:29:59 +0200291 if (!childfound) {
292 /* 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 +0200293 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 +0200294 } else {
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200295 /* check if exited child is a current child */
William Lallemand45286112019-04-12 16:09:21 +0200296 if (!(child->options & PROC_O_LEAVING)) {
William Lallemanda655ba42020-05-06 17:27:03 +0200297 if (child->options & PROC_O_TYPE_WORKER) {
298 if (status < 128)
Willy Tarreaue8422bf2021-06-15 09:08:18 +0200299 ha_warning("Current worker #%d (%d) exited with code %d (%s)\n", 1, exitpid, status, "Exit");
William Lallemanda655ba42020-05-06 17:27:03 +0200300 else
Willy Tarreaue8422bf2021-06-15 09:08:18 +0200301 ha_alert("Current worker #%d (%d) exited with code %d (%s)\n", 1, exitpid, status, strsignal(status - 128));
William Lallemanda655ba42020-05-06 17:27:03 +0200302 }
William Lallemand8f7069a2019-04-12 16:09:23 +0200303 else if (child->options & PROC_O_TYPE_PROG)
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200304 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 +0200305
William Lallemande25473c2019-04-01 11:29:56 +0200306 if (status != 0 && status != 130 && status != 143
307 && !(global.tune.options & GTUNE_NOEXIT_ONFAILURE)) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200308 ha_alert("exit-on-failure: killing every processes with SIGTERM\n");
William Lallemande25473c2019-04-01 11:29:56 +0200309 mworker_kill(SIGTERM);
310 }
William Lallemand74f0ec32019-04-16 17:42:44 +0200311 /* 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 Lallemande25473c2019-04-01 11:29:56 +0200314 } else {
William Lallemand8f7069a2019-04-12 16:09:23 +0200315 if (child->options & PROC_O_TYPE_WORKER) {
Willy Tarreaue8422bf2021-06-15 09:08:18 +0200316 ha_warning("Former worker #%d (%d) exited with code %d (%s)\n", 1, exitpid, status, (status >= 128) ? strsignal(status - 128) : "Exit");
William Lallemand3f128872019-04-01 11:29:59 +0200317 delete_oldpid(exitpid);
William Lallemand8f7069a2019-04-12 16:09:23 +0200318 } else if (child->options & PROC_O_TYPE_PROG) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200319 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 +0200320 }
William Lallemande25473c2019-04-01 11:29:56 +0200321 }
Tim Duesterhus9b7a9762019-05-16 20:23:22 +0200322 mworker_free_child(child);
323 child = NULL;
William Lallemande25473c2019-04-01 11:29:56 +0200324 }
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 Lallemand4cf4b332019-04-16 17:42:43 +0200331 ha_warning("All workers exited. Exiting... (%d)\n", (exitcode > 0) ? exitcode : EXIT_SUCCESS);
William Lallemande25473c2019-04-01 11:29:56 +0200332 atexit_flag = 0;
333 if (exitcode > 0)
William Lallemand4cf4b332019-04-16 17:42:43 +0200334 exit(exitcode); /* parent must leave using the status code that provoked the exit */
335 exit(EXIT_SUCCESS);
William Lallemande25473c2019-04-01 11:29:56 +0200336 }
337
338}
339
William Lallemand3fa724d2019-04-01 11:29:55 +0200340/* ----- 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 Tarreaua74cb382020-10-15 21:29:49 +0200345 * listener_accept() function.
346 */
William Lallemand3fa724d2019-04-01 11:29:55 +0200347void 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 Tarreaua74cb382020-10-15 21:29:49 +0200363 struct listener *l = fdtab[fd].owner;
364
365 if (l)
366 listener_accept(l);
William Lallemand3fa724d2019-04-01 11:29:55 +0200367 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 Tarreau619a95f2019-05-20 11:12:15 +0200383 * 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 Lallemand3fa724d2019-04-01 11:29:55 +0200386 */
Willy Tarreau619a95f2019-05-20 11:12:15 +0200387static int mworker_pipe_register_per_thread()
William Lallemand3fa724d2019-04-01 11:29:55 +0200388{
Willy Tarreau619a95f2019-05-20 11:12:15 +0200389 if (!(global.mode & MODE_MWORKER) || master)
390 return 1;
391
392 if (tid != 0)
393 return 1;
William Lallemand3fa724d2019-04-01 11:29:55 +0200394
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 Tarreau619a95f2019-05-20 11:12:15 +0200399 fd_insert(proc_self->ipc_fd[1], fdtab[proc_self->ipc_fd[1]].owner, mworker_accept_wrapper, tid_bit);
William Lallemand3fa724d2019-04-01 11:29:55 +0200400 fd_want_recv(proc_self->ipc_fd[1]);
Willy Tarreau619a95f2019-05-20 11:12:15 +0200401 return 1;
William Lallemand3fa724d2019-04-01 11:29:55 +0200402}
William Lallemand9001ce82019-04-01 11:29:57 +0200403
Willy Tarreau619a95f2019-05-20 11:12:15 +0200404REGISTER_PER_THREAD_INIT(mworker_pipe_register_per_thread);
405
William Lallemand9001ce82019-04-01 11:29:57 +0200406/* ----- 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 */
411void 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 Houchard3f795f72019-04-17 22:51:06 +0200425 task_destroy(curpeers->sync_task);
William Lallemand9001ce82019-04-01 11:29:57 +0200426 curpeers->sync_task = NULL;
Olivier Houchard3f795f72019-04-17 22:51:06 +0200427 task_destroy(curpeers->peers_fe->task);
William Lallemand9001ce82019-04-01 11:29:57 +0200428 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 Tarreau18c20d22020-10-09 16:11:46 +0200437 if (!(l->rx.flags & RX_F_MWORKER)) {
Willy Tarreau75c98d12020-10-09 15:55:23 +0200438 unbind_listener(l);
William Lallemand9001ce82019-04-01 11:29:57 +0200439 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)
William Lallemand8e765b82021-08-03 11:58:03 +0200446 curproxy->disabled = PR_DISABLED;
William Lallemand9001ce82019-04-01 11:29:57 +0200447 }
William Lallemand88dc7c52019-04-01 11:30:01 +0200448}
449
450/* Displays workers and processes */
451static 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 Lallemande8669fc2019-06-12 18:21:17 +0200457 char *uptime = NULL;
William Lallemand88dc7c52019-04-01 11:30:01 +0200458
459 if (unlikely(si_ic(si)->flags & (CF_WRITE_ERROR|CF_SHUTW)))
460 return 1;
461
462 chunk_reset(&trash);
463
William Lallemand1dc69632019-06-12 19:11:33 +0200464 chunk_printf(&trash, "#%-14s %-15s %-15s %-15s %-15s %-15s\n", "<PID>", "<type>", "<relative PID>", "<reloads>", "<uptime>", "<version>");
William Lallemande8669fc2019-06-12 18:21:17 +0200465 memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60));
Willy Tarreau76a80c72019-06-22 07:41:38 +0200466 chunk_appendf(&trash, "%-15u %-15s %-15u %-15d %-15s %-15s\n", (unsigned int)getpid(), "master", 0, proc_self->reloads, uptime, haproxy_version);
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100467 ha_free(&uptime);
William Lallemand88dc7c52019-04-01 11:30:01 +0200468
469 /* displays current processes */
470
471 chunk_appendf(&trash, "# workers\n");
472 list_for_each_entry(child, &proc_list, list) {
473 up = now.tv_sec - child->timestamp;
474
William Lallemand8f7069a2019-04-12 16:09:23 +0200475 if (!(child->options & PROC_O_TYPE_WORKER))
William Lallemand88dc7c52019-04-01 11:30:01 +0200476 continue;
477
William Lallemand45286112019-04-12 16:09:21 +0200478 if (child->options & PROC_O_LEAVING) {
William Lallemand88dc7c52019-04-01 11:30:01 +0200479 old++;
480 continue;
481 }
William Lallemande8669fc2019-06-12 18:21:17 +0200482 memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60));
Willy Tarreaue8422bf2021-06-15 09:08:18 +0200483 chunk_appendf(&trash, "%-15u %-15s %-15u %-15d %-15s %-15s\n", child->pid, "worker", 1, child->reloads, uptime, child->version);
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100484 ha_free(&uptime);
William Lallemand88dc7c52019-04-01 11:30:01 +0200485 }
486
487 /* displays old processes */
488
489 if (old) {
490 char *msg = NULL;
491
492 chunk_appendf(&trash, "# old workers\n");
493 list_for_each_entry(child, &proc_list, list) {
494 up = now.tv_sec - child->timestamp;
495
William Lallemand8f7069a2019-04-12 16:09:23 +0200496 if (!(child->options & PROC_O_TYPE_WORKER))
William Lallemand88dc7c52019-04-01 11:30:01 +0200497 continue;
498
William Lallemand45286112019-04-12 16:09:21 +0200499 if (child->options & PROC_O_LEAVING) {
Willy Tarreaue8422bf2021-06-15 09:08:18 +0200500 memprintf(&msg, "[was: %u]", 1);
William Lallemande8669fc2019-06-12 18:21:17 +0200501 memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60));
William Lallemand1dc69632019-06-12 19:11:33 +0200502 chunk_appendf(&trash, "%-15u %-15s %-15s %-15d %-15s %-15s\n", child->pid, "worker", msg, child->reloads, uptime, child->version);
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100503 ha_free(&uptime);
William Lallemand88dc7c52019-04-01 11:30:01 +0200504 }
505 }
506 free(msg);
507 }
508
William Lallemandad53d6d2019-04-01 11:30:03 +0200509 /* displays external process */
510 chunk_appendf(&trash, "# programs\n");
511 old = 0;
512 list_for_each_entry(child, &proc_list, list) {
513 up = now.tv_sec - child->timestamp;
514
William Lallemand8f7069a2019-04-12 16:09:23 +0200515 if (!(child->options & PROC_O_TYPE_PROG))
William Lallemandad53d6d2019-04-01 11:30:03 +0200516 continue;
517
William Lallemand45286112019-04-12 16:09:21 +0200518 if (child->options & PROC_O_LEAVING) {
William Lallemandad53d6d2019-04-01 11:30:03 +0200519 old++;
520 continue;
521 }
William Lallemande8669fc2019-06-12 18:21:17 +0200522 memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60));
William Lallemand1dc69632019-06-12 19:11:33 +0200523 chunk_appendf(&trash, "%-15u %-15s %-15s %-15d %-15s %-15s\n", child->pid, child->id, "-", child->reloads, uptime, "-");
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100524 ha_free(&uptime);
William Lallemandad53d6d2019-04-01 11:30:03 +0200525 }
526
527 if (old) {
528 chunk_appendf(&trash, "# old programs\n");
529 list_for_each_entry(child, &proc_list, list) {
530 up = now.tv_sec - child->timestamp;
531
William Lallemand8f7069a2019-04-12 16:09:23 +0200532 if (!(child->options & PROC_O_TYPE_PROG))
William Lallemandad53d6d2019-04-01 11:30:03 +0200533 continue;
534
William Lallemand45286112019-04-12 16:09:21 +0200535 if (child->options & PROC_O_LEAVING) {
William Lallemande8669fc2019-06-12 18:21:17 +0200536 memprintf(&uptime, "%dd%02dh%02dm%02ds", up / 86400, (up % 86400) / 3600, (up % 3600) / 60, (up % 60));
William Lallemand1dc69632019-06-12 19:11:33 +0200537 chunk_appendf(&trash, "%-15u %-15s %-15s %-15d %-15s %-15s\n", child->pid, child->id, "-", child->reloads, uptime, "-");
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100538 ha_free(&uptime);
William Lallemandad53d6d2019-04-01 11:30:03 +0200539 }
540 }
541 }
542
543
544
William Lallemand88dc7c52019-04-01 11:30:01 +0200545 if (ci_putchk(si_ic(si), &trash) == -1) {
546 si_rx_room_blk(si);
547 return 0;
548 }
549
550 /* dump complete */
551 return 1;
William Lallemand9001ce82019-04-01 11:29:57 +0200552}
William Lallemand88dc7c52019-04-01 11:30:01 +0200553
554/* reload the master process */
555static int cli_parse_reload(char **args, char *payload, struct appctx *appctx, void *private)
556{
557 if (!cli_has_level(appctx, ACCESS_LVL_OPER))
558 return 1;
559
560 mworker_reload();
561
562 return 1;
563}
564
565
William Lallemand27edc4b2019-05-07 17:49:33 +0200566static int mworker_parse_global_max_reloads(char **args, int section_type, struct proxy *curpx,
Willy Tarreau01825162021-03-09 09:53:46 +0100567 const struct proxy *defpx, const char *file, int linenum, char **err)
William Lallemand27edc4b2019-05-07 17:49:33 +0200568{
569
570 int err_code = 0;
571
572 if (alertif_too_many_args(1, file, linenum, args, &err_code))
573 goto out;
574
575 if (*(args[1]) == 0) {
576 memprintf(err, "%sparsing [%s:%d] : '%s' expects an integer argument.\n", *err, file, linenum, args[0]);
577 err_code |= ERR_ALERT | ERR_FATAL;
578 goto out;
579 }
580
581 max_reloads = atol(args[1]);
582 if (max_reloads < 0) {
583 memprintf(err, "%sparsing [%s:%d] '%s' : invalid value %d, must be >= 0", *err, file, linenum, args[0], max_reloads);
584 err_code |= ERR_ALERT | ERR_FATAL;
585 goto out;
586 }
587
588out:
589 return err_code;
590}
591
Tim Duesterhus9b7a9762019-05-16 20:23:22 +0200592void mworker_free_child(struct mworker_proc *child)
593{
594 if (child == NULL)
595 return;
596
597 if (child->command) {
598 int i;
599
600 for (i = 0; child->command[i]; i++) {
601 if (child->command[i]) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100602 ha_free(&child->command[i]);
Tim Duesterhus9b7a9762019-05-16 20:23:22 +0200603 }
William Lallemande8669fc2019-06-12 18:21:17 +0200604
Tim Duesterhus9b7a9762019-05-16 20:23:22 +0200605 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100606 ha_free(&child->command);
Tim Duesterhus9b7a9762019-05-16 20:23:22 +0200607 }
608 if (child->id) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100609 ha_free(&child->id);
Tim Duesterhus9b7a9762019-05-16 20:23:22 +0200610 }
William Lallemand1dc69632019-06-12 19:11:33 +0200611 if (child->version) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100612 ha_free(&child->version);
William Lallemand1dc69632019-06-12 19:11:33 +0200613 }
Tim Duesterhus9b7a9762019-05-16 20:23:22 +0200614 free(child);
615}
William Lallemand27edc4b2019-05-07 17:49:33 +0200616
617static struct cfg_kw_list mworker_kws = {{ }, {
618 { CFG_GLOBAL, "mworker-max-reloads", mworker_parse_global_max_reloads },
619 { 0, NULL, NULL },
620}};
621
622INITCALL1(STG_REGISTER, cfg_register_keywords, &mworker_kws);
623
624
William Lallemand88dc7c52019-04-01 11:30:01 +0200625/* register cli keywords */
626static struct cli_kw_list cli_kws = {{ },{
Willy Tarreau23c740e2021-05-09 22:49:44 +0200627 { { "@<relative pid>", NULL }, "@<relative pid> : send a command to the <relative pid> process", NULL, cli_io_handler_show_proc, NULL, NULL, ACCESS_MASTER_ONLY},
628 { { "@!<pid>", NULL }, "@!<pid> : send a command to the <pid> process", cli_parse_default, NULL, NULL, NULL, ACCESS_MASTER_ONLY},
629 { { "@master", NULL }, "@master : send a command to the master process", cli_parse_default, NULL, NULL, NULL, ACCESS_MASTER_ONLY},
630 { { "show", "proc", NULL }, "show proc : show processes status", cli_parse_default, cli_io_handler_show_proc, NULL, NULL, ACCESS_MASTER_ONLY},
631 { { "reload", NULL }, "reload : reload haproxy", cli_parse_reload, NULL, NULL, NULL, ACCESS_MASTER_ONLY},
William Lallemand88dc7c52019-04-01 11:30:01 +0200632 {{},}
633}};
634
635INITCALL1(STG_REGISTER, cli_register_kw, &cli_kws);