William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 1 | /* |
| 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 Heberle | 9723696 | 2019-07-12 11:50:26 +0800 | [diff] [blame] | 18 | #include <pwd.h> |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 19 | #include <stdio.h> |
| 20 | #include <string.h> |
| 21 | #include <unistd.h> |
| 22 | |
Willy Tarreau | 4c7e4b7 | 2020-05-27 12:58:42 +0200 | [diff] [blame] | 23 | #include <haproxy/api.h> |
Willy Tarreau | 6be7849 | 2020-06-05 00:00:29 +0200 | [diff] [blame] | 24 | #include <haproxy/cfgparse.h> |
Willy Tarreau | 8d36697 | 2020-05-27 16:10:29 +0200 | [diff] [blame] | 25 | #include <haproxy/errors.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 26 | #include <haproxy/global.h> |
Willy Tarreau | b5abe5b | 2020-06-04 14:07:37 +0200 | [diff] [blame] | 27 | #include <haproxy/mworker.h> |
Willy Tarreau | dfd3de8 | 2020-06-04 23:46:14 +0200 | [diff] [blame] | 28 | #include <haproxy/task.h> |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 29 | |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 30 | |
| 31 | static int use_program = 0; /* do we use the program section ? */ |
| 32 | |
| 33 | /* |
| 34 | * Launch every programs |
| 35 | */ |
| 36 | int mworker_ext_launch_all() |
| 37 | { |
| 38 | int ret; |
| 39 | struct mworker_proc *child; |
William Lallemand | bd3de3e | 2019-04-12 16:09:22 +0200 | [diff] [blame] | 40 | struct mworker_proc *tmp; |
| 41 | int reexec = 0; |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 42 | |
| 43 | if (!use_program) |
| 44 | return 0; |
| 45 | |
William Lallemand | bd3de3e | 2019-04-12 16:09:22 +0200 | [diff] [blame] | 46 | reexec = getenv("HAPROXY_MWORKER_REEXEC") ? 1 : 0; |
| 47 | |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 48 | /* find the right mworker_proc */ |
William Lallemand | bd3de3e | 2019-04-12 16:09:22 +0200 | [diff] [blame] | 49 | list_for_each_entry_safe(child, tmp, &proc_list, list) { |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 50 | if (child->reloads == 0 && (child->options & PROC_O_TYPE_PROG)) { |
William Lallemand | bd3de3e | 2019-04-12 16:09:22 +0200 | [diff] [blame] | 51 | |
| 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 Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 65 | if (!(old_child->options & PROC_O_TYPE_PROG) || (!(old_child->options & PROC_O_LEAVING))) |
William Lallemand | bd3de3e | 2019-04-12 16:09:22 +0200 | [diff] [blame] | 66 | continue; |
| 67 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 68 | if (strcmp(old_child->id, child->id) == 0) |
William Lallemand | bd3de3e | 2019-04-12 16:09:22 +0200 | [diff] [blame] | 69 | old_child->options &= ~PROC_O_LEAVING; |
| 70 | } |
| 71 | |
| 72 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 73 | LIST_DELETE(&child->list); |
Tim Duesterhus | 9b7a976 | 2019-05-16 20:23:22 +0200 | [diff] [blame] | 74 | mworker_free_child(child); |
William Lallemand | bd3de3e | 2019-04-12 16:09:22 +0200 | [diff] [blame] | 75 | child = NULL; |
| 76 | |
| 77 | continue; |
| 78 | } |
| 79 | |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 80 | 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 Heberle | 9723696 | 2019-07-12 11:50:26 +0800 | [diff] [blame] | 96 | /* 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 Tarreau | a9274a1 | 2021-07-21 10:17:02 +0200 | [diff] [blame] | 113 | /* This one must not be exported, it's internal! */ |
| 114 | unsetenv("HAPROXY_MWORKER_REEXEC"); |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 115 | 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 | |
| 130 | int 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 Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 136 | if (strcmp(args[0], "program") == 0) { |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 137 | 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 Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 156 | ext_child->options |= PROC_O_TYPE_PROG; /* external process */ |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 157 | ext_child->command = NULL; |
| 158 | ext_child->path = NULL; |
| 159 | ext_child->id = NULL; |
| 160 | ext_child->pid = -1; |
| 161 | ext_child->relative_pid = -1; |
| 162 | ext_child->reloads = 0; |
| 163 | ext_child->timestamp = -1; |
| 164 | ext_child->ipc_fd[0] = -1; |
| 165 | ext_child->ipc_fd[1] = -1; |
William Lallemand | bd3de3e | 2019-04-12 16:09:22 +0200 | [diff] [blame] | 166 | ext_child->options |= PROC_O_START_RELOAD; /* restart the programs by default */ |
Andrew Heberle | 9723696 | 2019-07-12 11:50:26 +0800 | [diff] [blame] | 167 | ext_child->uid = -1; |
| 168 | ext_child->gid = -1; |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 169 | LIST_INIT(&ext_child->list); |
| 170 | |
| 171 | list_for_each_entry(child, &proc_list, list) { |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 172 | if (child->reloads == 0 && (child->options & PROC_O_TYPE_PROG)) { |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 173 | if (strcmp(args[1], child->id) == 0) { |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 174 | ha_alert("parsing [%s:%d]: '%s' program section already exists in the configuration.\n", file, linenum, args[1]); |
| 175 | err_code |= ERR_ALERT | ERR_ABORT; |
| 176 | goto error; |
| 177 | } |
| 178 | } |
| 179 | } |
| 180 | |
| 181 | ext_child->id = strdup(args[1]); |
| 182 | if (!ext_child->id) { |
| 183 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 184 | err_code |= ERR_ALERT | ERR_ABORT; |
| 185 | goto error; |
| 186 | } |
| 187 | |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 188 | LIST_APPEND(&proc_list, &ext_child->list); |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 189 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 190 | } else if (strcmp(args[0], "command") == 0) { |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 191 | int arg_nb = 0; |
| 192 | int i = 0; |
| 193 | |
| 194 | if (*(args[1]) == 0) { |
| 195 | ha_alert("parsing [%s:%d]: '%s' expects a command with optional arguments separated in words.\n", file, linenum, args[0]); |
| 196 | err_code |= ERR_ALERT | ERR_FATAL; |
| 197 | goto error; |
| 198 | } |
| 199 | |
| 200 | while (*args[arg_nb+1]) |
| 201 | arg_nb++; |
| 202 | |
| 203 | ext_child->command = calloc(arg_nb+1, sizeof(*ext_child->command)); |
| 204 | |
| 205 | if (!ext_child->command) { |
| 206 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 207 | err_code |= ERR_ALERT | ERR_ABORT; |
| 208 | goto error; |
| 209 | } |
| 210 | |
| 211 | while (i < arg_nb) { |
| 212 | ext_child->command[i] = strdup(args[i+1]); |
| 213 | if (!ext_child->command[i]) { |
| 214 | ha_alert("parsing [%s:%d] : out of memory.\n", file, linenum); |
| 215 | err_code |= ERR_ALERT | ERR_ABORT; |
| 216 | goto error; |
| 217 | } |
| 218 | i++; |
| 219 | } |
| 220 | ext_child->command[i] = NULL; |
| 221 | |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 222 | } else if (strcmp(args[0], "option") == 0) { |
William Lallemand | bd3de3e | 2019-04-12 16:09:22 +0200 | [diff] [blame] | 223 | |
| 224 | if (*(args[1]) == '\0') { |
| 225 | ha_alert("parsing [%s:%d]: '%s' expects an option name.\n", |
| 226 | file, linenum, args[0]); |
| 227 | err_code |= ERR_ALERT | ERR_FATAL; |
| 228 | goto error; |
| 229 | } |
| 230 | |
| 231 | if (strcmp(args[1], "start-on-reload") == 0) { |
| 232 | if (alertif_too_many_args_idx(0, 1, file, linenum, args, &err_code)) |
| 233 | goto error; |
| 234 | if (kwm == KWM_STD) |
| 235 | ext_child->options |= PROC_O_START_RELOAD; |
| 236 | else if (kwm == KWM_NO) |
| 237 | ext_child->options &= ~PROC_O_START_RELOAD; |
| 238 | goto out; |
| 239 | |
| 240 | } else { |
| 241 | ha_alert("parsing [%s:%d] : unknown option '%s'.\n", file, linenum, args[1]); |
| 242 | err_code |= ERR_ALERT | ERR_FATAL; |
| 243 | goto error; |
| 244 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 245 | } else if (strcmp(args[0], "user") == 0) { |
Andrew Heberle | 9723696 | 2019-07-12 11:50:26 +0800 | [diff] [blame] | 246 | struct passwd *ext_child_user; |
| 247 | if (*(args[1]) == '\0') { |
| 248 | ha_alert("parsing [%s:%d]: '%s' expects a user name.\n", |
| 249 | file, linenum, args[0]); |
| 250 | err_code |= ERR_ALERT | ERR_FATAL; |
| 251 | goto error; |
| 252 | } |
| 253 | |
| 254 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 255 | goto error; |
| 256 | |
| 257 | if (ext_child->uid != -1) { |
| 258 | ha_alert("parsing [%s:%d] : user/uid already specified. Continuing.\n", file, linenum); |
| 259 | err_code |= ERR_ALERT; |
| 260 | goto out; |
| 261 | } |
| 262 | |
| 263 | ext_child_user = getpwnam(args[1]); |
| 264 | if (ext_child_user != NULL) { |
| 265 | ext_child->uid = (int)ext_child_user->pw_uid; |
| 266 | } else { |
| 267 | ha_alert("parsing [%s:%d] : cannot find user id for '%s' (%d:%s)\n", file, linenum, args[1], errno, strerror(errno)); |
| 268 | err_code |= ERR_ALERT | ERR_FATAL; |
| 269 | } |
Tim Duesterhus | e5ff141 | 2021-01-02 22:31:53 +0100 | [diff] [blame] | 270 | } else if (strcmp(args[0], "group") == 0) { |
Andrew Heberle | 9723696 | 2019-07-12 11:50:26 +0800 | [diff] [blame] | 271 | struct group *ext_child_group; |
| 272 | if (*(args[1]) == '\0') { |
| 273 | ha_alert("parsing [%s:%d]: '%s' expects a group name.\n", |
| 274 | file, linenum, args[0]); |
| 275 | err_code |= ERR_ALERT | ERR_FATAL; |
| 276 | goto error; |
| 277 | } |
| 278 | |
| 279 | if (alertif_too_many_args(1, file, linenum, args, &err_code)) |
| 280 | goto error; |
| 281 | |
| 282 | if (ext_child->gid != -1) { |
| 283 | ha_alert("parsing [%s:%d] : group/gid already specified. Continuing.\n", file, linenum); |
| 284 | err_code |= ERR_ALERT; |
| 285 | goto out; |
| 286 | } |
| 287 | |
| 288 | ext_child_group = getgrnam(args[1]); |
| 289 | if (ext_child_group != NULL) { |
| 290 | ext_child->gid = (int)ext_child_group->gr_gid; |
| 291 | } else { |
| 292 | ha_alert("parsing [%s:%d] : cannot find group id for '%s' (%d:%s)\n", file, linenum, args[1], errno, strerror(errno)); |
| 293 | err_code |= ERR_ALERT | ERR_FATAL; |
| 294 | } |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 295 | } else { |
| 296 | ha_alert("parsing [%s:%d] : unknown keyword '%s' in '%s' section\n", file, linenum, args[0], "program"); |
| 297 | err_code |= ERR_ALERT | ERR_FATAL; |
| 298 | goto error; |
| 299 | } |
| 300 | |
| 301 | use_program = 1; |
| 302 | |
| 303 | return err_code; |
| 304 | |
| 305 | error: |
Tim Duesterhus | 2c9e274 | 2019-06-23 22:10:12 +0200 | [diff] [blame] | 306 | if (ext_child) { |
Willy Tarreau | 2b71810 | 2021-04-21 07:32:39 +0200 | [diff] [blame] | 307 | LIST_DELETE(&ext_child->list); |
Tim Duesterhus | 2c9e274 | 2019-06-23 22:10:12 +0200 | [diff] [blame] | 308 | if (ext_child->command) { |
| 309 | int i; |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 310 | |
Tim Duesterhus | 2c9e274 | 2019-06-23 22:10:12 +0200 | [diff] [blame] | 311 | for (i = 0; ext_child->command[i]; i++) { |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 312 | ha_free(&ext_child->command[i]); |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 313 | } |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 314 | ha_free(&ext_child->command); |
Tim Duesterhus | 2c9e274 | 2019-06-23 22:10:12 +0200 | [diff] [blame] | 315 | } |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 316 | ha_free(&ext_child->id); |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 317 | } |
| 318 | |
Willy Tarreau | 61cfdf4 | 2021-02-20 10:46:51 +0100 | [diff] [blame] | 319 | ha_free(&ext_child); |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 320 | |
William Lallemand | bd3de3e | 2019-04-12 16:09:22 +0200 | [diff] [blame] | 321 | out: |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 322 | return err_code; |
| 323 | |
| 324 | } |
| 325 | |
| 326 | int cfg_program_postparser() |
| 327 | { |
| 328 | int err_code = 0; |
| 329 | struct mworker_proc *child; |
| 330 | |
| 331 | list_for_each_entry(child, &proc_list, list) { |
William Lallemand | 8f7069a | 2019-04-12 16:09:23 +0200 | [diff] [blame] | 332 | if (child->reloads == 0 && (child->options & PROC_O_TYPE_PROG)) { |
William Lallemand | 9a1ee7a | 2019-04-01 11:30:02 +0200 | [diff] [blame] | 333 | if (child->command == NULL) { |
| 334 | ha_alert("The program section '%s' lacks a command to launch.\n", child->id); |
| 335 | err_code |= ERR_ALERT | ERR_FATAL; |
| 336 | } |
| 337 | } |
| 338 | } |
| 339 | |
| 340 | if (use_program && !(global.mode & MODE_MWORKER)) { |
| 341 | ha_alert("Can't use a 'program' section without master worker mode.\n"); |
| 342 | err_code |= ERR_ALERT | ERR_FATAL; |
| 343 | } |
| 344 | |
| 345 | return err_code; |
| 346 | } |
| 347 | |
| 348 | |
| 349 | REGISTER_CONFIG_SECTION("program", cfg_parse_program, NULL); |
| 350 | REGISTER_CONFIG_POSTPARSER("program", cfg_program_postparser); |