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