blob: 15c48caea56112d0b3c688b6fcd17d098ebce3b8 [file] [log] [blame]
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +01001/*
2 * Wrapper to make haproxy systemd-compliant.
3 *
4 * Copyright 2013 Marc-Antoine Perennou <Marc-Antoine@Perennou.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
13#include <errno.h>
14#include <signal.h>
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +010015#include <stdio.h>
16#include <stdlib.h>
17#include <string.h>
18#include <unistd.h>
19#include <sys/wait.h>
20
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +030021#define REEXEC_FLAG "HAPROXY_SYSTEMD_REEXEC"
Apollon Oikonomopoulos6b6f3a02014-04-17 16:39:29 +030022#define SD_DEBUG "<7>"
23#define SD_NOTICE "<5>"
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +030024
Conrad Hoffmann5b5ea9c2014-07-28 23:52:20 +020025static volatile sig_atomic_t caught_signal;
26
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +010027static char *pid_file = "/run/haproxy.pid";
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +030028static int wrapper_argc;
29static char **wrapper_argv;
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +010030
Willy Tarreau4351ea62016-10-25 16:49:31 +020031static void setup_signal_handler();
32static void pause_signal_handler();
33static void reset_signal_handler();
34
35
Willy Tarreauceaf2ae2014-09-19 15:42:30 +020036/* returns the path to the haproxy binary into <buffer>, whose size indicated
37 * in <buffer_size> must be at least 1 byte long.
38 */
Kristoffer Grönlund1b6e75f2013-11-22 11:06:34 +010039static void locate_haproxy(char *buffer, size_t buffer_size)
40{
Willy Tarreaue5eddaf2014-04-14 15:34:34 +020041 char *end = NULL;
Willy Tarreauceaf2ae2014-09-19 15:42:30 +020042 int len;
Willy Tarreaue5eddaf2014-04-14 15:34:34 +020043
Willy Tarreauceaf2ae2014-09-19 15:42:30 +020044 len = readlink("/proc/self/exe", buffer, buffer_size - 1);
45 if (len == -1)
46 goto fail;
Willy Tarreaue5eddaf2014-04-14 15:34:34 +020047
Willy Tarreauceaf2ae2014-09-19 15:42:30 +020048 buffer[len] = 0;
49 end = strrchr(buffer, '/');
50 if (end == NULL)
51 goto fail;
52
53 if (strcmp(end + strlen(end) - 16, "-systemd-wrapper") == 0) {
54 end[strlen(end) - 16] = '\0';
Willy Tarreaue5eddaf2014-04-14 15:34:34 +020055 return;
56 }
Willy Tarreauceaf2ae2014-09-19 15:42:30 +020057
Kristoffer Grönlund1b6e75f2013-11-22 11:06:34 +010058 end[1] = '\0';
Willy Tarreaue5eddaf2014-04-14 15:34:34 +020059 strncpy(end + 1, "haproxy", buffer + buffer_size - (end + 1));
60 buffer[buffer_size - 1] = '\0';
Willy Tarreauceaf2ae2014-09-19 15:42:30 +020061 return;
62 fail:
63 strncpy(buffer, "/usr/sbin/haproxy", buffer_size);
64 buffer[buffer_size - 1] = '\0';
65 return;
Kristoffer Grönlund1b6e75f2013-11-22 11:06:34 +010066}
67
Marc-Antoine Perennou47f922d2013-04-02 13:53:21 +020068static void spawn_haproxy(char **pid_strv, int nb_pid)
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +010069{
Kristoffer Grönlund1b6e75f2013-11-22 11:06:34 +010070 char haproxy_bin[512];
71 pid_t pid;
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +030072 int main_argc;
73 char **main_argv;
74
75 main_argc = wrapper_argc - 1;
76 main_argv = wrapper_argv + 1;
Kristoffer Grönlund1b6e75f2013-11-22 11:06:34 +010077
Willy Tarreaua55bbc62014-09-24 12:59:25 +020078 pid = fork();
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +010079 if (!pid) {
Willy Tarreau3747ea02016-10-25 17:05:56 +020080 char **argv;
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +010081 int i;
82 int argno = 0;
Willy Tarreau4351ea62016-10-25 16:49:31 +020083
Willy Tarreau3747ea02016-10-25 17:05:56 +020084 /* 3 for "haproxy -Ds -sf" */
85 argv = calloc(4 + main_argc + nb_pid + 1, sizeof(char *));
86 if (!argv) {
87 fprintf(stderr, SD_NOTICE "haproxy-systemd-wrapper: failed to calloc(), please try again later.\n");
88 exit(1);
89 }
90
Willy Tarreau4351ea62016-10-25 16:49:31 +020091 reset_signal_handler();
Kristoffer Grönlund1b6e75f2013-11-22 11:06:34 +010092 locate_haproxy(haproxy_bin, 512);
93 argv[argno++] = haproxy_bin;
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +010094 for (i = 0; i < main_argc; ++i)
95 argv[argno++] = main_argv[i];
96 argv[argno++] = "-Ds";
97 if (nb_pid > 0) {
98 argv[argno++] = "-sf";
99 for (i = 0; i < nb_pid; ++i)
100 argv[argno++] = pid_strv[i];
101 }
102 argv[argno] = NULL;
Kristoffer Grönlundf65194a2013-11-22 11:11:54 +0100103
Apollon Oikonomopoulos6b6f3a02014-04-17 16:39:29 +0300104 fprintf(stderr, SD_DEBUG "haproxy-systemd-wrapper: executing ");
Kristoffer Grönlundf65194a2013-11-22 11:11:54 +0100105 for (i = 0; argv[i]; ++i)
Apollon Oikonomopoulos6b6f3a02014-04-17 16:39:29 +0300106 fprintf(stderr, "%s ", argv[i]);
107 fprintf(stderr, "\n");
Kristoffer Grönlundf65194a2013-11-22 11:11:54 +0100108
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100109 execv(argv[0], argv);
Willy Tarreau7643d092016-10-25 15:50:47 +0200110 exit(1);
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100111 }
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100112}
113
114static int read_pids(char ***pid_strv)
115{
116 FILE *f = fopen(pid_file, "r");
117 int read = 0, allocated = 8;
118 char pid_str[10];
119
120 if (!f)
121 return 0;
122
123 *pid_strv = malloc(allocated * sizeof(char *));
124 while (1 == fscanf(f, "%s\n", pid_str)) {
125 if (read == allocated) {
126 allocated *= 2;
127 *pid_strv = realloc(*pid_strv, allocated * sizeof(char *));
128 }
129 (*pid_strv)[read++] = strdup(pid_str);
130 }
131
132 fclose(f);
133
134 return read;
135}
136
Conrad Hoffmann5b5ea9c2014-07-28 23:52:20 +0200137static void signal_handler(int signum)
138{
Willy Tarreaua3aa9e62016-02-27 08:26:14 +0100139 if (caught_signal != SIGINT && caught_signal != SIGTERM)
140 caught_signal = signum;
Conrad Hoffmann5b5ea9c2014-07-28 23:52:20 +0200141}
142
Willy Tarreau4351ea62016-10-25 16:49:31 +0200143static void setup_signal_handler()
144{
145 struct sigaction sa;
146
147 memset(&sa, 0, sizeof(struct sigaction));
148 sa.sa_handler = &signal_handler;
149 sigaction(SIGUSR2, &sa, NULL);
150 sigaction(SIGHUP, &sa, NULL);
151 sigaction(SIGINT, &sa, NULL);
152 sigaction(SIGTERM, &sa, NULL);
153}
154
155static void pause_signal_handler()
156{
157 signal(SIGUSR2, SIG_IGN);
158 signal(SIGHUP, SIG_IGN);
159 signal(SIGINT, SIG_DFL);
160 signal(SIGTERM, SIG_DFL);
161}
162
163static void reset_signal_handler()
164{
165 signal(SIGUSR2, SIG_DFL);
166 signal(SIGHUP, SIG_DFL);
167 signal(SIGINT, SIG_DFL);
168 signal(SIGTERM, SIG_DFL);
169}
170
Willy Tarreau2fadbe52016-02-27 08:18:04 +0100171/* handles SIGUSR2 and SIGHUP only */
172static void do_restart(int sig)
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100173{
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +0300174 setenv(REEXEC_FLAG, "1", 1);
Willy Tarreau2fadbe52016-02-27 08:18:04 +0100175 fprintf(stderr, SD_NOTICE "haproxy-systemd-wrapper: re-executing on %s.\n",
176 sig == SIGUSR2 ? "SIGUSR2" : "SIGHUP");
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100177
Willy Tarreau4351ea62016-10-25 16:49:31 +0200178 /* don't let the other process take one of those signals by accident */
179 pause_signal_handler();
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +0300180 execv(wrapper_argv[0], wrapper_argv);
Willy Tarreau4351ea62016-10-25 16:49:31 +0200181 /* failed, let's reinstall the signal handler and continue */
182 setup_signal_handler();
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100183}
184
Willy Tarreau2fadbe52016-02-27 08:18:04 +0100185/* handles SIGTERM and SIGINT only */
186static void do_shutdown(int sig)
Kristoffer Grönlund66fd1d82013-11-22 11:09:39 +0100187{
188 int i, pid;
189 char **pid_strv = NULL;
190 int nb_pid = read_pids(&pid_strv);
191 for (i = 0; i < nb_pid; ++i) {
192 pid = atoi(pid_strv[i]);
193 if (pid > 0) {
Willy Tarreau2fadbe52016-02-27 08:18:04 +0100194 fprintf(stderr, SD_DEBUG "haproxy-systemd-wrapper: %s -> %d.\n",
195 sig == SIGTERM ? "SIGTERM" : "SIGINT", pid);
Willy Tarreau6c2f7952016-02-27 08:20:17 +0100196 kill(pid, sig);
Kristoffer Grönlund66fd1d82013-11-22 11:09:39 +0100197 free(pid_strv[i]);
198 }
199 }
200 free(pid_strv);
201}
202
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100203static void init(int argc, char **argv)
204{
205 while (argc > 1) {
Conrad Hoffmanneb2cf452014-07-28 23:22:43 +0200206 if ((*argv)[0] == '-' && (*argv)[1] == 'p') {
207 pid_file = *(argv + 1);
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100208 }
209 --argc; ++argv;
210 }
211}
212
213int main(int argc, char **argv)
214{
Kristoffer Grönlundf65194a2013-11-22 11:11:54 +0100215 int status;
Willy Tarreau4351ea62016-10-25 16:49:31 +0200216
217 setup_signal_handler();
Kristoffer Grönlundf65194a2013-11-22 11:11:54 +0100218
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +0300219 wrapper_argc = argc;
220 wrapper_argv = argv;
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100221
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +0300222 --argc; ++argv;
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100223 init(argc, argv);
224
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +0300225 if (getenv(REEXEC_FLAG) != NULL) {
226 /* We are being re-executed: restart HAProxy gracefully */
227 int i;
228 char **pid_strv = NULL;
229 int nb_pid = read_pids(&pid_strv);
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +0300230
231 unsetenv(REEXEC_FLAG);
232 spawn_haproxy(pid_strv, nb_pid);
233
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +0300234 for (i = 0; i < nb_pid; ++i)
235 free(pid_strv[i]);
236 free(pid_strv);
237 }
238 else {
239 /* Start a fresh copy of HAProxy */
240 spawn_haproxy(NULL, 0);
241 }
242
Kristoffer Grönlundf65194a2013-11-22 11:11:54 +0100243 status = -1;
Willy Tarreau1ab5e862016-02-27 07:58:50 +0100244 while (caught_signal || wait(&status) != -1 || errno == EINTR) {
Willy Tarreau2fadbe52016-02-27 08:18:04 +0100245 int sig = caught_signal;
246
Matt Robenoltc54bdd22014-09-11 05:19:30 +0000247 if (caught_signal == SIGUSR2 || caught_signal == SIGHUP) {
Conrad Hoffmann5b5ea9c2014-07-28 23:52:20 +0200248 caught_signal = 0;
Willy Tarreau2fadbe52016-02-27 08:18:04 +0100249 do_restart(sig);
Conrad Hoffmann5b5ea9c2014-07-28 23:52:20 +0200250 }
Matt Robenoltc54bdd22014-09-11 05:19:30 +0000251 else if (caught_signal == SIGINT || caught_signal == SIGTERM) {
Conrad Hoffmann5b5ea9c2014-07-28 23:52:20 +0200252 caught_signal = 0;
Willy Tarreau2fadbe52016-02-27 08:18:04 +0100253 do_shutdown(sig);
Conrad Hoffmann5b5ea9c2014-07-28 23:52:20 +0200254 }
255 }
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100256
Apollon Oikonomopoulos6b6f3a02014-04-17 16:39:29 +0300257 fprintf(stderr, SD_NOTICE "haproxy-systemd-wrapper: exit, haproxy RC=%d\n",
258 status);
Apollon Oikonomopoulose8ea5982014-04-17 16:39:30 +0300259 return status;
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100260}