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