blob: 9de94a2894a7e27bd11702dcfbec43a73997b548 [file] [log] [blame]
William Lallemand9a1ee7a2019-04-01 11:30:02 +02001/*
2 * Master Worker - program
3 *
4 * Copyright HAProxy Technologies - 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
13#define _GNU_SOURCE
14
15#include <sys/types.h>
16#include <errno.h>
17#include <grp.h>
Andrew Heberle97236962019-07-12 11:50:26 +080018#include <pwd.h>
William Lallemand9a1ee7a2019-04-01 11:30:02 +020019#include <stdio.h>
20#include <string.h>
21#include <unistd.h>
22
Willy Tarreau4c7e4b72020-05-27 12:58:42 +020023#include <haproxy/api.h>
Willy Tarreau6be78492020-06-05 00:00:29 +020024#include <haproxy/cfgparse.h>
Willy Tarreau8d366972020-05-27 16:10:29 +020025#include <haproxy/errors.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020026#include <haproxy/global.h>
Willy Tarreaub5abe5b2020-06-04 14:07:37 +020027#include <haproxy/mworker.h>
Willy Tarreaudfd3de82020-06-04 23:46:14 +020028#include <haproxy/task.h>
William Lallemand9a1ee7a2019-04-01 11:30:02 +020029
William Lallemand9a1ee7a2019-04-01 11:30:02 +020030
31static int use_program = 0; /* do we use the program section ? */
32
33/*
34 * Launch every programs
35 */
36int mworker_ext_launch_all()
37{
38 int ret;
39 struct mworker_proc *child;
William Lallemandbd3de3e2019-04-12 16:09:22 +020040 struct mworker_proc *tmp;
41 int reexec = 0;
William Lallemand9a1ee7a2019-04-01 11:30:02 +020042
43 if (!use_program)
44 return 0;
45
William Lallemandbd3de3e2019-04-12 16:09:22 +020046 reexec = getenv("HAPROXY_MWORKER_REEXEC") ? 1 : 0;
47
William Lallemand9a1ee7a2019-04-01 11:30:02 +020048 /* find the right mworker_proc */
William Lallemandbd3de3e2019-04-12 16:09:22 +020049 list_for_each_entry_safe(child, tmp, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +020050 if (child->reloads == 0 && (child->options & PROC_O_TYPE_PROG)) {
William Lallemandbd3de3e2019-04-12 16:09:22 +020051
52 if (reexec && (!(child->options & PROC_O_START_RELOAD))) {
53 struct mworker_proc *old_child;
54
55 /*
56 * This is a reload and we don't want to fork a
57 * new program so have to remove the entry in
58 * the list.
59 *
60 * But before that, we need to mark the
61 * previous program as not leaving, if we find one.
62 */
63
64 list_for_each_entry(old_child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +020065 if (!(old_child->options & PROC_O_TYPE_PROG) || (!(old_child->options & PROC_O_LEAVING)))
William Lallemandbd3de3e2019-04-12 16:09:22 +020066 continue;
67
Tim Duesterhuse5ff1412021-01-02 22:31:53 +010068 if (strcmp(old_child->id, child->id) == 0)
William Lallemandbd3de3e2019-04-12 16:09:22 +020069 old_child->options &= ~PROC_O_LEAVING;
70 }
71
72
Willy Tarreau2b718102021-04-21 07:32:39 +020073 LIST_DELETE(&child->list);
Tim Duesterhus9b7a9762019-05-16 20:23:22 +020074 mworker_free_child(child);
William Lallemandbd3de3e2019-04-12 16:09:22 +020075 child = NULL;
76
77 continue;
78 }
79
William Lallemand9a1ee7a2019-04-01 11:30:02 +020080 child->timestamp = now.tv_sec;
81
82 ret = fork();
83 if (ret < 0) {
84 ha_alert("Cannot fork program '%s'.\n", child->id);
85 exit(EXIT_FAILURE); /* there has been an error */
86 } else if (ret > 0) { /* parent */
87 child->pid = ret;
88 ha_notice("New program '%s' (%d) forked\n", child->id, ret);
89 continue;
90 } else if (ret == 0) {
91 /* In child */
92 mworker_unblock_signals();
93 mworker_cleanlisteners();
94 mworker_cleantasks();
95
Andrew Heberle97236962019-07-12 11:50:26 +080096 /* setgid / setuid */
97 if (child->gid != -1) {
98 if (getgroups(0, NULL) > 0 && setgroups(0, NULL) == -1)
99 ha_warning("[%s.main()] Failed to drop supplementary groups. Using 'gid'/'group'"
100 " without 'uid'/'user' is generally useless.\n", child->command[0]);
101
102 if (setgid(child->gid) == -1) {
103 ha_alert("[%s.main()] Cannot set gid %d.\n", child->command[0], child->gid);
104 exit(1);
105 }
106 }
107
108 if (child->uid != -1 && setuid(child->uid) == -1) {
109 ha_alert("[%s.main()] Cannot set uid %d.\n", child->command[0], child->gid);
110 exit(1);
111 }
112
Willy Tarreau3c032f22021-07-21 10:17:02 +0200113 /* This one must not be exported, it's internal! */
114 unsetenv("HAPROXY_MWORKER_REEXEC");
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200115 execvp(child->command[0], child->command);
116
117 ha_alert("Cannot execute %s: %s\n", child->command[0], strerror(errno));
118 exit(EXIT_FAILURE);
119 }
120 }
121 }
122
123 return 0;
124
125}
126
127
128/* Configuration */
129
130int cfg_parse_program(const char *file, int linenum, char **args, int kwm)
131{
132 static struct mworker_proc *ext_child = NULL;
133 struct mworker_proc *child;
134 int err_code = 0;
135
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100136 if (strcmp(args[0], "program") == 0) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200137 if (alertif_too_many_args(1, file, linenum, args, &err_code)) {
138 err_code |= ERR_ABORT;
139 goto error;
140 }
141
142 if (!*args[1]) {
143 ha_alert("parsing [%s:%d] : '%s' expects an <id> argument\n",
144 file, linenum, args[0]);
145 err_code |= ERR_ALERT | ERR_ABORT;
146 goto error;
147 }
148
149 ext_child = calloc(1, sizeof(*ext_child));
150 if (!ext_child) {
151 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
152 err_code |= ERR_ALERT | ERR_ABORT;
153 goto error;
154 }
155
William Lallemand8f7069a2019-04-12 16:09:23 +0200156 ext_child->options |= PROC_O_TYPE_PROG; /* external process */
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200157 ext_child->command = NULL;
158 ext_child->path = NULL;
159 ext_child->id = NULL;
160 ext_child->pid = -1;
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200161 ext_child->reloads = 0;
162 ext_child->timestamp = -1;
163 ext_child->ipc_fd[0] = -1;
164 ext_child->ipc_fd[1] = -1;
William Lallemandbd3de3e2019-04-12 16:09:22 +0200165 ext_child->options |= PROC_O_START_RELOAD; /* restart the programs by default */
Andrew Heberle97236962019-07-12 11:50:26 +0800166 ext_child->uid = -1;
167 ext_child->gid = -1;
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200168 LIST_INIT(&ext_child->list);
169
170 list_for_each_entry(child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +0200171 if (child->reloads == 0 && (child->options & PROC_O_TYPE_PROG)) {
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100172 if (strcmp(args[1], child->id) == 0) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200173 ha_alert("parsing [%s:%d]: '%s' program section already exists in the configuration.\n", file, linenum, args[1]);
174 err_code |= ERR_ALERT | ERR_ABORT;
175 goto error;
176 }
177 }
178 }
179
180 ext_child->id = strdup(args[1]);
181 if (!ext_child->id) {
182 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
183 err_code |= ERR_ALERT | ERR_ABORT;
184 goto error;
185 }
186
Willy Tarreau2b718102021-04-21 07:32:39 +0200187 LIST_APPEND(&proc_list, &ext_child->list);
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200188
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100189 } else if (strcmp(args[0], "command") == 0) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200190 int arg_nb = 0;
191 int i = 0;
192
193 if (*(args[1]) == 0) {
194 ha_alert("parsing [%s:%d]: '%s' expects a command with optional arguments separated in words.\n", file, linenum, args[0]);
195 err_code |= ERR_ALERT | ERR_FATAL;
196 goto error;
197 }
198
199 while (*args[arg_nb+1])
200 arg_nb++;
201
202 ext_child->command = calloc(arg_nb+1, sizeof(*ext_child->command));
203
204 if (!ext_child->command) {
205 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
206 err_code |= ERR_ALERT | ERR_ABORT;
207 goto error;
208 }
209
210 while (i < arg_nb) {
211 ext_child->command[i] = strdup(args[i+1]);
212 if (!ext_child->command[i]) {
213 ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum);
214 err_code |= ERR_ALERT | ERR_ABORT;
215 goto error;
216 }
217 i++;
218 }
219 ext_child->command[i] = NULL;
220
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100221 } else if (strcmp(args[0], "option") == 0) {
William Lallemandbd3de3e2019-04-12 16:09:22 +0200222
223 if (*(args[1]) == '\0') {
224 ha_alert("parsing [%s:%d]: '%s' expects an option name.\n",
225 file, linenum, args[0]);
226 err_code |= ERR_ALERT | ERR_FATAL;
227 goto error;
228 }
229
230 if (strcmp(args[1], "start-on-reload") == 0) {
231 if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code))
232 goto error;
233 if (kwm == KWM_STD)
234 ext_child->options |= PROC_O_START_RELOAD;
235 else if (kwm == KWM_NO)
236 ext_child->options &= ~PROC_O_START_RELOAD;
237 goto out;
238
239 } else {
240 ha_alert("parsing [%s:%d] : unknown option '%s'.\n", file, linenum, args[1]);
241 err_code |= ERR_ALERT | ERR_FATAL;
242 goto error;
243 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100244 } else if (strcmp(args[0], "user") == 0) {
Andrew Heberle97236962019-07-12 11:50:26 +0800245 struct passwd *ext_child_user;
246 if (*(args[1]) == '\0') {
247 ha_alert("parsing [%s:%d]: '%s' expects a user name.\n",
248 file, linenum, args[0]);
249 err_code |= ERR_ALERT | ERR_FATAL;
250 goto error;
251 }
252
253 if (alertif_too_many_args(1, file, linenum, args, &err_code))
254 goto error;
255
256 if (ext_child->uid != -1) {
257 ha_alert("parsing [%s:%d] : user/uid already specified. Continuing.\n", file, linenum);
258 err_code |= ERR_ALERT;
259 goto out;
260 }
261
262 ext_child_user = getpwnam(args[1]);
263 if (ext_child_user != NULL) {
264 ext_child->uid = (int)ext_child_user->pw_uid;
265 } else {
266 ha_alert("parsing [%s:%d] : cannot find user id for '%s' (%d:%s)\n", file, linenum, args[1], errno, strerror(errno));
267 err_code |= ERR_ALERT | ERR_FATAL;
268 }
Tim Duesterhuse5ff1412021-01-02 22:31:53 +0100269 } else if (strcmp(args[0], "group") == 0) {
Andrew Heberle97236962019-07-12 11:50:26 +0800270 struct group *ext_child_group;
271 if (*(args[1]) == '\0') {
272 ha_alert("parsing [%s:%d]: '%s' expects a group name.\n",
273 file, linenum, args[0]);
274 err_code |= ERR_ALERT | ERR_FATAL;
275 goto error;
276 }
277
278 if (alertif_too_many_args(1, file, linenum, args, &err_code))
279 goto error;
280
281 if (ext_child->gid != -1) {
282 ha_alert("parsing [%s:%d] : group/gid already specified. Continuing.\n", file, linenum);
283 err_code |= ERR_ALERT;
284 goto out;
285 }
286
287 ext_child_group = getgrnam(args[1]);
288 if (ext_child_group != NULL) {
289 ext_child->gid = (int)ext_child_group->gr_gid;
290 } else {
291 ha_alert("parsing [%s:%d] : cannot find group id for '%s' (%d:%s)\n", file, linenum, args[1], errno, strerror(errno));
292 err_code |= ERR_ALERT | ERR_FATAL;
293 }
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200294 } else {
295 ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], "program");
296 err_code |= ERR_ALERT | ERR_FATAL;
297 goto error;
298 }
299
300 use_program = 1;
301
302 return err_code;
303
304error:
Tim Duesterhus2c9e2742019-06-23 22:10:12 +0200305 if (ext_child) {
Willy Tarreau2b718102021-04-21 07:32:39 +0200306 LIST_DELETE(&ext_child->list);
Tim Duesterhus2c9e2742019-06-23 22:10:12 +0200307 if (ext_child->command) {
308 int i;
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200309
Tim Duesterhus2c9e2742019-06-23 22:10:12 +0200310 for (i = 0; ext_child->command[i]; i++) {
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100311 ha_free(&ext_child->command[i]);
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200312 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100313 ha_free(&ext_child->command);
Tim Duesterhus2c9e2742019-06-23 22:10:12 +0200314 }
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100315 ha_free(&ext_child->id);
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200316 }
317
Willy Tarreau61cfdf42021-02-20 10:46:51 +0100318 ha_free(&ext_child);
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200319
William Lallemandbd3de3e2019-04-12 16:09:22 +0200320out:
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200321 return err_code;
322
323}
324
325int cfg_program_postparser()
326{
327 int err_code = 0;
328 struct mworker_proc *child;
329
330 list_for_each_entry(child, &proc_list, list) {
William Lallemand8f7069a2019-04-12 16:09:23 +0200331 if (child->reloads == 0 && (child->options & PROC_O_TYPE_PROG)) {
William Lallemand9a1ee7a2019-04-01 11:30:02 +0200332 if (child->command == NULL) {
333 ha_alert("The program section '%s' lacks a command to launch.\n", child->id);
334 err_code |= ERR_ALERT | ERR_FATAL;
335 }
336 }
337 }
338
339 if (use_program && !(global.mode & MODE_MWORKER)) {
340 ha_alert("Can't use a 'program' section without master worker mode.\n");
341 err_code |= ERR_ALERT | ERR_FATAL;
342 }
343
344 return err_code;
345}
346
347
348REGISTER_CONFIG_SECTION("program", cfg_parse_program, NULL);
349REGISTER_CONFIG_POSTPARSER("program", cfg_program_postparser);