]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/manager.c
watchdog: make watchdog_ping() a NOP when the watchdog is disabled or closed
[thirdparty/systemd.git] / src / core / manager.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
a7334b09 2
60918275 3#include <errno.h>
400f1a33
LP
4#include <fcntl.h>
5#include <linux/kd.h>
e46b13c8 6#include <sys/epoll.h>
400f1a33 7#include <sys/inotify.h>
e1414003 8#include <sys/ioctl.h>
400f1a33 9#include <sys/reboot.h>
8742514c 10#include <sys/timerfd.h>
400f1a33
LP
11#include <sys/wait.h>
12#include <unistd.h>
830f6caa 13
349cc4a5 14#if HAVE_AUDIT
4927fcae 15#include <libaudit.h>
830f6caa 16#endif
60918275 17
718db961 18#include "sd-daemon.h"
718db961 19#include "sd-messages.h"
3536f49e 20#include "sd-path.h"
81527be1 21
57b7a260 22#include "all-units.h"
d68c645b 23#include "alloc-util.h"
400f1a33
LP
24#include "audit-fd.h"
25#include "boot-timestamps.h"
26#include "bus-common-errors.h"
27#include "bus-error.h"
28#include "bus-kernel.h"
29#include "bus-util.h"
00d9ef85 30#include "clean-ipc.h"
af6b0ecc 31#include "clock-util.h"
19d22d43 32#include "core-varlink.h"
786d19fd 33#include "creds-util.h"
400f1a33
LP
34#include "dbus-job.h"
35#include "dbus-manager.h"
36#include "dbus-unit.h"
37#include "dbus.h"
0e7f5ad9 38#include "def.h"
d063a527 39#include "dirent-util.h"
400f1a33 40#include "env-util.h"
4f5dd394 41#include "escape.h"
89711996 42#include "exec-util.h"
d3070fbd 43#include "execute.h"
400f1a33 44#include "exit-status.h"
3ffd4af2 45#include "fd-util.h"
0d39fa9c 46#include "fileio.h"
f4f15635 47#include "fs-util.h"
385093b7 48#include "generator-setup.h"
60918275 49#include "hashmap.h"
5cfa33e0 50#include "install.h"
19d22d43 51#include "io-util.h"
d3070fbd 52#include "label.h"
d904afc7 53#include "load-fragment.h"
786d19fd 54#include "locale-setup.h"
16354eff 55#include "log.h"
400f1a33 56#include "macro.h"
3ffd4af2 57#include "manager.h"
2a341bb9 58#include "manager-dump.h"
a01ba4b2 59#include "manager-serialize.h"
0a970718 60#include "memory-util.h"
49e942b2 61#include "mkdir.h"
6bedfcbb 62#include "parse-util.h"
400f1a33
LP
63#include "path-lookup.h"
64#include "path-util.h"
65#include "process-util.h"
ea430986 66#include "ratelimit.h"
31ce987c 67#include "rlimit-util.h"
c6878637 68#include "rm-rf.h"
45ae2f72 69#include "selinux-util.h"
400f1a33 70#include "signal-util.h"
57b7a260 71#include "socket-util.h"
514f4ef5 72#include "special.h"
8fcde012 73#include "stat-util.h"
8b43440b 74#include "string-table.h"
07630cea 75#include "string-util.h"
400f1a33 76#include "strv.h"
dd1db3c2 77#include "strxcpyx.h"
6123dfaa 78#include "sysctl-util.h"
a6ecbf83 79#include "syslog-util.h"
400f1a33
LP
80#include "terminal-util.h"
81#include "time-util.h"
82#include "transaction.h"
affb60b1 83#include "umask-util.h"
400f1a33 84#include "unit-name.h"
00d9ef85 85#include "user-util.h"
5dc4c17f 86#include "virt.h"
e96d6be7 87#include "watchdog.h"
60918275 88
a47806fa 89#define NOTIFY_RCVBUF_SIZE (8*1024*1024)
d8fdc620 90#define CGROUPS_AGENT_RCVBUF_SIZE (8*1024*1024)
a47806fa 91
03b717a3 92/* Initial delay and the interval for printing status messages about running jobs */
1b4154a8
ZJS
93#define JOBS_IN_PROGRESS_WAIT_USEC (2*USEC_PER_SEC)
94#define JOBS_IN_PROGRESS_QUIET_WAIT_USEC (25*USEC_PER_SEC)
fd08a840 95#define JOBS_IN_PROGRESS_PERIOD_USEC (USEC_PER_SEC / 3)
03b717a3
MS
96#define JOBS_IN_PROGRESS_PERIOD_DIVISOR 3
97
5238e957 98/* If there are more than 1K bus messages queue across our API and direct buses, then let's not add more on top until
e0a08581
LP
99 * the queue gets more empty. */
100#define MANAGER_BUS_BUSY_THRESHOLD 1024LU
101
102/* How many units and jobs to process of the bus queue before returning to the event loop. */
103#define MANAGER_BUS_MESSAGE_BUDGET 100U
104
718db961 105static int manager_dispatch_notify_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
d8fdc620 106static int manager_dispatch_cgroups_agent_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
718db961
LP
107static int manager_dispatch_signal_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
108static int manager_dispatch_time_change_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
109static int manager_dispatch_idle_pipe_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
00d9ef85 110static int manager_dispatch_user_lookup_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata);
718db961 111static int manager_dispatch_jobs_in_progress(sd_event_source *source, usec_t usec, void *userdata);
752b5905 112static int manager_dispatch_run_queue(sd_event_source *source, void *userdata);
575b300b 113static int manager_dispatch_sigchld(sd_event_source *source, void *userdata);
bbf5fd8e 114static int manager_dispatch_timezone_change(sd_event_source *source, const struct inotify_event *event, void *userdata);
64691d20 115static int manager_run_environment_generators(Manager *m);
e801700e 116static int manager_run_generators(Manager *m);
06a4eb07 117static void manager_vacuum(Manager *m);
718db961 118
1b4154a8 119static usec_t manager_watch_jobs_next_time(Manager *m) {
3889fc6f
ZJS
120 usec_t timeout;
121
122 if (MANAGER_IS_USER(m))
123 /* Let the user manager without a timeout show status quickly, so the system manager can make
124 * use of it, if it wants to. */
125 timeout = JOBS_IN_PROGRESS_WAIT_USEC * 2 / 3;
126 else if (show_status_on(m->show_status))
127 /* When status is on, just use the usual timeout. */
128 timeout = JOBS_IN_PROGRESS_WAIT_USEC;
129 else
130 timeout = JOBS_IN_PROGRESS_QUIET_WAIT_USEC;
131
132 return usec_add(now(CLOCK_MONOTONIC), timeout);
1b4154a8
ZJS
133}
134
2ae56591 135static void manager_watch_jobs_in_progress(Manager *m) {
e5723c89 136 usec_t next;
cfa9677b 137 int r;
e5723c89 138
718db961 139 assert(m);
03b717a3 140
42bf1ae1
FB
141 /* We do not want to show the cylon animation if the user
142 * needs to confirm service executions otherwise confirmation
143 * messages will be screwed by the cylon animation. */
b0eb2944 144 if (!manager_is_confirm_spawn_disabled(m))
42bf1ae1
FB
145 return;
146
718db961 147 if (m->jobs_in_progress_event_source)
2ae56591 148 return;
03b717a3 149
1b4154a8 150 next = manager_watch_jobs_next_time(m);
cfa9677b 151 r = sd_event_add_time(
6a0f1f6d
LP
152 m->event,
153 &m->jobs_in_progress_event_source,
154 CLOCK_MONOTONIC,
155 next, 0,
156 manager_dispatch_jobs_in_progress, m);
cfa9677b
MM
157 if (r < 0)
158 return;
7dfbe2e3
TG
159
160 (void) sd_event_source_set_description(m->jobs_in_progress_event_source, "manager-jobs-in-progress");
03b717a3
MS
161}
162
fbd0b64f 163#define CYLON_BUFFER_EXTRA (2*STRLEN(ANSI_RED) + STRLEN(ANSI_HIGHLIGHT_RED) + 2*STRLEN(ANSI_NORMAL))
03b717a3 164
03b717a3
MS
165static void draw_cylon(char buffer[], size_t buflen, unsigned width, unsigned pos) {
166 char *p = buffer;
167
168 assert(buflen >= CYLON_BUFFER_EXTRA + width + 1);
169 assert(pos <= width+1); /* 0 or width+1 mean that the center light is behind the corner */
170
171 if (pos > 1) {
6282c859
MS
172 if (pos > 2)
173 p = mempset(p, ' ', pos-2);
64c3610b
FB
174 if (log_get_show_color())
175 p = stpcpy(p, ANSI_RED);
03b717a3
MS
176 *p++ = '*';
177 }
178
179 if (pos > 0 && pos <= width) {
64c3610b
FB
180 if (log_get_show_color())
181 p = stpcpy(p, ANSI_HIGHLIGHT_RED);
03b717a3
MS
182 *p++ = '*';
183 }
184
64c3610b
FB
185 if (log_get_show_color())
186 p = stpcpy(p, ANSI_NORMAL);
03b717a3
MS
187
188 if (pos < width) {
64c3610b
FB
189 if (log_get_show_color())
190 p = stpcpy(p, ANSI_RED);
03b717a3 191 *p++ = '*';
6282c859
MS
192 if (pos < width-1)
193 p = mempset(p, ' ', width-1-pos);
64c3610b
FB
194 if (log_get_show_color())
195 strcpy(p, ANSI_NORMAL);
03b717a3 196 }
03b717a3
MS
197}
198
1addc46c 199static void manager_flip_auto_status(Manager *m, bool enable, const char *reason) {
f755e3b7
LP
200 assert(m);
201
cb8ccb22
ZJS
202 if (enable) {
203 if (m->show_status == SHOW_STATUS_AUTO)
7365a296 204 manager_set_show_status(m, SHOW_STATUS_TEMPORARY, reason);
cb8ccb22
ZJS
205 } else {
206 if (m->show_status == SHOW_STATUS_TEMPORARY)
7365a296 207 manager_set_show_status(m, SHOW_STATUS_AUTO, reason);
cb8ccb22
ZJS
208 }
209}
210
03b717a3 211static void manager_print_jobs_in_progress(Manager *m) {
03b717a3 212 Job *j;
03b717a3
MS
213 unsigned counter = 0, print_nr;
214 char cylon[6 + CYLON_BUFFER_EXTRA + 1];
215 unsigned cylon_pos;
8bb310c3 216 uint64_t x;
03b717a3 217
718db961 218 assert(m);
9c3349e2 219 assert(m->n_running_jobs > 0);
718db961 220
7365a296 221 manager_flip_auto_status(m, true, "delay");
d450b6f2 222
03b717a3
MS
223 print_nr = (m->jobs_in_progress_iteration / JOBS_IN_PROGRESS_PERIOD_DIVISOR) % m->n_running_jobs;
224
90e74a66 225 HASHMAP_FOREACH(j, m->jobs)
03b717a3
MS
226 if (j->state == JOB_RUNNING && counter++ == print_nr)
227 break;
228
e970a72e
MS
229 /* m->n_running_jobs must be consistent with the contents of m->jobs,
230 * so the above loop must have succeeded in finding j. */
231 assert(counter == print_nr + 1);
51d122af 232 assert(j);
5a82a91a 233
03b717a3
MS
234 cylon_pos = m->jobs_in_progress_iteration % 14;
235 if (cylon_pos >= 8)
236 cylon_pos = 14 - cylon_pos;
237 draw_cylon(cylon, sizeof(cylon), 6, cylon_pos);
238
8bb310c3
ZJS
239 m->jobs_in_progress_iteration++;
240
3889fc6f 241 char job_of_n[STRLEN("( of ) ") + DECIMAL_STR_MAX(unsigned)*2] = "";
5291f26d 242 if (m->n_running_jobs > 1)
3889fc6f 243 xsprintf(job_of_n, "(%u of %u) ", counter, m->n_running_jobs);
03b717a3 244
5291f26d 245 bool have_timeout = job_get_timeout(j, &x) > 0;
8bb310c3 246
04d232d8
ZJS
247 /* We want to use enough information for the user to identify previous lines talking about the same
248 * unit, but keep the message as short as possible. So if 'Starting foo.service' or 'Starting
3889fc6f 249 * foo.service - Description' were used, 'foo.service' is enough here. On the other hand, if we used
04d232d8
ZJS
250 * 'Starting Description' before, then we shall also use 'Description' here. So we pass NULL as the
251 * second argument to unit_status_string(). */
252 const char *ident = unit_status_string(j->unit, NULL);
253
3889fc6f
ZJS
254 const char *time = FORMAT_TIMESPAN(now(CLOCK_MONOTONIC) - j->begin_usec, 1*USEC_PER_SEC);
255 const char *limit = have_timeout ? FORMAT_TIMESPAN(x - j->begin_usec, 1*USEC_PER_SEC) : "no limit";
256
257 if (m->status_unit_format == STATUS_UNIT_FORMAT_DESCRIPTION)
258 /* When using 'Description', we effectively don't have enough space to show the nested status
259 * without ellipsization, so let's not even try. */
260 manager_status_printf(m, STATUS_TYPE_EPHEMERAL, cylon,
261 "%sA %s job is running for %s (%s / %s)",
262 job_of_n,
263 job_type_to_string(j->type),
264 ident,
265 time, limit);
266 else {
267 const char *status_text = unit_status_text(j->unit);
268
269 manager_status_printf(m, STATUS_TYPE_EPHEMERAL, cylon,
270 "%sJob %s/%s running (%s / %s)%s%s",
271 job_of_n,
272 ident,
273 job_type_to_string(j->type),
274 time, limit,
275 status_text ? ": " : "",
276 strempty(status_text));
277 }
278
279 sd_notifyf(false,
280 "STATUS=%sUser job %s/%s running (%s / %s)...",
281 job_of_n,
282 ident,
283 job_type_to_string(j->type),
284 time, limit);
285 m->status_ready = false;
03b717a3
MS
286}
287
e46b13c8 288static int have_ask_password(void) {
c2b2df60 289 _cleanup_closedir_ DIR *dir = NULL;
8fb3f009 290 struct dirent *de;
e46b13c8
ZJS
291
292 dir = opendir("/run/systemd/ask-password");
293 if (!dir) {
294 if (errno == ENOENT)
295 return false;
296 else
297 return -errno;
298 }
299
8fb3f009 300 FOREACH_DIRENT_ALL(de, dir, return -errno) {
e46b13c8
ZJS
301 if (startswith(de->d_name, "ask."))
302 return true;
303 }
8fb3f009 304 return false;
e46b13c8
ZJS
305}
306
307static int manager_dispatch_ask_password_fd(sd_event_source *source,
308 int fd, uint32_t revents, void *userdata) {
309 Manager *m = userdata;
310
311 assert(m);
312
665dfe93 313 (void) flush_fd(fd);
e46b13c8
ZJS
314
315 m->have_ask_password = have_ask_password();
316 if (m->have_ask_password < 0)
317 /* Log error but continue. Negative have_ask_password
318 * is treated as unknown status. */
c33b3297 319 log_error_errno(m->have_ask_password, "Failed to list /run/systemd/ask-password: %m");
e46b13c8
ZJS
320
321 return 0;
322}
323
324static void manager_close_ask_password(Manager *m) {
325 assert(m);
326
5dcadb4c 327 m->ask_password_event_source = sd_event_source_disable_unref(m->ask_password_event_source);
90990e28 328 m->ask_password_inotify_fd = safe_close(m->ask_password_inotify_fd);
e46b13c8
ZJS
329 m->have_ask_password = -EINVAL;
330}
331
332static int manager_check_ask_password(Manager *m) {
333 int r;
334
335 assert(m);
336
337 if (!m->ask_password_event_source) {
338 assert(m->ask_password_inotify_fd < 0);
339
17e4b070 340 (void) mkdir_p_label("/run/systemd/ask-password", 0755);
e46b13c8
ZJS
341
342 m->ask_password_inotify_fd = inotify_init1(IN_NONBLOCK|IN_CLOEXEC);
4a62c710 343 if (m->ask_password_inotify_fd < 0)
330b8fb3 344 return log_error_errno(errno, "Failed to create inotify object: %m");
e46b13c8 345
27c3112d
FB
346 r = inotify_add_watch_and_warn(m->ask_password_inotify_fd,
347 "/run/systemd/ask-password",
348 IN_CREATE|IN_DELETE|IN_MOVE);
349 if (r < 0) {
e46b13c8 350 manager_close_ask_password(m);
27c3112d 351 return r;
e46b13c8
ZJS
352 }
353
354 r = sd_event_add_io(m->event, &m->ask_password_event_source,
355 m->ask_password_inotify_fd, EPOLLIN,
356 manager_dispatch_ask_password_fd, m);
357 if (r < 0) {
df3d3bdf 358 log_error_errno(r, "Failed to add event source for /run/systemd/ask-password: %m");
e46b13c8 359 manager_close_ask_password(m);
df3d3bdf 360 return r;
e46b13c8
ZJS
361 }
362
7dfbe2e3
TG
363 (void) sd_event_source_set_description(m->ask_password_event_source, "manager-ask-password");
364
e46b13c8
ZJS
365 /* Queries might have been added meanwhile... */
366 manager_dispatch_ask_password_fd(m->ask_password_event_source,
367 m->ask_password_inotify_fd, EPOLLIN, m);
368 }
369
370 return m->have_ask_password;
371}
372
31a7eb86 373static int manager_watch_idle_pipe(Manager *m) {
31a7eb86
ZJS
374 int r;
375
718db961
LP
376 assert(m);
377
378 if (m->idle_pipe_event_source)
31a7eb86
ZJS
379 return 0;
380
381 if (m->idle_pipe[2] < 0)
382 return 0;
383
151b9b96 384 r = sd_event_add_io(m->event, &m->idle_pipe_event_source, m->idle_pipe[2], EPOLLIN, manager_dispatch_idle_pipe_fd, m);
23bbb0de
MS
385 if (r < 0)
386 return log_error_errno(r, "Failed to watch idle pipe: %m");
31a7eb86 387
7dfbe2e3
TG
388 (void) sd_event_source_set_description(m->idle_pipe_event_source, "manager-idle-pipe");
389
31a7eb86 390 return 0;
31a7eb86
ZJS
391}
392
718db961
LP
393static void manager_close_idle_pipe(Manager *m) {
394 assert(m);
31a7eb86 395
5dcadb4c 396 m->idle_pipe_event_source = sd_event_source_disable_unref(m->idle_pipe_event_source);
cd72bd8a 397
3d94f76c
LP
398 safe_close_pair(m->idle_pipe);
399 safe_close_pair(m->idle_pipe + 2);
31a7eb86
ZJS
400}
401
8742514c 402static int manager_setup_time_change(Manager *m) {
718db961 403 int r;
b92bea5d 404
718db961 405 assert(m);
8742514c 406
638cece4 407 if (MANAGER_IS_TEST_RUN(m))
0d8c31ff
ZJS
408 return 0;
409
5dcadb4c 410 m->time_change_event_source = sd_event_source_disable_unref(m->time_change_event_source);
7feedd18
LP
411 m->time_change_fd = safe_close(m->time_change_fd);
412
4f811d27 413 m->time_change_fd = time_change_fd();
4a62c710 414 if (m->time_change_fd < 0)
4f811d27 415 return log_error_errno(m->time_change_fd, "Failed to create timer change timer fd: %m");
8742514c 416
151b9b96 417 r = sd_event_add_io(m->event, &m->time_change_event_source, m->time_change_fd, EPOLLIN, manager_dispatch_time_change_fd, m);
23bbb0de
MS
418 if (r < 0)
419 return log_error_errno(r, "Failed to create time change event source: %m");
8742514c 420
a5cc7e5a
LP
421 /* Schedule this slightly earlier than the .timer event sources */
422 r = sd_event_source_set_priority(m->time_change_event_source, SD_EVENT_PRIORITY_NORMAL-1);
423 if (r < 0)
424 return log_error_errno(r, "Failed to set priority of time change event sources: %m");
425
7dfbe2e3
TG
426 (void) sd_event_source_set_description(m->time_change_event_source, "manager-time-change");
427
8742514c
LP
428 log_debug("Set up TFD_TIMER_CANCEL_ON_SET timerfd.");
429
430 return 0;
431}
432
bbf5fd8e
LP
433static int manager_read_timezone_stat(Manager *m) {
434 struct stat st;
435 bool changed;
436
437 assert(m);
438
439 /* Read the current stat() data of /etc/localtime so that we detect changes */
440 if (lstat("/etc/localtime", &st) < 0) {
441 log_debug_errno(errno, "Failed to stat /etc/localtime, ignoring: %m");
442 changed = m->etc_localtime_accessible;
443 m->etc_localtime_accessible = false;
444 } else {
445 usec_t k;
446
447 k = timespec_load(&st.st_mtim);
448 changed = !m->etc_localtime_accessible || k != m->etc_localtime_mtime;
449
450 m->etc_localtime_mtime = k;
451 m->etc_localtime_accessible = true;
452 }
453
454 return changed;
455}
456
457static int manager_setup_timezone_change(Manager *m) {
a5cc7e5a 458 _cleanup_(sd_event_source_unrefp) sd_event_source *new_event = NULL;
bbf5fd8e
LP
459 int r;
460
461 assert(m);
462
638cece4 463 if (MANAGER_IS_TEST_RUN(m))
bbf5fd8e
LP
464 return 0;
465
466 /* We watch /etc/localtime for three events: change of the link count (which might mean removal from /etc even
467 * though another link might be kept), renames, and file close operations after writing. Note we don't bother
468 * with IN_DELETE_SELF, as that would just report when the inode is removed entirely, i.e. after the link count
469 * went to zero and all fds to it are closed.
470 *
471 * Note that we never follow symlinks here. This is a simplification, but should cover almost all cases
472 * correctly.
473 *
474 * Note that we create the new event source first here, before releasing the old one. This should optimize
475 * behaviour as this way sd-event can reuse the old watch in case the inode didn't change. */
476
477 r = sd_event_add_inotify(m->event, &new_event, "/etc/localtime",
478 IN_ATTRIB|IN_MOVE_SELF|IN_CLOSE_WRITE|IN_DONT_FOLLOW, manager_dispatch_timezone_change, m);
0cb21d8c
LP
479 if (r == -ENOENT) {
480 /* If the file doesn't exist yet, subscribe to /etc instead, and wait until it is created either by
481 * O_CREATE or by rename() */
482
483 log_debug_errno(r, "/etc/localtime doesn't exist yet, watching /etc instead.");
bbf5fd8e
LP
484 r = sd_event_add_inotify(m->event, &new_event, "/etc",
485 IN_CREATE|IN_MOVED_TO|IN_ONLYDIR, manager_dispatch_timezone_change, m);
0cb21d8c 486 }
bbf5fd8e
LP
487 if (r < 0)
488 return log_error_errno(r, "Failed to create timezone change event source: %m");
489
a5cc7e5a
LP
490 /* Schedule this slightly earlier than the .timer event sources */
491 r = sd_event_source_set_priority(new_event, SD_EVENT_PRIORITY_NORMAL-1);
492 if (r < 0)
493 return log_error_errno(r, "Failed to set priority of timezone change event sources: %m");
494
bbf5fd8e 495 sd_event_source_unref(m->timezone_change_event_source);
a5cc7e5a 496 m->timezone_change_event_source = TAKE_PTR(new_event);
bbf5fd8e
LP
497
498 return 0;
499}
500
80876c20 501static int enable_special_signals(Manager *m) {
718db961 502 _cleanup_close_ int fd = -1;
80876c20
LP
503
504 assert(m);
505
638cece4 506 if (MANAGER_IS_TEST_RUN(m))
37453b3a
EV
507 return 0;
508
a41b539e 509 /* Enable that we get SIGINT on control-alt-del. In containers
c9999773
LP
510 * this will fail with EPERM (older) or EINVAL (newer), so
511 * ignore that. */
4c701096 512 if (reboot(RB_DISABLE_CAD) < 0 && !IN_SET(errno, EPERM, EINVAL))
56f64d95 513 log_warning_errno(errno, "Failed to enable ctrl-alt-del handling: %m");
80876c20 514
a41b539e
LP
515 fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY|O_CLOEXEC);
516 if (fd < 0) {
517 /* Support systems without virtual console */
518 if (fd != -ENOENT)
56f64d95 519 log_warning_errno(errno, "Failed to open /dev/tty0: %m");
a41b539e 520 } else {
80876c20
LP
521 /* Enable that we get SIGWINCH on kbrequest */
522 if (ioctl(fd, KDSIGACCEPT, SIGWINCH) < 0)
56f64d95 523 log_warning_errno(errno, "Failed to enable kbrequest handling: %m");
80876c20
LP
524 }
525
526 return 0;
527}
528
8750ac02
ZJS
529#define RTSIG_IF_AVAILABLE(signum) (signum <= SIGRTMAX ? signum : -1)
530
ce578209 531static int manager_setup_signals(Manager *m) {
b92bea5d
ZJS
532 struct sigaction sa = {
533 .sa_handler = SIG_DFL,
534 .sa_flags = SA_NOCLDSTOP|SA_RESTART,
535 };
718db961
LP
536 sigset_t mask;
537 int r;
60918275 538
ce578209
LP
539 assert(m);
540
57c0c30e
LP
541 assert_se(sigaction(SIGCHLD, &sa, NULL) == 0);
542
4dffec14
LP
543 /* We make liberal use of realtime signals here. On
544 * Linux/glibc we have 30 of them (with the exception of Linux
545 * on hppa, see below), between SIGRTMIN+0 ... SIGRTMIN+30
546 * (aka SIGRTMAX). */
7d793605 547
4dffec14 548 assert_se(sigemptyset(&mask) == 0);
7d793605
LP
549 sigset_add_many(&mask,
550 SIGCHLD, /* Child died */
551 SIGTERM, /* Reexecute daemon */
552 SIGHUP, /* Reload configuration */
54d04cd1 553 SIGUSR1, /* systemd: reconnect to D-Bus */
7d793605
LP
554 SIGUSR2, /* systemd: dump status */
555 SIGINT, /* Kernel sends us this on control-alt-del */
556 SIGWINCH, /* Kernel sends us this on kbrequest (alt-arrowup) */
557 SIGPWR, /* Some kernel drivers and upsd send us this on power failure */
4dffec14 558
7d793605 559 SIGRTMIN+0, /* systemd: start default.target */
0003d1ab 560 SIGRTMIN+1, /* systemd: isolate rescue.target */
7d793605
LP
561 SIGRTMIN+2, /* systemd: isolate emergency.target */
562 SIGRTMIN+3, /* systemd: start halt.target */
563 SIGRTMIN+4, /* systemd: start poweroff.target */
564 SIGRTMIN+5, /* systemd: start reboot.target */
0003d1ab 565 SIGRTMIN+6, /* systemd: start kexec.target */
4dffec14
LP
566
567 /* ... space for more special targets ... */
568
0003d1ab
LP
569 SIGRTMIN+13, /* systemd: Immediate halt */
570 SIGRTMIN+14, /* systemd: Immediate poweroff */
571 SIGRTMIN+15, /* systemd: Immediate reboot */
572 SIGRTMIN+16, /* systemd: Immediate kexec */
4dffec14
LP
573
574 /* ... space for more immediate system state changes ... */
575
0658666b
LP
576 SIGRTMIN+20, /* systemd: enable status messages */
577 SIGRTMIN+21, /* systemd: disable status messages */
253ee27a
LP
578 SIGRTMIN+22, /* systemd: set log level to LOG_DEBUG */
579 SIGRTMIN+23, /* systemd: set log level to LOG_INFO */
600b704e 580 SIGRTMIN+24, /* systemd: Immediate exit (--user only) */
463aef23 581 SIGRTMIN+25, /* systemd: reexecute manager */
4dffec14 582
8750ac02
ZJS
583 /* Apparently Linux on hppa had fewer RT signals until v3.18,
584 * SIGRTMAX was SIGRTMIN+25, and then SIGRTMIN was lowered,
585 * see commit v3.17-7614-g1f25df2eff.
586 *
587 * We cannot unconditionally make use of those signals here,
588 * so let's use a runtime check. Since these commands are
589 * accessible by different means and only really a safety
590 * net, the missing functionality on hppa shouldn't matter.
591 */
592
593 RTSIG_IF_AVAILABLE(SIGRTMIN+26), /* systemd: set log target to journal-or-kmsg */
594 RTSIG_IF_AVAILABLE(SIGRTMIN+27), /* systemd: set log target to console */
595 RTSIG_IF_AVAILABLE(SIGRTMIN+28), /* systemd: set log target to kmsg */
596 RTSIG_IF_AVAILABLE(SIGRTMIN+29), /* systemd: set log target to syslog-or-kmsg (obsolete) */
4dffec14
LP
597
598 /* ... one free signal here SIGRTMIN+30 ... */
7d793605 599 -1);
ce578209
LP
600 assert_se(sigprocmask(SIG_SETMASK, &mask, NULL) == 0);
601
718db961
LP
602 m->signal_fd = signalfd(-1, &mask, SFD_NONBLOCK|SFD_CLOEXEC);
603 if (m->signal_fd < 0)
ce578209
LP
604 return -errno;
605
151b9b96 606 r = sd_event_add_io(m->event, &m->signal_event_source, m->signal_fd, EPOLLIN, manager_dispatch_signal_fd, m);
718db961
LP
607 if (r < 0)
608 return r;
ce578209 609
7dfbe2e3
TG
610 (void) sd_event_source_set_description(m->signal_event_source, "manager-signal");
611
d8fdc620
LP
612 /* Process signals a bit earlier than the rest of things, but later than notify_fd processing, so that the
613 * notify processing can still figure out to which process/service a message belongs, before we reap the
614 * process. Also, process this before handling cgroup notifications, so that we always collect child exit
615 * status information before detecting that there's no process in a cgroup. */
616 r = sd_event_source_set_priority(m->signal_event_source, SD_EVENT_PRIORITY_NORMAL-6);
29083707
LP
617 if (r < 0)
618 return r;
619
463d0d15 620 if (MANAGER_IS_SYSTEM(m))
80876c20 621 return enable_special_signals(m);
e1414003 622
ce578209
LP
623 return 0;
624}
625
1ad6e8b3 626static char** sanitize_environment(char **l) {
f069efb4 627
47cf8ff2 628 /* Let's remove some environment variables that we need ourselves to communicate with our clients */
f069efb4 629 strv_env_unset_many(
1ad6e8b3 630 l,
8047ac8f
LP
631 "CACHE_DIRECTORY",
632 "CONFIGURATION_DIRECTORY",
bb0c0d6f 633 "CREDENTIALS_DIRECTORY",
47cf8ff2
LP
634 "EXIT_CODE",
635 "EXIT_STATUS",
636 "INVOCATION_ID",
637 "JOURNAL_STREAM",
638 "LISTEN_FDNAMES",
639 "LISTEN_FDS",
640 "LISTEN_PID",
8047ac8f 641 "LOGS_DIRECTORY",
f069efb4
LP
642 "MAINPID",
643 "MANAGERPID",
47cf8ff2 644 "NOTIFY_SOCKET",
dcf3c3c3 645 "PIDFILE",
47cf8ff2
LP
646 "REMOTE_ADDR",
647 "REMOTE_PORT",
8047ac8f 648 "RUNTIME_DIRECTORY",
47cf8ff2 649 "SERVICE_RESULT",
8047ac8f 650 "STATE_DIRECTORY",
f069efb4
LP
651 "WATCHDOG_PID",
652 "WATCHDOG_USEC",
653 NULL);
47cf8ff2
LP
654
655 /* Let's order the environment alphabetically, just to make it pretty */
305757d8 656 return strv_sort(l);
f069efb4
LP
657}
658
79a224c4 659int manager_default_environment(Manager *m) {
db11487d
ZJS
660 int r;
661
71ecc858
LP
662 assert(m);
663
1ad6e8b3
LP
664 m->transient_environment = strv_free(m->transient_environment);
665
463d0d15 666 if (MANAGER_IS_SYSTEM(m)) {
e21fea24
KS
667 /* The system manager always starts with a clean
668 * environment for its children. It does not import
71cb7d30 669 * the kernel's or the parents' exported variables.
e21fea24 670 *
71cb7d30 671 * The initial passed environment is untouched to keep
e21fea24
KS
672 * /proc/self/environ valid; it is used for tagging
673 * the init process inside containers. */
1ad6e8b3 674 m->transient_environment = strv_new("PATH=" DEFAULT_PATH);
db11487d
ZJS
675 if (!m->transient_environment)
676 return log_oom();
e21fea24
KS
677
678 /* Import locale variables LC_*= from configuration */
1ad6e8b3 679 (void) locale_setup(&m->transient_environment);
db11487d 680 } else {
aaf057c4 681 /* The user manager passes its own environment along to its children, except for $PATH. */
1ad6e8b3 682 m->transient_environment = strv_copy(environ);
db11487d
ZJS
683 if (!m->transient_environment)
684 return log_oom();
685
aaf057c4 686 r = strv_env_replace_strdup(&m->transient_environment, "PATH=" DEFAULT_USER_PATH);
db11487d
ZJS
687 if (r < 0)
688 return log_oom();
db11487d 689 }
8b55b8c4 690
1ad6e8b3 691 sanitize_environment(m->transient_environment);
9d5a3757 692
e21fea24 693 return 0;
71ecc858
LP
694}
695
3536f49e
YW
696static int manager_setup_prefix(Manager *m) {
697 struct table_entry {
698 uint64_t type;
699 const char *suffix;
700 };
701
72fd1768 702 static const struct table_entry paths_system[_EXEC_DIRECTORY_TYPE_MAX] = {
9978e631
ZJS
703 [EXEC_DIRECTORY_RUNTIME] = { SD_PATH_SYSTEM_RUNTIME, NULL },
704 [EXEC_DIRECTORY_STATE] = { SD_PATH_SYSTEM_STATE_PRIVATE, NULL },
705 [EXEC_DIRECTORY_CACHE] = { SD_PATH_SYSTEM_STATE_CACHE, NULL },
706 [EXEC_DIRECTORY_LOGS] = { SD_PATH_SYSTEM_STATE_LOGS, NULL },
3536f49e
YW
707 [EXEC_DIRECTORY_CONFIGURATION] = { SD_PATH_SYSTEM_CONFIGURATION, NULL },
708 };
709
72fd1768 710 static const struct table_entry paths_user[_EXEC_DIRECTORY_TYPE_MAX] = {
9978e631
ZJS
711 [EXEC_DIRECTORY_RUNTIME] = { SD_PATH_USER_RUNTIME, NULL },
712 [EXEC_DIRECTORY_STATE] = { SD_PATH_USER_CONFIGURATION, NULL },
713 [EXEC_DIRECTORY_CACHE] = { SD_PATH_USER_STATE_CACHE, NULL },
714 [EXEC_DIRECTORY_LOGS] = { SD_PATH_USER_CONFIGURATION, "log" },
715 [EXEC_DIRECTORY_CONFIGURATION] = { SD_PATH_USER_CONFIGURATION, NULL },
3536f49e
YW
716 };
717
3536f49e
YW
718 assert(m);
719
24b45970
ZJS
720 const struct table_entry *p = MANAGER_IS_SYSTEM(m) ? paths_system : paths_user;
721 int r;
3536f49e 722
24b45970 723 for (ExecDirectoryType i = 0; i < _EXEC_DIRECTORY_TYPE_MAX; i++) {
51327bcc 724 r = sd_path_lookup(p[i].type, p[i].suffix, &m->prefix[i]);
3536f49e 725 if (r < 0)
998df7ce
ZJS
726 return log_warning_errno(r, "Failed to lookup %s path: %m",
727 exec_directory_type_to_string(i));
3536f49e
YW
728 }
729
730 return 0;
731}
732
e8630e69
ZJS
733static void manager_free_unit_name_maps(Manager *m) {
734 m->unit_id_map = hashmap_free(m->unit_id_map);
735 m->unit_name_map = hashmap_free(m->unit_name_map);
3fb2326f 736 m->unit_path_cache = set_free(m->unit_path_cache);
c2911d48 737 m->unit_cache_timestamp_hash = 0;
e8630e69
ZJS
738}
739
279d81dd
LP
740static int manager_setup_run_queue(Manager *m) {
741 int r;
742
743 assert(m);
744 assert(!m->run_queue_event_source);
745
746 r = sd_event_add_defer(m->event, &m->run_queue_event_source, manager_dispatch_run_queue, m);
747 if (r < 0)
748 return r;
749
750 r = sd_event_source_set_priority(m->run_queue_event_source, SD_EVENT_PRIORITY_IDLE);
751 if (r < 0)
752 return r;
753
754 r = sd_event_source_set_enabled(m->run_queue_event_source, SD_EVENT_OFF);
755 if (r < 0)
756 return r;
757
758 (void) sd_event_source_set_description(m->run_queue_event_source, "manager-run-queue");
759
760 return 0;
761}
762
575b300b
LP
763static int manager_setup_sigchld_event_source(Manager *m) {
764 int r;
765
766 assert(m);
767 assert(!m->sigchld_event_source);
768
769 r = sd_event_add_defer(m->event, &m->sigchld_event_source, manager_dispatch_sigchld, m);
770 if (r < 0)
771 return r;
772
773 r = sd_event_source_set_priority(m->sigchld_event_source, SD_EVENT_PRIORITY_NORMAL-7);
774 if (r < 0)
775 return r;
776
777 r = sd_event_source_set_enabled(m->sigchld_event_source, SD_EVENT_OFF);
778 if (r < 0)
779 return r;
780
781 (void) sd_event_source_set_description(m->sigchld_event_source, "manager-sigchld");
782
783 return 0;
784}
785
638cece4 786int manager_new(UnitFileScope scope, ManagerTestRunFlags test_run_flags, Manager **_m) {
c70cac54 787 _cleanup_(manager_freep) Manager *m = NULL;
bb0c0d6f 788 const char *e;
e3dd987c 789 int r;
8e274523
LP
790
791 assert(_m);
463d0d15 792 assert(IN_SET(scope, UNIT_FILE_SYSTEM, UNIT_FILE_USER));
ce578209 793
3ad228ce 794 m = new(Manager, 1);
915b3753 795 if (!m)
8e274523 796 return -ENOMEM;
60918275 797
3ad228ce
LP
798 *m = (Manager) {
799 .unit_file_scope = scope,
800 .objective = _MANAGER_OBJECTIVE_INVALID,
801
36cf4507
ZJS
802 .status_unit_format = STATUS_UNIT_FORMAT_DEFAULT,
803
3ad228ce
LP
804 .default_timer_accuracy_usec = USEC_PER_MINUTE,
805 .default_memory_accounting = MEMORY_ACCOUNTING_DEFAULT,
806 .default_tasks_accounting = true,
3a0f06c4 807 .default_tasks_max = TASKS_MAX_UNSET,
3ad228ce
LP
808 .default_timeout_start_usec = DEFAULT_TIMEOUT_USEC,
809 .default_timeout_stop_usec = DEFAULT_TIMEOUT_USEC,
810 .default_restart_usec = DEFAULT_RESTART_USEC,
811
812 .original_log_level = -1,
813 .original_log_target = _LOG_TARGET_INVALID,
814
986935cf
FB
815 .watchdog_overridden[WATCHDOG_RUNTIME] = USEC_INFINITY,
816 .watchdog_overridden[WATCHDOG_REBOOT] = USEC_INFINITY,
817 .watchdog_overridden[WATCHDOG_KEXEC] = USEC_INFINITY,
818
44a41954
FB
819 .show_status_overridden = _SHOW_STATUS_INVALID,
820
3ad228ce
LP
821 .notify_fd = -1,
822 .cgroups_agent_fd = -1,
823 .signal_fd = -1,
824 .time_change_fd = -1,
825 .user_lookup_fds = { -1, -1 },
826 .private_listen_fd = -1,
827 .dev_autofs_fd = -1,
828 .cgroup_inotify_fd = -1,
829 .pin_cgroupfs_fd = -1,
830 .ask_password_inotify_fd = -1,
831 .idle_pipe = { -1, -1, -1, -1},
832
833 /* start as id #1, so that we can leave #0 around as "null-like" value */
834 .current_job_id = 1,
835
836 .have_ask_password = -EINVAL, /* we don't know */
837 .first_boot = -1,
838 .test_run_flags = test_run_flags,
afcfaa69
LP
839
840 .default_oom_policy = OOM_STOP,
3ad228ce 841 };
80876c20 842
349cc4a5 843#if ENABLE_EFI
463d0d15 844 if (MANAGER_IS_SYSTEM(m) && detect_container() <= 0)
9f9f0342
LP
845 boot_timestamps(m->timestamps + MANAGER_TIMESTAMP_USERSPACE,
846 m->timestamps + MANAGER_TIMESTAMP_FIRMWARE,
847 m->timestamps + MANAGER_TIMESTAMP_LOADER);
463d0d15
LP
848#endif
849
f2341e0a 850 /* Prepare log fields we can use for structured logging */
463d0d15
LP
851 if (MANAGER_IS_SYSTEM(m)) {
852 m->unit_log_field = "UNIT=";
853 m->unit_log_format_string = "UNIT=%s";
4b58153d
LP
854
855 m->invocation_log_field = "INVOCATION_ID=";
f1c50bec 856 m->invocation_log_format_string = "INVOCATION_ID=%s";
463d0d15
LP
857 } else {
858 m->unit_log_field = "USER_UNIT=";
859 m->unit_log_format_string = "USER_UNIT=%s";
4b58153d
LP
860
861 m->invocation_log_field = "USER_INVOCATION_ID=";
f1c50bec 862 m->invocation_log_format_string = "USER_INVOCATION_ID=%s";
463d0d15 863 }
f2341e0a 864
2e5c94b9 865 /* Reboot immediately if the user hits C-A-D more often than 7x per 2s */
8c227e7f 866 m->ctrl_alt_del_ratelimit = (RateLimit) { .interval = 2 * USEC_PER_SEC, .burst = 7 };
2e5c94b9 867
e21fea24
KS
868 r = manager_default_environment(m);
869 if (r < 0)
c70cac54 870 return r;
1137a57c 871
d5099efc 872 r = hashmap_ensure_allocated(&m->units, &string_hash_ops);
718db961 873 if (r < 0)
c70cac54 874 return r;
60918275 875
548f6937 876 r = hashmap_ensure_allocated(&m->cgroup_unit, &path_hash_ops);
718db961 877 if (r < 0)
c70cac54 878 return r;
9152c765 879
d5099efc 880 r = hashmap_ensure_allocated(&m->watch_bus, &string_hash_ops);
718db961 881 if (r < 0)
c70cac54 882 return r;
05e343b7 883
da8e1782
MO
884 r = prioq_ensure_allocated(&m->run_queue, compare_job_priority);
885 if (r < 0)
886 return r;
887
e8112e67 888 r = manager_setup_prefix(m);
718db961 889 if (r < 0)
c70cac54 890 return r;
8742514c 891
786d19fd
LP
892 r = get_credentials_dir(&e);
893 if (r >= 0) {
bb0c0d6f
LP
894 m->received_credentials = strdup(e);
895 if (!m->received_credentials)
896 return -ENOMEM;
897 }
898
e8112e67 899 r = sd_event_default(&m->event);
8742514c 900 if (r < 0)
c70cac54 901 return r;
9152c765 902
e8112e67 903 r = manager_setup_run_queue(m);
a1d32bac 904 if (r < 0)
c70cac54 905 return r;
8e274523 906
5dd2f5ff 907 if (FLAGS_SET(test_run_flags, MANAGER_TEST_RUN_MINIMAL)) {
e8112e67
ZJS
908 m->cgroup_root = strdup("");
909 if (!m->cgroup_root)
910 return -ENOMEM;
911 } else {
912 r = manager_setup_signals(m);
913 if (r < 0)
914 return r;
8c47c732 915
e8112e67
ZJS
916 r = manager_setup_cgroup(m);
917 if (r < 0)
918 return r;
575b300b 919
e8112e67
ZJS
920 r = manager_setup_time_change(m);
921 if (r < 0)
922 return r;
9670d583 923
bbf5fd8e
LP
924 r = manager_read_timezone_stat(m);
925 if (r < 0)
926 return r;
927
ea5c5f68 928 (void) manager_setup_timezone_change(m);
bbf5fd8e 929
e8112e67
ZJS
930 r = manager_setup_sigchld_event_source(m);
931 if (r < 0)
932 return r;
933 }
e27fe688 934
2f8c48b6
AZ
935 if (test_run_flags == 0) {
936 if (MANAGER_IS_SYSTEM(m))
937 r = mkdir_label("/run/systemd/units", 0755);
938 else {
939 _cleanup_free_ char *units_path = NULL;
940 r = xdg_user_runtime_dir(&units_path, "/systemd/units");
941 if (r < 0)
942 return r;
943 r = mkdir_p_label(units_path, 0755);
944 }
945
d3070fbd 946 if (r < 0 && r != -EEXIST)
c70cac54 947 return r;
d3070fbd
LP
948 }
949
e27fe688
LP
950 m->taint_usr =
951 !in_initrd() &&
952 dir_is_empty("/usr") > 0;
953
232f6754
ZJS
954 /* Note that we do not set up the notify fd here. We do that after deserialization,
955 * since they might have gotten serialized across the reexec. */
3536f49e 956
1cc6c93a
YW
957 *_m = TAKE_PTR(m);
958
8e274523 959 return 0;
60918275
LP
960}
961
d86f9d52 962static int manager_setup_notify(Manager *m) {
7181dbdb 963 int r;
d86f9d52 964
638cece4 965 if (MANAGER_IS_TEST_RUN(m))
0d8c31ff
ZJS
966 return 0;
967
d86f9d52
LP
968 if (m->notify_fd < 0) {
969 _cleanup_close_ int fd = -1;
f36a9d59
ZJS
970 union sockaddr_union sa;
971 socklen_t sa_len;
d86f9d52
LP
972
973 /* First free all secondary fields */
a1e58e8e 974 m->notify_socket = mfree(m->notify_socket);
5dcadb4c 975 m->notify_event_source = sd_event_source_disable_unref(m->notify_event_source);
d86f9d52
LP
976
977 fd = socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0);
4a62c710
MS
978 if (fd < 0)
979 return log_error_errno(errno, "Failed to allocate notification socket: %m");
d86f9d52 980
a47806fa
LP
981 fd_inc_rcvbuf(fd, NOTIFY_RCVBUF_SIZE);
982
b910cc72 983 m->notify_socket = path_join(m->prefix[EXEC_DIRECTORY_RUNTIME], "systemd/notify");
498e87d6
LP
984 if (!m->notify_socket)
985 return log_oom();
986
f36a9d59
ZJS
987 r = sockaddr_un_set_path(&sa.un, m->notify_socket);
988 if (r < 0)
989 return log_error_errno(r, "Notify socket '%s' not valid for AF_UNIX socket address, refusing.",
990 m->notify_socket);
991 sa_len = r;
15a3e96f 992
498e87d6 993 (void) mkdir_parents_label(m->notify_socket, 0755);
fbda85b0 994 (void) sockaddr_un_unlink(&sa.un);
7181dbdb 995
45ae2f72 996 r = mac_selinux_bind(fd, &sa.sa, sa_len);
4a62c710 997 if (r < 0)
45ae2f72 998 return log_error_errno(r, "bind(%s) failed: %m", m->notify_socket);
d86f9d52 999
2ff48e98 1000 r = setsockopt_int(fd, SOL_SOCKET, SO_PASSCRED, true);
4a62c710 1001 if (r < 0)
2ff48e98 1002 return log_error_errno(r, "SO_PASSCRED failed: %m");
d86f9d52 1003
c10d6bdb 1004 m->notify_fd = TAKE_FD(fd);
d86f9d52
LP
1005
1006 log_debug("Using notification socket %s", m->notify_socket);
1007 }
1008
1009 if (!m->notify_event_source) {
151b9b96 1010 r = sd_event_add_io(m->event, &m->notify_event_source, m->notify_fd, EPOLLIN, manager_dispatch_notify_fd, m);
895b3a7b
MS
1011 if (r < 0)
1012 return log_error_errno(r, "Failed to allocate notify event source: %m");
d86f9d52 1013
d8fdc620
LP
1014 /* Process notification messages a bit earlier than SIGCHLD, so that we can still identify to which
1015 * service an exit message belongs. */
575b300b 1016 r = sd_event_source_set_priority(m->notify_event_source, SD_EVENT_PRIORITY_NORMAL-8);
23bbb0de
MS
1017 if (r < 0)
1018 return log_error_errno(r, "Failed to set priority of notify event source: %m");
7dfbe2e3
TG
1019
1020 (void) sd_event_source_set_description(m->notify_event_source, "manager-notify");
d86f9d52
LP
1021 }
1022
1023 return 0;
1024}
1025
d8fdc620
LP
1026static int manager_setup_cgroups_agent(Manager *m) {
1027
1028 static const union sockaddr_union sa = {
1029 .un.sun_family = AF_UNIX,
1030 .un.sun_path = "/run/systemd/cgroups-agent",
1031 };
1032 int r;
1033
1034 /* This creates a listening socket we receive cgroups agent messages on. We do not use D-Bus for delivering
1035 * these messages from the cgroups agent binary to PID 1, as the cgroups agent binary is very short-living, and
1036 * each instance of it needs a new D-Bus connection. Since D-Bus connections are SOCK_STREAM/AF_UNIX, on
1037 * overloaded systems the backlog of the D-Bus socket becomes relevant, as not more than the configured number
1038 * of D-Bus connections may be queued until the kernel will start dropping further incoming connections,
1039 * possibly resulting in lost cgroups agent messages. To avoid this, we'll use a private SOCK_DGRAM/AF_UNIX
1040 * socket, where no backlog is relevant as communication may take place without an actual connect() cycle, and
1041 * we thus won't lose messages.
1042 *
1043 * Note that PID 1 will forward the agent message to system bus, so that the user systemd instance may listen
1044 * to it. The system instance hence listens on this special socket, but the user instances listen on the system
1045 * bus for these messages. */
1046
638cece4 1047 if (MANAGER_IS_TEST_RUN(m))
d8fdc620
LP
1048 return 0;
1049
1050 if (!MANAGER_IS_SYSTEM(m))
1051 return 0;
1052
c22800e4 1053 r = cg_unified_controller(SYSTEMD_CGROUP_CONTROLLER);
b4cccbc1
LP
1054 if (r < 0)
1055 return log_error_errno(r, "Failed to determine whether unified cgroups hierarchy is used: %m");
1056 if (r > 0) /* We don't need this anymore on the unified hierarchy */
d8fdc620
LP
1057 return 0;
1058
1059 if (m->cgroups_agent_fd < 0) {
1060 _cleanup_close_ int fd = -1;
1061
1062 /* First free all secondary fields */
5dcadb4c 1063 m->cgroups_agent_event_source = sd_event_source_disable_unref(m->cgroups_agent_event_source);
d8fdc620
LP
1064
1065 fd = socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0);
1066 if (fd < 0)
1067 return log_error_errno(errno, "Failed to allocate cgroups agent socket: %m");
1068
1069 fd_inc_rcvbuf(fd, CGROUPS_AGENT_RCVBUF_SIZE);
1070
155b6876 1071 (void) sockaddr_un_unlink(&sa.un);
d8fdc620
LP
1072
1073 /* Only allow root to connect to this socket */
1074 RUN_WITH_UMASK(0077)
fc2fffe7 1075 r = bind(fd, &sa.sa, SOCKADDR_UN_LEN(sa.un));
d8fdc620
LP
1076 if (r < 0)
1077 return log_error_errno(errno, "bind(%s) failed: %m", sa.un.sun_path);
1078
0b7e8b32 1079 m->cgroups_agent_fd = TAKE_FD(fd);
d8fdc620
LP
1080 }
1081
1082 if (!m->cgroups_agent_event_source) {
1083 r = sd_event_add_io(m->event, &m->cgroups_agent_event_source, m->cgroups_agent_fd, EPOLLIN, manager_dispatch_cgroups_agent_fd, m);
1084 if (r < 0)
1085 return log_error_errno(r, "Failed to allocate cgroups agent event source: %m");
1086
cbe83389
LP
1087 /* Process cgroups notifications early. Note that when the agent notification is received
1088 * we'll just enqueue the unit in the cgroup empty queue, hence pick a high priority than
1089 * that. Also see handling of cgroup inotify for the unified cgroup stuff. */
1090 r = sd_event_source_set_priority(m->cgroups_agent_event_source, SD_EVENT_PRIORITY_NORMAL-9);
d8fdc620
LP
1091 if (r < 0)
1092 return log_error_errno(r, "Failed to set priority of cgroups agent event source: %m");
1093
1094 (void) sd_event_source_set_description(m->cgroups_agent_event_source, "manager-cgroups-agent");
1095 }
1096
1097 return 0;
1098}
1099
00d9ef85
LP
1100static int manager_setup_user_lookup_fd(Manager *m) {
1101 int r;
1102
1103 assert(m);
1104
1105 /* Set up the socket pair used for passing UID/GID resolution results from forked off processes to PID
1106 * 1. Background: we can't do name lookups (NSS) from PID 1, since it might involve IPC and thus activation,
1107 * and we might hence deadlock on ourselves. Hence we do all user/group lookups asynchronously from the forked
1108 * off processes right before executing the binaries to start. In order to be able to clean up any IPC objects
1109 * created by a unit (see RemoveIPC=) we need to know in PID 1 the used UID/GID of the executed processes,
1110 * hence we establish this communication channel so that forked off processes can pass their UID/GID
1111 * information back to PID 1. The forked off processes send their resolved UID/GID to PID 1 in a simple
1112 * datagram, along with their unit name, so that we can share one communication socket pair among all units for
1113 * this purpose.
1114 *
1115 * You might wonder why we need a communication channel for this that is independent of the usual notification
1116 * socket scheme (i.e. $NOTIFY_SOCKET). The primary difference is about trust: data sent via the $NOTIFY_SOCKET
1117 * channel is only accepted if it originates from the right unit and if reception was enabled for it. The user
1118 * lookup socket OTOH is only accessible by PID 1 and its children until they exec(), and always available.
1119 *
1120 * Note that this function is called under two circumstances: when we first initialize (in which case we
1121 * allocate both the socket pair and the event source to listen on it), and when we deserialize after a reload
1122 * (in which case the socket pair already exists but we still need to allocate the event source for it). */
1123
1124 if (m->user_lookup_fds[0] < 0) {
1125
1126 /* Free all secondary fields */
1127 safe_close_pair(m->user_lookup_fds);
5dcadb4c 1128 m->user_lookup_event_source = sd_event_source_disable_unref(m->user_lookup_event_source);
00d9ef85
LP
1129
1130 if (socketpair(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC, 0, m->user_lookup_fds) < 0)
1131 return log_error_errno(errno, "Failed to allocate user lookup socket: %m");
1132
1133 (void) fd_inc_rcvbuf(m->user_lookup_fds[0], NOTIFY_RCVBUF_SIZE);
1134 }
1135
1136 if (!m->user_lookup_event_source) {
1137 r = sd_event_add_io(m->event, &m->user_lookup_event_source, m->user_lookup_fds[0], EPOLLIN, manager_dispatch_user_lookup_fd, m);
1138 if (r < 0)
1139 return log_error_errno(errno, "Failed to allocate user lookup event source: %m");
1140
1141 /* Process even earlier than the notify event source, so that we always know first about valid UID/GID
1142 * resolutions */
67ae4e8d 1143 r = sd_event_source_set_priority(m->user_lookup_event_source, SD_EVENT_PRIORITY_NORMAL-11);
00d9ef85 1144 if (r < 0)
5238e957 1145 return log_error_errno(errno, "Failed to set priority of user lookup event source: %m");
00d9ef85
LP
1146
1147 (void) sd_event_source_set_description(m->user_lookup_event_source, "user-lookup");
1148 }
1149
1150 return 0;
1151}
1152
23a177ef 1153static unsigned manager_dispatch_cleanup_queue(Manager *m) {
595ed347 1154 Unit *u;
23a177ef
LP
1155 unsigned n = 0;
1156
1157 assert(m);
1158
595ed347
MS
1159 while ((u = m->cleanup_queue)) {
1160 assert(u->in_cleanup_queue);
23a177ef 1161
595ed347 1162 unit_free(u);
23a177ef
LP
1163 n++;
1164 }
1165
1166 return n;
1167}
1168
eced69b3 1169enum {
35b8ca3a 1170 GC_OFFSET_IN_PATH, /* This one is on the path we were traveling */
eced69b3
LP
1171 GC_OFFSET_UNSURE, /* No clue */
1172 GC_OFFSET_GOOD, /* We still need this unit */
1173 GC_OFFSET_BAD, /* We don't need this unit anymore */
1174 _GC_OFFSET_MAX
1175};
1176
00d9ef85 1177static void unit_gc_mark_good(Unit *u, unsigned gc_marker) {
4892084f
LN
1178 Unit *other;
1179
1180 u->gc_marker = gc_marker + GC_OFFSET_GOOD;
1181
1182 /* Recursively mark referenced units as GOOD as well */
15ed3c3a 1183 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_REFERENCES)
4892084f
LN
1184 if (other->gc_marker == gc_marker + GC_OFFSET_UNSURE)
1185 unit_gc_mark_good(other, gc_marker);
1186}
1187
eced69b3 1188static void unit_gc_sweep(Unit *u, unsigned gc_marker) {
701cc384 1189 Unit *other;
eced69b3 1190 bool is_bad;
701cc384
LP
1191
1192 assert(u);
1193
4c701096
YW
1194 if (IN_SET(u->gc_marker - gc_marker,
1195 GC_OFFSET_GOOD, GC_OFFSET_BAD, GC_OFFSET_UNSURE, GC_OFFSET_IN_PATH))
701cc384
LP
1196 return;
1197
ac155bb8 1198 if (u->in_cleanup_queue)
701cc384
LP
1199 goto bad;
1200
f2f725e5 1201 if (!unit_may_gc(u))
701cc384
LP
1202 goto good;
1203
ac155bb8 1204 u->gc_marker = gc_marker + GC_OFFSET_IN_PATH;
eced69b3
LP
1205
1206 is_bad = true;
1207
15ed3c3a 1208 UNIT_FOREACH_DEPENDENCY(other, u, UNIT_ATOM_REFERENCED_BY) {
701cc384
LP
1209 unit_gc_sweep(other, gc_marker);
1210
ac155bb8 1211 if (other->gc_marker == gc_marker + GC_OFFSET_GOOD)
701cc384 1212 goto good;
eced69b3 1213
ac155bb8 1214 if (other->gc_marker != gc_marker + GC_OFFSET_BAD)
eced69b3 1215 is_bad = false;
701cc384
LP
1216 }
1217
ef3fc326
ZJS
1218 const UnitRef *ref;
1219 LIST_FOREACH(refs_by_target, ref, u->refs_by_target) {
1220 unit_gc_sweep(ref->source, gc_marker);
2641f02e 1221
ef3fc326
ZJS
1222 if (ref->source->gc_marker == gc_marker + GC_OFFSET_GOOD)
1223 goto good;
2641f02e 1224
ef3fc326
ZJS
1225 if (ref->source->gc_marker != gc_marker + GC_OFFSET_BAD)
1226 is_bad = false;
2641f02e 1227 }
701cc384 1228
eced69b3
LP
1229 if (is_bad)
1230 goto bad;
1231
1232 /* We were unable to find anything out about this entry, so
1233 * let's investigate it later */
ac155bb8 1234 u->gc_marker = gc_marker + GC_OFFSET_UNSURE;
eced69b3
LP
1235 unit_add_to_gc_queue(u);
1236 return;
1237
701cc384 1238bad:
eced69b3
LP
1239 /* We definitely know that this one is not useful anymore, so
1240 * let's mark it for deletion */
ac155bb8 1241 u->gc_marker = gc_marker + GC_OFFSET_BAD;
eced69b3 1242 unit_add_to_cleanup_queue(u);
701cc384
LP
1243 return;
1244
1245good:
4892084f 1246 unit_gc_mark_good(u, gc_marker);
701cc384
LP
1247}
1248
c5a97ed1
LP
1249static unsigned manager_dispatch_gc_unit_queue(Manager *m) {
1250 unsigned n = 0, gc_marker;
595ed347 1251 Unit *u;
701cc384
LP
1252
1253 assert(m);
1254
cf1265e1 1255 /* log_debug("Running GC..."); */
701cc384 1256
eced69b3
LP
1257 m->gc_marker += _GC_OFFSET_MAX;
1258 if (m->gc_marker + _GC_OFFSET_MAX <= _GC_OFFSET_MAX)
c9c0cadb 1259 m->gc_marker = 1;
701cc384 1260
eced69b3
LP
1261 gc_marker = m->gc_marker;
1262
c5a97ed1 1263 while ((u = m->gc_unit_queue)) {
595ed347 1264 assert(u->in_gc_queue);
701cc384 1265
595ed347 1266 unit_gc_sweep(u, gc_marker);
eced69b3 1267
c5a97ed1 1268 LIST_REMOVE(gc_queue, m->gc_unit_queue, u);
595ed347 1269 u->in_gc_queue = false;
701cc384
LP
1270
1271 n++;
1272
4c701096
YW
1273 if (IN_SET(u->gc_marker - gc_marker,
1274 GC_OFFSET_BAD, GC_OFFSET_UNSURE)) {
cc3bc3e6 1275 if (u->id)
f2341e0a 1276 log_unit_debug(u, "Collecting.");
595ed347
MS
1277 u->gc_marker = gc_marker + GC_OFFSET_BAD;
1278 unit_add_to_cleanup_queue(u);
701cc384
LP
1279 }
1280 }
1281
701cc384
LP
1282 return n;
1283}
1284
c5a97ed1
LP
1285static unsigned manager_dispatch_gc_job_queue(Manager *m) {
1286 unsigned n = 0;
1287 Job *j;
1288
1289 assert(m);
1290
1291 while ((j = m->gc_job_queue)) {
1292 assert(j->in_gc_queue);
1293
1294 LIST_REMOVE(gc_queue, m->gc_job_queue, j);
1295 j->in_gc_queue = false;
1296
1297 n++;
1298
2ab3050f 1299 if (!job_may_gc(j))
c5a97ed1
LP
1300 continue;
1301
1302 log_unit_debug(j->unit, "Collecting job.");
1303 (void) job_finish_and_invalidate(j, JOB_COLLECTED, false, false);
1304 }
1305
1306 return n;
1307}
1308
a3c1168a
LP
1309static unsigned manager_dispatch_stop_when_unneeded_queue(Manager *m) {
1310 unsigned n = 0;
1311 Unit *u;
1312 int r;
1313
1314 assert(m);
1315
1316 while ((u = m->stop_when_unneeded_queue)) {
1317 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
a3c1168a
LP
1318
1319 assert(u->in_stop_when_unneeded_queue);
1320 LIST_REMOVE(stop_when_unneeded_queue, m->stop_when_unneeded_queue, u);
1321 u->in_stop_when_unneeded_queue = false;
1322
1323 n++;
1324
1325 if (!unit_is_unneeded(u))
1326 continue;
1327
1328 log_unit_debug(u, "Unit is not needed anymore.");
1329
1330 /* If stopping a unit fails continuously we might enter a stop loop here, hence stop acting on the
1331 * service being unnecessary after a while. */
1332
0bc488c9 1333 if (!ratelimit_below(&u->auto_start_stop_ratelimit)) {
a3c1168a
LP
1334 log_unit_warning(u, "Unit not needed anymore, but not stopping since we tried this too often recently.");
1335 continue;
1336 }
1337
1338 /* Ok, nobody needs us anymore. Sniff. Then let's commit suicide */
50cbaba4 1339 r = manager_add_job(u->manager, JOB_STOP, u, JOB_FAIL, NULL, &error, NULL);
a3c1168a
LP
1340 if (r < 0)
1341 log_unit_warning_errno(u, r, "Failed to enqueue stop job, ignoring: %s", bus_error_message(&error, r));
1342 }
1343
1344 return n;
1345}
1346
0bc488c9
LP
1347static unsigned manager_dispatch_start_when_upheld_queue(Manager *m) {
1348 unsigned n = 0;
1349 Unit *u;
1350 int r;
1351
1352 assert(m);
1353
1354 while ((u = m->start_when_upheld_queue)) {
1355 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1356 Unit *culprit = NULL;
1357
1358 assert(u->in_start_when_upheld_queue);
1359 LIST_REMOVE(start_when_upheld_queue, m->start_when_upheld_queue, u);
1360 u->in_start_when_upheld_queue = false;
1361
1362 n++;
1363
1364 if (!unit_is_upheld_by_active(u, &culprit))
1365 continue;
1366
1367 log_unit_debug(u, "Unit is started because upheld by active unit %s.", culprit->id);
1368
1369 /* If stopping a unit fails continuously we might enter a stop loop here, hence stop acting on the
1370 * service being unnecessary after a while. */
1371
1372 if (!ratelimit_below(&u->auto_start_stop_ratelimit)) {
1373 log_unit_warning(u, "Unit needs to be started because active unit %s upholds it, but not starting since we tried this too often recently.", culprit->id);
1374 continue;
1375 }
1376
1377 r = manager_add_job(u->manager, JOB_START, u, JOB_FAIL, NULL, &error, NULL);
1378 if (r < 0)
1379 log_unit_warning_errno(u, r, "Failed to enqueue start job, ignoring: %s", bus_error_message(&error, r));
1380 }
1381
1382 return n;
1383}
1384
56c59592
LP
1385static unsigned manager_dispatch_stop_when_bound_queue(Manager *m) {
1386 unsigned n = 0;
1387 Unit *u;
1388 int r;
1389
1390 assert(m);
1391
1392 while ((u = m->stop_when_bound_queue)) {
1393 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1394 Unit *culprit = NULL;
1395
1396 assert(u->in_stop_when_bound_queue);
1397 LIST_REMOVE(stop_when_bound_queue, m->stop_when_bound_queue, u);
1398 u->in_stop_when_bound_queue = false;
1399
1400 n++;
1401
1402 if (!unit_is_bound_by_inactive(u, &culprit))
1403 continue;
1404
1405 log_unit_debug(u, "Unit is stopped because bound to inactive unit %s.", culprit->id);
1406
1407 /* If stopping a unit fails continuously we might enter a stop loop here, hence stop acting on the
1408 * service being unnecessary after a while. */
1409
1410 if (!ratelimit_below(&u->auto_start_stop_ratelimit)) {
1411 log_unit_warning(u, "Unit needs to be stopped because it is bound to inactive unit %s it, but not stopping since we tried this too often recently.", culprit->id);
1412 continue;
1413 }
1414
1415 r = manager_add_job(u->manager, JOB_STOP, u, JOB_REPLACE, NULL, &error, NULL);
1416 if (r < 0)
1417 log_unit_warning_errno(u, r, "Failed to enqueue stop job, ignoring: %s", bus_error_message(&error, r));
1418 }
1419
1420 return n;
1421}
1422
a16e1123 1423static void manager_clear_jobs_and_units(Manager *m) {
a16e1123 1424 Unit *u;
60918275
LP
1425
1426 assert(m);
1427
87f0e418
LP
1428 while ((u = hashmap_first(m->units)))
1429 unit_free(u);
964e0949
LP
1430
1431 manager_dispatch_cleanup_queue(m);
1432
1433 assert(!m->load_queue);
da8e1782 1434 assert(prioq_isempty(m->run_queue));
964e0949
LP
1435 assert(!m->dbus_unit_queue);
1436 assert(!m->dbus_job_queue);
1437 assert(!m->cleanup_queue);
c5a97ed1
LP
1438 assert(!m->gc_unit_queue);
1439 assert(!m->gc_job_queue);
13e72103
MK
1440 assert(!m->cgroup_realize_queue);
1441 assert(!m->cgroup_empty_queue);
1442 assert(!m->cgroup_oom_queue);
1443 assert(!m->target_deps_queue);
a3c1168a 1444 assert(!m->stop_when_unneeded_queue);
0bc488c9 1445 assert(!m->start_when_upheld_queue);
56c59592 1446 assert(!m->stop_when_bound_queue);
964e0949 1447
964e0949
LP
1448 assert(hashmap_isempty(m->jobs));
1449 assert(hashmap_isempty(m->units));
9e9e2b72
MS
1450
1451 m->n_on_console = 0;
1452 m->n_running_jobs = 0;
1e75824c
MK
1453 m->n_installed_jobs = 0;
1454 m->n_failed_jobs = 0;
a16e1123
LP
1455}
1456
06d8d842 1457Manager* manager_free(Manager *m) {
06d8d842
ZJS
1458 if (!m)
1459 return NULL;
a16e1123
LP
1460
1461 manager_clear_jobs_and_units(m);
23a177ef 1462
24b45970 1463 for (UnitType c = 0; c < _UNIT_TYPE_MAX; c++)
7824bbeb
LP
1464 if (unit_vtable[c]->shutdown)
1465 unit_vtable[c]->shutdown(m);
1466
86036b26
LP
1467 /* Keep the cgroup hierarchy in place except when we know we are going down for good */
1468 manager_shutdown_cgroup(m, IN_SET(m->objective, MANAGER_EXIT, MANAGER_REBOOT, MANAGER_POWEROFF, MANAGER_HALT, MANAGER_KEXEC));
8e274523 1469
07a78643 1470 lookup_paths_flush_generator(&m->lookup_paths);
5a1e9937 1471
5e8d1c9a 1472 bus_done(m);
19d22d43 1473 manager_varlink_done(m);
ea430986 1474
e8a565cb
YW
1475 exec_runtime_vacuum(m);
1476 hashmap_free(m->exec_runtime_by_id);
1477
29206d46
LP
1478 dynamic_user_vacuum(m, false);
1479 hashmap_free(m->dynamic_users);
1480
87f0e418 1481 hashmap_free(m->units);
4b58153d 1482 hashmap_free(m->units_by_invocation_id);
60918275 1483 hashmap_free(m->jobs);
62a76913 1484 hashmap_free(m->watch_pids);
05e343b7 1485 hashmap_free(m->watch_bus);
9152c765 1486
da8e1782
MO
1487 prioq_free(m->run_queue);
1488
95ae05c0 1489 set_free(m->startup_units);
f755e3b7
LP
1490 set_free(m->failed_units);
1491
718db961 1492 sd_event_source_unref(m->signal_event_source);
575b300b 1493 sd_event_source_unref(m->sigchld_event_source);
718db961 1494 sd_event_source_unref(m->notify_event_source);
d8fdc620 1495 sd_event_source_unref(m->cgroups_agent_event_source);
718db961 1496 sd_event_source_unref(m->time_change_event_source);
bbf5fd8e 1497 sd_event_source_unref(m->timezone_change_event_source);
718db961 1498 sd_event_source_unref(m->jobs_in_progress_event_source);
752b5905 1499 sd_event_source_unref(m->run_queue_event_source);
00d9ef85 1500 sd_event_source_unref(m->user_lookup_event_source);
718db961 1501
03e334a1
LP
1502 safe_close(m->signal_fd);
1503 safe_close(m->notify_fd);
d8fdc620 1504 safe_close(m->cgroups_agent_fd);
03e334a1 1505 safe_close(m->time_change_fd);
00d9ef85 1506 safe_close_pair(m->user_lookup_fds);
718db961 1507
e46b13c8
ZJS
1508 manager_close_ask_password(m);
1509
718db961
LP
1510 manager_close_idle_pipe(m);
1511
1512 sd_event_unref(m->event);
60918275 1513
c952c6ec
LP
1514 free(m->notify_socket);
1515
84e3543e 1516 lookup_paths_free(&m->lookup_paths);
1ad6e8b3
LP
1517 strv_free(m->transient_environment);
1518 strv_free(m->client_environment);
036643a2 1519
4ad49000 1520 hashmap_free(m->cgroup_unit);
e8630e69 1521 manager_free_unit_name_maps(m);
33be102a 1522
664f88a7
LP
1523 free(m->switch_root);
1524 free(m->switch_root_init);
1525
31ce987c 1526 rlimit_free_all(m->rlimit);
c93ff2e9 1527
a57f7e2c
LP
1528 assert(hashmap_isempty(m->units_requiring_mounts_for));
1529 hashmap_free(m->units_requiring_mounts_for);
1530
00d9ef85
LP
1531 hashmap_free(m->uid_refs);
1532 hashmap_free(m->gid_refs);
1533
24b45970 1534 for (ExecDirectoryType dt = 0; dt < _EXEC_DIRECTORY_TYPE_MAX; dt++)
35aba85a 1535 m->prefix[dt] = mfree(m->prefix[dt]);
bb0c0d6f 1536 free(m->received_credentials);
35aba85a 1537
6b430fdb 1538 return mfree(m);
60918275
LP
1539}
1540
04eb582a 1541static void manager_enumerate_perpetual(Manager *m) {
04eb582a
LP
1542 assert(m);
1543
1545051c 1544 if (FLAGS_SET(m->test_run_flags, MANAGER_TEST_RUN_MINIMAL))
b1d5246d
ZJS
1545 return;
1546
04eb582a 1547 /* Let's ask every type to load all units from disk/kernel that it might know */
24b45970 1548 for (UnitType c = 0; c < _UNIT_TYPE_MAX; c++) {
04eb582a
LP
1549 if (!unit_type_supported(c)) {
1550 log_debug("Unit type .%s is not supported on this system.", unit_type_to_string(c));
1551 continue;
1552 }
1553
1554 if (unit_vtable[c]->enumerate_perpetual)
1555 unit_vtable[c]->enumerate_perpetual(m);
1556 }
1557}
1558
a1113e08 1559static void manager_enumerate(Manager *m) {
f50e0a01
LP
1560 assert(m);
1561
1545051c 1562 if (FLAGS_SET(m->test_run_flags, MANAGER_TEST_RUN_MINIMAL))
b1d5246d
ZJS
1563 return;
1564
04eb582a 1565 /* Let's ask every type to load all units from disk/kernel that it might know */
24b45970 1566 for (UnitType c = 0; c < _UNIT_TYPE_MAX; c++) {
1c2e9646 1567 if (!unit_type_supported(c)) {
03afec3c 1568 log_debug("Unit type .%s is not supported on this system.", unit_type_to_string(c));
0faacd47 1569 continue;
a57f7e2c 1570 }
f50e0a01 1571
94b01dae
ZJS
1572 if (unit_vtable[c]->enumerate)
1573 unit_vtable[c]->enumerate(m);
0faacd47
LP
1574 }
1575
f50e0a01 1576 manager_dispatch_load_queue(m);
a16e1123
LP
1577}
1578
007c6337 1579static void manager_coldplug(Manager *m) {
a16e1123
LP
1580 Unit *u;
1581 char *k;
007c6337 1582 int r;
a16e1123
LP
1583
1584 assert(m);
f50e0a01 1585
f0831ed2
LP
1586 log_debug("Invoking unit coldplug() handlers…");
1587
1588 /* Let's place the units back into their deserialized state */
90e74a66 1589 HASHMAP_FOREACH_KEY(u, k, m->units) {
f50e0a01
LP
1590
1591 /* ignore aliases */
ac155bb8 1592 if (u->id != k)
f50e0a01
LP
1593 continue;
1594
007c6337
LP
1595 r = unit_coldplug(u);
1596 if (r < 0)
1597 log_warning_errno(r, "We couldn't coldplug %s, proceeding anyway: %m", u->id);
f50e0a01 1598 }
a16e1123
LP
1599}
1600
f0831ed2 1601static void manager_catchup(Manager *m) {
f0831ed2
LP
1602 Unit *u;
1603 char *k;
1604
1605 assert(m);
1606
1607 log_debug("Invoking unit catchup() handlers…");
1608
1609 /* Let's catch up on any state changes that happened while we were reloading/reexecing */
90e74a66 1610 HASHMAP_FOREACH_KEY(u, k, m->units) {
f0831ed2
LP
1611
1612 /* ignore aliases */
1613 if (u->id != k)
1614 continue;
1615
1616 unit_catchup(u);
1617 }
1618}
1619
9ff1a6f1 1620static void manager_distribute_fds(Manager *m, FDSet *fds) {
9ff1a6f1 1621 Unit *u;
9588bc32
LP
1622
1623 assert(m);
1624
90e74a66 1625 HASHMAP_FOREACH(u, m->units) {
9588bc32
LP
1626
1627 if (fdset_size(fds) <= 0)
1628 break;
1629
9ff1a6f1
LP
1630 if (!UNIT_VTABLE(u)->distribute_fds)
1631 continue;
9588bc32 1632
9ff1a6f1
LP
1633 UNIT_VTABLE(u)->distribute_fds(u, fds);
1634 }
9588bc32
LP
1635}
1636
8559b3b7
LP
1637static bool manager_dbus_is_running(Manager *m, bool deserialized) {
1638 Unit *u;
1639
1640 assert(m);
1641
1642 /* This checks whether the dbus instance we are supposed to expose our APIs on is up. We check both the socket
1643 * and the service unit. If the 'deserialized' parameter is true we'll check the deserialized state of the unit
1644 * rather than the current one. */
1645
638cece4 1646 if (MANAGER_IS_TEST_RUN(m))
8559b3b7
LP
1647 return false;
1648
8559b3b7
LP
1649 u = manager_get_unit(m, SPECIAL_DBUS_SOCKET);
1650 if (!u)
1651 return false;
1652 if ((deserialized ? SOCKET(u)->deserialized_state : SOCKET(u)->state) != SOCKET_RUNNING)
1653 return false;
1654
1655 u = manager_get_unit(m, SPECIAL_DBUS_SERVICE);
1656 if (!u)
1657 return false;
1658 if (!IN_SET((deserialized ? SERVICE(u)->deserialized_state : SERVICE(u)->state), SERVICE_RUNNING, SERVICE_RELOAD))
1659 return false;
1660
1661 return true;
1662}
1663
9d4c195c
LP
1664static void manager_setup_bus(Manager *m) {
1665 assert(m);
1666
1667 /* Let's set up our private bus connection now, unconditionally */
1668 (void) bus_init_private(m);
1669
1670 /* If we are in --user mode also connect to the system bus now */
1671 if (MANAGER_IS_USER(m))
1672 (void) bus_init_system(m);
1673
1674 /* Let's connect to the bus now, but only if the unit is supposed to be up */
1675 if (manager_dbus_is_running(m, MANAGER_IS_RELOADING(m))) {
1676 (void) bus_init_api(m);
1677
1678 if (MANAGER_IS_SYSTEM(m))
1679 (void) bus_init_system(m);
1680 }
1681}
1682
159f1e76
LP
1683static void manager_preset_all(Manager *m) {
1684 int r;
1685
1686 assert(m);
1687
1688 if (m->first_boot <= 0)
1689 return;
1690
1691 if (!MANAGER_IS_SYSTEM(m))
1692 return;
1693
638cece4 1694 if (MANAGER_IS_TEST_RUN(m))
159f1e76
LP
1695 return;
1696
1697 /* If this is the first boot, and we are in the host system, then preset everything */
1698 r = unit_file_preset_all(UNIT_FILE_SYSTEM, 0, NULL, UNIT_FILE_PRESET_ENABLE_ONLY, NULL, 0);
1699 if (r < 0)
1700 log_full_errno(r == -EEXIST ? LOG_NOTICE : LOG_WARNING, r,
1701 "Failed to populate /etc with preset unit settings, ignoring: %m");
1702 else
1703 log_info("Populated /etc with preset unit settings.");
1704}
1705
5ce5e1ad
LP
1706static void manager_ready(Manager *m) {
1707 assert(m);
1708
1709 /* After having loaded everything, do the final round of catching up with what might have changed */
1710
1711 m->objective = MANAGER_OK; /* Tell everyone we are up now */
1712
1713 /* It might be safe to log to the journal now and connect to dbus */
1714 manager_recheck_journal(m);
1715 manager_recheck_dbus(m);
1716
5ce5e1ad
LP
1717 /* Let's finally catch up with any changes that took place while we were reloading/reexecing */
1718 manager_catchup(m);
c6e892bc
YW
1719
1720 m->honor_device_enumeration = true;
5ce5e1ad
LP
1721}
1722
a01ba4b2 1723Manager* manager_reloading_start(Manager *m) {
d147e2b6
ZJS
1724 m->n_reloading++;
1725 return m;
1726}
a01ba4b2 1727void manager_reloading_stopp(Manager **m) {
d147e2b6
ZJS
1728 if (*m) {
1729 assert((*m)->n_reloading > 0);
1730 (*m)->n_reloading--;
1731 }
1732}
1733
2a7cf953 1734int manager_startup(Manager *m, FILE *serialization, FDSet *fds, const char *root) {
17f01ace 1735 int r;
a16e1123
LP
1736
1737 assert(m);
1738
a1f31f47
ZJS
1739 /* If we are running in test mode, we still want to run the generators,
1740 * but we should not touch the real generator directories. */
1741 r = lookup_paths_init(&m->lookup_paths, m->unit_file_scope,
638cece4 1742 MANAGER_IS_TEST_RUN(m) ? LOOKUP_PATHS_TEMPORARY_GENERATED : 0,
2a7cf953 1743 root);
e801700e 1744 if (r < 0)
572986ca 1745 return log_error_errno(r, "Failed to initialize path lookup table: %m");
5a1e9937 1746
d4ee7bd8 1747 dual_timestamp_get(m->timestamps + manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_GENERATORS_START));
eb523bfb
LP
1748 r = manager_run_environment_generators(m);
1749 if (r >= 0)
1750 r = manager_run_generators(m);
d4ee7bd8 1751 dual_timestamp_get(m->timestamps + manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_GENERATORS_FINISH));
07719a21
LP
1752 if (r < 0)
1753 return r;
1754
159f1e76 1755 manager_preset_all(m);
572986ca 1756
581fef8d 1757 lookup_paths_log(&m->lookup_paths);
572986ca 1758
4df7d537
ZJS
1759 {
1760 /* This block is (optionally) done with the reloading counter bumped */
1761 _cleanup_(manager_reloading_stopp) Manager *reloading = NULL;
1762
1763 /* If we will deserialize make sure that during enumeration this is already known, so we increase the
1764 * counter here already */
1765 if (serialization)
1766 reloading = manager_reloading_start(m);
1767
1768 /* First, enumerate what we can from all config files */
1769 dual_timestamp_get(m->timestamps + manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_UNITS_LOAD_START));
1770 manager_enumerate_perpetual(m);
1771 manager_enumerate(m);
1772 dual_timestamp_get(m->timestamps + manager_timestamp_initrd_mangle(MANAGER_TIMESTAMP_UNITS_LOAD_FINISH));
1773
1774 /* Second, deserialize if there is something to deserialize */
1775 if (serialization) {
1776 r = manager_deserialize(m, serialization, fds);
1777 if (r < 0)
1778 return log_error_errno(r, "Deserialization failed: %m");
1779 }
01e10de3 1780
4df7d537
ZJS
1781 /* Any fds left? Find some unit which wants them. This is useful to allow container managers to pass
1782 * some file descriptors to us pre-initialized. This enables socket-based activation of entire
1783 * containers. */
1784 manager_distribute_fds(m, fds);
d86f9d52 1785
4df7d537
ZJS
1786 /* We might have deserialized the notify fd, but if we didn't then let's create the bus now */
1787 r = manager_setup_notify(m);
1788 if (r < 0)
1789 /* No sense to continue without notifications, our children would fail anyway. */
1790 return r;
d8fdc620 1791
4df7d537
ZJS
1792 r = manager_setup_cgroups_agent(m);
1793 if (r < 0)
1794 /* Likewise, no sense to continue without empty cgroup notifications. */
1795 return r;
00d9ef85 1796
4df7d537
ZJS
1797 r = manager_setup_user_lookup_fd(m);
1798 if (r < 0)
1799 /* This shouldn't fail, except if things are really broken. */
1800 return r;
8559b3b7 1801
4df7d537
ZJS
1802 /* Connect to the bus if we are good for it */
1803 manager_setup_bus(m);
e3dd987c 1804
5238e957 1805 /* Now that we are connected to all possible buses, let's deserialize who is tracking us. */
4df7d537
ZJS
1806 r = bus_track_coldplug(m, &m->subscribed, false, m->deserialized_subscribed);
1807 if (r < 0)
1808 log_warning_errno(r, "Failed to deserialized tracked clients, ignoring: %m");
1809 m->deserialized_subscribed = strv_free(m->deserialized_subscribed);
a16e1123 1810
19d22d43
LP
1811 r = manager_varlink_init(m);
1812 if (r < 0)
1813 log_warning_errno(r, "Failed to set up Varlink server, ignoring: %m");
1814
4df7d537
ZJS
1815 /* Third, fire things up! */
1816 manager_coldplug(m);
3ad2afb6 1817
4df7d537
ZJS
1818 /* Clean up runtime objects */
1819 manager_vacuum(m);
71445ae7 1820
4df7d537
ZJS
1821 if (serialization)
1822 /* Let's wait for the UnitNew/JobNew messages being sent, before we notify that the
1823 * reload is finished */
1824 m->send_reloading_done = true;
9f611ad8
LP
1825 }
1826
5ce5e1ad 1827 manager_ready(m);
f0831ed2 1828
17f01ace 1829 return 0;
f50e0a01
LP
1830}
1831
50cbaba4
LP
1832int manager_add_job(
1833 Manager *m,
1834 JobType type,
1835 Unit *unit,
1836 JobMode mode,
1837 Set *affected_jobs,
1838 sd_bus_error *error,
1839 Job **ret) {
1840
7527cb52 1841 Transaction *tr;
50cbaba4 1842 int r;
e5b5ae50
LP
1843
1844 assert(m);
1845 assert(type < _JOB_TYPE_MAX);
87f0e418 1846 assert(unit);
e5b5ae50 1847 assert(mode < _JOB_MODE_MAX);
60918275 1848
7358dc02 1849 if (mode == JOB_ISOLATE && type != JOB_START)
1b09b81c 1850 return sd_bus_error_set(error, SD_BUS_ERROR_INVALID_ARGS, "Isolate is only valid for start.");
c497c7a9 1851
7358dc02 1852 if (mode == JOB_ISOLATE && !unit->allow_isolate)
1b09b81c 1853 return sd_bus_error_set(error, BUS_ERROR_NO_ISOLATION, "Operation refused, unit may not be isolated.");
2528a7a6 1854
1f0f9f21 1855 if (mode == JOB_TRIGGERING && type != JOB_STOP)
1b09b81c 1856 return sd_bus_error_set(error, SD_BUS_ERROR_INVALID_ARGS, "--job-mode=triggering is only valid for stop.");
1f0f9f21 1857
f2341e0a 1858 log_unit_debug(unit, "Trying to enqueue job %s/%s/%s", unit->id, job_type_to_string(type), job_mode_to_string(mode));
9f04bd52 1859
c6497ccb 1860 type = job_type_collapse(type, unit);
e0209d83 1861
23ade460 1862 tr = transaction_new(mode == JOB_REPLACE_IRREVERSIBLY);
7527cb52
MS
1863 if (!tr)
1864 return -ENOMEM;
11dd41ce 1865
4bd29fe5 1866 r = transaction_add_job_and_dependencies(tr, type, unit, NULL, true, false,
3742095b 1867 IN_SET(mode, JOB_IGNORE_DEPENDENCIES, JOB_IGNORE_REQUIREMENTS),
50cbaba4 1868 mode == JOB_IGNORE_DEPENDENCIES, error);
7527cb52
MS
1869 if (r < 0)
1870 goto tr_abort;
c497c7a9 1871
7527cb52
MS
1872 if (mode == JOB_ISOLATE) {
1873 r = transaction_add_isolate_jobs(tr, m);
1874 if (r < 0)
1875 goto tr_abort;
1876 }
1877
1f0f9f21
KK
1878 if (mode == JOB_TRIGGERING) {
1879 r = transaction_add_triggering_jobs(tr, unit);
1880 if (r < 0)
1881 goto tr_abort;
1882 }
1883
50cbaba4 1884 r = transaction_activate(tr, m, mode, affected_jobs, error);
7527cb52
MS
1885 if (r < 0)
1886 goto tr_abort;
e5b5ae50 1887
f2341e0a 1888 log_unit_debug(unit,
66870f90
ZJS
1889 "Enqueued job %s/%s as %u", unit->id,
1890 job_type_to_string(type), (unsigned) tr->anchor_job->id);
f50e0a01 1891
50cbaba4
LP
1892 if (ret)
1893 *ret = tr->anchor_job;
60918275 1894
7527cb52 1895 transaction_free(tr);
e5b5ae50 1896 return 0;
7527cb52
MS
1897
1898tr_abort:
1899 transaction_abort(tr);
1900 transaction_free(tr);
1901 return r;
e5b5ae50 1902}
60918275 1903
50cbaba4 1904int manager_add_job_by_name(Manager *m, JobType type, const char *name, JobMode mode, Set *affected_jobs, sd_bus_error *e, Job **ret) {
4440b27d 1905 Unit *unit = NULL; /* just to appease gcc, initialization is not really necessary */
28247076
LP
1906 int r;
1907
1908 assert(m);
1909 assert(type < _JOB_TYPE_MAX);
1910 assert(name);
1911 assert(mode < _JOB_MODE_MAX);
1912
c3090674
LP
1913 r = manager_load_unit(m, name, NULL, NULL, &unit);
1914 if (r < 0)
28247076 1915 return r;
4440b27d 1916 assert(unit);
28247076 1917
50cbaba4 1918 return manager_add_job(m, type, unit, mode, affected_jobs, e, ret);
53f18416
LP
1919}
1920
50cbaba4 1921int manager_add_job_by_name_and_warn(Manager *m, JobType type, const char *name, JobMode mode, Set *affected_jobs, Job **ret) {
4afd3348 1922 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
53f18416
LP
1923 int r;
1924
1925 assert(m);
1926 assert(type < _JOB_TYPE_MAX);
1927 assert(name);
1928 assert(mode < _JOB_MODE_MAX);
1929
50cbaba4 1930 r = manager_add_job_by_name(m, type, name, mode, affected_jobs, &error, ret);
53f18416
LP
1931 if (r < 0)
1932 return log_warning_errno(r, "Failed to enqueue %s job for %s: %s", job_mode_to_string(mode), name, bus_error_message(&error, r));
1933
1934 return r;
28247076
LP
1935}
1936
15d167f8
JW
1937int manager_propagate_reload(Manager *m, Unit *unit, JobMode mode, sd_bus_error *e) {
1938 int r;
1939 Transaction *tr;
1940
1941 assert(m);
1942 assert(unit);
1943 assert(mode < _JOB_MODE_MAX);
1944 assert(mode != JOB_ISOLATE); /* Isolate is only valid for start */
1945
1946 tr = transaction_new(mode == JOB_REPLACE_IRREVERSIBLY);
1947 if (!tr)
1948 return -ENOMEM;
1949
1950 /* We need an anchor job */
1951 r = transaction_add_job_and_dependencies(tr, JOB_NOP, unit, NULL, false, false, true, true, e);
1952 if (r < 0)
1953 goto tr_abort;
1954
1955 /* Failure in adding individual dependencies is ignored, so this always succeeds. */
1956 transaction_add_propagate_reload_jobs(tr, unit, tr->anchor_job, mode == JOB_IGNORE_DEPENDENCIES, e);
1957
50cbaba4 1958 r = transaction_activate(tr, m, mode, NULL, e);
15d167f8
JW
1959 if (r < 0)
1960 goto tr_abort;
1961
1962 transaction_free(tr);
1963 return 0;
1964
1965tr_abort:
1966 transaction_abort(tr);
1967 transaction_free(tr);
1968 return r;
1969}
1970
60918275
LP
1971Job *manager_get_job(Manager *m, uint32_t id) {
1972 assert(m);
1973
1974 return hashmap_get(m->jobs, UINT32_TO_PTR(id));
1975}
1976
87f0e418 1977Unit *manager_get_unit(Manager *m, const char *name) {
60918275
LP
1978 assert(m);
1979 assert(name);
1980
87f0e418 1981 return hashmap_get(m->units, name);
60918275
LP
1982}
1983
19496554
MS
1984static int manager_dispatch_target_deps_queue(Manager *m) {
1985 Unit *u;
19496554
MS
1986 int r = 0;
1987
19496554
MS
1988 assert(m);
1989
1990 while ((u = m->target_deps_queue)) {
15ed3c3a
LP
1991 _cleanup_free_ Unit **targets = NULL;
1992 int n_targets;
1993
19496554
MS
1994 assert(u->in_target_deps_queue);
1995
1996 LIST_REMOVE(target_deps_queue, u->manager->target_deps_queue, u);
1997 u->in_target_deps_queue = false;
1998
15ed3c3a
LP
1999 /* Take an "atomic" snapshot of dependencies here, as the call below will likely modify the
2000 * dependencies, and we can't have it that hash tables we iterate through are modified while
2001 * we are iterating through them. */
2002 n_targets = unit_get_dependency_array(u, UNIT_ATOM_DEFAULT_TARGET_DEPENDENCIES, &targets);
2003 if (n_targets < 0)
2004 return n_targets;
19496554 2005
15ed3c3a
LP
2006 for (int i = 0; i < n_targets; i++) {
2007 r = unit_add_default_target_dependency(u, targets[i]);
2008 if (r < 0)
2009 return r;
19496554
MS
2010 }
2011 }
2012
2013 return r;
2014}
2015
c1e1601e 2016unsigned manager_dispatch_load_queue(Manager *m) {
595ed347 2017 Unit *u;
c1e1601e 2018 unsigned n = 0;
60918275
LP
2019
2020 assert(m);
2021
223dabab
LP
2022 /* Make sure we are not run recursively */
2023 if (m->dispatching_load_queue)
c1e1601e 2024 return 0;
223dabab
LP
2025
2026 m->dispatching_load_queue = true;
2027
87f0e418 2028 /* Dispatches the load queue. Takes a unit from the queue and
60918275
LP
2029 * tries to load its data until the queue is empty */
2030
595ed347
MS
2031 while ((u = m->load_queue)) {
2032 assert(u->in_load_queue);
034c6ed7 2033
595ed347 2034 unit_load(u);
c1e1601e 2035 n++;
60918275
LP
2036 }
2037
223dabab 2038 m->dispatching_load_queue = false;
19496554
MS
2039
2040 /* Dispatch the units waiting for their target dependencies to be added now, as all targets that we know about
2041 * should be loaded and have aliases resolved */
2042 (void) manager_dispatch_target_deps_queue(m);
2043
c1e1601e 2044 return n;
60918275
LP
2045}
2046
81be2388 2047bool manager_unit_cache_should_retry_load(Unit *u) {
cda66772
LB
2048 assert(u);
2049
81be2388
ZJS
2050 /* Automatic reloading from disk only applies to units which were not found sometime in the past, and
2051 * the not-found stub is kept pinned in the unit graph by dependencies. For units that were
2052 * previously loaded, we don't do automatic reloading, and daemon-reload is necessary to update. */
cda66772
LB
2053 if (u->load_state != UNIT_NOT_FOUND)
2054 return false;
2055
81be2388
ZJS
2056 /* The cache has been updated since the last time we tried to load the unit. There might be new
2057 * fragment paths to read. */
c2911d48 2058 if (u->manager->unit_cache_timestamp_hash != u->fragment_not_found_timestamp_hash)
cda66772 2059 return true;
d904afc7 2060
81be2388 2061 /* The cache needs to be updated because there are modifications on disk. */
c2911d48 2062 return !lookup_paths_timestamp_hash_same(&u->manager->lookup_paths, u->manager->unit_cache_timestamp_hash, NULL);
d904afc7
LB
2063}
2064
c2756a68
LP
2065int manager_load_unit_prepare(
2066 Manager *m,
2067 const char *name,
2068 const char *path,
718db961 2069 sd_bus_error *e,
c2756a68
LP
2070 Unit **_ret) {
2071
dc409696 2072 _cleanup_(unit_freep) Unit *cleanup_ret = NULL;
87f0e418 2073 Unit *ret;
7d17cfbc 2074 UnitType t;
60918275
LP
2075 int r;
2076
2077 assert(m);
7a6a095a 2078 assert(_ret);
60918275 2079
526e3cbb 2080 /* This will prepare the unit for loading, but not actually load anything from disk. */
0301abf4 2081
526e3cbb 2082 if (path && !path_is_absolute(path))
718db961 2083 return sd_bus_error_setf(e, SD_BUS_ERROR_INVALID_ARGS, "Path %s is not absolute.", path);
9e2f7c11 2084
08f46856
BR
2085 if (!name) {
2086 /* 'name' and 'path' must not both be null. Check here 'path' using assert_se() to
2087 * workaround a bug in gcc that generates a -Wnonnull warning when calling basename(),
2088 * but this cannot be possible in any code path (See #6119). */
2089 assert_se(path);
2b6bf07d 2090 name = basename(path);
08f46856 2091 }
9e2f7c11 2092
7d17cfbc
MS
2093 t = unit_name_to_type(name);
2094
5d512d54
LN
2095 if (t == _UNIT_TYPE_INVALID || !unit_name_is_valid(name, UNIT_NAME_PLAIN|UNIT_NAME_INSTANCE)) {
2096 if (unit_name_is_valid(name, UNIT_NAME_TEMPLATE))
2097 return sd_bus_error_setf(e, SD_BUS_ERROR_INVALID_ARGS, "Unit name %s is missing the instance name.", name);
2098
718db961 2099 return sd_bus_error_setf(e, SD_BUS_ERROR_INVALID_ARGS, "Unit name %s is not valid.", name);
5d512d54 2100 }
60918275 2101
7d17cfbc
MS
2102 ret = manager_get_unit(m, name);
2103 if (ret) {
d904afc7
LB
2104 /* The time-based cache allows to start new units without daemon-reload,
2105 * but if they are already referenced (because of dependencies or ordering)
2106 * then we have to force a load of the fragment. As an optimization, check
2107 * first if anything in the usual paths was modified since the last time
7233e91a
LB
2108 * the cache was loaded. Also check if the last time an attempt to load the
2109 * unit was made was before the most recent cache refresh, so that we know
81be2388 2110 * we need to try again — even if the cache is current, it might have been
7233e91a
LB
2111 * updated in a different context before we had a chance to retry loading
2112 * this particular unit. */
81be2388 2113 if (manager_unit_cache_should_retry_load(ret))
d904afc7
LB
2114 ret->load_state = UNIT_STUB;
2115 else {
2116 *_ret = ret;
2117 return 1;
2118 }
2119 } else {
2120 ret = cleanup_ret = unit_new(m, unit_vtable[t]->object_size);
2121 if (!ret)
2122 return -ENOMEM;
034c6ed7 2123 }
60918275 2124
7d17cfbc 2125 if (path) {
d904afc7
LB
2126 r = free_and_strdup(&ret->fragment_path, path);
2127 if (r < 0)
2128 return r;
7d17cfbc 2129 }
0301abf4 2130
1058cbf2 2131 r = unit_add_name(ret, name);
dc409696 2132 if (r < 0)
1ffba6fe 2133 return r;
60918275 2134
87f0e418 2135 unit_add_to_load_queue(ret);
c1e1601e 2136 unit_add_to_dbus_queue(ret);
949061f0 2137 unit_add_to_gc_queue(ret);
c1e1601e 2138
7a6a095a 2139 *_ret = ret;
dc409696 2140 cleanup_ret = NULL;
db06e3b6
LP
2141
2142 return 0;
2143}
2144
c2756a68
LP
2145int manager_load_unit(
2146 Manager *m,
2147 const char *name,
2148 const char *path,
718db961 2149 sd_bus_error *e,
c2756a68
LP
2150 Unit **_ret) {
2151
db06e3b6
LP
2152 int r;
2153
2154 assert(m);
7a6a095a 2155 assert(_ret);
db06e3b6
LP
2156
2157 /* This will load the service information files, but not actually
2158 * start any services or anything. */
2159
c3090674
LP
2160 r = manager_load_unit_prepare(m, name, path, e, _ret);
2161 if (r != 0)
db06e3b6
LP
2162 return r;
2163
f50e0a01 2164 manager_dispatch_load_queue(m);
60918275 2165
7a6a095a 2166 *_ret = unit_follow_merge(*_ret);
4109ede7
ZJS
2167 return 0;
2168}
2169
2170int manager_load_startable_unit_or_warn(
2171 Manager *m,
2172 const char *name,
2173 const char *path,
2174 Unit **ret) {
2175
2176 /* Load a unit, make sure it loaded fully and is not masked. */
2177
2178 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
2179 Unit *unit;
2180 int r;
2181
2182 r = manager_load_unit(m, name, path, &error, &unit);
2183 if (r < 0)
2184 return log_error_errno(r, "Failed to load %s %s: %s",
8ace1db7 2185 name ? "unit" : "unit file", name ?: path,
4109ede7 2186 bus_error_message(&error, r));
8ace1db7
LP
2187
2188 r = bus_unit_validate_load_state(unit, &error);
2189 if (r < 0)
2190 return log_error_errno(r, "%s", bus_error_message(&error, r));
9e2f7c11 2191
4109ede7 2192 *ret = unit;
60918275
LP
2193 return 0;
2194}
a66d02c3 2195
7fad411c
LP
2196void manager_clear_jobs(Manager *m) {
2197 Job *j;
2198
2199 assert(m);
2200
7fad411c 2201 while ((j = hashmap_first(m->jobs)))
5273510e 2202 /* No need to recurse. We're cancelling all jobs. */
833f92ad 2203 job_finish_and_invalidate(j, JOB_CANCELED, false, false);
7fad411c 2204}
83c60c9f 2205
f75f613d
FB
2206void manager_unwatch_pid(Manager *m, pid_t pid) {
2207 assert(m);
2208
2209 /* First let's drop the unit keyed as "pid". */
2210 (void) hashmap_remove(m->watch_pids, PID_TO_PTR(pid));
2211
2212 /* Then, let's also drop the array keyed by -pid. */
2213 free(hashmap_remove(m->watch_pids, PID_TO_PTR(-pid)));
2214}
2215
752b5905
LP
2216static int manager_dispatch_run_queue(sd_event_source *source, void *userdata) {
2217 Manager *m = userdata;
83c60c9f 2218 Job *j;
034c6ed7 2219
752b5905
LP
2220 assert(source);
2221 assert(m);
9152c765 2222
da8e1782 2223 while ((j = prioq_peek(m->run_queue))) {
ac1135be 2224 assert(j->installed);
034c6ed7
LP
2225 assert(j->in_run_queue);
2226
6e64994d 2227 (void) job_run_and_invalidate(j);
9152c765 2228 }
034c6ed7 2229
a0b64226 2230 if (m->n_running_jobs > 0)
03b717a3
MS
2231 manager_watch_jobs_in_progress(m);
2232
31a7eb86
ZJS
2233 if (m->n_on_console > 0)
2234 manager_watch_idle_pipe(m);
2235
752b5905 2236 return 1;
c1e1601e
LP
2237}
2238
9588bc32 2239static unsigned manager_dispatch_dbus_queue(Manager *m) {
e0a08581 2240 unsigned n = 0, budget;
595ed347 2241 Unit *u;
e0a08581 2242 Job *j;
c1e1601e
LP
2243
2244 assert(m);
2245
b8d381c4
LP
2246 /* When we are reloading, let's not wait with generating signals, since we need to exit the manager as quickly
2247 * as we can. There's no point in throttling generation of signals in that case. */
2248 if (MANAGER_IS_RELOADING(m) || m->send_reloading_done || m->pending_reload_message)
f5fbe71d 2249 budget = UINT_MAX; /* infinite budget in this case */
b8d381c4
LP
2250 else {
2251 /* Anything to do at all? */
2252 if (!m->dbus_unit_queue && !m->dbus_job_queue)
2253 return 0;
2254
2255 /* Do we have overly many messages queued at the moment? If so, let's not enqueue more on top, let's
2256 * sit this cycle out, and process things in a later cycle when the queues got a bit emptier. */
2257 if (manager_bus_n_queued_write(m) > MANAGER_BUS_BUSY_THRESHOLD)
2258 return 0;
2259
2260 /* Only process a certain number of units/jobs per event loop iteration. Even if the bus queue wasn't
2261 * overly full before this call we shouldn't increase it in size too wildly in one step, and we
2262 * shouldn't monopolize CPU time with generating these messages. Note the difference in counting of
2263 * this "budget" and the "threshold" above: the "budget" is decreased only once per generated message,
5238e957
BB
2264 * regardless how many buses/direct connections it is enqueued on, while the "threshold" is applied to
2265 * each queued instance of bus message, i.e. if the same message is enqueued to five buses/direct
b8d381c4
LP
2266 * connections it will be counted five times. This difference in counting ("references"
2267 * vs. "instances") is primarily a result of the fact that it's easier to implement it this way,
2268 * however it also reflects the thinking that the "threshold" should put a limit on used queue memory,
2269 * i.e. space, while the "budget" should put a limit on time. Also note that the "threshold" is
2270 * currently chosen much higher than the "budget". */
2271 budget = MANAGER_BUS_MESSAGE_BUDGET;
2272 }
e0a08581 2273
b8d381c4 2274 while (budget != 0 && (u = m->dbus_unit_queue)) {
e0a08581 2275
595ed347 2276 assert(u->in_dbus_queue);
c1e1601e 2277
595ed347 2278 bus_unit_send_change_signal(u);
b8d381c4
LP
2279 n++;
2280
f5fbe71d 2281 if (budget != UINT_MAX)
b8d381c4 2282 budget--;
c1e1601e
LP
2283 }
2284
b8d381c4 2285 while (budget != 0 && (j = m->dbus_job_queue)) {
c1e1601e
LP
2286 assert(j->in_dbus_queue);
2287
2288 bus_job_send_change_signal(j);
b8d381c4
LP
2289 n++;
2290
f5fbe71d 2291 if (budget != UINT_MAX)
b8d381c4 2292 budget--;
c1e1601e
LP
2293 }
2294
b8d381c4 2295 if (m->send_reloading_done) {
71445ae7 2296 m->send_reloading_done = false;
718db961 2297 bus_manager_send_reloading(m, false);
b8d381c4 2298 n++;
71445ae7
LP
2299 }
2300
b8d381c4 2301 if (m->pending_reload_message) {
209de525 2302 bus_send_pending_reload_message(m);
e0a08581
LP
2303 n++;
2304 }
718db961 2305
c1e1601e 2306 return n;
9152c765
LP
2307}
2308
d8fdc620
LP
2309static int manager_dispatch_cgroups_agent_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
2310 Manager *m = userdata;
60473f0c 2311 char buf[PATH_MAX];
d8fdc620
LP
2312 ssize_t n;
2313
2314 n = recv(fd, buf, sizeof(buf), 0);
2315 if (n < 0)
2316 return log_error_errno(errno, "Failed to read cgroups agent message: %m");
2317 if (n == 0) {
2318 log_error("Got zero-length cgroups agent message, ignoring.");
2319 return 0;
2320 }
2321 if ((size_t) n >= sizeof(buf)) {
2322 log_error("Got overly long cgroups agent message, ignoring.");
2323 return 0;
2324 }
2325
2326 if (memchr(buf, 0, n)) {
2327 log_error("Got cgroups agent message with embedded NUL byte, ignoring.");
2328 return 0;
2329 }
2330 buf[n] = 0;
2331
2332 manager_notify_cgroup_empty(m, buf);
d5f15326 2333 (void) bus_forward_agent_released(m, buf);
d8fdc620
LP
2334
2335 return 0;
2336}
2337
5151b4cc 2338static bool manager_process_barrier_fd(char * const *tags, FDSet *fds) {
4f07ddfa
KKD
2339
2340 /* nothing else must be sent when using BARRIER=1 */
5151b4cc
BR
2341 if (strv_contains(tags, "BARRIER=1")) {
2342 if (strv_length(tags) == 1) {
2343 if (fdset_size(fds) != 1)
2344 log_warning("Got incorrect number of fds with BARRIER=1, closing them.");
2345 } else
2346 log_warning("Extra notification messages sent with BARRIER=1, ignoring everything.");
2347
2348 /* Drop the message if BARRIER=1 was found */
4f07ddfa 2349 return true;
5151b4cc 2350 }
4f07ddfa
KKD
2351
2352 return false;
2353}
2354
db256aab
LP
2355static void manager_invoke_notify_message(
2356 Manager *m,
2357 Unit *u,
2358 const struct ucred *ucred,
5151b4cc 2359 char * const *tags,
db256aab
LP
2360 FDSet *fds) {
2361
5ba6985b
LP
2362 assert(m);
2363 assert(u);
db256aab 2364 assert(ucred);
5151b4cc 2365 assert(tags);
5ba6985b 2366
62a76913 2367 if (u->notifygen == m->notifygen) /* Already invoked on this same unit in this same iteration? */
5ba6985b 2368 return;
62a76913
LP
2369 u->notifygen = m->notifygen;
2370
5151b4cc 2371 if (UNIT_VTABLE(u)->notify_message)
db256aab 2372 UNIT_VTABLE(u)->notify_message(u, ucred, tags, fds);
62a76913 2373
5151b4cc
BR
2374 else if (DEBUG_LOGGING) {
2375 _cleanup_free_ char *buf = NULL, *x = NULL, *y = NULL;
a86b7675 2376
5151b4cc
BR
2377 buf = strv_join(tags, ", ");
2378 if (buf)
2379 x = ellipsize(buf, 20, 90);
a86b7675 2380 if (x)
da5fb861
LP
2381 y = cescape(x);
2382
a86b7675
ZJS
2383 log_unit_debug(u, "Got notification message \"%s\", ignoring.", strnull(y));
2384 }
5ba6985b
LP
2385}
2386
718db961 2387static int manager_dispatch_notify_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
3d0b8a55 2388
b215b0ed 2389 _cleanup_fdset_free_ FDSet *fds = NULL;
718db961 2390 Manager *m = userdata;
b215b0ed
DH
2391 char buf[NOTIFY_BUFFER_MAX+1];
2392 struct iovec iovec = {
2393 .iov_base = buf,
2394 .iov_len = sizeof(buf)-1,
2395 };
fb29cdbe
LP
2396 CMSG_BUFFER_TYPE(CMSG_SPACE(sizeof(struct ucred)) +
2397 CMSG_SPACE(sizeof(int) * NOTIFY_FD_MAX)) control;
b215b0ed
DH
2398 struct msghdr msghdr = {
2399 .msg_iov = &iovec,
2400 .msg_iovlen = 1,
2401 .msg_control = &control,
2402 .msg_controllen = sizeof(control),
2403 };
2404
2405 struct cmsghdr *cmsg;
2406 struct ucred *ucred = NULL;
62a76913 2407 _cleanup_free_ Unit **array_copy = NULL;
5151b4cc 2408 _cleanup_strv_free_ char **tags = NULL;
62a76913 2409 Unit *u1, *u2, **array;
b215b0ed 2410 int r, *fd_array = NULL;
da6053d0 2411 size_t n_fds = 0;
62a76913 2412 bool found = false;
8c47c732
LP
2413 ssize_t n;
2414
2415 assert(m);
718db961
LP
2416 assert(m->notify_fd == fd);
2417
2418 if (revents != EPOLLIN) {
2419 log_warning("Got unexpected poll event for notify fd.");
2420 return 0;
2421 }
8c47c732 2422
3691bcf3
LP
2423 n = recvmsg_safe(m->notify_fd, &msghdr, MSG_DONTWAIT|MSG_CMSG_CLOEXEC|MSG_TRUNC);
2424 if (IN_SET(n, -EAGAIN, -EINTR))
2425 return 0; /* Spurious wakeup, try again */
741bfd7f
LP
2426 if (n == -EXFULL) {
2427 log_warning("Got message with truncated control data (too many fds sent?), ignoring.");
2428 return 0;
2429 }
3691bcf3
LP
2430 if (n < 0)
2431 /* If this is any other, real error, then let's stop processing this socket. This of course
2432 * means we won't take notification messages anymore, but that's still better than busy
2433 * looping around this: being woken up over and over again but being unable to actually read
2434 * the message off the socket. */
2435 return log_error_errno(n, "Failed to receive notification message: %m");
a354329f 2436
b215b0ed
DH
2437 CMSG_FOREACH(cmsg, &msghdr) {
2438 if (cmsg->cmsg_level == SOL_SOCKET && cmsg->cmsg_type == SCM_RIGHTS) {
a354329f 2439
3691bcf3 2440 assert(!fd_array);
b215b0ed
DH
2441 fd_array = (int*) CMSG_DATA(cmsg);
2442 n_fds = (cmsg->cmsg_len - CMSG_LEN(0)) / sizeof(int);
a354329f 2443
b215b0ed
DH
2444 } else if (cmsg->cmsg_level == SOL_SOCKET &&
2445 cmsg->cmsg_type == SCM_CREDENTIALS &&
2446 cmsg->cmsg_len == CMSG_LEN(sizeof(struct ucred))) {
a354329f 2447
3691bcf3 2448 assert(!ucred);
b215b0ed 2449 ucred = (struct ucred*) CMSG_DATA(cmsg);
a354329f 2450 }
b215b0ed 2451 }
a354329f 2452
b215b0ed
DH
2453 if (n_fds > 0) {
2454 assert(fd_array);
a354329f 2455
b215b0ed
DH
2456 r = fdset_new_array(&fds, fd_array, n_fds);
2457 if (r < 0) {
2458 close_many(fd_array, n_fds);
9987750e
FB
2459 log_oom();
2460 return 0;
a354329f 2461 }
b215b0ed 2462 }
8c47c732 2463
15e23e8c 2464 if (!ucred || !pid_is_valid(ucred->pid)) {
b215b0ed
DH
2465 log_warning("Received notify message without valid credentials. Ignoring.");
2466 return 0;
2467 }
8c47c732 2468
045a3d59 2469 if ((size_t) n >= sizeof(buf) || (msghdr.msg_flags & MSG_TRUNC)) {
b215b0ed
DH
2470 log_warning("Received notify message exceeded maximum size. Ignoring.");
2471 return 0;
2472 }
8c47c732 2473
875ca88d
LP
2474 /* As extra safety check, let's make sure the string we get doesn't contain embedded NUL bytes. We permit one
2475 * trailing NUL byte in the message, but don't expect it. */
2476 if (n > 1 && memchr(buf, 0, n-1)) {
2477 log_warning("Received notify message with embedded NUL bytes. Ignoring.");
2478 return 0;
2479 }
2480
5151b4cc 2481 /* Make sure it's NUL-terminated, then parse it to obtain the tags list */
b215b0ed 2482 buf[n] = 0;
5151b4cc
BR
2483 tags = strv_split_newlines(buf);
2484 if (!tags) {
2485 log_oom();
2486 return 0;
2487 }
8c47c732 2488
4f07ddfa 2489 /* possibly a barrier fd, let's see */
5151b4cc 2490 if (manager_process_barrier_fd(tags, fds))
4f07ddfa
KKD
2491 return 0;
2492
62a76913
LP
2493 /* Increase the generation counter used for filtering out duplicate unit invocations. */
2494 m->notifygen++;
2495
2496 /* Notify every unit that might be interested, which might be multiple. */
b215b0ed 2497 u1 = manager_get_unit_by_pid_cgroup(m, ucred->pid);
62a76913
LP
2498 u2 = hashmap_get(m->watch_pids, PID_TO_PTR(ucred->pid));
2499 array = hashmap_get(m->watch_pids, PID_TO_PTR(-ucred->pid));
2500 if (array) {
2501 size_t k = 0;
5ba6985b 2502
62a76913
LP
2503 while (array[k])
2504 k++;
5ba6985b 2505
62a76913
LP
2506 array_copy = newdup(Unit*, array, k+1);
2507 if (!array_copy)
2508 log_oom();
2509 }
2510 /* And now invoke the per-unit callbacks. Note that manager_invoke_notify_message() will handle duplicate units
2511 * make sure we only invoke each unit's handler once. */
2512 if (u1) {
5151b4cc 2513 manager_invoke_notify_message(m, u1, ucred, tags, fds);
62a76913
LP
2514 found = true;
2515 }
2516 if (u2) {
5151b4cc 2517 manager_invoke_notify_message(m, u2, ucred, tags, fds);
62a76913
LP
2518 found = true;
2519 }
2520 if (array_copy)
2521 for (size_t i = 0; array_copy[i]; i++) {
5151b4cc 2522 manager_invoke_notify_message(m, array_copy[i], ucred, tags, fds);
62a76913
LP
2523 found = true;
2524 }
8c47c732 2525
62a76913
LP
2526 if (!found)
2527 log_warning("Cannot find unit for notify message of PID "PID_FMT", ignoring.", ucred->pid);
a354329f 2528
b215b0ed 2529 if (fdset_size(fds) > 0)
5fd2c135 2530 log_warning("Got extra auxiliary fds with notification message, closing them.");
8c47c732
LP
2531
2532 return 0;
2533}
2534
62a76913
LP
2535static void manager_invoke_sigchld_event(
2536 Manager *m,
2537 Unit *u,
2538 const siginfo_t *si) {
36f20ae3 2539
5ba6985b
LP
2540 assert(m);
2541 assert(u);
2542 assert(si);
2543
62a76913
LP
2544 /* Already invoked the handler of this unit in this iteration? Then don't process this again */
2545 if (u->sigchldgen == m->sigchldgen)
2546 return;
2547 u->sigchldgen = m->sigchldgen;
5ba6985b 2548
62a76913 2549 log_unit_debug(u, "Child "PID_FMT" belongs to %s.", si->si_pid, u->id);
5ba6985b 2550 unit_unwatch_pid(u, si->si_pid);
e57051f5 2551
62a76913
LP
2552 if (UNIT_VTABLE(u)->sigchld_event)
2553 UNIT_VTABLE(u)->sigchld_event(u, si->si_pid, si->si_code, si->si_status);
5ba6985b
LP
2554}
2555
575b300b
LP
2556static int manager_dispatch_sigchld(sd_event_source *source, void *userdata) {
2557 Manager *m = userdata;
2558 siginfo_t si = {};
2559 int r;
2560
2561 assert(source);
9152c765
LP
2562 assert(m);
2563
0a51b45c 2564 /* First we call waitid() for a PID and do not reap the zombie. That way we can still access /proc/$PID for it
575b300b 2565 * while it is a zombie. */
9152c765 2566
575b300b 2567 if (waitid(P_ALL, 0, &si, WEXITED|WNOHANG|WNOWAIT) < 0) {
acbb0225 2568
8afabc50
AJ
2569 if (errno != ECHILD)
2570 log_error_errno(errno, "Failed to peek for child with waitid(), ignoring: %m");
acbb0225 2571
8afabc50 2572 goto turn_off;
575b300b 2573 }
4112df16 2574
575b300b
LP
2575 if (si.si_pid <= 0)
2576 goto turn_off;
2577
2578 if (IN_SET(si.si_code, CLD_EXITED, CLD_KILLED, CLD_DUMPED)) {
62a76913 2579 _cleanup_free_ Unit **array_copy = NULL;
575b300b 2580 _cleanup_free_ char *name = NULL;
62a76913 2581 Unit *u1, *u2, **array;
575b300b
LP
2582
2583 (void) get_process_comm(si.si_pid, &name);
2584
2585 log_debug("Child "PID_FMT" (%s) died (code=%s, status=%i/%s)",
2586 si.si_pid, strna(name),
2587 sigchld_code_to_string(si.si_code),
2588 si.si_status,
2589 strna(si.si_code == CLD_EXITED
2590 ? exit_status_to_string(si.si_status, EXIT_STATUS_FULL)
2591 : signal_to_string(si.si_status)));
2592
62a76913
LP
2593 /* Increase the generation counter used for filtering out duplicate unit invocations */
2594 m->sigchldgen++;
2595
2596 /* And now figure out the unit this belongs to, it might be multiple... */
575b300b 2597 u1 = manager_get_unit_by_pid_cgroup(m, si.si_pid);
62a76913
LP
2598 u2 = hashmap_get(m->watch_pids, PID_TO_PTR(si.si_pid));
2599 array = hashmap_get(m->watch_pids, PID_TO_PTR(-si.si_pid));
2600 if (array) {
2601 size_t n = 0;
2602
5238e957 2603 /* Count how many entries the array has */
62a76913
LP
2604 while (array[n])
2605 n++;
2606
2607 /* Make a copy of the array so that we don't trip up on the array changing beneath us */
2608 array_copy = newdup(Unit*, array, n+1);
2609 if (!array_copy)
2610 log_oom();
2611 }
2612
2613 /* Finally, execute them all. Note that u1, u2 and the array might contain duplicates, but
2614 * that's fine, manager_invoke_sigchld_event() will ensure we only invoke the handlers once for
2615 * each iteration. */
2ba6ae6b
ZJS
2616 if (u1) {
2617 /* We check for oom condition, in case we got SIGCHLD before the oom notification.
2618 * We only do this for the cgroup the PID belonged to. */
2619 (void) unit_check_oom(u1);
2620
fe8d22fb
AZ
2621 /* This only logs for now. In the future when the interface for kills/notifications
2622 * is more stable we can extend service results table similar to how kernel oom kills
2623 * are managed. */
2624 (void) unit_check_oomd_kill(u1);
2625
62a76913 2626 manager_invoke_sigchld_event(m, u1, &si);
2ba6ae6b 2627 }
62a76913
LP
2628 if (u2)
2629 manager_invoke_sigchld_event(m, u2, &si);
2630 if (array_copy)
2631 for (size_t i = 0; array_copy[i]; i++)
2632 manager_invoke_sigchld_event(m, array_copy[i], &si);
575b300b 2633 }
9152c765 2634
575b300b
LP
2635 /* And now, we actually reap the zombie. */
2636 if (waitid(P_PID, si.si_pid, &si, WEXITED) < 0) {
2637 log_error_errno(errno, "Failed to dequeue child, ignoring: %m");
2638 return 0;
2639 }
9152c765 2640
575b300b 2641 return 0;
8c47c732 2642
575b300b
LP
2643turn_off:
2644 /* All children processed for now, turn off event source */
4112df16 2645
575b300b
LP
2646 r = sd_event_source_set_enabled(m->sigchld_event_source, SD_EVENT_OFF);
2647 if (r < 0)
2648 return log_error_errno(r, "Failed to disable SIGCHLD event source: %m");
9152c765
LP
2649
2650 return 0;
2651}
2652
5f968096
ZJS
2653static void manager_start_special(Manager *m, const char *name, JobMode mode) {
2654 Job *job;
398ef8ba 2655
5f968096
ZJS
2656 if (manager_add_job_by_name_and_warn(m, JOB_START, name, mode, NULL, &job) < 0)
2657 return;
1e001f52 2658
5f968096
ZJS
2659 const char *s = unit_status_string(job->unit, NULL);
2660
2661 log_info("Activating special unit %s...", s);
3889fc6f
ZJS
2662
2663 sd_notifyf(false,
2664 "STATUS=Activating special unit %s...", s);
2665 m->status_ready = false;
28247076
LP
2666}
2667
24dd31c1
LN
2668static void manager_handle_ctrl_alt_del(Manager *m) {
2669 /* If the user presses C-A-D more than
2670 * 7 times within 2s, we reboot/shutdown immediately,
2671 * unless it was disabled in system.conf */
2672
7994ac1d 2673 if (ratelimit_below(&m->ctrl_alt_del_ratelimit) || m->cad_burst_action == EMERGENCY_ACTION_NONE)
5f968096 2674 manager_start_special(m, SPECIAL_CTRL_ALT_DEL_TARGET, JOB_REPLACE_IRREVERSIBLY);
ae8c7939 2675 else
7af67e9a 2676 emergency_action(m, m->cad_burst_action, EMERGENCY_ACTION_WARN, NULL, -1,
ae8c7939 2677 "Ctrl-Alt-Del was pressed more than 7 times within 2s");
24dd31c1
LN
2678}
2679
718db961
LP
2680static int manager_dispatch_signal_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
2681 Manager *m = userdata;
9152c765
LP
2682 ssize_t n;
2683 struct signalfd_siginfo sfsi;
dacd6cee 2684 int r;
9152c765
LP
2685
2686 assert(m);
718db961
LP
2687 assert(m->signal_fd == fd);
2688
2689 if (revents != EPOLLIN) {
2690 log_warning("Got unexpected events from signal file descriptor.");
2691 return 0;
2692 }
9152c765 2693
575b300b
LP
2694 n = read(m->signal_fd, &sfsi, sizeof(sfsi));
2695 if (n != sizeof(sfsi)) {
2696 if (n >= 0) {
2697 log_warning("Truncated read from signal fd (%zu bytes), ignoring!", n);
2698 return 0;
2699 }
9152c765 2700
575b300b
LP
2701 if (IN_SET(errno, EINTR, EAGAIN))
2702 return 0;
9152c765 2703
575b300b
LP
2704 /* We return an error here, which will kill this handler,
2705 * to avoid a busy loop on read error. */
2706 return log_error_errno(errno, "Reading from signal fd failed: %m");
2707 }
9152c765 2708
575b300b
LP
2709 log_received_signal(sfsi.ssi_signo == SIGCHLD ||
2710 (sfsi.ssi_signo == SIGTERM && MANAGER_IS_USER(m))
2711 ? LOG_DEBUG : LOG_INFO,
2712 &sfsi);
1e001f52 2713
575b300b 2714 switch (sfsi.ssi_signo) {
b9cd2ec1 2715
575b300b
LP
2716 case SIGCHLD:
2717 r = sd_event_source_set_enabled(m->sigchld_event_source, SD_EVENT_ON);
2718 if (r < 0)
8afabc50 2719 log_warning_errno(r, "Failed to enable SIGCHLD event source, ignoring: %m");
b9cd2ec1 2720
575b300b 2721 break;
84e9af1e 2722
575b300b
LP
2723 case SIGTERM:
2724 if (MANAGER_IS_SYSTEM(m)) {
ba0c7754 2725 /* This is for compatibility with the original sysvinit */
c52b19d6
LP
2726 if (verify_run_space_and_log("Refusing to reexecute") < 0)
2727 break;
2728
2729 m->objective = MANAGER_REEXECUTE;
a1b256b0 2730 break;
575b300b 2731 }
84e9af1e 2732
575b300b
LP
2733 _fallthrough_;
2734 case SIGINT:
2735 if (MANAGER_IS_SYSTEM(m))
2736 manager_handle_ctrl_alt_del(m);
2737 else
5f968096 2738 manager_start_special(m, SPECIAL_EXIT_TARGET, JOB_REPLACE_IRREVERSIBLY);
575b300b 2739 break;
84e9af1e 2740
575b300b 2741 case SIGWINCH:
ba0c7754 2742 /* This is a nop on non-init */
575b300b 2743 if (MANAGER_IS_SYSTEM(m))
5f968096 2744 manager_start_special(m, SPECIAL_KBREQUEST_TARGET, JOB_REPLACE);
84e9af1e 2745
575b300b 2746 break;
84e9af1e 2747
575b300b 2748 case SIGPWR:
ba0c7754 2749 /* This is a nop on non-init */
575b300b 2750 if (MANAGER_IS_SYSTEM(m))
5f968096 2751 manager_start_special(m, SPECIAL_SIGPWR_TARGET, JOB_REPLACE);
6632c602 2752
575b300b 2753 break;
57ee42ce 2754
8559b3b7 2755 case SIGUSR1:
8559b3b7 2756 if (manager_dbus_is_running(m, false)) {
575b300b 2757 log_info("Trying to reconnect to bus...");
575b300b 2758
8559b3b7
LP
2759 (void) bus_init_api(m);
2760
2761 if (MANAGER_IS_SYSTEM(m))
2762 (void) bus_init_system(m);
5f968096
ZJS
2763 } else
2764 manager_start_special(m, SPECIAL_DBUS_SERVICE, JOB_REPLACE);
57ee42ce 2765
575b300b 2766 break;
575b300b
LP
2767
2768 case SIGUSR2: {
2769 _cleanup_free_ char *dump = NULL;
2770
2771 r = manager_get_dump_string(m, &dump);
2772 if (r < 0) {
2773 log_warning_errno(errno, "Failed to acquire manager dump: %m");
57ee42ce
LP
2774 break;
2775 }
2776
575b300b
LP
2777 log_dump(LOG_INFO, dump);
2778 break;
2779 }
2149e37c 2780
575b300b 2781 case SIGHUP:
c52b19d6
LP
2782 if (verify_run_space_and_log("Refusing to reload") < 0)
2783 break;
2784
2785 m->objective = MANAGER_RELOAD;
575b300b
LP
2786 break;
2787
2788 default: {
2789
2790 /* Starting SIGRTMIN+0 */
2791 static const struct {
2792 const char *target;
2793 JobMode mode;
2794 } target_table[] = {
2795 [0] = { SPECIAL_DEFAULT_TARGET, JOB_ISOLATE },
2796 [1] = { SPECIAL_RESCUE_TARGET, JOB_ISOLATE },
2797 [2] = { SPECIAL_EMERGENCY_TARGET, JOB_ISOLATE },
2798 [3] = { SPECIAL_HALT_TARGET, JOB_REPLACE_IRREVERSIBLY },
2799 [4] = { SPECIAL_POWEROFF_TARGET, JOB_REPLACE_IRREVERSIBLY },
2800 [5] = { SPECIAL_REBOOT_TARGET, JOB_REPLACE_IRREVERSIBLY },
2801 [6] = { SPECIAL_KEXEC_TARGET, JOB_REPLACE_IRREVERSIBLY },
2802 };
2803
2804 /* Starting SIGRTMIN+13, so that target halt and system halt are 10 apart */
af41e508 2805 static const ManagerObjective objective_table[] = {
575b300b
LP
2806 [0] = MANAGER_HALT,
2807 [1] = MANAGER_POWEROFF,
2808 [2] = MANAGER_REBOOT,
2809 [3] = MANAGER_KEXEC,
2810 };
b2cdc666 2811
575b300b
LP
2812 if ((int) sfsi.ssi_signo >= SIGRTMIN+0 &&
2813 (int) sfsi.ssi_signo < SIGRTMIN+(int) ELEMENTSOF(target_table)) {
2814 int idx = (int) sfsi.ssi_signo - SIGRTMIN;
5f968096 2815 manager_start_special(m, target_table[idx].target, target_table[idx].mode);
1005d14f 2816 break;
2149e37c 2817 }
1005d14f 2818
575b300b 2819 if ((int) sfsi.ssi_signo >= SIGRTMIN+13 &&
af41e508
LP
2820 (int) sfsi.ssi_signo < SIGRTMIN+13+(int) ELEMENTSOF(objective_table)) {
2821 m->objective = objective_table[sfsi.ssi_signo - SIGRTMIN - 13];
575b300b
LP
2822 break;
2823 }
2824
2825 switch (sfsi.ssi_signo - SIGRTMIN) {
2826
2827 case 20:
43bba15a 2828 manager_override_show_status(m, SHOW_STATUS_YES, "signal");
a16e1123
LP
2829 break;
2830
575b300b 2831 case 21:
43bba15a 2832 manager_override_show_status(m, SHOW_STATUS_NO, "signal");
575b300b 2833 break;
7d793605 2834
575b300b 2835 case 22:
a6ecbf83 2836 manager_override_log_level(m, LOG_DEBUG);
575b300b
LP
2837 break;
2838
2839 case 23:
a6ecbf83 2840 manager_restore_original_log_level(m);
575b300b 2841 break;
0003d1ab 2842
575b300b
LP
2843 case 24:
2844 if (MANAGER_IS_USER(m)) {
af41e508 2845 m->objective = MANAGER_EXIT;
575b300b 2846 return 0;
0658666b 2847 }
9152c765 2848
575b300b
LP
2849 /* This is a nop on init */
2850 break;
2851
463aef23
FB
2852 case 25:
2853 m->objective = MANAGER_REEXECUTE;
2854 break;
2855
575b300b
LP
2856 case 26:
2857 case 29: /* compatibility: used to be mapped to LOG_TARGET_SYSLOG_OR_KMSG */
bda7d78b 2858 manager_restore_original_log_target(m);
575b300b
LP
2859 break;
2860
2861 case 27:
bda7d78b 2862 manager_override_log_target(m, LOG_TARGET_CONSOLE);
575b300b
LP
2863 break;
2864
2865 case 28:
bda7d78b 2866 manager_override_log_target(m, LOG_TARGET_KMSG);
575b300b
LP
2867 break;
2868
2869 default:
2870 log_warning("Got unhandled signal <%s>.", signal_to_string(sfsi.ssi_signo));
2871 }
2872 }}
034c6ed7
LP
2873
2874 return 0;
2875}
2876
718db961
LP
2877static int manager_dispatch_time_change_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
2878 Manager *m = userdata;
718db961 2879 Unit *u;
034c6ed7
LP
2880
2881 assert(m);
718db961 2882 assert(m->time_change_fd == fd);
034c6ed7 2883
a80c1575 2884 log_struct(LOG_DEBUG,
2b044526 2885 "MESSAGE_ID=" SD_MESSAGE_TIME_CHANGE_STR,
a1230ff9 2886 LOG_MESSAGE("Time has been changed"));
034c6ed7 2887
718db961 2888 /* Restart the watch */
7feedd18 2889 (void) manager_setup_time_change(m);
4e434314 2890
90e74a66 2891 HASHMAP_FOREACH(u, m->units)
718db961
LP
2892 if (UNIT_VTABLE(u)->time_change)
2893 UNIT_VTABLE(u)->time_change(u);
ea430986 2894
718db961
LP
2895 return 0;
2896}
ea430986 2897
bbf5fd8e
LP
2898static int manager_dispatch_timezone_change(
2899 sd_event_source *source,
2900 const struct inotify_event *e,
2901 void *userdata) {
2902
2903 Manager *m = userdata;
2904 int changed;
bbf5fd8e
LP
2905 Unit *u;
2906
2907 assert(m);
2908
2909 log_debug("inotify event for /etc/localtime");
2910
2911 changed = manager_read_timezone_stat(m);
f20db199 2912 if (changed <= 0)
bbf5fd8e 2913 return changed;
bbf5fd8e
LP
2914
2915 /* Something changed, restart the watch, to ensure we watch the new /etc/localtime if it changed */
2916 (void) manager_setup_timezone_change(m);
2917
2918 /* Read the new timezone */
2919 tzset();
2920
2921 log_debug("Timezone has been changed (now: %s).", tzname[daylight]);
2922
90e74a66 2923 HASHMAP_FOREACH(u, m->units)
bbf5fd8e
LP
2924 if (UNIT_VTABLE(u)->timezone_change)
2925 UNIT_VTABLE(u)->timezone_change(u);
2926
2927 return 0;
2928}
2929
718db961
LP
2930static int manager_dispatch_idle_pipe_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
2931 Manager *m = userdata;
8742514c 2932
718db961
LP
2933 assert(m);
2934 assert(m->idle_pipe[2] == fd);
8742514c 2935
5a69973f
LP
2936 /* There's at least one Type=idle child that just gave up on us waiting for the boot process to complete. Let's
2937 * now turn off any further console output if there's at least one service that needs console access, so that
2938 * from now on our own output should not spill into that service's output anymore. After all, we support
2939 * Type=idle only to beautify console output and it generally is set on services that want to own the console
2940 * exclusively without our interference. */
718db961 2941 m->no_console_output = m->n_on_console > 0;
03b717a3 2942
5a69973f
LP
2943 /* Acknowledge the child's request, and let all all other children know too that they shouldn't wait any longer
2944 * by closing the pipes towards them, which is what they are waiting for. */
718db961 2945 manager_close_idle_pipe(m);
03b717a3 2946
718db961
LP
2947 return 0;
2948}
31a7eb86 2949
718db961
LP
2950static int manager_dispatch_jobs_in_progress(sd_event_source *source, usec_t usec, void *userdata) {
2951 Manager *m = userdata;
fd08a840 2952 int r;
31a7eb86 2953
718db961 2954 assert(m);
fd08a840 2955 assert(source);
9152c765 2956
718db961 2957 manager_print_jobs_in_progress(m);
fd08a840 2958
39cf0351 2959 r = sd_event_source_set_time_relative(source, JOBS_IN_PROGRESS_PERIOD_USEC);
fd08a840
ZJS
2960 if (r < 0)
2961 return r;
2962
2963 return sd_event_source_set_enabled(source, SD_EVENT_ONESHOT);
9152c765
LP
2964}
2965
2966int manager_loop(Manager *m) {
8c227e7f 2967 RateLimit rl = { .interval = 1*USEC_PER_SEC, .burst = 50000 };
9152c765 2968 int r;
9152c765
LP
2969
2970 assert(m);
1fb70e66 2971 assert(m->objective == MANAGER_OK); /* Ensure manager_startup() has been called */
9152c765 2972
b0c918b9
LP
2973 manager_check_finished(m);
2974
575b300b
LP
2975 /* There might still be some zombies hanging around from before we were exec()'ed. Let's reap them. */
2976 r = sd_event_source_set_enabled(m->sigchld_event_source, SD_EVENT_ON);
e96d6be7 2977 if (r < 0)
575b300b 2978 return log_error_errno(r, "Failed to enable SIGCHLD event source: %m");
a4312405 2979
af41e508 2980 while (m->objective == MANAGER_OK) {
12663295 2981 usec_t watchdog_usec;
9152c765 2982
986935cf 2983 watchdog_usec = manager_get_watchdog(m, WATCHDOG_RUNTIME);
61927b9f 2984 if (m->runtime_watchdog_running)
bfeb927a 2985 (void) watchdog_ping();
61927b9f
MM
2986 else if (timestamp_is_set(watchdog_usec))
2987 manager_retry_runtime_watchdog(m);
e96d6be7 2988
7994ac1d 2989 if (!ratelimit_below(&rl)) {
ea430986
LP
2990 /* Yay, something is going seriously wrong, pause a little */
2991 log_warning("Looping too fast. Throttling execution a little.");
2992 sleep(1);
2993 }
2994
37a8e683 2995 if (manager_dispatch_load_queue(m) > 0)
23a177ef
LP
2996 continue;
2997
c5a97ed1
LP
2998 if (manager_dispatch_gc_job_queue(m) > 0)
2999 continue;
3000
3001 if (manager_dispatch_gc_unit_queue(m) > 0)
701cc384
LP
3002 continue;
3003
cf1265e1 3004 if (manager_dispatch_cleanup_queue(m) > 0)
c1e1601e 3005 continue;
034c6ed7 3006
91a6073e 3007 if (manager_dispatch_cgroup_realize_queue(m) > 0)
c1e1601e
LP
3008 continue;
3009
0bc488c9
LP
3010 if (manager_dispatch_start_when_upheld_queue(m) > 0)
3011 continue;
3012
56c59592
LP
3013 if (manager_dispatch_stop_when_bound_queue(m) > 0)
3014 continue;
3015
a3c1168a
LP
3016 if (manager_dispatch_stop_when_unneeded_queue(m) > 0)
3017 continue;
3018
c1e1601e 3019 if (manager_dispatch_dbus_queue(m) > 0)
ea430986 3020 continue;
ea430986 3021
c5f8a179 3022 /* Sleep for watchdog runtime wait time */
12663295 3023 r = sd_event_run(m->event, watchdog_runtime_wait());
23bbb0de
MS
3024 if (r < 0)
3025 return log_error_errno(r, "Failed to run event loop: %m");
a16e1123 3026 }
957ca890 3027
af41e508 3028 return m->objective;
83c60c9f 3029}
ea430986 3030
718db961 3031int manager_load_unit_from_dbus_path(Manager *m, const char *s, sd_bus_error *e, Unit **_u) {
ede3a796 3032 _cleanup_free_ char *n = NULL;
4b58153d 3033 sd_id128_t invocation_id;
ea430986 3034 Unit *u;
80fbf05e 3035 int r;
ea430986
LP
3036
3037 assert(m);
3038 assert(s);
3039 assert(_u);
3040
ede3a796
LP
3041 r = unit_name_from_dbus_path(s, &n);
3042 if (r < 0)
3043 return r;
ea430986 3044
4b58153d
LP
3045 /* Permit addressing units by invocation ID: if the passed bus path is suffixed by a 128bit ID then we use it
3046 * as invocation ID. */
3047 r = sd_id128_from_string(n, &invocation_id);
3048 if (r >= 0) {
3049 u = hashmap_get(m->units_by_invocation_id, &invocation_id);
3050 if (u) {
3051 *_u = u;
3052 return 0;
3053 }
3054
930c124c
ZJS
3055 return sd_bus_error_setf(e, BUS_ERROR_NO_UNIT_FOR_INVOCATION_ID,
3056 "No unit with the specified invocation ID " SD_ID128_FORMAT_STR " known.",
3057 SD_ID128_FORMAT_VAL(invocation_id));
4b58153d
LP
3058 }
3059
00c83b43 3060 /* If this didn't work, we check if this is a unit name */
930c124c
ZJS
3061 if (!unit_name_is_valid(n, UNIT_NAME_PLAIN|UNIT_NAME_INSTANCE)) {
3062 _cleanup_free_ char *nn = NULL;
3063
3064 nn = cescape(n);
3065 return sd_bus_error_setf(e, SD_BUS_ERROR_INVALID_ARGS,
3066 "Unit name %s is neither a valid invocation ID nor unit name.", strnull(nn));
3067 }
00c83b43 3068
80fbf05e 3069 r = manager_load_unit(m, n, NULL, e, &u);
80fbf05e
MS
3070 if (r < 0)
3071 return r;
ea430986
LP
3072
3073 *_u = u;
ea430986
LP
3074 return 0;
3075}
86fbf370
LP
3076
3077int manager_get_job_from_dbus_path(Manager *m, const char *s, Job **_j) {
718db961 3078 const char *p;
86fbf370 3079 unsigned id;
718db961 3080 Job *j;
86fbf370
LP
3081 int r;
3082
3083 assert(m);
3084 assert(s);
3085 assert(_j);
3086
718db961
LP
3087 p = startswith(s, "/org/freedesktop/systemd1/job/");
3088 if (!p)
86fbf370
LP
3089 return -EINVAL;
3090
718db961 3091 r = safe_atou(p, &id);
8742514c 3092 if (r < 0)
86fbf370
LP
3093 return r;
3094
8742514c
LP
3095 j = manager_get_job(m, id);
3096 if (!j)
86fbf370
LP
3097 return -ENOENT;
3098
3099 *_j = j;
3100
3101 return 0;
3102}
dfcd764e 3103
4927fcae 3104void manager_send_unit_audit(Manager *m, Unit *u, int type, bool success) {
e537352b 3105
349cc4a5 3106#if HAVE_AUDIT
2ba11090 3107 _cleanup_free_ char *p = NULL;
0aa281df 3108 const char *msg;
7410616c 3109 int audit_fd, r;
e537352b 3110
463d0d15 3111 if (!MANAGER_IS_SYSTEM(m))
a1a078ee
LP
3112 return;
3113
c1165f82
LP
3114 audit_fd = get_audit_fd();
3115 if (audit_fd < 0)
e537352b
LP
3116 return;
3117
bbd3a7ba
LP
3118 /* Don't generate audit events if the service was already
3119 * started and we're just deserializing */
2c289ea8 3120 if (MANAGER_IS_RELOADING(m))
bbd3a7ba
LP
3121 return;
3122
ac155bb8 3123 if (u->type != UNIT_SERVICE)
f1dd0c3f
LP
3124 return;
3125
7410616c
LP
3126 r = unit_name_to_prefix_and_instance(u->id, &p);
3127 if (r < 0) {
3128 log_error_errno(r, "Failed to extract prefix and instance of unit name: %m");
e537352b
LP
3129 return;
3130 }
3131
63c372cb 3132 msg = strjoina("unit=", p);
0aa281df
LP
3133 if (audit_log_user_comm_message(audit_fd, type, msg, "systemd", NULL, NULL, NULL, success) < 0) {
3134 if (errno == EPERM)
391ade86 3135 /* We aren't allowed to send audit messages?
44785992 3136 * Then let's not retry again. */
c1165f82 3137 close_audit_fd();
0aa281df 3138 else
56f64d95 3139 log_warning_errno(errno, "Failed to send audit message: %m");
391ade86 3140 }
4927fcae 3141#endif
e537352b 3142
e537352b
LP
3143}
3144
e983b760 3145void manager_send_unit_plymouth(Manager *m, Unit *u) {
fc2fffe7 3146 static const union sockaddr_union sa = PLYMOUTH_SOCKET;
2ba11090
ZJS
3147 _cleanup_free_ char *message = NULL;
3148 _cleanup_close_ int fd = -1;
fc2fffe7 3149 int n = 0;
e983b760
LP
3150
3151 /* Don't generate plymouth events if the service was already
3152 * started and we're just deserializing */
2c289ea8 3153 if (MANAGER_IS_RELOADING(m))
e983b760
LP
3154 return;
3155
463d0d15 3156 if (!MANAGER_IS_SYSTEM(m))
e983b760
LP
3157 return;
3158
75f86906 3159 if (detect_container() > 0)
3772995a
LP
3160 return;
3161
ec2ce0c5 3162 if (!IN_SET(u->type, UNIT_SERVICE, UNIT_MOUNT, UNIT_SWAP))
e983b760
LP
3163 return;
3164
3165 /* We set SOCK_NONBLOCK here so that we rather drop the
3166 * message then wait for plymouth */
e62d8c39
ZJS
3167 fd = socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0);
3168 if (fd < 0) {
56f64d95 3169 log_error_errno(errno, "socket() failed: %m");
e983b760
LP
3170 return;
3171 }
3172
fc2fffe7 3173 if (connect(fd, &sa.sa, SOCKADDR_UN_LEN(sa.un)) < 0) {
f60a028a 3174 if (!IN_SET(errno, EAGAIN, ENOENT) && !ERRNO_IS_DISCONNECT(errno))
56f64d95 3175 log_error_errno(errno, "connect() failed: %m");
2ba11090 3176 return;
e983b760
LP
3177 }
3178
305757d8
ZJS
3179 if (asprintf(&message, "U\002%c%s%n", (int) (strlen(u->id) + 1), u->id, &n) < 0)
3180 return (void) log_oom();
e983b760
LP
3181
3182 errno = 0;
2ba11090 3183 if (write(fd, message, n + 1) != n + 1)
f60a028a 3184 if (!IN_SET(errno, EAGAIN, ENOENT) && !ERRNO_IS_DISCONNECT(errno))
56f64d95 3185 log_error_errno(errno, "Failed to write Plymouth message: %m");
e983b760
LP
3186}
3187
986935cf
FB
3188usec_t manager_get_watchdog(Manager *m, WatchdogType t) {
3189 assert(m);
3190
3191 if (MANAGER_IS_USER(m))
3192 return USEC_INFINITY;
3193
3194 if (timestamp_is_set(m->watchdog_overridden[t]))
3195 return m->watchdog_overridden[t];
3196
3197 return m->watchdog[t];
3198}
3199
3200void manager_set_watchdog(Manager *m, WatchdogType t, usec_t timeout) {
3201 int r = 0;
3202
3203 assert(m);
3204
3205 if (MANAGER_IS_USER(m))
3206 return;
3207
3208 if (m->watchdog[t] == timeout)
3209 return;
3210
3211 if (t == WATCHDOG_RUNTIME)
3212 if (!timestamp_is_set(m->watchdog_overridden[WATCHDOG_RUNTIME])) {
61927b9f 3213 if (timestamp_is_set(timeout)) {
986935cf 3214 r = watchdog_set_timeout(&timeout);
61927b9f
MM
3215
3216 if (r >= 0)
3217 m->runtime_watchdog_running = true;
3218 } else {
986935cf 3219 watchdog_close(true);
61927b9f
MM
3220 m->runtime_watchdog_running = false;
3221 }
986935cf
FB
3222 }
3223
61927b9f 3224 m->watchdog[t] = timeout;
986935cf
FB
3225}
3226
43bba15a 3227int manager_override_watchdog(Manager *m, WatchdogType t, usec_t timeout) {
986935cf
FB
3228 int r = 0;
3229
3230 assert(m);
3231
3232 if (MANAGER_IS_USER(m))
3233 return 0;
3234
3235 if (m->watchdog_overridden[t] == timeout)
3236 return 0;
3237
3238 if (t == WATCHDOG_RUNTIME) {
3239 usec_t *p;
3240
3241 p = timestamp_is_set(timeout) ? &timeout : &m->watchdog[t];
61927b9f 3242 if (timestamp_is_set(*p)) {
986935cf 3243 r = watchdog_set_timeout(p);
61927b9f
MM
3244
3245 if (r >= 0)
3246 m->runtime_watchdog_running = true;
3247 } else {
986935cf 3248 watchdog_close(true);
61927b9f
MM
3249 m->runtime_watchdog_running = false;
3250 }
986935cf
FB
3251 }
3252
61927b9f 3253 m->watchdog_overridden[t] = timeout;
986935cf
FB
3254
3255 return 0;
3256}
3257
61927b9f
MM
3258void manager_retry_runtime_watchdog(Manager *m) {
3259 int r = 0;
3260
3261 assert(m);
3262
3263 if (timestamp_is_set(m->watchdog_overridden[WATCHDOG_RUNTIME]))
3264 r = watchdog_set_timeout(&m->watchdog_overridden[WATCHDOG_RUNTIME]);
3265 else
3266 r = watchdog_set_timeout(&m->watchdog[WATCHDOG_RUNTIME]);
3267
3268 if (r >= 0)
3269 m->runtime_watchdog_running = true;
3270}
3271
a16e1123 3272int manager_reload(Manager *m) {
d147e2b6 3273 _cleanup_(manager_reloading_stopp) Manager *reloading = NULL;
51d122af 3274 _cleanup_fdset_free_ FDSet *fds = NULL;
6a33af40
LP
3275 _cleanup_fclose_ FILE *f = NULL;
3276 int r;
a16e1123
LP
3277
3278 assert(m);
3279
07719a21
LP
3280 r = manager_open_serialization(m, &f);
3281 if (r < 0)
6a33af40 3282 return log_error_errno(r, "Failed to create serialization file: %m");
38c52d46 3283
07719a21 3284 fds = fdset_new();
6a33af40
LP
3285 if (!fds)
3286 return log_oom();
3287
d147e2b6
ZJS
3288 /* We are officially in reload mode from here on. */
3289 reloading = manager_reloading_start(m);
a16e1123 3290
b3680f49 3291 r = manager_serialize(m, f, fds, false);
d147e2b6 3292 if (r < 0)
d68c645b 3293 return r;
a16e1123 3294
d147e2b6
ZJS
3295 if (fseeko(f, 0, SEEK_SET) < 0)
3296 return log_error_errno(errno, "Failed to seek to beginning of serialization: %m");
a16e1123 3297
6a33af40 3298 /* 💀 This is the point of no return, from here on there is no way back. 💀 */
d147e2b6 3299 reloading = NULL;
6a33af40
LP
3300
3301 bus_manager_send_reloading(m, true);
3302
3303 /* Start by flushing out all jobs and units, all generated units, all runtime environments, all dynamic users
3304 * and everything else that is worth flushing out. We'll get it all back from the serialization — if we need
7802194a 3305 * it. */
6a33af40 3306
a16e1123 3307 manager_clear_jobs_and_units(m);
07a78643 3308 lookup_paths_flush_generator(&m->lookup_paths);
84e3543e 3309 lookup_paths_free(&m->lookup_paths);
e8a565cb 3310 exec_runtime_vacuum(m);
29206d46 3311 dynamic_user_vacuum(m, false);
00d9ef85
LP
3312 m->uid_refs = hashmap_free(m->uid_refs);
3313 m->gid_refs = hashmap_free(m->gid_refs);
2ded0c04 3314
7c3733d5 3315 r = lookup_paths_init(&m->lookup_paths, m->unit_file_scope, 0, NULL);
6a33af40
LP
3316 if (r < 0)
3317 log_warning_errno(r, "Failed to initialize path lookup table, ignoring: %m");
5a1e9937 3318
6a33af40
LP
3319 (void) manager_run_environment_generators(m);
3320 (void) manager_run_generators(m);
64691d20 3321
581fef8d 3322 lookup_paths_log(&m->lookup_paths);
07719a21 3323
91e0ee5f 3324 /* We flushed out generated files, for which we don't watch mtime, so we should flush the old map. */
e8630e69 3325 manager_free_unit_name_maps(m);
5a1e9937 3326
6a33af40 3327 /* First, enumerate what we can from kernel and suchlike */
3ad2afb6 3328 manager_enumerate_perpetual(m);
ba64af90 3329 manager_enumerate(m);
a16e1123
LP
3330
3331 /* Second, deserialize our stored data */
6a33af40
LP
3332 r = manager_deserialize(m, f, fds);
3333 if (r < 0)
3334 log_warning_errno(r, "Deserialization failed, proceeding anyway: %m");
a16e1123 3335
6a33af40 3336 /* We don't need the serialization anymore */
62b0cbb3 3337 f = safe_fclose(f);
a16e1123 3338
6a33af40
LP
3339 /* Re-register notify_fd as event source, and set up other sockets/communication channels we might need */
3340 (void) manager_setup_notify(m);
3341 (void) manager_setup_cgroups_agent(m);
3342 (void) manager_setup_user_lookup_fd(m);
00d9ef85 3343
a16e1123 3344 /* Third, fire things up! */
007c6337 3345 manager_coldplug(m);
a16e1123 3346
5197be06
LP
3347 /* Clean up runtime objects no longer referenced */
3348 manager_vacuum(m);
e8a565cb 3349
3deed59a
AA
3350 /* Clean up deserialized tracked clients */
3351 m->deserialized_subscribed = strv_free(m->deserialized_subscribed);
3352
6a33af40 3353 /* Consider the reload process complete now. */
31dc1ca3
LP
3354 assert(m->n_reloading > 0);
3355 m->n_reloading--;
3356
c6e892bc
YW
3357 /* On manager reloading, device tag data should exists, thus, we should honor the results of device
3358 * enumeration. The flag should be always set correctly by the serialized data, but it may fail. So,
3359 * let's always set the flag here for safety. */
3360 m->honor_device_enumeration = true;
3361
5ce5e1ad 3362 manager_ready(m);
8936a5e3 3363
71445ae7 3364 m->send_reloading_done = true;
6a33af40 3365 return 0;
a16e1123
LP
3366}
3367
fdf20a31 3368void manager_reset_failed(Manager *m) {
5632e374 3369 Unit *u;
5632e374
LP
3370
3371 assert(m);
3372
90e74a66 3373 HASHMAP_FOREACH(u, m->units)
fdf20a31 3374 unit_reset_failed(u);
5632e374
LP
3375}
3376
31afa0a4 3377bool manager_unit_inactive_or_pending(Manager *m, const char *name) {
8f6df3fa
LP
3378 Unit *u;
3379
3380 assert(m);
3381 assert(name);
3382
3383 /* Returns true if the unit is inactive or going down */
bd0af849
ZJS
3384 u = manager_get_unit(m, name);
3385 if (!u)
8f6df3fa
LP
3386 return true;
3387
31afa0a4 3388 return unit_inactive_or_pending(u);
8f6df3fa
LP
3389}
3390
d8eb10d6
ZJS
3391static void log_taint_string(Manager *m) {
3392 _cleanup_free_ char *taint = NULL;
3393
3394 assert(m);
3395
3396 if (MANAGER_IS_USER(m) || m->taint_logged)
3397 return;
3398
3399 m->taint_logged = true; /* only check for taint once */
3400
3401 taint = manager_taint_string(m);
3402 if (isempty(taint))
3403 return;
3404
3405 log_struct(LOG_NOTICE,
3406 LOG_MESSAGE("System is tainted: %s", taint),
3407 "TAINT=%s", taint,
a1230ff9 3408 "MESSAGE_ID=" SD_MESSAGE_TAINTED_STR);
d8eb10d6
ZJS
3409}
3410
56dacdbc 3411static void manager_notify_finished(Manager *m) {
915b3753 3412 usec_t firmware_usec, loader_usec, kernel_usec, initrd_usec, userspace_usec, total_usec;
b0c918b9 3413
638cece4 3414 if (MANAGER_IS_TEST_RUN(m))
b0c918b9
LP
3415 return;
3416
463d0d15 3417 if (MANAGER_IS_SYSTEM(m) && detect_container() <= 0) {
dc3c9f5e
ZJS
3418 char buf[FORMAT_TIMESPAN_MAX + STRLEN(" (firmware) + ") + FORMAT_TIMESPAN_MAX + STRLEN(" (loader) + ")]
3419 = {};
3420 char *p = buf;
3421 size_t size = sizeof buf;
e03ae661 3422
9f9f0342
LP
3423 /* Note that MANAGER_TIMESTAMP_KERNEL's monotonic value is always at 0, and
3424 * MANAGER_TIMESTAMP_FIRMWARE's and MANAGER_TIMESTAMP_LOADER's monotonic value should be considered
915b3753
LP
3425 * negative values. */
3426
9f9f0342
LP
3427 firmware_usec = m->timestamps[MANAGER_TIMESTAMP_FIRMWARE].monotonic - m->timestamps[MANAGER_TIMESTAMP_LOADER].monotonic;
3428 loader_usec = m->timestamps[MANAGER_TIMESTAMP_LOADER].monotonic - m->timestamps[MANAGER_TIMESTAMP_KERNEL].monotonic;
3429 userspace_usec = m->timestamps[MANAGER_TIMESTAMP_FINISH].monotonic - m->timestamps[MANAGER_TIMESTAMP_USERSPACE].monotonic;
3430 total_usec = m->timestamps[MANAGER_TIMESTAMP_FIRMWARE].monotonic + m->timestamps[MANAGER_TIMESTAMP_FINISH].monotonic;
18fa6b27 3431
dd1db3c2 3432 if (firmware_usec > 0)
5291f26d 3433 size = strpcpyf(&p, size, "%s (firmware) + ", FORMAT_TIMESPAN(firmware_usec, USEC_PER_MSEC));
dd1db3c2 3434 if (loader_usec > 0)
5291f26d 3435 size = strpcpyf(&p, size, "%s (loader) + ", FORMAT_TIMESPAN(loader_usec, USEC_PER_MSEC));
dd1db3c2 3436
9f9f0342 3437 if (dual_timestamp_is_set(&m->timestamps[MANAGER_TIMESTAMP_INITRD])) {
18fa6b27 3438
7802194a 3439 /* The initrd case on bare-metal */
9f9f0342
LP
3440 kernel_usec = m->timestamps[MANAGER_TIMESTAMP_INITRD].monotonic - m->timestamps[MANAGER_TIMESTAMP_KERNEL].monotonic;
3441 initrd_usec = m->timestamps[MANAGER_TIMESTAMP_USERSPACE].monotonic - m->timestamps[MANAGER_TIMESTAMP_INITRD].monotonic;
18fa6b27 3442
e12919e8 3443 log_struct(LOG_INFO,
2b044526 3444 "MESSAGE_ID=" SD_MESSAGE_STARTUP_FINISHED_STR,
e12919e8
LP
3445 "KERNEL_USEC="USEC_FMT, kernel_usec,
3446 "INITRD_USEC="USEC_FMT, initrd_usec,
3447 "USERSPACE_USEC="USEC_FMT, userspace_usec,
dd1db3c2
YW
3448 LOG_MESSAGE("Startup finished in %s%s (kernel) + %s (initrd) + %s (userspace) = %s.",
3449 buf,
5291f26d
ZJS
3450 FORMAT_TIMESPAN(kernel_usec, USEC_PER_MSEC),
3451 FORMAT_TIMESPAN(initrd_usec, USEC_PER_MSEC),
3452 FORMAT_TIMESPAN(userspace_usec, USEC_PER_MSEC),
3453 FORMAT_TIMESPAN(total_usec, USEC_PER_MSEC)));
18fa6b27 3454 } else {
7802194a 3455 /* The initrd-less case on bare-metal */
9f9f0342
LP
3456
3457 kernel_usec = m->timestamps[MANAGER_TIMESTAMP_USERSPACE].monotonic - m->timestamps[MANAGER_TIMESTAMP_KERNEL].monotonic;
18fa6b27
LP
3458 initrd_usec = 0;
3459
81270860 3460 log_struct(LOG_INFO,
2b044526 3461 "MESSAGE_ID=" SD_MESSAGE_STARTUP_FINISHED_STR,
e12919e8 3462 "KERNEL_USEC="USEC_FMT, kernel_usec,
ccd06097 3463 "USERSPACE_USEC="USEC_FMT, userspace_usec,
dd1db3c2
YW
3464 LOG_MESSAGE("Startup finished in %s%s (kernel) + %s (userspace) = %s.",
3465 buf,
5291f26d
ZJS
3466 FORMAT_TIMESPAN(kernel_usec, USEC_PER_MSEC),
3467 FORMAT_TIMESPAN(userspace_usec, USEC_PER_MSEC),
3468 FORMAT_TIMESPAN(total_usec, USEC_PER_MSEC)));
e12919e8
LP
3469 }
3470 } else {
4adf314b 3471 /* The container and --user case */
e12919e8 3472 firmware_usec = loader_usec = initrd_usec = kernel_usec = 0;
9f9f0342 3473 total_usec = userspace_usec = m->timestamps[MANAGER_TIMESTAMP_FINISH].monotonic - m->timestamps[MANAGER_TIMESTAMP_USERSPACE].monotonic;
e12919e8
LP
3474
3475 log_struct(LOG_INFO,
2b044526 3476 "MESSAGE_ID=" SD_MESSAGE_USER_STARTUP_FINISHED_STR,
e12919e8 3477 "USERSPACE_USEC="USEC_FMT, userspace_usec,
e2cc6eca 3478 LOG_MESSAGE("Startup finished in %s.",
5291f26d 3479 FORMAT_TIMESPAN(total_usec, USEC_PER_MSEC)));
18fa6b27 3480 }
b0c918b9 3481
718db961 3482 bus_manager_send_finished(m, firmware_usec, loader_usec, kernel_usec, initrd_usec, userspace_usec, total_usec);
530345e7 3483
d8eb10d6 3484 log_taint_string(m);
b0c918b9
LP
3485}
3486
6d932659 3487static void user_manager_send_ready(Manager *m) {
4adf314b
LP
3488 assert(m);
3489
3490 /* We send READY=1 on reaching basic.target only when running in --user mode. */
3491 if (!MANAGER_IS_USER(m) || m->ready_sent)
3492 return;
3493
4adf314b
LP
3494 sd_notifyf(false,
3495 "READY=1\n"
3496 "STATUS=Reached " SPECIAL_BASIC_TARGET ".");
6d932659
ZJS
3497 m->ready_sent = true;
3498 m->status_ready = false;
3499}
3500
3501static void manager_send_ready(Manager *m) {
3502 if (m->ready_sent && m->status_ready)
3503 /* Skip the notification if nothing changed. */
3504 return;
3505
3506 sd_notifyf(false,
3507 "%sSTATUS=Ready.",
3508 m->ready_sent ? "READY=1\n" : "");
3509 m->ready_sent = m->status_ready = true;
4adf314b
LP
3510}
3511
3512static void manager_check_basic_target(Manager *m) {
3513 Unit *u;
3514
3515 assert(m);
3516
3517 /* Small shortcut */
3518 if (m->ready_sent && m->taint_logged)
3519 return;
3520
3521 u = manager_get_unit(m, SPECIAL_BASIC_TARGET);
3522 if (!u || !UNIT_IS_ACTIVE_OR_RELOADING(unit_active_state(u)))
3523 return;
3524
3525 /* For user managers, send out READY=1 as soon as we reach basic.target */
6d932659 3526 user_manager_send_ready(m);
4adf314b
LP
3527
3528 /* Log the taint string as soon as we reach basic.target */
3529 log_taint_string(m);
3530}
3531
56dacdbc 3532void manager_check_finished(Manager *m) {
56dacdbc
ZJS
3533 assert(m);
3534
2c289ea8 3535 if (MANAGER_IS_RELOADING(m))
aad1976f
LP
3536 return;
3537
4259d202
LP
3538 /* Verify that we have entered the event loop already, and not left it again. */
3539 if (!MANAGER_IS_RUNNING(m))
9771b62d
LP
3540 return;
3541
4adf314b 3542 manager_check_basic_target(m);
0c2826c6 3543
56dacdbc 3544 if (hashmap_size(m->jobs) > 0) {
56dacdbc 3545 if (m->jobs_in_progress_event_source)
2ae56591 3546 /* Ignore any failure, this is only for feedback */
1b4154a8
ZJS
3547 (void) sd_event_source_set_time(m->jobs_in_progress_event_source,
3548 manager_watch_jobs_next_time(m));
56dacdbc
ZJS
3549 return;
3550 }
3551
a4ac27c1
ZJS
3552 /* The jobs hashmap tends to grow a lot during boot, and then it's not reused until shutdown. Let's
3553 kill the hashmap if it is relatively large. */
3554 if (hashmap_buckets(m->jobs) > hashmap_size(m->units) / 10)
3555 m->jobs = hashmap_free(m->jobs);
3556
6d932659
ZJS
3557 manager_send_ready(m);
3558
3559 if (MANAGER_IS_FINISHED(m))
3560 return;
3561
7365a296 3562 manager_flip_auto_status(m, false, "boot finished");
56dacdbc
ZJS
3563
3564 /* Notify Type=idle units that we are done now */
56dacdbc
ZJS
3565 manager_close_idle_pipe(m);
3566
3567 /* Turn off confirm spawn now */
7d5ceb64 3568 m->confirm_spawn = NULL;
56dacdbc
ZJS
3569
3570 /* No need to update ask password status when we're going non-interactive */
3571 manager_close_ask_password(m);
3572
3573 /* This is no longer the first boot */
3574 manager_set_first_boot(m, false);
3575
9f9f0342 3576 dual_timestamp_get(m->timestamps + MANAGER_TIMESTAMP_FINISH);
56dacdbc
ZJS
3577
3578 manager_notify_finished(m);
3579
e7ab4d1a 3580 manager_invalidate_startup_units(m);
56dacdbc
ZJS
3581}
3582
64691d20
ZJS
3583static bool generator_path_any(const char* const* paths) {
3584 char **path;
3585 bool found = false;
3586
3587 /* Optimize by skipping the whole process by not creating output directories
3588 * if no generators are found. */
3589 STRV_FOREACH(path, (char**) paths)
3590 if (access(*path, F_OK) == 0)
3591 found = true;
3592 else if (errno != ENOENT)
3593 log_warning_errno(errno, "Failed to open generator directory %s: %m", *path);
3594
3595 return found;
3596}
3597
64691d20
ZJS
3598static int manager_run_environment_generators(Manager *m) {
3599 char **tmp = NULL; /* this is only used in the forked process, no cleanup here */
cccf5703 3600 _cleanup_strv_free_ char **paths = NULL;
1ad6e8b3
LP
3601 void* args[] = {
3602 [STDOUT_GENERATE] = &tmp,
3603 [STDOUT_COLLECT] = &tmp,
3604 [STDOUT_CONSUME] = &m->transient_environment,
3605 };
e3b8d063 3606 int r;
64691d20 3607
638cece4 3608 if (MANAGER_IS_TEST_RUN(m) && !(m->test_run_flags & MANAGER_TEST_RUN_ENV_GENERATORS))
e0a3da1f
ZJS
3609 return 0;
3610
cccf5703
BB
3611 paths = env_generator_binary_paths(MANAGER_IS_SYSTEM(m));
3612 if (!paths)
3613 return log_oom();
64691d20 3614
cccf5703 3615 if (!generator_path_any((const char* const*) paths))
64691d20
ZJS
3616 return 0;
3617
e3b8d063 3618 RUN_WITH_UMASK(0022)
cccf5703 3619 r = execute_directories((const char* const*) paths, DEFAULT_TIMEOUT_USEC, gather_environment,
43f565c6
YW
3620 args, NULL, m->transient_environment,
3621 EXEC_DIR_PARALLEL | EXEC_DIR_IGNORE_ERRORS | EXEC_DIR_SET_SYSTEMD_EXEC_PID);
e3b8d063 3622 return r;
64691d20
ZJS
3623}
3624
e801700e 3625static int manager_run_generators(Manager *m) {
f42348ac 3626 _cleanup_strv_free_ char **paths = NULL;
07719a21 3627 const char *argv[5];
07719a21 3628 int r;
5a1e9937
LP
3629
3630 assert(m);
3631
638cece4 3632 if (MANAGER_IS_TEST_RUN(m) && !(m->test_run_flags & MANAGER_TEST_RUN_GENERATORS))
e0a3da1f
ZJS
3633 return 0;
3634
9183df70 3635 paths = generator_binary_paths(m->unit_file_scope);
e801700e
ZJS
3636 if (!paths)
3637 return log_oom();
5a1e9937 3638
64691d20
ZJS
3639 if (!generator_path_any((const char* const*) paths))
3640 return 0;
5a1e9937 3641
cd64fd56 3642 r = lookup_paths_mkdir_generator(&m->lookup_paths);
7eb4f326
LP
3643 if (r < 0) {
3644 log_error_errno(r, "Failed to create generator directories: %m");
07719a21 3645 goto finish;
7eb4f326 3646 }
5a1e9937 3647
83cc030f 3648 argv[0] = NULL; /* Leave this empty, execute_directory() will fill something in */
a3c4eb07
LP
3649 argv[1] = m->lookup_paths.generator;
3650 argv[2] = m->lookup_paths.generator_early;
3651 argv[3] = m->lookup_paths.generator_late;
07719a21 3652 argv[4] = NULL;
5a1e9937 3653
718db961 3654 RUN_WITH_UMASK(0022)
4b05f0c9 3655 (void) execute_directories((const char* const*) paths, DEFAULT_TIMEOUT_USEC, NULL, NULL,
43f565c6
YW
3656 (char**) argv, m->transient_environment,
3657 EXEC_DIR_PARALLEL | EXEC_DIR_IGNORE_ERRORS | EXEC_DIR_SET_SYSTEMD_EXEC_PID);
7eb4f326
LP
3658
3659 r = 0;
5a1e9937 3660
718db961 3661finish:
cd64fd56 3662 lookup_paths_trim_generator(&m->lookup_paths);
e801700e 3663 return r;
5a1e9937
LP
3664}
3665
1ad6e8b3
LP
3666int manager_transient_environment_add(Manager *m, char **plus) {
3667 char **a;
3668
3669 assert(m);
3670
3671 if (strv_isempty(plus))
3672 return 0;
3673
4ab3d29f 3674 a = strv_env_merge(m->transient_environment, plus);
1ad6e8b3 3675 if (!a)
2fbbbf9a 3676 return log_oom();
1ad6e8b3
LP
3677
3678 sanitize_environment(a);
3679
3680 return strv_free_and_replace(m->transient_environment, a);
3681}
3682
3683int manager_client_environment_modify(
3684 Manager *m,
3685 char **minus,
3686 char **plus) {
3687
718db961 3688 char **a = NULL, **b = NULL, **l;
1ad6e8b3 3689
97d0e5f8 3690 assert(m);
bcd8e6d1 3691
1ad6e8b3
LP
3692 if (strv_isempty(minus) && strv_isempty(plus))
3693 return 0;
3694
3695 l = m->client_environment;
bcd8e6d1 3696
718db961
LP
3697 if (!strv_isempty(minus)) {
3698 a = strv_env_delete(l, 1, minus);
3699 if (!a)
3700 return -ENOMEM;
3701
3702 l = a;
3703 }
3704
3705 if (!strv_isempty(plus)) {
4ab3d29f 3706 b = strv_env_merge(l, plus);
aa9f8a30
AH
3707 if (!b) {
3708 strv_free(a);
718db961 3709 return -ENOMEM;
aa9f8a30 3710 }
bcd8e6d1 3711
718db961
LP
3712 l = b;
3713 }
3714
1ad6e8b3
LP
3715 if (m->client_environment != l)
3716 strv_free(m->client_environment);
3717
718db961
LP
3718 if (a != l)
3719 strv_free(a);
3720 if (b != l)
3721 strv_free(b);
3722
1ad6e8b3
LP
3723 m->client_environment = sanitize_environment(l);
3724 return 0;
3725}
3726
3727int manager_get_effective_environment(Manager *m, char ***ret) {
3728 char **l;
3729
3730 assert(m);
3731 assert(ret);
3732
4ab3d29f 3733 l = strv_env_merge(m->transient_environment, m->client_environment);
1ad6e8b3
LP
3734 if (!l)
3735 return -ENOMEM;
f069efb4 3736
1ad6e8b3 3737 *ret = l;
97d0e5f8
UTL
3738 return 0;
3739}
3740
c93ff2e9 3741int manager_set_default_rlimits(Manager *m, struct rlimit **default_rlimit) {
c93ff2e9
FC
3742 assert(m);
3743
5b10116e 3744 for (unsigned i = 0; i < _RLIMIT_MAX; i++) {
d9814c76
EV
3745 m->rlimit[i] = mfree(m->rlimit[i]);
3746
07719a21
LP
3747 if (!default_rlimit[i])
3748 continue;
c93ff2e9 3749
07719a21
LP
3750 m->rlimit[i] = newdup(struct rlimit, default_rlimit[i], 1);
3751 if (!m->rlimit[i])
3ce40911 3752 return log_oom();
c93ff2e9
FC
3753 }
3754
3755 return 0;
3756}
3757
8559b3b7
LP
3758void manager_recheck_dbus(Manager *m) {
3759 assert(m);
3760
3761 /* Connects to the bus if the dbus service and socket are running. If we are running in user mode this is all
3762 * it does. In system mode we'll also connect to the system bus (which will most likely just reuse the
3763 * connection of the API bus). That's because the system bus after all runs as service of the system instance,
3764 * while in the user instance we can assume it's already there. */
3765
31dc1ca3
LP
3766 if (MANAGER_IS_RELOADING(m))
3767 return; /* don't check while we are reloading… */
3768
8559b3b7
LP
3769 if (manager_dbus_is_running(m, false)) {
3770 (void) bus_init_api(m);
3771
3772 if (MANAGER_IS_SYSTEM(m))
3773 (void) bus_init_system(m);
3774 } else {
3775 (void) bus_done_api(m);
3776
3777 if (MANAGER_IS_SYSTEM(m))
3778 (void) bus_done_system(m);
3779 }
3780}
3781
d075092f 3782static bool manager_journal_is_running(Manager *m) {
f1dd0c3f
LP
3783 Unit *u;
3784
3785 assert(m);
3786
638cece4 3787 if (MANAGER_IS_TEST_RUN(m))
7d814a19
LP
3788 return false;
3789
d075092f 3790 /* If we are the user manager we can safely assume that the journal is up */
463d0d15 3791 if (!MANAGER_IS_SYSTEM(m))
d075092f 3792 return true;
f1dd0c3f 3793
d075092f 3794 /* Check that the socket is not only up, but in RUNNING state */
731a676c 3795 u = manager_get_unit(m, SPECIAL_JOURNALD_SOCKET);
d075092f
LP
3796 if (!u)
3797 return false;
3798 if (SOCKET(u)->state != SOCKET_RUNNING)
3799 return false;
f1dd0c3f 3800
d075092f 3801 /* Similar, check if the daemon itself is fully up, too */
731a676c 3802 u = manager_get_unit(m, SPECIAL_JOURNALD_SERVICE);
d075092f
LP
3803 if (!u)
3804 return false;
217677ab 3805 if (!IN_SET(SERVICE(u)->state, SERVICE_RELOAD, SERVICE_RUNNING))
d075092f
LP
3806 return false;
3807
3808 return true;
3809}
3810
6123dfaa
ZJS
3811void disable_printk_ratelimit(void) {
3812 /* Disable kernel's printk ratelimit.
3813 *
3814 * Logging to /dev/kmsg is most useful during early boot and shutdown, where normal logging
3815 * mechanisms are not available. The semantics of this sysctl are such that any kernel command-line
3816 * setting takes precedence. */
3817 int r;
3818
3819 r = sysctl_write("kernel/printk_devkmsg", "on");
3820 if (r < 0)
3821 log_debug_errno(r, "Failed to set sysctl kernel.printk_devkmsg=on: %m");
3822}
3823
d075092f
LP
3824void manager_recheck_journal(Manager *m) {
3825
3826 assert(m);
3827
3828 /* Don't bother with this unless we are in the special situation of being PID 1 */
3829 if (getpid_cached() != 1)
731a676c 3830 return;
f1dd0c3f 3831
31dc1ca3
LP
3832 /* Don't check this while we are reloading, things might still change */
3833 if (MANAGER_IS_RELOADING(m))
3834 return;
3835
cedf5088
LP
3836 /* The journal is fully and entirely up? If so, let's permit logging to it, if that's configured. If the
3837 * journal is down, don't ever log to it, otherwise we might end up deadlocking ourselves as we might trigger
3838 * an activation ourselves we can't fulfill. */
3839 log_set_prohibit_ipc(!manager_journal_is_running(m));
cc2b9e6b 3840 log_open();
f1dd0c3f
LP
3841}
3842
44a41954
FB
3843static ShowStatus manager_get_show_status(Manager *m) {
3844 assert(m);
3845
3846 if (MANAGER_IS_USER(m))
3847 return _SHOW_STATUS_INVALID;
3848
3849 if (m->show_status_overridden != _SHOW_STATUS_INVALID)
3850 return m->show_status_overridden;
3851
3852 return m->show_status;
3853}
3854
3855bool manager_get_show_status_on(Manager *m) {
3856 assert(m);
3857
3858 return show_status_on(manager_get_show_status(m));
3859}
b309078a 3860
3ceb3471
FB
3861static void set_show_status_marker(bool b) {
3862 if (b)
3863 (void) touch("/run/systemd/show-status");
3864 else
3865 (void) unlink("/run/systemd/show-status");
3866}
3867
44a41954 3868void manager_set_show_status(Manager *m, ShowStatus mode, const char *reason) {
27d340c7 3869 assert(m);
44a41954 3870 assert(reason);
0d066dd1 3871 assert(mode >= 0 && mode < _SHOW_STATUS_MAX);
27d340c7 3872
44a41954 3873 if (MANAGER_IS_USER(m))
27d340c7
LP
3874 return;
3875
ef15d3e1
ZJS
3876 if (mode == m->show_status)
3877 return;
3878
44a41954
FB
3879 if (m->show_status_overridden == _SHOW_STATUS_INVALID) {
3880 bool enabled;
3881
3882 enabled = show_status_on(mode);
3883 log_debug("%s (%s) showing of status (%s).",
3884 enabled ? "Enabling" : "Disabling",
3885 strna(show_status_to_string(mode)),
3886 reason);
3887
3ceb3471 3888 set_show_status_marker(enabled);
44a41954
FB
3889 }
3890
3891 m->show_status = mode;
3892}
3893
43bba15a 3894void manager_override_show_status(Manager *m, ShowStatus mode, const char *reason) {
44a41954
FB
3895 assert(m);
3896 assert(mode < _SHOW_STATUS_MAX);
3897
3898 if (MANAGER_IS_USER(m))
3899 return;
3900
3901 if (mode == m->show_status_overridden)
3902 return;
3903
3904 m->show_status_overridden = mode;
3905
3906 if (mode == _SHOW_STATUS_INVALID)
3907 mode = m->show_status;
3908
ef15d3e1 3909 log_debug("%s (%s) showing of status (%s).",
44a41954 3910 m->show_status_overridden != _SHOW_STATUS_INVALID ? "Overriding" : "Restoring",
ef15d3e1
ZJS
3911 strna(show_status_to_string(mode)),
3912 reason);
b309078a 3913
3ceb3471 3914 set_show_status_marker(show_status_on(mode));
27d340c7
LP
3915}
3916
7d5ceb64
FB
3917const char *manager_get_confirm_spawn(Manager *m) {
3918 static int last_errno = 0;
7d5ceb64
FB
3919 struct stat st;
3920 int r;
3921
ea758432
LP
3922 assert(m);
3923
7d5ceb64
FB
3924 /* Here's the deal: we want to test the validity of the console but don't want
3925 * PID1 to go through the whole console process which might block. But we also
3926 * want to warn the user only once if something is wrong with the console so we
3927 * cannot do the sanity checks after spawning our children. So here we simply do
3928 * really basic tests to hopefully trap common errors.
3929 *
3930 * If the console suddenly disappear at the time our children will really it
3931 * then they will simply fail to acquire it and a positive answer will be
2aed63f4 3932 * assumed. New children will fall back to /dev/console though.
7d5ceb64
FB
3933 *
3934 * Note: TTYs are devices that can come and go any time, and frequently aren't
3935 * available yet during early boot (consider a USB rs232 dongle...). If for any
2aed63f4 3936 * reason the configured console is not ready, we fall back to the default
7d5ceb64
FB
3937 * console. */
3938
ea758432
LP
3939 if (!m->confirm_spawn || path_equal(m->confirm_spawn, "/dev/console"))
3940 return m->confirm_spawn;
7d5ceb64 3941
ea758432
LP
3942 if (stat(m->confirm_spawn, &st) < 0) {
3943 r = -errno;
7d5ceb64 3944 goto fail;
ea758432 3945 }
7d5ceb64
FB
3946
3947 if (!S_ISCHR(st.st_mode)) {
ea758432 3948 r = -ENOTTY;
7d5ceb64
FB
3949 goto fail;
3950 }
3951
3952 last_errno = 0;
ea758432
LP
3953 return m->confirm_spawn;
3954
7d5ceb64 3955fail:
ea758432
LP
3956 if (last_errno != r)
3957 last_errno = log_warning_errno(r, "Failed to open %s, using default console: %m", m->confirm_spawn);
3958
7d5ceb64
FB
3959 return "/dev/console";
3960}
3961
e2680723
LP
3962void manager_set_first_boot(Manager *m, bool b) {
3963 assert(m);
3964
463d0d15 3965 if (!MANAGER_IS_SYSTEM(m))
e2680723
LP
3966 return;
3967
ae2a2c53
LP
3968 if (m->first_boot != (int) b) {
3969 if (b)
3970 (void) touch("/run/systemd/first-boot");
3971 else
3972 (void) unlink("/run/systemd/first-boot");
3973 }
e2680723 3974
ae2a2c53 3975 m->first_boot = b;
e2680723
LP
3976}
3977
b0eb2944
FB
3978void manager_disable_confirm_spawn(void) {
3979 (void) touch("/run/systemd/confirm_spawn_disabled");
3980}
3981
3982bool manager_is_confirm_spawn_disabled(Manager *m) {
3983 if (!m->confirm_spawn)
3984 return true;
3985
3986 return access("/run/systemd/confirm_spawn_disabled", F_OK) >= 0;
3987}
3988
0d6d3cf0
FB
3989static bool manager_should_show_status(Manager *m, StatusType type) {
3990 assert(m);
3991
3992 if (!MANAGER_IS_SYSTEM(m))
3993 return false;
3994
3995 if (m->no_console_output)
3996 return false;
3997
3998 if (!IN_SET(manager_state(m), MANAGER_INITIALIZING, MANAGER_STARTING, MANAGER_STOPPING))
3999 return false;
4000
4001 /* If we cannot find out the status properly, just proceed. */
4002 if (type != STATUS_TYPE_EMERGENCY && manager_check_ask_password(m) > 0)
4003 return false;
4004
4005 if (type == STATUS_TYPE_NOTICE && m->show_status != SHOW_STATUS_NO)
4006 return true;
4007
44a41954 4008 return manager_get_show_status_on(m);
0d6d3cf0
FB
4009}
4010
127d5fd1 4011void manager_status_printf(Manager *m, StatusType type, const char *status, const char *format, ...) {
25cee550
MS
4012 va_list ap;
4013
cb6531be
ZJS
4014 /* If m is NULL, assume we're after shutdown and let the messages through. */
4015
0d6d3cf0 4016 if (m && !manager_should_show_status(m, type))
25cee550
MS
4017 return;
4018
03b717a3
MS
4019 /* XXX We should totally drop the check for ephemeral here
4020 * and thus effectively make 'Type=idle' pointless. */
cb6531be 4021 if (type == STATUS_TYPE_EPHEMERAL && m && m->n_on_console > 0)
03b717a3
MS
4022 return;
4023
25cee550 4024 va_start(ap, format);
a885727a 4025 status_vprintf(status, SHOW_STATUS_ELLIPSIZE|(type == STATUS_TYPE_EPHEMERAL ? SHOW_STATUS_EPHEMERAL : 0), format, ap);
25cee550
MS
4026 va_end(ap);
4027}
4028
ac19bdd0 4029Set* manager_get_units_requiring_mounts_for(Manager *m, const char *path) {
a57f7e2c
LP
4030 assert(m);
4031 assert(path);
4032
ac19bdd0
ZJS
4033 if (path_equal(path, "/"))
4034 path = "";
a57f7e2c 4035
ac19bdd0 4036 return hashmap_get(m->units_requiring_mounts_for, path);
a57f7e2c 4037}
e66cf1a3 4038
5269eb6b 4039int manager_update_failed_units(Manager *m, Unit *u, bool failed) {
03455c28 4040 unsigned size;
5269eb6b 4041 int r;
03455c28
LDM
4042
4043 assert(m);
4044 assert(u->manager == m);
4045
4046 size = set_size(m->failed_units);
4047
9fff8981 4048 if (failed) {
de7fef4b 4049 r = set_ensure_put(&m->failed_units, NULL, u);
5269eb6b
LP
4050 if (r < 0)
4051 return log_oom();
9fff8981 4052 } else
5269eb6b 4053 (void) set_remove(m->failed_units, u);
03455c28
LDM
4054
4055 if (set_size(m->failed_units) != size)
4056 bus_manager_send_change_signal(m);
5269eb6b
LP
4057
4058 return 0;
03455c28
LDM
4059}
4060
f755e3b7
LP
4061ManagerState manager_state(Manager *m) {
4062 Unit *u;
4063
4064 assert(m);
4065
f9d29f6d
JB
4066 /* Is the special shutdown target active or queued? If so, we are in shutdown state */
4067 u = manager_get_unit(m, SPECIAL_SHUTDOWN_TARGET);
4068 if (u && unit_active_or_pending(u))
4069 return MANAGER_STOPPING;
4070
f755e3b7 4071 /* Did we ever finish booting? If not then we are still starting up */
49d5666c 4072 if (!MANAGER_IS_FINISHED(m)) {
d81afec1
LP
4073
4074 u = manager_get_unit(m, SPECIAL_BASIC_TARGET);
4075 if (!u || !UNIT_IS_ACTIVE_OR_RELOADING(unit_active_state(u)))
4076 return MANAGER_INITIALIZING;
4077
f755e3b7 4078 return MANAGER_STARTING;
d81afec1 4079 }
f755e3b7 4080
45a7b16b
LP
4081 if (MANAGER_IS_SYSTEM(m)) {
4082 /* Are the rescue or emergency targets active or queued? If so we are in maintenance state */
4083 u = manager_get_unit(m, SPECIAL_RESCUE_TARGET);
4084 if (u && unit_active_or_pending(u))
4085 return MANAGER_MAINTENANCE;
f755e3b7 4086
45a7b16b
LP
4087 u = manager_get_unit(m, SPECIAL_EMERGENCY_TARGET);
4088 if (u && unit_active_or_pending(u))
4089 return MANAGER_MAINTENANCE;
4090 }
f755e3b7
LP
4091
4092 /* Are there any failed units? If so, we are in degraded mode */
4093 if (set_size(m->failed_units) > 0)
4094 return MANAGER_DEGRADED;
4095
4096 return MANAGER_RUNNING;
4097}
4098
00d9ef85 4099static void manager_unref_uid_internal(
010becd9 4100 Hashmap *uid_refs,
00d9ef85
LP
4101 uid_t uid,
4102 bool destroy_now,
4103 int (*_clean_ipc)(uid_t uid)) {
4104
4105 uint32_t c, n;
4106
00d9ef85
LP
4107 assert(uid_is_valid(uid));
4108 assert(_clean_ipc);
4109
4110 /* A generic implementation, covering both manager_unref_uid() and manager_unref_gid(), under the assumption
4111 * that uid_t and gid_t are actually defined the same way, with the same validity rules.
4112 *
827d1ba7 4113 * We store a hashmap where the key is the UID/GID and the value is a 32bit reference counter, whose highest
00d9ef85
LP
4114 * bit is used as flag for marking UIDs/GIDs whose IPC objects to remove when the last reference to the UID/GID
4115 * is dropped. The flag is set to on, once at least one reference from a unit where RemoveIPC= is set is added
4116 * on a UID/GID. It is reset when the UID's/GID's reference counter drops to 0 again. */
4117
4118 assert_cc(sizeof(uid_t) == sizeof(gid_t));
4119 assert_cc(UID_INVALID == (uid_t) GID_INVALID);
4120
4121 if (uid == 0) /* We don't keep track of root, and will never destroy it */
4122 return;
4123
010becd9 4124 c = PTR_TO_UINT32(hashmap_get(uid_refs, UID_TO_PTR(uid)));
00d9ef85
LP
4125
4126 n = c & ~DESTROY_IPC_FLAG;
4127 assert(n > 0);
4128 n--;
4129
4130 if (destroy_now && n == 0) {
010becd9 4131 hashmap_remove(uid_refs, UID_TO_PTR(uid));
00d9ef85
LP
4132
4133 if (c & DESTROY_IPC_FLAG) {
4134 log_debug("%s " UID_FMT " is no longer referenced, cleaning up its IPC.",
4135 _clean_ipc == clean_ipc_by_uid ? "UID" : "GID",
4136 uid);
4137 (void) _clean_ipc(uid);
4138 }
4139 } else {
4140 c = n | (c & DESTROY_IPC_FLAG);
010becd9 4141 assert_se(hashmap_update(uid_refs, UID_TO_PTR(uid), UINT32_TO_PTR(c)) >= 0);
00d9ef85
LP
4142 }
4143}
4144
4145void manager_unref_uid(Manager *m, uid_t uid, bool destroy_now) {
010becd9 4146 manager_unref_uid_internal(m->uid_refs, uid, destroy_now, clean_ipc_by_uid);
00d9ef85
LP
4147}
4148
4149void manager_unref_gid(Manager *m, gid_t gid, bool destroy_now) {
010becd9 4150 manager_unref_uid_internal(m->gid_refs, (uid_t) gid, destroy_now, clean_ipc_by_gid);
00d9ef85
LP
4151}
4152
4153static int manager_ref_uid_internal(
00d9ef85
LP
4154 Hashmap **uid_refs,
4155 uid_t uid,
4156 bool clean_ipc) {
4157
4158 uint32_t c, n;
4159 int r;
4160
00d9ef85
LP
4161 assert(uid_refs);
4162 assert(uid_is_valid(uid));
4163
4164 /* A generic implementation, covering both manager_ref_uid() and manager_ref_gid(), under the assumption
4165 * that uid_t and gid_t are actually defined the same way, with the same validity rules. */
4166
4167 assert_cc(sizeof(uid_t) == sizeof(gid_t));
4168 assert_cc(UID_INVALID == (uid_t) GID_INVALID);
4169
4170 if (uid == 0) /* We don't keep track of root, and will never destroy it */
4171 return 0;
4172
4173 r = hashmap_ensure_allocated(uid_refs, &trivial_hash_ops);
4174 if (r < 0)
4175 return r;
4176
4177 c = PTR_TO_UINT32(hashmap_get(*uid_refs, UID_TO_PTR(uid)));
4178
4179 n = c & ~DESTROY_IPC_FLAG;
4180 n++;
4181
4182 if (n & DESTROY_IPC_FLAG) /* check for overflow */
4183 return -EOVERFLOW;
4184
4185 c = n | (c & DESTROY_IPC_FLAG) | (clean_ipc ? DESTROY_IPC_FLAG : 0);
4186
4187 return hashmap_replace(*uid_refs, UID_TO_PTR(uid), UINT32_TO_PTR(c));
4188}
4189
4190int manager_ref_uid(Manager *m, uid_t uid, bool clean_ipc) {
010becd9 4191 return manager_ref_uid_internal(&m->uid_refs, uid, clean_ipc);
00d9ef85
LP
4192}
4193
4194int manager_ref_gid(Manager *m, gid_t gid, bool clean_ipc) {
010becd9 4195 return manager_ref_uid_internal(&m->gid_refs, (uid_t) gid, clean_ipc);
00d9ef85
LP
4196}
4197
4198static void manager_vacuum_uid_refs_internal(
010becd9 4199 Hashmap *uid_refs,
00d9ef85
LP
4200 int (*_clean_ipc)(uid_t uid)) {
4201
00d9ef85
LP
4202 void *p, *k;
4203
00d9ef85
LP
4204 assert(_clean_ipc);
4205
010becd9 4206 HASHMAP_FOREACH_KEY(p, k, uid_refs) {
00d9ef85
LP
4207 uint32_t c, n;
4208 uid_t uid;
4209
4210 uid = PTR_TO_UID(k);
4211 c = PTR_TO_UINT32(p);
4212
4213 n = c & ~DESTROY_IPC_FLAG;
4214 if (n > 0)
4215 continue;
4216
4217 if (c & DESTROY_IPC_FLAG) {
4218 log_debug("Found unreferenced %s " UID_FMT " after reload/reexec. Cleaning up.",
4219 _clean_ipc == clean_ipc_by_uid ? "UID" : "GID",
4220 uid);
4221 (void) _clean_ipc(uid);
4222 }
4223
010becd9 4224 assert_se(hashmap_remove(uid_refs, k) == p);
00d9ef85
LP
4225 }
4226}
4227
06a4eb07 4228static void manager_vacuum_uid_refs(Manager *m) {
010becd9 4229 manager_vacuum_uid_refs_internal(m->uid_refs, clean_ipc_by_uid);
00d9ef85
LP
4230}
4231
06a4eb07 4232static void manager_vacuum_gid_refs(Manager *m) {
010becd9 4233 manager_vacuum_uid_refs_internal(m->gid_refs, clean_ipc_by_gid);
00d9ef85
LP
4234}
4235
06a4eb07
FB
4236static void manager_vacuum(Manager *m) {
4237 assert(m);
4238
4239 /* Release any dynamic users no longer referenced */
4240 dynamic_user_vacuum(m, true);
4241
4242 /* Release any references to UIDs/GIDs no longer referenced, and destroy any IPC owned by them */
4243 manager_vacuum_uid_refs(m);
4244 manager_vacuum_gid_refs(m);
4245
4246 /* Release any runtimes no longer referenced */
4247 exec_runtime_vacuum(m);
4248}
4249
00d9ef85
LP
4250int manager_dispatch_user_lookup_fd(sd_event_source *source, int fd, uint32_t revents, void *userdata) {
4251 struct buffer {
4252 uid_t uid;
4253 gid_t gid;
4254 char unit_name[UNIT_NAME_MAX+1];
4255 } _packed_ buffer;
4256
4257 Manager *m = userdata;
4258 ssize_t l;
4259 size_t n;
4260 Unit *u;
4261
4262 assert_se(source);
4263 assert_se(m);
4264
4265 /* Invoked whenever a child process succeeded resolving its user/group to use and sent us the resulting UID/GID
4266 * in a datagram. We parse the datagram here and pass it off to the unit, so that it can add a reference to the
4267 * UID/GID so that it can destroy the UID/GID's IPC objects when the reference counter drops to 0. */
4268
4269 l = recv(fd, &buffer, sizeof(buffer), MSG_DONTWAIT);
4270 if (l < 0) {
4c701096 4271 if (IN_SET(errno, EINTR, EAGAIN))
00d9ef85
LP
4272 return 0;
4273
4274 return log_error_errno(errno, "Failed to read from user lookup fd: %m");
4275 }
4276
4277 if ((size_t) l <= offsetof(struct buffer, unit_name)) {
4278 log_warning("Received too short user lookup message, ignoring.");
4279 return 0;
4280 }
4281
4282 if ((size_t) l > offsetof(struct buffer, unit_name) + UNIT_NAME_MAX) {
4283 log_warning("Received too long user lookup message, ignoring.");
4284 return 0;
4285 }
4286
4287 if (!uid_is_valid(buffer.uid) && !gid_is_valid(buffer.gid)) {
4288 log_warning("Got user lookup message with invalid UID/GID pair, ignoring.");
4289 return 0;
4290 }
4291
4292 n = (size_t) l - offsetof(struct buffer, unit_name);
4293 if (memchr(buffer.unit_name, 0, n)) {
4294 log_warning("Received lookup message with embedded NUL character, ignoring.");
4295 return 0;
4296 }
4297
4298 buffer.unit_name[n] = 0;
4299 u = manager_get_unit(m, buffer.unit_name);
4300 if (!u) {
4301 log_debug("Got user lookup message but unit doesn't exist, ignoring.");
4302 return 0;
4303 }
4304
4305 log_unit_debug(u, "User lookup succeeded: uid=" UID_FMT " gid=" GID_FMT, buffer.uid, buffer.gid);
4306
4307 unit_notify_user_lookup(u, buffer.uid, buffer.gid);
4308 return 0;
4309}
4310
af6b0ecc 4311char *manager_taint_string(Manager *m) {
90d7464d 4312 _cleanup_free_ char *destination = NULL, *overflowuid = NULL, *overflowgid = NULL;
af6b0ecc
LP
4313 char *buf, *e;
4314 int r;
4315
198ce932
ZJS
4316 /* Returns a "taint string", e.g. "local-hwclock:var-run-bad".
4317 * Only things that are detected at runtime should be tagged
4318 * here. For stuff that is set during compilation, emit a warning
4319 * in the configuration phase. */
4320
af6b0ecc
LP
4321 assert(m);
4322
4323 buf = new(char, sizeof("split-usr:"
4324 "cgroups-missing:"
82f30632 4325 "cgrousv1:"
af6b0ecc
LP
4326 "local-hwclock:"
4327 "var-run-bad:"
90d7464d
LP
4328 "overflowuid-not-65534:"
4329 "overflowgid-not-65534:"));
af6b0ecc
LP
4330 if (!buf)
4331 return NULL;
4332
4333 e = buf;
0fd402b0 4334 buf[0] = 0;
af6b0ecc
LP
4335
4336 if (m->taint_usr)
4337 e = stpcpy(e, "split-usr:");
4338
4339 if (access("/proc/cgroups", F_OK) < 0)
4340 e = stpcpy(e, "cgroups-missing:");
4341
82f30632
LP
4342 if (cg_all_unified() == 0)
4343 e = stpcpy(e, "cgroupsv1:");
4344
af6b0ecc
LP
4345 if (clock_is_localtime(NULL) > 0)
4346 e = stpcpy(e, "local-hwclock:");
4347
4348 r = readlink_malloc("/var/run", &destination);
4349 if (r < 0 || !PATH_IN_SET(destination, "../run", "/run"))
4350 e = stpcpy(e, "var-run-bad:");
4351
90d7464d
LP
4352 r = read_one_line_file("/proc/sys/kernel/overflowuid", &overflowuid);
4353 if (r >= 0 && !streq(overflowuid, "65534"))
4354 e = stpcpy(e, "overflowuid-not-65534:");
4355
4356 r = read_one_line_file("/proc/sys/kernel/overflowgid", &overflowgid);
4357 if (r >= 0 && !streq(overflowgid, "65534"))
4358 e = stpcpy(e, "overflowgid-not-65534:");
4359
af6b0ecc
LP
4360 /* remove the last ':' */
4361 if (e != buf)
4362 e[-1] = 0;
4363
4364 return buf;
4365}
4366
adefcf28
LP
4367void manager_ref_console(Manager *m) {
4368 assert(m);
4369
4370 m->n_on_console++;
4371}
4372
4373void manager_unref_console(Manager *m) {
4374
4375 assert(m->n_on_console > 0);
4376 m->n_on_console--;
4377
4378 if (m->n_on_console == 0)
4379 m->no_console_output = false; /* unset no_console_output flag, since the console is definitely free now */
4380}
4381
a6ecbf83
FB
4382void manager_override_log_level(Manager *m, int level) {
4383 _cleanup_free_ char *s = NULL;
4384 assert(m);
4385
4386 if (!m->log_level_overridden) {
4387 m->original_log_level = log_get_max_level();
4388 m->log_level_overridden = true;
4389 }
4390
4391 (void) log_level_to_string_alloc(level, &s);
4392 log_info("Setting log level to %s.", strna(s));
4393
4394 log_set_max_level(level);
4395}
4396
4397void manager_restore_original_log_level(Manager *m) {
4398 _cleanup_free_ char *s = NULL;
4399 assert(m);
4400
4401 if (!m->log_level_overridden)
4402 return;
4403
4404 (void) log_level_to_string_alloc(m->original_log_level, &s);
4405 log_info("Restoring log level to original (%s).", strna(s));
4406
4407 log_set_max_level(m->original_log_level);
4408 m->log_level_overridden = false;
4409}
4410
bda7d78b
FB
4411void manager_override_log_target(Manager *m, LogTarget target) {
4412 assert(m);
4413
4414 if (!m->log_target_overridden) {
4415 m->original_log_target = log_get_target();
4416 m->log_target_overridden = true;
4417 }
4418
4419 log_info("Setting log target to %s.", log_target_to_string(target));
4420 log_set_target(target);
4421}
4422
4423void manager_restore_original_log_target(Manager *m) {
4424 assert(m);
4425
4426 if (!m->log_target_overridden)
4427 return;
4428
4429 log_info("Restoring log target to original %s.", log_target_to_string(m->original_log_target));
4430
4431 log_set_target(m->original_log_target);
4432 m->log_target_overridden = false;
4433}
4434
d4ee7bd8
YW
4435ManagerTimestamp manager_timestamp_initrd_mangle(ManagerTimestamp s) {
4436 if (in_initrd() &&
4437 s >= MANAGER_TIMESTAMP_SECURITY_START &&
4438 s <= MANAGER_TIMESTAMP_UNITS_LOAD_FINISH)
4439 return s - MANAGER_TIMESTAMP_SECURITY_START + MANAGER_TIMESTAMP_INITRD_SECURITY_START;
4440 return s;
4441}
4442
f755e3b7 4443static const char *const manager_state_table[_MANAGER_STATE_MAX] = {
d81afec1 4444 [MANAGER_INITIALIZING] = "initializing",
48d83e33
ZJS
4445 [MANAGER_STARTING] = "starting",
4446 [MANAGER_RUNNING] = "running",
4447 [MANAGER_DEGRADED] = "degraded",
4448 [MANAGER_MAINTENANCE] = "maintenance",
4449 [MANAGER_STOPPING] = "stopping",
f755e3b7
LP
4450};
4451
4452DEFINE_STRING_TABLE_LOOKUP(manager_state, ManagerState);
9f9f0342
LP
4453
4454static const char *const manager_timestamp_table[_MANAGER_TIMESTAMP_MAX] = {
48d83e33
ZJS
4455 [MANAGER_TIMESTAMP_FIRMWARE] = "firmware",
4456 [MANAGER_TIMESTAMP_LOADER] = "loader",
4457 [MANAGER_TIMESTAMP_KERNEL] = "kernel",
4458 [MANAGER_TIMESTAMP_INITRD] = "initrd",
4459 [MANAGER_TIMESTAMP_USERSPACE] = "userspace",
4460 [MANAGER_TIMESTAMP_FINISH] = "finish",
4461 [MANAGER_TIMESTAMP_SECURITY_START] = "security-start",
4462 [MANAGER_TIMESTAMP_SECURITY_FINISH] = "security-finish",
4463 [MANAGER_TIMESTAMP_GENERATORS_START] = "generators-start",
4464 [MANAGER_TIMESTAMP_GENERATORS_FINISH] = "generators-finish",
4465 [MANAGER_TIMESTAMP_UNITS_LOAD_START] = "units-load-start",
4466 [MANAGER_TIMESTAMP_UNITS_LOAD_FINISH] = "units-load-finish",
4467 [MANAGER_TIMESTAMP_INITRD_SECURITY_START] = "initrd-security-start",
4468 [MANAGER_TIMESTAMP_INITRD_SECURITY_FINISH] = "initrd-security-finish",
4469 [MANAGER_TIMESTAMP_INITRD_GENERATORS_START] = "initrd-generators-start",
d4ee7bd8 4470 [MANAGER_TIMESTAMP_INITRD_GENERATORS_FINISH] = "initrd-generators-finish",
48d83e33 4471 [MANAGER_TIMESTAMP_INITRD_UNITS_LOAD_START] = "initrd-units-load-start",
d4ee7bd8 4472 [MANAGER_TIMESTAMP_INITRD_UNITS_LOAD_FINISH] = "initrd-units-load-finish",
9f9f0342
LP
4473};
4474
4475DEFINE_STRING_TABLE_LOOKUP(manager_timestamp, ManagerTimestamp);
afcfaa69
LP
4476
4477static const char* const oom_policy_table[_OOM_POLICY_MAX] = {
4478 [OOM_CONTINUE] = "continue",
48d83e33
ZJS
4479 [OOM_STOP] = "stop",
4480 [OOM_KILL] = "kill",
afcfaa69
LP
4481};
4482
4483DEFINE_STRING_TABLE_LOOKUP(oom_policy, OOMPolicy);