blob: 84d2e176f96a94e509810024b78a8998b9bafa90 [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) {
80 /* 3 for "haproxy -Ds -sf" */
81 char **argv = calloc(4 + main_argc + nb_pid + 1, sizeof(char *));
82 int i;
83 int argno = 0;
Willy Tarreau4351ea62016-10-25 16:49:31 +020084
85 reset_signal_handler();
Kristoffer Grönlund1b6e75f2013-11-22 11:06:34 +010086 locate_haproxy(haproxy_bin, 512);
87 argv[argno++] = haproxy_bin;
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +010088 for (i = 0; i < main_argc; ++i)
89 argv[argno++] = main_argv[i];
90 argv[argno++] = "-Ds";
91 if (nb_pid > 0) {
92 argv[argno++] = "-sf";
93 for (i = 0; i < nb_pid; ++i)
94 argv[argno++] = pid_strv[i];
95 }
96 argv[argno] = NULL;
Kristoffer Grönlundf65194a2013-11-22 11:11:54 +010097
Apollon Oikonomopoulos6b6f3a02014-04-17 16:39:29 +030098 fprintf(stderr, SD_DEBUG "haproxy-systemd-wrapper: executing ");
Kristoffer Grönlundf65194a2013-11-22 11:11:54 +010099 for (i = 0; argv[i]; ++i)
Apollon Oikonomopoulos6b6f3a02014-04-17 16:39:29 +0300100 fprintf(stderr, "%s ", argv[i]);
101 fprintf(stderr, "\n");
Kristoffer Grönlundf65194a2013-11-22 11:11:54 +0100102
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100103 execv(argv[0], argv);
Willy Tarreau7643d092016-10-25 15:50:47 +0200104 exit(1);
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100105 }
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100106}
107
108static int read_pids(char ***pid_strv)
109{
110 FILE *f = fopen(pid_file, "r");
111 int read = 0, allocated = 8;
112 char pid_str[10];
113
114 if (!f)
115 return 0;
116
117 *pid_strv = malloc(allocated * sizeof(char *));
118 while (1 == fscanf(f, "%s\n", pid_str)) {
119 if (read == allocated) {
120 allocated *= 2;
121 *pid_strv = realloc(*pid_strv, allocated * sizeof(char *));
122 }
123 (*pid_strv)[read++] = strdup(pid_str);
124 }
125
126 fclose(f);
127
128 return read;
129}
130
Conrad Hoffmann5b5ea9c2014-07-28 23:52:20 +0200131static void signal_handler(int signum)
132{
Willy Tarreaua3aa9e62016-02-27 08:26:14 +0100133 if (caught_signal != SIGINT && caught_signal != SIGTERM)
134 caught_signal = signum;
Conrad Hoffmann5b5ea9c2014-07-28 23:52:20 +0200135}
136
Willy Tarreau4351ea62016-10-25 16:49:31 +0200137static void setup_signal_handler()
138{
139 struct sigaction sa;
140
141 memset(&sa, 0, sizeof(struct sigaction));
142 sa.sa_handler = &signal_handler;
143 sigaction(SIGUSR2, &sa, NULL);
144 sigaction(SIGHUP, &sa, NULL);
145 sigaction(SIGINT, &sa, NULL);
146 sigaction(SIGTERM, &sa, NULL);
147}
148
149static void pause_signal_handler()
150{
151 signal(SIGUSR2, SIG_IGN);
152 signal(SIGHUP, SIG_IGN);
153 signal(SIGINT, SIG_DFL);
154 signal(SIGTERM, SIG_DFL);
155}
156
157static void reset_signal_handler()
158{
159 signal(SIGUSR2, SIG_DFL);
160 signal(SIGHUP, SIG_DFL);
161 signal(SIGINT, SIG_DFL);
162 signal(SIGTERM, SIG_DFL);
163}
164
Willy Tarreau2fadbe52016-02-27 08:18:04 +0100165/* handles SIGUSR2 and SIGHUP only */
166static void do_restart(int sig)
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100167{
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +0300168 setenv(REEXEC_FLAG, "1", 1);
Willy Tarreau2fadbe52016-02-27 08:18:04 +0100169 fprintf(stderr, SD_NOTICE "haproxy-systemd-wrapper: re-executing on %s.\n",
170 sig == SIGUSR2 ? "SIGUSR2" : "SIGHUP");
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100171
Willy Tarreau4351ea62016-10-25 16:49:31 +0200172 /* don't let the other process take one of those signals by accident */
173 pause_signal_handler();
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +0300174 execv(wrapper_argv[0], wrapper_argv);
Willy Tarreau4351ea62016-10-25 16:49:31 +0200175 /* failed, let's reinstall the signal handler and continue */
176 setup_signal_handler();
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100177}
178
Willy Tarreau2fadbe52016-02-27 08:18:04 +0100179/* handles SIGTERM and SIGINT only */
180static void do_shutdown(int sig)
Kristoffer Grönlund66fd1d82013-11-22 11:09:39 +0100181{
182 int i, pid;
183 char **pid_strv = NULL;
184 int nb_pid = read_pids(&pid_strv);
185 for (i = 0; i < nb_pid; ++i) {
186 pid = atoi(pid_strv[i]);
187 if (pid > 0) {
Willy Tarreau2fadbe52016-02-27 08:18:04 +0100188 fprintf(stderr, SD_DEBUG "haproxy-systemd-wrapper: %s -> %d.\n",
189 sig == SIGTERM ? "SIGTERM" : "SIGINT", pid);
Willy Tarreau6c2f7952016-02-27 08:20:17 +0100190 kill(pid, sig);
Kristoffer Grönlund66fd1d82013-11-22 11:09:39 +0100191 free(pid_strv[i]);
192 }
193 }
194 free(pid_strv);
195}
196
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100197static void init(int argc, char **argv)
198{
199 while (argc > 1) {
Conrad Hoffmanneb2cf452014-07-28 23:22:43 +0200200 if ((*argv)[0] == '-' && (*argv)[1] == 'p') {
201 pid_file = *(argv + 1);
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100202 }
203 --argc; ++argv;
204 }
205}
206
207int main(int argc, char **argv)
208{
Kristoffer Grönlundf65194a2013-11-22 11:11:54 +0100209 int status;
Willy Tarreau4351ea62016-10-25 16:49:31 +0200210
211 setup_signal_handler();
Kristoffer Grönlundf65194a2013-11-22 11:11:54 +0100212
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +0300213 wrapper_argc = argc;
214 wrapper_argv = argv;
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100215
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +0300216 --argc; ++argv;
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100217 init(argc, argv);
218
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +0300219 if (getenv(REEXEC_FLAG) != NULL) {
220 /* We are being re-executed: restart HAProxy gracefully */
221 int i;
222 char **pid_strv = NULL;
223 int nb_pid = read_pids(&pid_strv);
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +0300224
225 unsetenv(REEXEC_FLAG);
226 spawn_haproxy(pid_strv, nb_pid);
227
Apollon Oikonomopoulosb3fce6e2014-04-17 16:39:28 +0300228 for (i = 0; i < nb_pid; ++i)
229 free(pid_strv[i]);
230 free(pid_strv);
231 }
232 else {
233 /* Start a fresh copy of HAProxy */
234 spawn_haproxy(NULL, 0);
235 }
236
Kristoffer Grönlundf65194a2013-11-22 11:11:54 +0100237 status = -1;
Willy Tarreau1ab5e862016-02-27 07:58:50 +0100238 while (caught_signal || wait(&status) != -1 || errno == EINTR) {
Willy Tarreau2fadbe52016-02-27 08:18:04 +0100239 int sig = caught_signal;
240
Matt Robenoltc54bdd22014-09-11 05:19:30 +0000241 if (caught_signal == SIGUSR2 || caught_signal == SIGHUP) {
Conrad Hoffmann5b5ea9c2014-07-28 23:52:20 +0200242 caught_signal = 0;
Willy Tarreau2fadbe52016-02-27 08:18:04 +0100243 do_restart(sig);
Conrad Hoffmann5b5ea9c2014-07-28 23:52:20 +0200244 }
Matt Robenoltc54bdd22014-09-11 05:19:30 +0000245 else if (caught_signal == SIGINT || caught_signal == SIGTERM) {
Conrad Hoffmann5b5ea9c2014-07-28 23:52:20 +0200246 caught_signal = 0;
Willy Tarreau2fadbe52016-02-27 08:18:04 +0100247 do_shutdown(sig);
Conrad Hoffmann5b5ea9c2014-07-28 23:52:20 +0200248 }
249 }
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100250
Apollon Oikonomopoulos6b6f3a02014-04-17 16:39:29 +0300251 fprintf(stderr, SD_NOTICE "haproxy-systemd-wrapper: exit, haproxy RC=%d\n",
252 status);
Apollon Oikonomopoulose8ea5982014-04-17 16:39:30 +0300253 return status;
Marc-Antoine Perennoued9803e2013-02-12 10:53:53 +0100254}