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