]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/manager.c
label: if the selinux policy knows no label, then silently don't do anything
[thirdparty/systemd.git] / src / manager.c
CommitLineData
d6c9574f 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
60918275 2
a7334b09
LP
3/***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
60918275
LP
22#include <assert.h>
23#include <errno.h>
87d1515d 24#include <string.h>
9152c765
LP
25#include <sys/epoll.h>
26#include <signal.h>
27#include <sys/signalfd.h>
28#include <sys/wait.h>
29#include <unistd.h>
30#include <sys/poll.h>
e1414003
LP
31#include <sys/reboot.h>
32#include <sys/ioctl.h>
33#include <linux/kd.h>
80876c20
LP
34#include <termios.h>
35#include <fcntl.h>
a16e1123
LP
36#include <sys/types.h>
37#include <sys/stat.h>
fe51822e 38#include <dirent.h>
830f6caa
LP
39
40#ifdef HAVE_AUDIT
4927fcae 41#include <libaudit.h>
830f6caa 42#endif
60918275
LP
43
44#include "manager.h"
45#include "hashmap.h"
46#include "macro.h"
47#include "strv.h"
16354eff 48#include "log.h"
2a987ee8 49#include "util.h"
ea430986 50#include "ratelimit.h"
8e274523
LP
51#include "cgroup.h"
52#include "mount-setup.h"
9e2f7c11 53#include "unit-name.h"
4139c1b2
LP
54#include "dbus-unit.h"
55#include "dbus-job.h"
1137a57c 56#include "missing.h"
84e3543e 57#include "path-lookup.h"
514f4ef5 58#include "special.h"
398ef8ba 59#include "bus-errors.h"
d06dacd0 60#include "exit-status.h"
60918275 61
701cc384
LP
62/* As soon as 16 units are in our GC queue, make sure to run a gc sweep */
63#define GC_QUEUE_ENTRIES_MAX 16
64
65/* As soon as 5s passed since a unit was added to our GC queue, make sure to run a gc sweep */
94b6dfa2 66#define GC_QUEUE_USEC_MAX (10*USEC_PER_SEC)
701cc384 67
8c47c732
LP
68/* Where clients shall send notification messages to */
69#define NOTIFY_SOCKET "/org/freedesktop/systemd1/notify"
70
71static int manager_setup_notify(Manager *m) {
72 union {
73 struct sockaddr sa;
74 struct sockaddr_un un;
75 } sa;
76 struct epoll_event ev;
8c47c732
LP
77 int one = 1;
78
79 assert(m);
80
81 m->notify_watch.type = WATCH_NOTIFY;
82 if ((m->notify_watch.fd = socket(AF_UNIX, SOCK_DGRAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0)) < 0) {
83 log_error("Failed to allocate notification socket: %m");
84 return -errno;
85 }
86
87 zero(sa);
88 sa.sa.sa_family = AF_UNIX;
89
a821caaa 90 if (getpid() != 1)
8c47c732
LP
91 snprintf(sa.un.sun_path+1, sizeof(sa.un.sun_path)-1, NOTIFY_SOCKET "/%llu", random_ull());
92 else
93 strncpy(sa.un.sun_path+1, NOTIFY_SOCKET, sizeof(sa.un.sun_path)-1);
94
0e098b15 95 if (bind(m->notify_watch.fd, &sa.sa, offsetof(struct sockaddr_un, sun_path) + 1 + strlen(sa.un.sun_path+1)) < 0) {
8c47c732
LP
96 log_error("bind() failed: %m");
97 return -errno;
98 }
99
100 if (setsockopt(m->notify_watch.fd, SOL_SOCKET, SO_PASSCRED, &one, sizeof(one)) < 0) {
101 log_error("SO_PASSCRED failed: %m");
102 return -errno;
103 }
104
105 zero(ev);
106 ev.events = EPOLLIN;
107 ev.data.ptr = &m->notify_watch;
108
109 if (epoll_ctl(m->epoll_fd, EPOLL_CTL_ADD, m->notify_watch.fd, &ev) < 0)
110 return -errno;
111
c952c6ec 112 if (!(m->notify_socket = strdup(sa.un.sun_path+1)))
8c47c732
LP
113 return -ENOMEM;
114
b2bb3dbe
LP
115 log_debug("Using notification socket %s", m->notify_socket);
116
8c47c732
LP
117 return 0;
118}
119
80876c20
LP
120static int enable_special_signals(Manager *m) {
121 char fd;
122
123 assert(m);
124
125 /* Enable that we get SIGINT on control-alt-del */
126 if (reboot(RB_DISABLE_CAD) < 0)
127 log_warning("Failed to enable ctrl-alt-del handling: %m");
128
affda787 129 if ((fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY)) < 0)
80876c20
LP
130 log_warning("Failed to open /dev/tty0: %m");
131 else {
132 /* Enable that we get SIGWINCH on kbrequest */
133 if (ioctl(fd, KDSIGACCEPT, SIGWINCH) < 0)
134 log_warning("Failed to enable kbrequest handling: %s", strerror(errno));
135
136 close_nointr_nofail(fd);
137 }
138
139 return 0;
140}
141
ce578209 142static int manager_setup_signals(Manager *m) {
9152c765
LP
143 sigset_t mask;
144 struct epoll_event ev;
57c0c30e 145 struct sigaction sa;
60918275 146
ce578209
LP
147 assert(m);
148
57c0c30e
LP
149 /* We are not interested in SIGSTOP and friends. */
150 zero(sa);
151 sa.sa_handler = SIG_DFL;
152 sa.sa_flags = SA_NOCLDSTOP|SA_RESTART;
153 assert_se(sigaction(SIGCHLD, &sa, NULL) == 0);
154
ce578209 155 assert_se(sigemptyset(&mask) == 0);
7d793605
LP
156
157 sigset_add_many(&mask,
158 SIGCHLD, /* Child died */
159 SIGTERM, /* Reexecute daemon */
160 SIGHUP, /* Reload configuration */
161 SIGUSR1, /* systemd/upstart: reconnect to D-Bus */
162 SIGUSR2, /* systemd: dump status */
163 SIGINT, /* Kernel sends us this on control-alt-del */
164 SIGWINCH, /* Kernel sends us this on kbrequest (alt-arrowup) */
165 SIGPWR, /* Some kernel drivers and upsd send us this on power failure */
166 SIGRTMIN+0, /* systemd: start default.target */
0003d1ab 167 SIGRTMIN+1, /* systemd: isolate rescue.target */
7d793605
LP
168 SIGRTMIN+2, /* systemd: isolate emergency.target */
169 SIGRTMIN+3, /* systemd: start halt.target */
170 SIGRTMIN+4, /* systemd: start poweroff.target */
171 SIGRTMIN+5, /* systemd: start reboot.target */
0003d1ab
LP
172 SIGRTMIN+6, /* systemd: start kexec.target */
173 SIGRTMIN+13, /* systemd: Immediate halt */
174 SIGRTMIN+14, /* systemd: Immediate poweroff */
175 SIGRTMIN+15, /* systemd: Immediate reboot */
176 SIGRTMIN+16, /* systemd: Immediate kexec */
7d793605 177 -1);
ce578209
LP
178 assert_se(sigprocmask(SIG_SETMASK, &mask, NULL) == 0);
179
ef734fd6 180 m->signal_watch.type = WATCH_SIGNAL;
ce578209
LP
181 if ((m->signal_watch.fd = signalfd(-1, &mask, SFD_NONBLOCK|SFD_CLOEXEC)) < 0)
182 return -errno;
183
184 zero(ev);
185 ev.events = EPOLLIN;
186 ev.data.ptr = &m->signal_watch;
187
188 if (epoll_ctl(m->epoll_fd, EPOLL_CTL_ADD, m->signal_watch.fd, &ev) < 0)
189 return -errno;
190
a3d4e06d 191 if (m->running_as == MANAGER_SYSTEM)
80876c20 192 return enable_special_signals(m);
e1414003 193
ce578209
LP
194 return 0;
195}
196
9e58ff9c 197int manager_new(ManagerRunningAs running_as, Manager **_m) {
ce578209 198 Manager *m;
8e274523
LP
199 int r = -ENOMEM;
200
201 assert(_m);
a5dab5ce
LP
202 assert(running_as >= 0);
203 assert(running_as < _MANAGER_RUNNING_AS_MAX);
ce578209 204
60918275 205 if (!(m = new0(Manager, 1)))
8e274523 206 return -ENOMEM;
60918275 207
63983207 208 dual_timestamp_get(&m->startup_timestamp);
e537352b 209
a5dab5ce 210 m->running_as = running_as;
a567261a 211 m->name_data_slot = m->subscribed_data_slot = -1;
a16e1123 212 m->exit_code = _MANAGER_EXIT_CODE_INVALID;
33be102a 213 m->pin_cgroupfs_fd = -1;
80876c20 214
4927fcae
LP
215#ifdef HAVE_AUDIT
216 m->audit_fd = -1;
217#endif
218
8d567588 219 m->signal_watch.fd = m->mount_watch.fd = m->udev_watch.fd = m->epoll_fd = m->dev_autofs_fd = -1;
ea430986 220 m->current_job_id = 1; /* start as id #1, so that we can leave #0 around as "null-like" value */
9152c765 221
1137a57c
LP
222 if (!(m->environment = strv_copy(environ)))
223 goto fail;
224
87f0e418 225 if (!(m->units = hashmap_new(string_hash_func, string_compare_func)))
60918275
LP
226 goto fail;
227
228 if (!(m->jobs = hashmap_new(trivial_hash_func, trivial_compare_func)))
229 goto fail;
230
e5b5ae50 231 if (!(m->transaction_jobs = hashmap_new(trivial_hash_func, trivial_compare_func)))
60918275
LP
232 goto fail;
233
9152c765
LP
234 if (!(m->watch_pids = hashmap_new(trivial_hash_func, trivial_compare_func)))
235 goto fail;
236
8e274523
LP
237 if (!(m->cgroup_bondings = hashmap_new(string_hash_func, string_compare_func)))
238 goto fail;
239
05e343b7
LP
240 if (!(m->watch_bus = hashmap_new(string_hash_func, string_compare_func)))
241 goto fail;
242
9152c765
LP
243 if ((m->epoll_fd = epoll_create1(EPOLL_CLOEXEC)) < 0)
244 goto fail;
245
84e3543e 246 if ((r = lookup_paths_init(&m->lookup_paths, m->running_as)) < 0)
e1414003
LP
247 goto fail;
248
8e274523
LP
249 if ((r = manager_setup_signals(m)) < 0)
250 goto fail;
251
8e274523 252 if ((r = manager_setup_cgroup(m)) < 0)
9152c765
LP
253 goto fail;
254
8c47c732
LP
255 if ((r = manager_setup_notify(m)) < 0)
256 goto fail;
257
f278026d 258 /* Try to connect to the busses, if possible. */
5e8d1c9a 259 if ((r = bus_init(m)) < 0)
ea430986
LP
260 goto fail;
261
e543deae 262#ifdef HAVE_AUDIT
4927fcae
LP
263 if ((m->audit_fd = audit_open()) < 0)
264 log_error("Failed to connect to audit log: %m");
e543deae 265#endif
4927fcae 266
8e274523
LP
267 *_m = m;
268 return 0;
60918275
LP
269
270fail:
271 manager_free(m);
8e274523 272 return r;
60918275
LP
273}
274
23a177ef
LP
275static unsigned manager_dispatch_cleanup_queue(Manager *m) {
276 Meta *meta;
277 unsigned n = 0;
278
279 assert(m);
280
281 while ((meta = m->cleanup_queue)) {
282 assert(meta->in_cleanup_queue);
283
399ab2b1 284 unit_free((Unit*) meta);
23a177ef
LP
285 n++;
286 }
287
288 return n;
289}
290
eced69b3
LP
291enum {
292 GC_OFFSET_IN_PATH, /* This one is on the path we were travelling */
293 GC_OFFSET_UNSURE, /* No clue */
294 GC_OFFSET_GOOD, /* We still need this unit */
295 GC_OFFSET_BAD, /* We don't need this unit anymore */
296 _GC_OFFSET_MAX
297};
298
299static void unit_gc_sweep(Unit *u, unsigned gc_marker) {
701cc384
LP
300 Iterator i;
301 Unit *other;
eced69b3 302 bool is_bad;
701cc384
LP
303
304 assert(u);
305
eced69b3
LP
306 if (u->meta.gc_marker == gc_marker + GC_OFFSET_GOOD ||
307 u->meta.gc_marker == gc_marker + GC_OFFSET_BAD ||
308 u->meta.gc_marker == gc_marker + GC_OFFSET_IN_PATH)
701cc384
LP
309 return;
310
c9c0cadb 311 if (u->meta.in_cleanup_queue)
701cc384
LP
312 goto bad;
313
314 if (unit_check_gc(u))
315 goto good;
316
eced69b3
LP
317 u->meta.gc_marker = gc_marker + GC_OFFSET_IN_PATH;
318
319 is_bad = true;
320
701cc384
LP
321 SET_FOREACH(other, u->meta.dependencies[UNIT_REFERENCED_BY], i) {
322 unit_gc_sweep(other, gc_marker);
323
eced69b3 324 if (other->meta.gc_marker == gc_marker + GC_OFFSET_GOOD)
701cc384 325 goto good;
eced69b3
LP
326
327 if (other->meta.gc_marker != gc_marker + GC_OFFSET_BAD)
328 is_bad = false;
701cc384
LP
329 }
330
eced69b3
LP
331 if (is_bad)
332 goto bad;
333
334 /* We were unable to find anything out about this entry, so
335 * let's investigate it later */
336 u->meta.gc_marker = gc_marker + GC_OFFSET_UNSURE;
337 unit_add_to_gc_queue(u);
338 return;
339
701cc384 340bad:
eced69b3
LP
341 /* We definitely know that this one is not useful anymore, so
342 * let's mark it for deletion */
343 u->meta.gc_marker = gc_marker + GC_OFFSET_BAD;
344 unit_add_to_cleanup_queue(u);
701cc384
LP
345 return;
346
347good:
eced69b3 348 u->meta.gc_marker = gc_marker + GC_OFFSET_GOOD;
701cc384
LP
349}
350
351static unsigned manager_dispatch_gc_queue(Manager *m) {
352 Meta *meta;
353 unsigned n = 0;
eced69b3 354 unsigned gc_marker;
701cc384
LP
355
356 assert(m);
357
358 if ((m->n_in_gc_queue < GC_QUEUE_ENTRIES_MAX) &&
359 (m->gc_queue_timestamp <= 0 ||
360 (m->gc_queue_timestamp + GC_QUEUE_USEC_MAX) > now(CLOCK_MONOTONIC)))
361 return 0;
362
363 log_debug("Running GC...");
364
eced69b3
LP
365 m->gc_marker += _GC_OFFSET_MAX;
366 if (m->gc_marker + _GC_OFFSET_MAX <= _GC_OFFSET_MAX)
c9c0cadb 367 m->gc_marker = 1;
701cc384 368
eced69b3
LP
369 gc_marker = m->gc_marker;
370
701cc384
LP
371 while ((meta = m->gc_queue)) {
372 assert(meta->in_gc_queue);
373
399ab2b1 374 unit_gc_sweep((Unit*) meta, gc_marker);
eced69b3 375
701cc384
LP
376 LIST_REMOVE(Meta, gc_queue, m->gc_queue, meta);
377 meta->in_gc_queue = false;
378
379 n++;
380
eced69b3
LP
381 if (meta->gc_marker == gc_marker + GC_OFFSET_BAD ||
382 meta->gc_marker == gc_marker + GC_OFFSET_UNSURE) {
701cc384 383 log_debug("Collecting %s", meta->id);
eced69b3 384 meta->gc_marker = gc_marker + GC_OFFSET_BAD;
399ab2b1 385 unit_add_to_cleanup_queue((Unit*) meta);
701cc384
LP
386 }
387 }
388
389 m->n_in_gc_queue = 0;
390 m->gc_queue_timestamp = 0;
391
392 return n;
393}
394
a16e1123 395static void manager_clear_jobs_and_units(Manager *m) {
e5b5ae50 396 Job *j;
a16e1123 397 Unit *u;
60918275
LP
398
399 assert(m);
400
87f0e418 401 while ((j = hashmap_first(m->transaction_jobs)))
e5b5ae50
LP
402 job_free(j);
403
87f0e418
LP
404 while ((u = hashmap_first(m->units)))
405 unit_free(u);
964e0949
LP
406
407 manager_dispatch_cleanup_queue(m);
408
409 assert(!m->load_queue);
410 assert(!m->run_queue);
411 assert(!m->dbus_unit_queue);
412 assert(!m->dbus_job_queue);
413 assert(!m->cleanup_queue);
414 assert(!m->gc_queue);
415
416 assert(hashmap_isempty(m->transaction_jobs));
417 assert(hashmap_isempty(m->jobs));
418 assert(hashmap_isempty(m->units));
a16e1123
LP
419}
420
421void manager_free(Manager *m) {
422 UnitType c;
87f0e418 423
a16e1123
LP
424 assert(m);
425
426 manager_clear_jobs_and_units(m);
23a177ef 427
7824bbeb
LP
428 for (c = 0; c < _UNIT_TYPE_MAX; c++)
429 if (unit_vtable[c]->shutdown)
430 unit_vtable[c]->shutdown(m);
431
a16e1123
LP
432 /* If we reexecute ourselves, we keep the root cgroup
433 * around */
c6c18be3 434 manager_shutdown_cgroup(m, m->exit_code != MANAGER_REEXECUTE);
8e274523 435
5e8d1c9a 436 bus_done(m);
ea430986 437
87f0e418 438 hashmap_free(m->units);
60918275 439 hashmap_free(m->jobs);
e5b5ae50 440 hashmap_free(m->transaction_jobs);
9152c765 441 hashmap_free(m->watch_pids);
05e343b7 442 hashmap_free(m->watch_bus);
9152c765
LP
443
444 if (m->epoll_fd >= 0)
a16e1123 445 close_nointr_nofail(m->epoll_fd);
acbb0225 446 if (m->signal_watch.fd >= 0)
a16e1123 447 close_nointr_nofail(m->signal_watch.fd);
8c47c732
LP
448 if (m->notify_watch.fd >= 0)
449 close_nointr_nofail(m->notify_watch.fd);
60918275 450
4927fcae
LP
451#ifdef HAVE_AUDIT
452 if (m->audit_fd >= 0)
453 audit_close(m->audit_fd);
454#endif
455
c952c6ec 456 free(m->notify_socket);
b2bb3dbe 457 free(m->console);
c952c6ec 458
84e3543e 459 lookup_paths_free(&m->lookup_paths);
1137a57c 460 strv_free(m->environment);
036643a2 461
8e274523 462 hashmap_free(m->cgroup_bondings);
c6c18be3 463 set_free_free(m->unit_path_cache);
33be102a 464
60918275
LP
465 free(m);
466}
467
a16e1123
LP
468int manager_enumerate(Manager *m) {
469 int r = 0, q;
f50e0a01 470 UnitType c;
f50e0a01
LP
471
472 assert(m);
473
a16e1123
LP
474 /* Let's ask every type to load all units from disk/kernel
475 * that it might know */
f50e0a01
LP
476 for (c = 0; c < _UNIT_TYPE_MAX; c++)
477 if (unit_vtable[c]->enumerate)
a16e1123
LP
478 if ((q = unit_vtable[c]->enumerate(m)) < 0)
479 r = q;
f50e0a01
LP
480
481 manager_dispatch_load_queue(m);
a16e1123
LP
482 return r;
483}
484
485int manager_coldplug(Manager *m) {
486 int r = 0, q;
487 Iterator i;
488 Unit *u;
489 char *k;
490
491 assert(m);
f50e0a01
LP
492
493 /* Then, let's set up their initial state. */
494 HASHMAP_FOREACH_KEY(u, k, m->units, i) {
495
496 /* ignore aliases */
9e2f7c11 497 if (u->meta.id != k)
f50e0a01
LP
498 continue;
499
cca098b0
LP
500 if ((q = unit_coldplug(u)) < 0)
501 r = q;
f50e0a01
LP
502 }
503
a16e1123
LP
504 return r;
505}
506
fe51822e
LP
507static void manager_build_unit_path_cache(Manager *m) {
508 char **i;
509 DIR *d = NULL;
510 int r;
511
512 assert(m);
513
514 set_free_free(m->unit_path_cache);
515
516 if (!(m->unit_path_cache = set_new(string_hash_func, string_compare_func))) {
517 log_error("Failed to allocate unit path cache.");
518 return;
519 }
520
521 /* This simply builds a list of files we know exist, so that
522 * we don't always have to go to disk */
523
524 STRV_FOREACH(i, m->lookup_paths.unit_path) {
525 struct dirent *de;
526
527 if (!(d = opendir(*i))) {
528 log_error("Failed to open directory: %m");
529 continue;
530 }
531
532 while ((de = readdir(d))) {
533 char *p;
534
535 if (ignore_file(de->d_name))
536 continue;
537
538 if (asprintf(&p, "%s/%s", streq(*i, "/") ? "" : *i, de->d_name) < 0) {
539 r = -ENOMEM;
540 goto fail;
541 }
542
543 if ((r = set_put(m->unit_path_cache, p)) < 0) {
544 free(p);
545 goto fail;
546 }
547 }
548
549 closedir(d);
550 d = NULL;
551 }
552
553 return;
554
555fail:
556 log_error("Failed to build unit path cache: %s", strerror(-r));
557
558 set_free_free(m->unit_path_cache);
559 m->unit_path_cache = NULL;
560
561 if (d)
562 closedir(d);
563}
564
a16e1123
LP
565int manager_startup(Manager *m, FILE *serialization, FDSet *fds) {
566 int r, q;
567
568 assert(m);
569
fe51822e
LP
570 manager_build_unit_path_cache(m);
571
9f611ad8
LP
572 /* If we will deserialize make sure that during enumeration
573 * this is already known, so we increase the counter here
574 * already */
575 if (serialization)
576 m->n_deserializing ++;
577
a16e1123
LP
578 /* First, enumerate what we can from all config files */
579 r = manager_enumerate(m);
580
581 /* Second, deserialize if there is something to deserialize */
582 if (serialization)
583 if ((q = manager_deserialize(m, serialization, fds)) < 0)
584 r = q;
585
586 /* Third, fire things up! */
587 if ((q = manager_coldplug(m)) < 0)
588 r = q;
589
9f611ad8
LP
590 if (serialization) {
591 assert(m->n_deserializing > 0);
592 m->n_deserializing --;
593 }
594
a16e1123 595 return r;
f50e0a01
LP
596}
597
23a177ef 598static void transaction_delete_job(Manager *m, Job *j, bool delete_dependencies) {
302d0040
LP
599 assert(m);
600 assert(j);
601
1ffba6fe
LP
602 /* Deletes one job from the transaction */
603
23a177ef 604 manager_transaction_unlink_job(m, j, delete_dependencies);
302d0040 605
ac1135be 606 if (!j->installed)
302d0040
LP
607 job_free(j);
608}
609
87f0e418 610static void transaction_delete_unit(Manager *m, Unit *u) {
1ffba6fe
LP
611 Job *j;
612
87f0e418 613 /* Deletes all jobs associated with a certain unit from the
1ffba6fe
LP
614 * transaction */
615
87f0e418 616 while ((j = hashmap_get(m->transaction_jobs, u)))
23a177ef 617 transaction_delete_job(m, j, true);
1ffba6fe
LP
618}
619
f04fa1d5
LP
620static void transaction_clean_dependencies(Manager *m) {
621 Iterator i;
622 Job *j;
623
624 assert(m);
625
626 /* Drops all dependencies of all installed jobs */
627
628 HASHMAP_FOREACH(j, m->jobs, i) {
629 while (j->subject_list)
630 job_dependency_free(j->subject_list);
631 while (j->object_list)
632 job_dependency_free(j->object_list);
633 }
634
635 assert(!m->transaction_anchor);
636}
637
11dd41ce
LP
638static void transaction_abort(Manager *m) {
639 Job *j;
640
641 assert(m);
11dd41ce 642
e5b5ae50 643 while ((j = hashmap_first(m->transaction_jobs)))
ac1135be 644 if (j->installed)
23a177ef 645 transaction_delete_job(m, j, true);
e5b5ae50
LP
646 else
647 job_free(j);
648
649 assert(hashmap_isempty(m->transaction_jobs));
f04fa1d5
LP
650
651 transaction_clean_dependencies(m);
e5b5ae50
LP
652}
653
654static void transaction_find_jobs_that_matter_to_anchor(Manager *m, Job *j, unsigned generation) {
655 JobDependency *l;
656
657 assert(m);
658
87f0e418 659 /* A recursive sweep through the graph that marks all units
1ffba6fe
LP
660 * that matter to the anchor job, i.e. are directly or
661 * indirectly a dependency of the anchor job via paths that
662 * are fully marked as mattering. */
663
44d8db9e
LP
664 if (j)
665 l = j->subject_list;
666 else
667 l = m->transaction_anchor;
668
669 LIST_FOREACH(subject, l, l) {
e5b5ae50
LP
670
671 /* This link does not matter */
672 if (!l->matters)
673 continue;
674
87f0e418 675 /* This unit has already been marked */
e5b5ae50
LP
676 if (l->object->generation == generation)
677 continue;
678
679 l->object->matters_to_anchor = true;
680 l->object->generation = generation;
681
682 transaction_find_jobs_that_matter_to_anchor(m, l->object, generation);
683 }
684}
685
7fad411c 686static void transaction_merge_and_delete_job(Manager *m, Job *j, Job *other, JobType t) {
e5b5ae50
LP
687 JobDependency *l, *last;
688
689 assert(j);
690 assert(other);
87f0e418 691 assert(j->unit == other->unit);
ac1135be 692 assert(!j->installed);
e5b5ae50 693
1ffba6fe
LP
694 /* Merges 'other' into 'j' and then deletes j. */
695
e5b5ae50
LP
696 j->type = t;
697 j->state = JOB_WAITING;
9e2f7c11 698 j->override = j->override || other->override;
e5b5ae50
LP
699
700 j->matters_to_anchor = j->matters_to_anchor || other->matters_to_anchor;
701
702 /* Patch us in as new owner of the JobDependency objects */
703 last = NULL;
44d8db9e 704 LIST_FOREACH(subject, l, other->subject_list) {
e5b5ae50
LP
705 assert(l->subject == other);
706 l->subject = j;
707 last = l;
708 }
709
710 /* Merge both lists */
711 if (last) {
712 last->subject_next = j->subject_list;
713 if (j->subject_list)
714 j->subject_list->subject_prev = last;
715 j->subject_list = other->subject_list;
716 }
717
718 /* Patch us in as new owner of the JobDependency objects */
719 last = NULL;
44d8db9e 720 LIST_FOREACH(object, l, other->object_list) {
e5b5ae50
LP
721 assert(l->object == other);
722 l->object = j;
723 last = l;
724 }
725
726 /* Merge both lists */
727 if (last) {
728 last->object_next = j->object_list;
729 if (j->object_list)
730 j->object_list->object_prev = last;
731 j->object_list = other->object_list;
732 }
733
e5b5ae50
LP
734 /* Kill the other job */
735 other->subject_list = NULL;
736 other->object_list = NULL;
23a177ef 737 transaction_delete_job(m, other, true);
e5b5ae50 738}
69dd2852
LP
739static bool job_is_conflicted_by(Job *j) {
740 JobDependency *l;
741
742 assert(j);
743
744 /* Returns true if this job is pulled in by a least one
745 * ConflictedBy dependency. */
746
747 LIST_FOREACH(object, l, j->object_list)
748 if (l->conflicts)
749 return true;
750
751 return false;
752}
e5b5ae50 753
5cb5a6ff 754static int delete_one_unmergeable_job(Manager *m, Job *j) {
1ffba6fe
LP
755 Job *k;
756
757 assert(j);
758
759 /* Tries to delete one item in the linked list
760 * j->transaction_next->transaction_next->... that conflicts
761 * whith another one, in an attempt to make an inconsistent
762 * transaction work. */
763
764 /* We rely here on the fact that if a merged with b does not
765 * merge with c, either a or b merge with c neither */
034c6ed7
LP
766 LIST_FOREACH(transaction, j, j)
767 LIST_FOREACH(transaction, k, j->transaction_next) {
1ffba6fe
LP
768 Job *d;
769
770 /* Is this one mergeable? Then skip it */
5cb5a6ff 771 if (job_type_is_mergeable(j->type, k->type))
1ffba6fe
LP
772 continue;
773
774 /* Ok, we found two that conflict, let's see if we can
775 * drop one of them */
69dd2852
LP
776 if (!j->matters_to_anchor && !k->matters_to_anchor) {
777
778 /* Both jobs don't matter, so let's
779 * find the one that is smarter to
780 * remove. Let's think positive and
781 * rather remove stops then starts --
782 * except if something is being
783 * stopped because it is conflicted by
784 * another unit in which case we
785 * rather remove the start. */
786
787 log_debug("Looking at job %s/%s conflicted_by=%s", j->unit->meta.id, job_type_to_string(j->type), yes_no(j->type == JOB_STOP && job_is_conflicted_by(j)));
788 log_debug("Looking at job %s/%s conflicted_by=%s", k->unit->meta.id, job_type_to_string(k->type), yes_no(k->type == JOB_STOP && job_is_conflicted_by(k)));
789
790 if (j->type == JOB_STOP) {
791
792 if (job_is_conflicted_by(j))
793 d = k;
794 else
795 d = j;
796
797 } else if (k->type == JOB_STOP) {
798
799 if (job_is_conflicted_by(k))
800 d = j;
801 else
802 d = k;
e364ad06
LP
803 } else
804 d = j;
69dd2852
LP
805
806 } else if (!j->matters_to_anchor)
1ffba6fe
LP
807 d = j;
808 else if (!k->matters_to_anchor)
809 d = k;
810 else
811 return -ENOEXEC;
812
813 /* Ok, we can drop one, so let's do so. */
2e81c8a5 814 log_debug("Fixing conflicting jobs by deleting job %s/%s", d->unit->meta.id, job_type_to_string(d->type));
23a177ef 815 transaction_delete_job(m, d, true);
1ffba6fe
LP
816 return 0;
817 }
818
819 return -EINVAL;
820}
821
398ef8ba 822static int transaction_merge_jobs(Manager *m, DBusError *e) {
11dd41ce 823 Job *j;
034c6ed7 824 Iterator i;
e5b5ae50
LP
825 int r;
826
827 assert(m);
828
1ffba6fe
LP
829 /* First step, check whether any of the jobs for one specific
830 * task conflict. If so, try to drop one of them. */
034c6ed7 831 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
1ffba6fe
LP
832 JobType t;
833 Job *k;
834
835 t = j->type;
034c6ed7 836 LIST_FOREACH(transaction, k, j->transaction_next) {
e364ad06 837 if (job_type_merge(&t, k->type) >= 0)
1ffba6fe
LP
838 continue;
839
840 /* OK, we could not merge all jobs for this
841 * action. Let's see if we can get rid of one
842 * of them */
843
5cb5a6ff 844 if ((r = delete_one_unmergeable_job(m, j)) >= 0)
1ffba6fe
LP
845 /* Ok, we managed to drop one, now
846 * let's ask our callers to call us
847 * again after garbage collecting */
848 return -EAGAIN;
849
850 /* We couldn't merge anything. Failure */
398ef8ba
LP
851 dbus_set_error(e, BUS_ERROR_TRANSACTION_JOBS_CONFLICTING, "Transaction contains conflicting jobs '%s' and '%s' for %s. Probably contradicting requirement dependencies configured.",
852 job_type_to_string(t), job_type_to_string(k->type), k->unit->meta.id);
1ffba6fe
LP
853 return r;
854 }
855 }
856
857 /* Second step, merge the jobs. */
034c6ed7 858 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
e5b5ae50
LP
859 JobType t = j->type;
860 Job *k;
861
e094e853 862 /* Merge all transactions */
034c6ed7 863 LIST_FOREACH(transaction, k, j->transaction_next)
1ffba6fe 864 assert_se(job_type_merge(&t, k->type) == 0);
e5b5ae50 865
5cb5a6ff 866 /* If an active job is mergeable, merge it too */
87f0e418
LP
867 if (j->unit->meta.job)
868 job_type_merge(&t, j->unit->meta.job->type); /* Might fail. Which is OK */
e094e853 869
e5b5ae50 870 while ((k = j->transaction_next)) {
ac1135be 871 if (j->installed) {
7fad411c 872 transaction_merge_and_delete_job(m, k, j, t);
e5b5ae50
LP
873 j = k;
874 } else
7fad411c 875 transaction_merge_and_delete_job(m, j, k, t);
e5b5ae50
LP
876 }
877
878 assert(!j->transaction_next);
879 assert(!j->transaction_prev);
880 }
881
7fad411c 882 return 0;
e5b5ae50
LP
883}
884
23a177ef
LP
885static void transaction_drop_redundant(Manager *m) {
886 bool again;
887
888 assert(m);
889
890 /* Goes through the transaction and removes all jobs that are
891 * a noop */
892
893 do {
894 Job *j;
895 Iterator i;
896
897 again = false;
898
899 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
900 bool changes_something = false;
901 Job *k;
902
903 LIST_FOREACH(transaction, k, j) {
904
905 if (!job_is_anchor(k) &&
906 job_type_is_redundant(k->type, unit_active_state(k->unit)))
907 continue;
908
909 changes_something = true;
910 break;
911 }
912
913 if (changes_something)
914 continue;
915
9e2f7c11 916 log_debug("Found redundant job %s/%s, dropping.", j->unit->meta.id, job_type_to_string(j->type));
23a177ef
LP
917 transaction_delete_job(m, j, false);
918 again = true;
919 break;
920 }
921
922 } while (again);
923}
924
87f0e418
LP
925static bool unit_matters_to_anchor(Unit *u, Job *j) {
926 assert(u);
1ffba6fe
LP
927 assert(!j->transaction_prev);
928
87f0e418 929 /* Checks whether at least one of the jobs for this unit
1ffba6fe
LP
930 * matters to the anchor. */
931
034c6ed7 932 LIST_FOREACH(transaction, j, j)
1ffba6fe
LP
933 if (j->matters_to_anchor)
934 return true;
935
936 return false;
937}
938
398ef8ba 939static int transaction_verify_order_one(Manager *m, Job *j, Job *from, unsigned generation, DBusError *e) {
034c6ed7 940 Iterator i;
87f0e418 941 Unit *u;
11dd41ce 942 int r;
e5b5ae50
LP
943
944 assert(m);
945 assert(j);
1ffba6fe
LP
946 assert(!j->transaction_prev);
947
948 /* Does a recursive sweep through the ordering graph, looking
949 * for a cycle. If we find cycle we try to break it. */
e5b5ae50 950
23e3c588
LP
951 /* Have we seen this before? */
952 if (j->generation == generation) {
674a6e4d 953 Job *k, *delete;
e5b5ae50 954
23e3c588
LP
955 /* If the marker is NULL we have been here already and
956 * decided the job was loop-free from here. Hence
957 * shortcut things and return right-away. */
958 if (!j->marker)
959 return 0;
e5b5ae50 960
23e3c588
LP
961 /* So, the marker is not NULL and we already have been
962 * here. We have a cycle. Let's try to break it. We go
963 * backwards in our path and try to find a suitable
964 * job to remove. We use the marker to find our way
965 * back, since smart how we are we stored our way back
966 * in there. */
54165a39 967 log_warning("Found ordering cycle on %s/%s", j->unit->meta.id, job_type_to_string(j->type));
9f04bd52 968
674a6e4d 969 delete = NULL;
23e3c588 970 for (k = from; k; k = ((k->generation == generation && k->marker != k) ? k->marker : NULL)) {
1ffba6fe 971
54165a39 972 log_info("Walked on cycle path to %s/%s", k->unit->meta.id, job_type_to_string(k->type));
9f04bd52 973
674a6e4d
LP
974 if (!delete &&
975 !k->installed &&
87f0e418 976 !unit_matters_to_anchor(k->unit, k)) {
1ffba6fe
LP
977 /* Ok, we can drop this one, so let's
978 * do so. */
674a6e4d 979 delete = k;
e5b5ae50
LP
980 }
981
982 /* Check if this in fact was the beginning of
7fad411c 983 * the cycle */
e5b5ae50
LP
984 if (k == j)
985 break;
986 }
987
674a6e4d
LP
988
989 if (delete) {
54ec68b6 990 log_warning("Breaking ordering cycle by deleting job %s/%s", delete->unit->meta.id, job_type_to_string(delete->type));
674a6e4d
LP
991 transaction_delete_unit(m, delete->unit);
992 return -EAGAIN;
993 }
994
54165a39 995 log_error("Unable to break cycle");
9f04bd52 996
fe71c02c 997 dbus_set_error(e, BUS_ERROR_TRANSACTION_ORDER_IS_CYCLIC, "Transaction order is cyclic. See system logs for details.");
1ffba6fe 998 return -ENOEXEC;
e5b5ae50
LP
999 }
1000
1ffba6fe 1001 /* Make the marker point to where we come from, so that we can
23e3c588
LP
1002 * find our way backwards if we want to break a cycle. We use
1003 * a special marker for the beginning: we point to
1004 * ourselves. */
1005 j->marker = from ? from : j;
e5b5ae50
LP
1006 j->generation = generation;
1007
1ffba6fe 1008 /* We assume that the the dependencies are bidirectional, and
87f0e418
LP
1009 * hence can ignore UNIT_AFTER */
1010 SET_FOREACH(u, j->unit->meta.dependencies[UNIT_BEFORE], i) {
e5b5ae50
LP
1011 Job *o;
1012
87f0e418
LP
1013 /* Is there a job for this unit? */
1014 if (!(o = hashmap_get(m->transaction_jobs, u)))
1ffba6fe
LP
1015
1016 /* Ok, there is no job for this in the
1017 * transaction, but maybe there is already one
1018 * running? */
87f0e418 1019 if (!(o = u->meta.job))
e5b5ae50
LP
1020 continue;
1021
398ef8ba 1022 if ((r = transaction_verify_order_one(m, o, j, generation, e)) < 0)
e5b5ae50
LP
1023 return r;
1024 }
1025
9f04bd52
LP
1026 /* Ok, let's backtrack, and remember that this entry is not on
1027 * our path anymore. */
1028 j->marker = NULL;
1029
e5b5ae50
LP
1030 return 0;
1031}
1032
398ef8ba 1033static int transaction_verify_order(Manager *m, unsigned *generation, DBusError *e) {
1ffba6fe
LP
1034 Job *j;
1035 int r;
034c6ed7 1036 Iterator i;
23e3c588 1037 unsigned g;
1ffba6fe 1038
e5b5ae50
LP
1039 assert(m);
1040 assert(generation);
1041
1ffba6fe
LP
1042 /* Check if the ordering graph is cyclic. If it is, try to fix
1043 * that up by dropping one of the jobs. */
e5b5ae50 1044
23e3c588
LP
1045 g = (*generation)++;
1046
034c6ed7 1047 HASHMAP_FOREACH(j, m->transaction_jobs, i)
398ef8ba 1048 if ((r = transaction_verify_order_one(m, j, NULL, g, e)) < 0)
1ffba6fe 1049 return r;
e5b5ae50
LP
1050
1051 return 0;
1052}
1053
1054static void transaction_collect_garbage(Manager *m) {
1055 bool again;
1056
1057 assert(m);
1058
1ffba6fe
LP
1059 /* Drop jobs that are not required by any other job */
1060
e5b5ae50 1061 do {
034c6ed7 1062 Iterator i;
e5b5ae50
LP
1063 Job *j;
1064
1065 again = false;
1066
034c6ed7 1067 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
e5b5ae50
LP
1068 if (j->object_list)
1069 continue;
1070
9e2f7c11 1071 log_debug("Garbage collecting job %s/%s", j->unit->meta.id, job_type_to_string(j->type));
23a177ef 1072 transaction_delete_job(m, j, true);
e5b5ae50
LP
1073 again = true;
1074 break;
1075 }
1076
1077 } while (again);
1078}
1079
398ef8ba 1080static int transaction_is_destructive(Manager *m, DBusError *e) {
034c6ed7 1081 Iterator i;
e5b5ae50 1082 Job *j;
11dd41ce
LP
1083
1084 assert(m);
11dd41ce 1085
e5b5ae50
LP
1086 /* Checks whether applying this transaction means that
1087 * existing jobs would be replaced */
11dd41ce 1088
034c6ed7 1089 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
e094e853
LP
1090
1091 /* Assume merged */
1092 assert(!j->transaction_prev);
1093 assert(!j->transaction_next);
1094
87f0e418
LP
1095 if (j->unit->meta.job &&
1096 j->unit->meta.job != j &&
398ef8ba
LP
1097 !job_type_is_superset(j->type, j->unit->meta.job->type)) {
1098
1099 dbus_set_error(e, BUS_ERROR_TRANSACTION_IS_DESTRUCTIVE, "Transaction is destructive.");
e5b5ae50 1100 return -EEXIST;
398ef8ba 1101 }
e094e853 1102 }
11dd41ce 1103
e5b5ae50
LP
1104 return 0;
1105}
1106
e094e853
LP
1107static void transaction_minimize_impact(Manager *m) {
1108 bool again;
1109 assert(m);
1110
1111 /* Drops all unnecessary jobs that reverse already active jobs
1112 * or that stop a running service. */
1113
1114 do {
1115 Job *j;
034c6ed7 1116 Iterator i;
e094e853
LP
1117
1118 again = false;
1119
034c6ed7
LP
1120 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
1121 LIST_FOREACH(transaction, j, j) {
c20cae32 1122 bool stops_running_service, changes_existing_job;
e094e853
LP
1123
1124 /* If it matters, we shouldn't drop it */
1125 if (j->matters_to_anchor)
1126 continue;
1127
1128 /* Would this stop a running service?
1129 * Would this change an existing job?
1130 * If so, let's drop this entry */
c20cae32
LP
1131
1132 stops_running_service =
1133 j->type == JOB_STOP && UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(j->unit));
1134
1135 changes_existing_job =
48a21c9b 1136 j->unit->meta.job && job_type_is_conflicting(j->type, j->unit->meta.job->type);
c20cae32
LP
1137
1138 if (!stops_running_service && !changes_existing_job)
e094e853
LP
1139 continue;
1140
c20cae32 1141 if (stops_running_service)
54165a39 1142 log_info("%s/%s would stop a running service.", j->unit->meta.id, job_type_to_string(j->type));
c20cae32
LP
1143
1144 if (changes_existing_job)
54165a39 1145 log_info("%s/%s would change existing job.", j->unit->meta.id, job_type_to_string(j->type));
c20cae32 1146
e094e853 1147 /* Ok, let's get rid of this */
54165a39 1148 log_info("Deleting %s/%s to minimize impact.", j->unit->meta.id, job_type_to_string(j->type));
c20cae32 1149
23a177ef 1150 transaction_delete_job(m, j, true);
e094e853
LP
1151 again = true;
1152 break;
1153 }
1154
1155 if (again)
1156 break;
1157 }
1158
1159 } while (again);
1160}
1161
c497c7a9 1162static int transaction_apply(Manager *m) {
034c6ed7 1163 Iterator i;
e5b5ae50
LP
1164 Job *j;
1165 int r;
1166
1ffba6fe
LP
1167 /* Moves the transaction jobs to the set of active jobs */
1168
034c6ed7 1169 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
e094e853
LP
1170 /* Assume merged */
1171 assert(!j->transaction_prev);
1172 assert(!j->transaction_next);
1173
ac1135be 1174 if (j->installed)
e5b5ae50
LP
1175 continue;
1176
1177 if ((r = hashmap_put(m->jobs, UINT32_TO_PTR(j->id), j)) < 0)
11dd41ce
LP
1178 goto rollback;
1179 }
1180
e5b5ae50 1181 while ((j = hashmap_steal_first(m->transaction_jobs))) {
ac1135be 1182 if (j->installed)
e5b5ae50
LP
1183 continue;
1184
87f0e418
LP
1185 if (j->unit->meta.job)
1186 job_free(j->unit->meta.job);
11dd41ce 1187
87f0e418 1188 j->unit->meta.job = j;
ac1135be 1189 j->installed = true;
e409f875 1190 m->n_installed_jobs ++;
11dd41ce 1191
e5b5ae50
LP
1192 /* We're fully installed. Now let's free data we don't
1193 * need anymore. */
1194
1195 assert(!j->transaction_next);
1196 assert(!j->transaction_prev);
1197
c1e1601e
LP
1198 job_add_to_run_queue(j);
1199 job_add_to_dbus_queue(j);
faf919f1 1200 job_start_timer(j);
01184e04
LP
1201 }
1202
1203 /* As last step, kill all remaining job dependencies. */
f04fa1d5 1204 transaction_clean_dependencies(m);
1ffba6fe 1205
11dd41ce
LP
1206 return 0;
1207
1208rollback:
1209
034c6ed7 1210 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
ac1135be 1211 if (j->installed)
e5b5ae50
LP
1212 continue;
1213
1214 hashmap_remove(m->jobs, UINT32_TO_PTR(j->id));
1215 }
1216
1217 return r;
1218}
1219
398ef8ba 1220static int transaction_activate(Manager *m, JobMode mode, DBusError *e) {
e5b5ae50
LP
1221 int r;
1222 unsigned generation = 1;
1223
1224 assert(m);
1225
1226 /* This applies the changes recorded in transaction_jobs to
1227 * the actual list of jobs, if possible. */
1228
1229 /* First step: figure out which jobs matter */
1230 transaction_find_jobs_that_matter_to_anchor(m, NULL, generation++);
1231
e094e853
LP
1232 /* Second step: Try not to stop any running services if
1233 * we don't have to. Don't try to reverse running
1234 * jobs if we don't have to. */
c88e7f4e
LP
1235 if (mode != JOB_ISOLATE)
1236 transaction_minimize_impact(m);
e094e853 1237
23a177ef
LP
1238 /* Third step: Drop redundant jobs */
1239 transaction_drop_redundant(m);
1240
1ffba6fe 1241 for (;;) {
23a177ef 1242 /* Fourth step: Let's remove unneeded jobs that might
1ffba6fe
LP
1243 * be lurking. */
1244 transaction_collect_garbage(m);
e5b5ae50 1245
23a177ef 1246 /* Fifth step: verify order makes sense and correct
1ffba6fe 1247 * cycles if necessary and possible */
398ef8ba 1248 if ((r = transaction_verify_order(m, &generation, e)) >= 0)
1ffba6fe 1249 break;
e5b5ae50 1250
9f04bd52 1251 if (r != -EAGAIN) {
398ef8ba 1252 log_warning("Requested transaction contains an unfixable cyclic ordering dependency: %s", bus_error(e, r));
1ffba6fe 1253 goto rollback;
9f04bd52 1254 }
e5b5ae50 1255
1ffba6fe
LP
1256 /* Let's see if the resulting transaction ordering
1257 * graph is still cyclic... */
1258 }
1259
1260 for (;;) {
23a177ef 1261 /* Sixth step: let's drop unmergeable entries if
1ffba6fe
LP
1262 * necessary and possible, merge entries we can
1263 * merge */
398ef8ba 1264 if ((r = transaction_merge_jobs(m, e)) >= 0)
1ffba6fe
LP
1265 break;
1266
9f04bd52 1267 if (r != -EAGAIN) {
398ef8ba 1268 log_warning("Requested transaction contains unmergable jobs: %s", bus_error(e, r));
1ffba6fe 1269 goto rollback;
9f04bd52 1270 }
1ffba6fe 1271
23a177ef 1272 /* Seventh step: an entry got dropped, let's garbage
1ffba6fe
LP
1273 * collect its dependencies. */
1274 transaction_collect_garbage(m);
1275
1276 /* Let's see if the resulting transaction still has
5cb5a6ff 1277 * unmergeable entries ... */
1ffba6fe
LP
1278 }
1279
23a177ef
LP
1280 /* Eights step: Drop redundant jobs again, if the merging now allows us to drop more. */
1281 transaction_drop_redundant(m);
1282
1283 /* Ninth step: check whether we can actually apply this */
e5b5ae50 1284 if (mode == JOB_FAIL)
398ef8ba
LP
1285 if ((r = transaction_is_destructive(m, e)) < 0) {
1286 log_notice("Requested transaction contradicts existing jobs: %s", bus_error(e, r));
e5b5ae50 1287 goto rollback;
9f04bd52 1288 }
e5b5ae50 1289
23a177ef 1290 /* Tenth step: apply changes */
c497c7a9 1291 if ((r = transaction_apply(m)) < 0) {
54165a39 1292 log_warning("Failed to apply transaction: %s", strerror(-r));
e5b5ae50 1293 goto rollback;
9f04bd52 1294 }
e5b5ae50
LP
1295
1296 assert(hashmap_isempty(m->transaction_jobs));
1297 assert(!m->transaction_anchor);
1298
1299 return 0;
11dd41ce 1300
e5b5ae50 1301rollback:
11dd41ce
LP
1302 transaction_abort(m);
1303 return r;
1304}
1305
9e2f7c11 1306static Job* transaction_add_one_job(Manager *m, JobType type, Unit *unit, bool override, bool *is_new) {
e5b5ae50 1307 Job *j, *f;
60918275
LP
1308
1309 assert(m);
87f0e418 1310 assert(unit);
60918275 1311
e5b5ae50
LP
1312 /* Looks for an axisting prospective job and returns that. If
1313 * it doesn't exist it is created and added to the prospective
1314 * jobs list. */
60918275 1315
87f0e418 1316 f = hashmap_get(m->transaction_jobs, unit);
60918275 1317
034c6ed7 1318 LIST_FOREACH(transaction, j, f) {
87f0e418 1319 assert(j->unit == unit);
60918275 1320
e5b5ae50
LP
1321 if (j->type == type) {
1322 if (is_new)
1323 *is_new = false;
1324 return j;
1325 }
1326 }
60918275 1327
87f0e418
LP
1328 if (unit->meta.job && unit->meta.job->type == type)
1329 j = unit->meta.job;
1330 else if (!(j = job_new(m, type, unit)))
e5b5ae50 1331 return NULL;
60918275 1332
e5b5ae50
LP
1333 j->generation = 0;
1334 j->marker = NULL;
1335 j->matters_to_anchor = false;
9e2f7c11 1336 j->override = override;
60918275 1337
034c6ed7
LP
1338 LIST_PREPEND(Job, transaction, f, j);
1339
e364ad06 1340 if (hashmap_replace(m->transaction_jobs, unit, f) < 0) {
034c6ed7
LP
1341 job_free(j);
1342 return NULL;
1343 }
1344
e5b5ae50
LP
1345 if (is_new)
1346 *is_new = true;
60918275 1347
9e2f7c11 1348 log_debug("Added job %s/%s to transaction.", unit->meta.id, job_type_to_string(type));
23a177ef 1349
e5b5ae50
LP
1350 return j;
1351}
11dd41ce 1352
23a177ef 1353void manager_transaction_unlink_job(Manager *m, Job *j, bool delete_dependencies) {
e5b5ae50
LP
1354 assert(m);
1355 assert(j);
11dd41ce 1356
e5b5ae50
LP
1357 if (j->transaction_prev)
1358 j->transaction_prev->transaction_next = j->transaction_next;
1359 else if (j->transaction_next)
87f0e418 1360 hashmap_replace(m->transaction_jobs, j->unit, j->transaction_next);
e5b5ae50 1361 else
87f0e418 1362 hashmap_remove_value(m->transaction_jobs, j->unit, j);
e5b5ae50
LP
1363
1364 if (j->transaction_next)
1365 j->transaction_next->transaction_prev = j->transaction_prev;
1366
1367 j->transaction_prev = j->transaction_next = NULL;
1368
1369 while (j->subject_list)
1370 job_dependency_free(j->subject_list);
1e198baf
LP
1371
1372 while (j->object_list) {
1373 Job *other = j->object_list->matters ? j->object_list->subject : NULL;
1374
e5b5ae50 1375 job_dependency_free(j->object_list);
1e198baf 1376
23a177ef 1377 if (other && delete_dependencies) {
2e81c8a5 1378 log_debug("Deleting job %s/%s as dependency of job %s/%s",
9e2f7c11
LP
1379 other->unit->meta.id, job_type_to_string(other->type),
1380 j->unit->meta.id, job_type_to_string(j->type));
23a177ef 1381 transaction_delete_job(m, other, delete_dependencies);
1e198baf
LP
1382 }
1383 }
e5b5ae50
LP
1384}
1385
9e2f7c11
LP
1386static int transaction_add_job_and_dependencies(
1387 Manager *m,
1388 JobType type,
1389 Unit *unit,
1390 Job *by,
1391 bool matters,
1392 bool override,
69dd2852 1393 bool conflicts,
398ef8ba 1394 DBusError *e,
9e2f7c11 1395 Job **_ret) {
e5b5ae50 1396 Job *ret;
034c6ed7 1397 Iterator i;
87f0e418 1398 Unit *dep;
e5b5ae50
LP
1399 int r;
1400 bool is_new;
1401
1402 assert(m);
1403 assert(type < _JOB_TYPE_MAX);
87f0e418 1404 assert(unit);
e5b5ae50 1405
00dc5d76
LP
1406 if (unit->meta.load_state != UNIT_LOADED &&
1407 unit->meta.load_state != UNIT_ERROR &&
6daf4f90 1408 unit->meta.load_state != UNIT_MASKED) {
8821a00f
LP
1409 dbus_set_error(e, BUS_ERROR_LOAD_FAILED, "Unit %s is not loaded properly.", unit->meta.id);
1410 return -EINVAL;
1411 }
1412
fdf20a31 1413 if (type != JOB_STOP && unit->meta.load_state == UNIT_ERROR) {
00dc5d76
LP
1414 dbus_set_error(e, BUS_ERROR_LOAD_FAILED,
1415 "Unit %s failed to load: %s. "
1416 "You might find more information in the system logs.",
8821a00f
LP
1417 unit->meta.id,
1418 strerror(-unit->meta.load_error));
21b293e8 1419 return -EINVAL;
398ef8ba 1420 }
21b293e8 1421
6daf4f90
LP
1422 if (type != JOB_STOP && unit->meta.load_state == UNIT_MASKED) {
1423 dbus_set_error(e, BUS_ERROR_MASKED, "Unit %s is masked.", unit->meta.id);
00dc5d76
LP
1424 return -EINVAL;
1425 }
1426
398ef8ba
LP
1427 if (!unit_job_is_applicable(unit, type)) {
1428 dbus_set_error(e, BUS_ERROR_JOB_TYPE_NOT_APPLICABLE, "Job type %s is not applicable for unit %s.", job_type_to_string(type), unit->meta.id);
cd2dbd7d 1429 return -EBADR;
398ef8ba 1430 }
cd2dbd7d 1431
e5b5ae50 1432 /* First add the job. */
9e2f7c11 1433 if (!(ret = transaction_add_one_job(m, type, unit, override, &is_new)))
e5b5ae50
LP
1434 return -ENOMEM;
1435
1436 /* Then, add a link to the job. */
69dd2852 1437 if (!job_dependency_new(by, ret, matters, conflicts))
e5b5ae50
LP
1438 return -ENOMEM;
1439
1440 if (is_new) {
1441 /* Finally, recursively add in all dependencies. */
1442 if (type == JOB_START || type == JOB_RELOAD_OR_START) {
87f0e418 1443 SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_REQUIRES], i)
69dd2852 1444 if ((r = transaction_add_job_and_dependencies(m, JOB_START, dep, ret, true, override, false, e, NULL)) < 0 && r != -EBADR)
e5b5ae50 1445 goto fail;
9e2f7c11
LP
1446
1447 SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_REQUIRES_OVERRIDABLE], i)
69dd2852 1448 if ((r = transaction_add_job_and_dependencies(m, JOB_START, dep, ret, !override, override, false, e, NULL)) < 0 && r != -EBADR) {
65e92d67 1449 log_warning("Cannot add dependency job for unit %s, ignoring: %s", dep->meta.id, bus_error(e, r));
60dc72b5
LP
1450
1451 if (e)
1452 dbus_error_free(e);
65e92d67 1453 }
9e2f7c11 1454
87f0e418 1455 SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_WANTS], i)
69dd2852 1456 if ((r = transaction_add_job_and_dependencies(m, JOB_START, dep, ret, false, false, false, e, NULL)) < 0) {
65e92d67 1457 log_warning("Cannot add dependency job for unit %s, ignoring: %s", dep->meta.id, bus_error(e, r));
60dc72b5
LP
1458
1459 if (e)
1460 dbus_error_free(e);
65e92d67 1461 }
9e2f7c11 1462
87f0e418 1463 SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_REQUISITE], i)
69dd2852 1464 if ((r = transaction_add_job_and_dependencies(m, JOB_VERIFY_ACTIVE, dep, ret, true, override, false, e, NULL)) < 0 && r != -EBADR)
e5b5ae50 1465 goto fail;
9e2f7c11
LP
1466
1467 SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_REQUISITE_OVERRIDABLE], i)
69dd2852 1468 if ((r = transaction_add_job_and_dependencies(m, JOB_VERIFY_ACTIVE, dep, ret, !override, override, false, e, NULL)) < 0 && r != -EBADR) {
65e92d67 1469 log_warning("Cannot add dependency job for unit %s, ignoring: %s", dep->meta.id, bus_error(e, r));
60dc72b5
LP
1470
1471 if (e)
1472 dbus_error_free(e);
65e92d67 1473 }
9e2f7c11 1474
87f0e418 1475 SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_CONFLICTS], i)
69dd2852
LP
1476 if ((r = transaction_add_job_and_dependencies(m, JOB_STOP, dep, ret, true, override, true, e, NULL)) < 0 && r != -EBADR)
1477 goto fail;
1478
1479 SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_CONFLICTED_BY], i)
1480 if ((r = transaction_add_job_and_dependencies(m, JOB_STOP, dep, ret, true, override, false, e, NULL)) < 0 && r != -EBADR)
e5b5ae50
LP
1481 goto fail;
1482
1483 } else if (type == JOB_STOP || type == JOB_RESTART || type == JOB_TRY_RESTART) {
1484
87f0e418 1485 SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_REQUIRED_BY], i)
69dd2852 1486 if ((r = transaction_add_job_and_dependencies(m, type, dep, ret, true, override, false, e, NULL)) < 0 && r != -EBADR)
e5b5ae50
LP
1487 goto fail;
1488 }
1489
1490 /* JOB_VERIFY_STARTED, JOB_RELOAD require no dependency handling */
1491 }
60918275 1492
c0dafa48
LP
1493 if (_ret)
1494 *_ret = ret;
1495
60918275
LP
1496 return 0;
1497
1498fail:
e5b5ae50
LP
1499 return r;
1500}
1501
c497c7a9
LP
1502static int transaction_add_isolate_jobs(Manager *m) {
1503 Iterator i;
1504 Unit *u;
1505 char *k;
1506 int r;
1507
1508 assert(m);
1509
1510 HASHMAP_FOREACH_KEY(u, k, m->units, i) {
1511
1512 /* ignore aliases */
1513 if (u->meta.id != k)
1514 continue;
1515
1516 if (UNIT_VTABLE(u)->no_isolate)
1517 continue;
1518
1519 /* No need to stop inactive jobs */
fdf20a31 1520 if (UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(u)))
c497c7a9
LP
1521 continue;
1522
1523 /* Is there already something listed for this? */
1524 if (hashmap_get(m->transaction_jobs, u))
1525 continue;
1526
69dd2852 1527 if ((r = transaction_add_job_and_dependencies(m, JOB_STOP, u, NULL, true, false, false, NULL, NULL)) < 0)
c497c7a9
LP
1528 log_warning("Cannot add isolate job for unit %s, ignoring: %s", u->meta.id, strerror(-r));
1529 }
1530
1531 return 0;
1532}
1533
398ef8ba 1534int manager_add_job(Manager *m, JobType type, Unit *unit, JobMode mode, bool override, DBusError *e, Job **_ret) {
e5b5ae50
LP
1535 int r;
1536 Job *ret;
1537
1538 assert(m);
1539 assert(type < _JOB_TYPE_MAX);
87f0e418 1540 assert(unit);
e5b5ae50 1541 assert(mode < _JOB_MODE_MAX);
60918275 1542
398ef8ba
LP
1543 if (mode == JOB_ISOLATE && type != JOB_START) {
1544 dbus_set_error(e, BUS_ERROR_INVALID_JOB_MODE, "Isolate is only valid for start.");
c497c7a9 1545 return -EINVAL;
398ef8ba 1546 }
c497c7a9 1547
2528a7a6
LP
1548 if (mode == JOB_ISOLATE && !unit->meta.allow_isolate) {
1549 dbus_set_error(e, BUS_ERROR_NO_ISOLATION, "Operation refused, unit may not be isolated.");
1550 return -EPERM;
1551 }
1552
e43ac878 1553 log_debug("Trying to enqueue job %s/%s/%s", unit->meta.id, job_type_to_string(type), job_mode_to_string(mode));
9f04bd52 1554
69dd2852 1555 if ((r = transaction_add_job_and_dependencies(m, type, unit, NULL, true, override, false, e, &ret)) < 0) {
11dd41ce 1556 transaction_abort(m);
e5b5ae50
LP
1557 return r;
1558 }
11dd41ce 1559
c497c7a9
LP
1560 if (mode == JOB_ISOLATE)
1561 if ((r = transaction_add_isolate_jobs(m)) < 0) {
1562 transaction_abort(m);
1563 return r;
1564 }
1565
398ef8ba 1566 if ((r = transaction_activate(m, mode, e)) < 0)
e5b5ae50
LP
1567 return r;
1568
9e2f7c11 1569 log_debug("Enqueued job %s/%s as %u", unit->meta.id, job_type_to_string(type), (unsigned) ret->id);
f50e0a01 1570
e5b5ae50
LP
1571 if (_ret)
1572 *_ret = ret;
60918275 1573
e5b5ae50
LP
1574 return 0;
1575}
60918275 1576
398ef8ba 1577int manager_add_job_by_name(Manager *m, JobType type, const char *name, JobMode mode, bool override, DBusError *e, Job **_ret) {
28247076
LP
1578 Unit *unit;
1579 int r;
1580
1581 assert(m);
1582 assert(type < _JOB_TYPE_MAX);
1583 assert(name);
1584 assert(mode < _JOB_MODE_MAX);
1585
398ef8ba 1586 if ((r = manager_load_unit(m, name, NULL, NULL, &unit)) < 0)
28247076
LP
1587 return r;
1588
398ef8ba 1589 return manager_add_job(m, type, unit, mode, override, e, _ret);
28247076
LP
1590}
1591
60918275
LP
1592Job *manager_get_job(Manager *m, uint32_t id) {
1593 assert(m);
1594
1595 return hashmap_get(m->jobs, UINT32_TO_PTR(id));
1596}
1597
87f0e418 1598Unit *manager_get_unit(Manager *m, const char *name) {
60918275
LP
1599 assert(m);
1600 assert(name);
1601
87f0e418 1602 return hashmap_get(m->units, name);
60918275
LP
1603}
1604
c1e1601e 1605unsigned manager_dispatch_load_queue(Manager *m) {
60918275 1606 Meta *meta;
c1e1601e 1607 unsigned n = 0;
60918275
LP
1608
1609 assert(m);
1610
223dabab
LP
1611 /* Make sure we are not run recursively */
1612 if (m->dispatching_load_queue)
c1e1601e 1613 return 0;
223dabab
LP
1614
1615 m->dispatching_load_queue = true;
1616
87f0e418 1617 /* Dispatches the load queue. Takes a unit from the queue and
60918275
LP
1618 * tries to load its data until the queue is empty */
1619
1620 while ((meta = m->load_queue)) {
034c6ed7
LP
1621 assert(meta->in_load_queue);
1622
399ab2b1 1623 unit_load((Unit*) meta);
c1e1601e 1624 n++;
60918275
LP
1625 }
1626
223dabab 1627 m->dispatching_load_queue = false;
c1e1601e 1628 return n;
60918275
LP
1629}
1630
398ef8ba 1631int manager_load_unit_prepare(Manager *m, const char *name, const char *path, DBusError *e, Unit **_ret) {
87f0e418 1632 Unit *ret;
60918275
LP
1633 int r;
1634
1635 assert(m);
9e2f7c11 1636 assert(name || path);
60918275 1637
db06e3b6
LP
1638 /* This will prepare the unit for loading, but not actually
1639 * load anything from disk. */
0301abf4 1640
398ef8ba
LP
1641 if (path && !is_path(path)) {
1642 dbus_set_error(e, BUS_ERROR_INVALID_PATH, "Path %s is not absolute.", path);
9e2f7c11 1643 return -EINVAL;
398ef8ba 1644 }
9e2f7c11
LP
1645
1646 if (!name)
1647 name = file_name_from_path(path);
1648
b9c0d441 1649 if (!unit_name_is_valid(name, false)) {
398ef8ba 1650 dbus_set_error(e, BUS_ERROR_INVALID_NAME, "Unit name %s is not valid.", name);
9e2f7c11 1651 return -EINVAL;
398ef8ba 1652 }
60918275 1653
87f0e418 1654 if ((ret = manager_get_unit(m, name))) {
034c6ed7 1655 *_ret = ret;
413d6313 1656 return 1;
034c6ed7 1657 }
60918275 1658
87f0e418 1659 if (!(ret = unit_new(m)))
60918275
LP
1660 return -ENOMEM;
1661
9e2f7c11 1662 if (path)
6be1e7d5 1663 if (!(ret->meta.fragment_path = strdup(path))) {
0301abf4
LP
1664 unit_free(ret);
1665 return -ENOMEM;
1666 }
0301abf4 1667
87f0e418
LP
1668 if ((r = unit_add_name(ret, name)) < 0) {
1669 unit_free(ret);
1ffba6fe 1670 return r;
60918275
LP
1671 }
1672
87f0e418 1673 unit_add_to_load_queue(ret);
c1e1601e 1674 unit_add_to_dbus_queue(ret);
949061f0 1675 unit_add_to_gc_queue(ret);
c1e1601e 1676
db06e3b6
LP
1677 if (_ret)
1678 *_ret = ret;
1679
1680 return 0;
1681}
1682
398ef8ba 1683int manager_load_unit(Manager *m, const char *name, const char *path, DBusError *e, Unit **_ret) {
db06e3b6
LP
1684 int r;
1685
1686 assert(m);
1687
1688 /* This will load the service information files, but not actually
1689 * start any services or anything. */
1690
398ef8ba 1691 if ((r = manager_load_unit_prepare(m, name, path, e, _ret)) != 0)
db06e3b6
LP
1692 return r;
1693
f50e0a01 1694 manager_dispatch_load_queue(m);
60918275 1695
9e2f7c11 1696 if (_ret)
413d6313 1697 *_ret = unit_follow_merge(*_ret);
9e2f7c11 1698
60918275
LP
1699 return 0;
1700}
a66d02c3 1701
cea8e32e 1702void manager_dump_jobs(Manager *s, FILE *f, const char *prefix) {
034c6ed7 1703 Iterator i;
a66d02c3
LP
1704 Job *j;
1705
1706 assert(s);
1707 assert(f);
1708
034c6ed7 1709 HASHMAP_FOREACH(j, s->jobs, i)
cea8e32e 1710 job_dump(j, f, prefix);
a66d02c3
LP
1711}
1712
87f0e418 1713void manager_dump_units(Manager *s, FILE *f, const char *prefix) {
034c6ed7 1714 Iterator i;
87f0e418 1715 Unit *u;
11dd41ce 1716 const char *t;
a66d02c3
LP
1717
1718 assert(s);
1719 assert(f);
1720
87f0e418 1721 HASHMAP_FOREACH_KEY(u, t, s->units, i)
9e2f7c11 1722 if (u->meta.id == t)
87f0e418 1723 unit_dump(u, f, prefix);
a66d02c3 1724}
7fad411c
LP
1725
1726void manager_clear_jobs(Manager *m) {
1727 Job *j;
1728
1729 assert(m);
1730
1731 transaction_abort(m);
1732
1733 while ((j = hashmap_first(m->jobs)))
1734 job_free(j);
1735}
83c60c9f 1736
c1e1601e 1737unsigned manager_dispatch_run_queue(Manager *m) {
83c60c9f 1738 Job *j;
c1e1601e 1739 unsigned n = 0;
83c60c9f 1740
034c6ed7 1741 if (m->dispatching_run_queue)
c1e1601e 1742 return 0;
034c6ed7
LP
1743
1744 m->dispatching_run_queue = true;
9152c765 1745
034c6ed7 1746 while ((j = m->run_queue)) {
ac1135be 1747 assert(j->installed);
034c6ed7
LP
1748 assert(j->in_run_queue);
1749
1750 job_run_and_invalidate(j);
c1e1601e 1751 n++;
9152c765 1752 }
034c6ed7
LP
1753
1754 m->dispatching_run_queue = false;
c1e1601e
LP
1755 return n;
1756}
1757
1758unsigned manager_dispatch_dbus_queue(Manager *m) {
1759 Job *j;
1760 Meta *meta;
1761 unsigned n = 0;
1762
1763 assert(m);
1764
1765 if (m->dispatching_dbus_queue)
1766 return 0;
1767
1768 m->dispatching_dbus_queue = true;
1769
1770 while ((meta = m->dbus_unit_queue)) {
23a177ef 1771 assert(meta->in_dbus_queue);
c1e1601e 1772
399ab2b1 1773 bus_unit_send_change_signal((Unit*) meta);
c1e1601e
LP
1774 n++;
1775 }
1776
1777 while ((j = m->dbus_job_queue)) {
1778 assert(j->in_dbus_queue);
1779
1780 bus_job_send_change_signal(j);
1781 n++;
1782 }
1783
1784 m->dispatching_dbus_queue = false;
1785 return n;
9152c765
LP
1786}
1787
8c47c732
LP
1788static int manager_process_notify_fd(Manager *m) {
1789 ssize_t n;
1790
1791 assert(m);
1792
1793 for (;;) {
1794 char buf[4096];
1795 struct msghdr msghdr;
1796 struct iovec iovec;
1797 struct ucred *ucred;
1798 union {
1799 struct cmsghdr cmsghdr;
1800 uint8_t buf[CMSG_SPACE(sizeof(struct ucred))];
1801 } control;
1802 Unit *u;
1803 char **tags;
1804
1805 zero(iovec);
1806 iovec.iov_base = buf;
1807 iovec.iov_len = sizeof(buf)-1;
1808
1809 zero(control);
1810 zero(msghdr);
1811 msghdr.msg_iov = &iovec;
1812 msghdr.msg_iovlen = 1;
1813 msghdr.msg_control = &control;
1814 msghdr.msg_controllen = sizeof(control);
1815
1816 if ((n = recvmsg(m->notify_watch.fd, &msghdr, MSG_DONTWAIT)) <= 0) {
1817 if (n >= 0)
1818 return -EIO;
1819
f6144808 1820 if (errno == EAGAIN || errno == EINTR)
8c47c732
LP
1821 break;
1822
1823 return -errno;
1824 }
1825
1826 if (msghdr.msg_controllen < CMSG_LEN(sizeof(struct ucred)) ||
1827 control.cmsghdr.cmsg_level != SOL_SOCKET ||
1828 control.cmsghdr.cmsg_type != SCM_CREDENTIALS ||
1829 control.cmsghdr.cmsg_len != CMSG_LEN(sizeof(struct ucred))) {
1830 log_warning("Received notify message without credentials. Ignoring.");
1831 continue;
1832 }
1833
1834 ucred = (struct ucred*) CMSG_DATA(&control.cmsghdr);
1835
c6c18be3 1836 if (!(u = hashmap_get(m->watch_pids, LONG_TO_PTR(ucred->pid))))
8c47c732
LP
1837 if (!(u = cgroup_unit_by_pid(m, ucred->pid))) {
1838 log_warning("Cannot find unit for notify message of PID %lu.", (unsigned long) ucred->pid);
1839 continue;
1840 }
1841
8c40acf7
LP
1842 assert((size_t) n < sizeof(buf));
1843 buf[n] = 0;
8c47c732
LP
1844 if (!(tags = strv_split(buf, "\n\r")))
1845 return -ENOMEM;
1846
1847 log_debug("Got notification message for unit %s", u->meta.id);
1848
1849 if (UNIT_VTABLE(u)->notify_message)
c952c6ec 1850 UNIT_VTABLE(u)->notify_message(u, ucred->pid, tags);
8c47c732
LP
1851
1852 strv_free(tags);
1853 }
1854
1855 return 0;
1856}
1857
034c6ed7 1858static int manager_dispatch_sigchld(Manager *m) {
9152c765
LP
1859 assert(m);
1860
1861 for (;;) {
1862 siginfo_t si;
87f0e418 1863 Unit *u;
8c47c732 1864 int r;
9152c765
LP
1865
1866 zero(si);
4112df16
LP
1867
1868 /* First we call waitd() for a PID and do not reap the
1869 * zombie. That way we can still access /proc/$PID for
1870 * it while it is a zombie. */
1871 if (waitid(P_ALL, 0, &si, WEXITED|WNOHANG|WNOWAIT) < 0) {
acbb0225
LP
1872
1873 if (errno == ECHILD)
1874 break;
1875
4112df16
LP
1876 if (errno == EINTR)
1877 continue;
1878
9152c765 1879 return -errno;
acbb0225 1880 }
9152c765 1881
4112df16 1882 if (si.si_pid <= 0)
9152c765
LP
1883 break;
1884
15d5d9d9 1885 if (si.si_code == CLD_EXITED || si.si_code == CLD_KILLED || si.si_code == CLD_DUMPED) {
4112df16
LP
1886 char *name = NULL;
1887
1888 get_process_name(si.si_pid, &name);
bb00e604 1889 log_debug("Got SIGCHLD for process %lu (%s)", (unsigned long) si.si_pid, strna(name));
4112df16
LP
1890 free(name);
1891 }
1892
8c47c732
LP
1893 /* Let's flush any message the dying child might still
1894 * have queued for us. This ensures that the process
1895 * still exists in /proc so that we can figure out
1896 * which cgroup and hence unit it belongs to. */
1897 if ((r = manager_process_notify_fd(m)) < 0)
1898 return r;
1899
1900 /* And now figure out the unit this belongs to */
c6c18be3 1901 if (!(u = hashmap_get(m->watch_pids, LONG_TO_PTR(si.si_pid))))
8c47c732
LP
1902 u = cgroup_unit_by_pid(m, si.si_pid);
1903
4112df16
LP
1904 /* And now, we actually reap the zombie. */
1905 if (waitid(P_PID, si.si_pid, &si, WEXITED) < 0) {
1906 if (errno == EINTR)
1907 continue;
1908
1909 return -errno;
1910 }
1911
034c6ed7
LP
1912 if (si.si_code != CLD_EXITED && si.si_code != CLD_KILLED && si.si_code != CLD_DUMPED)
1913 continue;
1914
bb00e604
LP
1915 log_debug("Child %lu died (code=%s, status=%i/%s)",
1916 (long unsigned) si.si_pid,
4112df16
LP
1917 sigchld_code_to_string(si.si_code),
1918 si.si_status,
d06dacd0
LP
1919 strna(si.si_code == CLD_EXITED
1920 ? exit_status_to_string(si.si_status, EXIT_STATUS_FULL)
1921 : signal_to_string(si.si_status)));
acbb0225 1922
8c47c732 1923 if (!u)
9152c765
LP
1924 continue;
1925
c6c18be3 1926 log_debug("Child %lu belongs to %s", (long unsigned) si.si_pid, u->meta.id);
6c1a0478 1927
c6c18be3 1928 hashmap_remove(m->watch_pids, LONG_TO_PTR(si.si_pid));
87f0e418 1929 UNIT_VTABLE(u)->sigchld_event(u, si.si_pid, si.si_code, si.si_status);
9152c765
LP
1930 }
1931
1932 return 0;
1933}
1934
7d793605 1935static int manager_start_target(Manager *m, const char *name, JobMode mode) {
28247076 1936 int r;
398ef8ba
LP
1937 DBusError error;
1938
1939 dbus_error_init(&error);
1940
1e001f52
LP
1941 log_info("Activating special unit %s", name);
1942
398ef8ba
LP
1943 if ((r = manager_add_job_by_name(m, JOB_START, name, mode, true, &error, NULL)) < 0)
1944 log_error("Failed to enqueue %s job: %s", name, bus_error(&error, r));
28247076 1945
398ef8ba 1946 dbus_error_free(&error);
a1b256b0
LP
1947
1948 return r;
28247076
LP
1949}
1950
a16e1123 1951static int manager_process_signal_fd(Manager *m) {
9152c765
LP
1952 ssize_t n;
1953 struct signalfd_siginfo sfsi;
1954 bool sigchld = false;
1955
1956 assert(m);
1957
1958 for (;;) {
acbb0225 1959 if ((n = read(m->signal_watch.fd, &sfsi, sizeof(sfsi))) != sizeof(sfsi)) {
9152c765
LP
1960
1961 if (n >= 0)
1962 return -EIO;
1963
63090775 1964 if (errno == EINTR || errno == EAGAIN)
acbb0225 1965 break;
9152c765
LP
1966
1967 return -errno;
1968 }
1969
1e001f52
LP
1970 log_debug("Received SIG%s", strna(signal_to_string(sfsi.ssi_signo)));
1971
b9cd2ec1
LP
1972 switch (sfsi.ssi_signo) {
1973
4112df16 1974 case SIGCHLD:
9152c765 1975 sigchld = true;
b9cd2ec1
LP
1976 break;
1977
6632c602 1978 case SIGTERM:
a3d4e06d 1979 if (m->running_as == MANAGER_SYSTEM) {
db06e3b6
LP
1980 /* This is for compatibility with the
1981 * original sysvinit */
e11dc4a2 1982 m->exit_code = MANAGER_REEXECUTE;
a1b256b0
LP
1983 break;
1984 }
84e9af1e 1985
a1b256b0 1986 /* Fall through */
e11dc4a2
LP
1987
1988 case SIGINT:
a3d4e06d 1989 if (m->running_as == MANAGER_SYSTEM) {
7d793605 1990 manager_start_target(m, SPECIAL_CTRL_ALT_DEL_TARGET, JOB_REPLACE);
84e9af1e
LP
1991 break;
1992 }
1993
a1b256b0 1994 /* Run the exit target if there is one, if not, just exit. */
0003d1ab 1995 if (manager_start_target(m, SPECIAL_EXIT_TARGET, JOB_REPLACE) < 0) {
a1b256b0
LP
1996 m->exit_code = MANAGER_EXIT;
1997 return 0;
1998 }
1999
2000 break;
84e9af1e 2001
28247076 2002 case SIGWINCH:
a3d4e06d 2003 if (m->running_as == MANAGER_SYSTEM)
7d793605 2004 manager_start_target(m, SPECIAL_KBREQUEST_TARGET, JOB_REPLACE);
84e9af1e 2005
28247076
LP
2006 /* This is a nop on non-init */
2007 break;
84e9af1e 2008
28247076 2009 case SIGPWR:
a3d4e06d 2010 if (m->running_as == MANAGER_SYSTEM)
7d793605 2011 manager_start_target(m, SPECIAL_SIGPWR_TARGET, JOB_REPLACE);
84e9af1e 2012
28247076 2013 /* This is a nop on non-init */
84e9af1e 2014 break;
6632c602 2015
1005d14f 2016 case SIGUSR1: {
57ee42ce
LP
2017 Unit *u;
2018
2019 u = manager_get_unit(m, SPECIAL_DBUS_SERVICE);
2020
2021 if (!u || UNIT_IS_ACTIVE_OR_RELOADING(unit_active_state(u))) {
2022 log_info("Trying to reconnect to bus...");
5e8d1c9a 2023 bus_init(m);
57ee42ce
LP
2024 }
2025
2026 if (!u || !UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(u))) {
2027 log_info("Loading D-Bus service...");
7d793605 2028 manager_start_target(m, SPECIAL_DBUS_SERVICE, JOB_REPLACE);
57ee42ce
LP
2029 }
2030
2031 break;
2032 }
2033
2149e37c
LP
2034 case SIGUSR2: {
2035 FILE *f;
2036 char *dump = NULL;
2037 size_t size;
2038
2039 if (!(f = open_memstream(&dump, &size))) {
2040 log_warning("Failed to allocate memory stream.");
2041 break;
2042 }
2043
2044 manager_dump_units(m, f, "\t");
2045 manager_dump_jobs(m, f, "\t");
2046
2047 if (ferror(f)) {
2048 fclose(f);
2049 free(dump);
2050 log_warning("Failed to write status stream");
2051 break;
2052 }
2053
2054 fclose(f);
2055 log_dump(LOG_INFO, dump);
2056 free(dump);
2057
1005d14f 2058 break;
2149e37c 2059 }
1005d14f 2060
a16e1123
LP
2061 case SIGHUP:
2062 m->exit_code = MANAGER_RELOAD;
2063 break;
2064
7d793605 2065 default: {
0003d1ab
LP
2066 /* Starting SIGRTMIN+0 */
2067 static const char * const target_table[] = {
7d793605
LP
2068 [0] = SPECIAL_DEFAULT_TARGET,
2069 [1] = SPECIAL_RESCUE_TARGET,
f057408c 2070 [2] = SPECIAL_EMERGENCY_TARGET,
7d793605
LP
2071 [3] = SPECIAL_HALT_TARGET,
2072 [4] = SPECIAL_POWEROFF_TARGET,
0003d1ab
LP
2073 [5] = SPECIAL_REBOOT_TARGET,
2074 [6] = SPECIAL_KEXEC_TARGET
2075 };
2076
2077 /* Starting SIGRTMIN+13, so that target halt and system halt are 10 apart */
2078 static const ManagerExitCode code_table[] = {
2079 [0] = MANAGER_HALT,
2080 [1] = MANAGER_POWEROFF,
2081 [2] = MANAGER_REBOOT,
2082 [3] = MANAGER_KEXEC
7d793605
LP
2083 };
2084
2085 if ((int) sfsi.ssi_signo >= SIGRTMIN+0 &&
0003d1ab
LP
2086 (int) sfsi.ssi_signo < SIGRTMIN+(int) ELEMENTSOF(target_table)) {
2087 manager_start_target(m, target_table[sfsi.ssi_signo - SIGRTMIN],
e6b3f00f 2088 (sfsi.ssi_signo == 1 || sfsi.ssi_signo == 2) ? JOB_ISOLATE : JOB_REPLACE);
7d793605
LP
2089 break;
2090 }
2091
0003d1ab
LP
2092 if ((int) sfsi.ssi_signo >= SIGRTMIN+13 &&
2093 (int) sfsi.ssi_signo < SIGRTMIN+13+(int) ELEMENTSOF(code_table)) {
2094 m->exit_code = code_table[sfsi.ssi_signo - SIGRTMIN - 13];
2095 break;
2096 }
2097
1e001f52 2098 log_warning("Got unhandled signal <%s>.", strna(signal_to_string(sfsi.ssi_signo)));
b9cd2ec1 2099 }
7d793605 2100 }
9152c765
LP
2101 }
2102
2103 if (sigchld)
034c6ed7
LP
2104 return manager_dispatch_sigchld(m);
2105
2106 return 0;
2107}
2108
a16e1123 2109static int process_event(Manager *m, struct epoll_event *ev) {
034c6ed7 2110 int r;
acbb0225 2111 Watch *w;
034c6ed7
LP
2112
2113 assert(m);
2114 assert(ev);
2115
acbb0225 2116 assert(w = ev->data.ptr);
034c6ed7 2117
acbb0225 2118 switch (w->type) {
034c6ed7 2119
ef734fd6 2120 case WATCH_SIGNAL:
034c6ed7 2121
acbb0225 2122 /* An incoming signal? */
f94ea366 2123 if (ev->events != EPOLLIN)
acbb0225 2124 return -EINVAL;
034c6ed7 2125
a16e1123 2126 if ((r = manager_process_signal_fd(m)) < 0)
acbb0225 2127 return r;
034c6ed7 2128
acbb0225 2129 break;
034c6ed7 2130
8c47c732
LP
2131 case WATCH_NOTIFY:
2132
2133 /* An incoming daemon notification event? */
2134 if (ev->events != EPOLLIN)
2135 return -EINVAL;
2136
2137 if ((r = manager_process_notify_fd(m)) < 0)
2138 return r;
2139
2140 break;
2141
acbb0225 2142 case WATCH_FD:
034c6ed7 2143
acbb0225 2144 /* Some fd event, to be dispatched to the units */
ea430986 2145 UNIT_VTABLE(w->data.unit)->fd_event(w->data.unit, w->fd, ev->events, w);
acbb0225 2146 break;
034c6ed7 2147
faf919f1
LP
2148 case WATCH_UNIT_TIMER:
2149 case WATCH_JOB_TIMER: {
acbb0225
LP
2150 uint64_t v;
2151 ssize_t k;
034c6ed7 2152
acbb0225 2153 /* Some timer event, to be dispatched to the units */
be888ebb 2154 if ((k = read(w->fd, &v, sizeof(v))) != sizeof(v)) {
034c6ed7 2155
acbb0225
LP
2156 if (k < 0 && (errno == EINTR || errno == EAGAIN))
2157 break;
034c6ed7 2158
acbb0225 2159 return k < 0 ? -errno : -EIO;
034c6ed7
LP
2160 }
2161
faf919f1
LP
2162 if (w->type == WATCH_UNIT_TIMER)
2163 UNIT_VTABLE(w->data.unit)->timer_event(w->data.unit, v, w);
2164 else
2165 job_timer_event(w->data.job, v, w);
acbb0225
LP
2166 break;
2167 }
2168
ef734fd6
LP
2169 case WATCH_MOUNT:
2170 /* Some mount table change, intended for the mount subsystem */
2171 mount_fd_event(m, ev->events);
2172 break;
2173
f94ea366
LP
2174 case WATCH_UDEV:
2175 /* Some notification from udev, intended for the device subsystem */
2176 device_fd_event(m, ev->events);
2177 break;
2178
ea430986
LP
2179 case WATCH_DBUS_WATCH:
2180 bus_watch_event(m, w, ev->events);
2181 break;
2182
2183 case WATCH_DBUS_TIMEOUT:
2184 bus_timeout_event(m, w, ev->events);
2185 break;
2186
acbb0225
LP
2187 default:
2188 assert_not_reached("Unknown epoll event type.");
034c6ed7 2189 }
9152c765
LP
2190
2191 return 0;
2192}
2193
2194int manager_loop(Manager *m) {
2195 int r;
9152c765 2196
ea430986
LP
2197 RATELIMIT_DEFINE(rl, 1*USEC_PER_SEC, 1000);
2198
9152c765 2199 assert(m);
a16e1123 2200 m->exit_code = MANAGER_RUNNING;
9152c765 2201
fe51822e
LP
2202 /* Release the path cache */
2203 set_free_free(m->unit_path_cache);
2204 m->unit_path_cache = NULL;
2205
b0c918b9
LP
2206 manager_check_finished(m);
2207
a4312405
LP
2208 /* There might still be some zombies hanging around from
2209 * before we were exec()'ed. Leat's reap them */
2210 if ((r = manager_dispatch_sigchld(m)) < 0)
2211 return r;
2212
a16e1123 2213 while (m->exit_code == MANAGER_RUNNING) {
957ca890
LP
2214 struct epoll_event event;
2215 int n;
9152c765 2216
ea430986
LP
2217 if (!ratelimit_test(&rl)) {
2218 /* Yay, something is going seriously wrong, pause a little */
2219 log_warning("Looping too fast. Throttling execution a little.");
2220 sleep(1);
2221 }
2222
37a8e683 2223 if (manager_dispatch_load_queue(m) > 0)
23a177ef
LP
2224 continue;
2225
37a8e683 2226 if (manager_dispatch_run_queue(m) > 0)
701cc384
LP
2227 continue;
2228
37a8e683 2229 if (bus_dispatch(m) > 0)
c1e1601e 2230 continue;
034c6ed7 2231
37a8e683 2232 if (manager_dispatch_cleanup_queue(m) > 0)
c1e1601e
LP
2233 continue;
2234
37a8e683 2235 if (manager_dispatch_gc_queue(m) > 0)
c1e1601e
LP
2236 continue;
2237
2238 if (manager_dispatch_dbus_queue(m) > 0)
ea430986 2239 continue;
ea430986 2240
e04aad61
LP
2241 if (swap_dispatch_reload(m) > 0)
2242 continue;
2243
957ca890 2244 if ((n = epoll_wait(m->epoll_fd, &event, 1, -1)) < 0) {
9152c765 2245
6089f4a9 2246 if (errno == EINTR)
9152c765
LP
2247 continue;
2248
2249 return -errno;
2250 }
2251
957ca890 2252 assert(n == 1);
b9cd2ec1 2253
a16e1123 2254 if ((r = process_event(m, &event)) < 0)
957ca890 2255 return r;
a16e1123 2256 }
957ca890 2257
a16e1123 2258 return m->exit_code;
83c60c9f 2259}
ea430986
LP
2260
2261int manager_get_unit_from_dbus_path(Manager *m, const char *s, Unit **_u) {
2262 char *n;
2263 Unit *u;
2264
2265 assert(m);
2266 assert(s);
2267 assert(_u);
2268
2269 if (!startswith(s, "/org/freedesktop/systemd1/unit/"))
2270 return -EINVAL;
2271
2272 if (!(n = bus_path_unescape(s+31)))
2273 return -ENOMEM;
2274
2275 u = manager_get_unit(m, n);
2276 free(n);
2277
2278 if (!u)
2279 return -ENOENT;
2280
2281 *_u = u;
2282
2283 return 0;
2284}
86fbf370
LP
2285
2286int manager_get_job_from_dbus_path(Manager *m, const char *s, Job **_j) {
2287 Job *j;
2288 unsigned id;
2289 int r;
2290
2291 assert(m);
2292 assert(s);
2293 assert(_j);
2294
2295 if (!startswith(s, "/org/freedesktop/systemd1/job/"))
2296 return -EINVAL;
2297
2298 if ((r = safe_atou(s + 30, &id)) < 0)
2299 return r;
2300
2301 if (!(j = manager_get_job(m, id)))
2302 return -ENOENT;
2303
2304 *_j = j;
2305
2306 return 0;
2307}
dfcd764e 2308
4927fcae 2309void manager_send_unit_audit(Manager *m, Unit *u, int type, bool success) {
e537352b 2310
4927fcae
LP
2311#ifdef HAVE_AUDIT
2312 char *p;
e537352b 2313
4927fcae 2314 if (m->audit_fd < 0)
e537352b
LP
2315 return;
2316
bbd3a7ba
LP
2317 /* Don't generate audit events if the service was already
2318 * started and we're just deserializing */
2319 if (m->n_deserializing > 0)
2320 return;
2321
4927fcae
LP
2322 if (!(p = unit_name_to_prefix_and_instance(u->meta.id))) {
2323 log_error("Failed to allocate unit name for audit message: %s", strerror(ENOMEM));
e537352b
LP
2324 return;
2325 }
2326
4927fcae
LP
2327 if (audit_log_user_comm_message(m->audit_fd, type, "", p, NULL, NULL, NULL, success) < 0)
2328 log_error("Failed to send audit message: %m");
e537352b 2329
4927fcae
LP
2330 free(p);
2331#endif
e537352b 2332
e537352b
LP
2333}
2334
e983b760
LP
2335void manager_send_unit_plymouth(Manager *m, Unit *u) {
2336 int fd = -1;
2337 union sockaddr_union sa;
2338 int n = 0;
2339 char *message = NULL;
2340 ssize_t r;
2341
2342 /* Don't generate plymouth events if the service was already
2343 * started and we're just deserializing */
2344 if (m->n_deserializing > 0)
2345 return;
2346
2347 if (m->running_as != MANAGER_SYSTEM)
2348 return;
2349
2350 if (u->meta.type != UNIT_SERVICE &&
2351 u->meta.type != UNIT_MOUNT &&
2352 u->meta.type != UNIT_SWAP)
2353 return;
2354
2355 /* We set SOCK_NONBLOCK here so that we rather drop the
2356 * message then wait for plymouth */
2357 if ((fd = socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0)) < 0) {
2358 log_error("socket() failed: %m");
2359 return;
2360 }
2361
2362 zero(sa);
2363 sa.sa.sa_family = AF_UNIX;
2364 strncpy(sa.un.sun_path+1, "/ply-boot-protocol", sizeof(sa.un.sun_path)-1);
2365 if (connect(fd, &sa.sa, sizeof(sa.un)) < 0) {
2366
2367 if (errno != EPIPE &&
2368 errno != EAGAIN &&
2369 errno != ENOENT &&
2370 errno != ECONNREFUSED &&
2371 errno != ECONNRESET &&
2372 errno != ECONNABORTED)
2373 log_error("connect() failed: %m");
2374
2375 goto finish;
2376 }
2377
2378 if (asprintf(&message, "U\002%c%s%n", (int) (strlen(u->meta.id) + 1), u->meta.id, &n) < 0) {
2379 log_error("Out of memory");
2380 goto finish;
2381 }
2382
2383 errno = 0;
2384 if ((r = write(fd, message, n + 1)) != n + 1) {
2385
2386 if (errno != EPIPE &&
2387 errno != EAGAIN &&
2388 errno != ENOENT &&
2389 errno != ECONNREFUSED &&
2390 errno != ECONNRESET &&
2391 errno != ECONNABORTED)
2392 log_error("Failed to write Plymouth message: %m");
2393
2394 goto finish;
2395 }
2396
2397finish:
2398 if (fd >= 0)
2399 close_nointr_nofail(fd);
2400
2401 free(message);
2402}
2403
05e343b7
LP
2404void manager_dispatch_bus_name_owner_changed(
2405 Manager *m,
2406 const char *name,
2407 const char* old_owner,
2408 const char *new_owner) {
2409
2410 Unit *u;
2411
2412 assert(m);
2413 assert(name);
2414
2415 if (!(u = hashmap_get(m->watch_bus, name)))
2416 return;
2417
2418 UNIT_VTABLE(u)->bus_name_owner_change(u, name, old_owner, new_owner);
2419}
2420
2421void manager_dispatch_bus_query_pid_done(
2422 Manager *m,
2423 const char *name,
2424 pid_t pid) {
2425
2426 Unit *u;
2427
2428 assert(m);
2429 assert(name);
2430 assert(pid >= 1);
2431
2432 if (!(u = hashmap_get(m->watch_bus, name)))
2433 return;
2434
2435 UNIT_VTABLE(u)->bus_query_pid_done(u, name, pid);
2436}
2437
d8d5ab98 2438int manager_open_serialization(Manager *m, FILE **_f) {
a16e1123
LP
2439 char *path;
2440 mode_t saved_umask;
2441 int fd;
2442 FILE *f;
2443
2444 assert(_f);
2445
d8d5ab98
LP
2446 if (m->running_as == MANAGER_SYSTEM) {
2447 mkdir_p("/dev/.systemd", 0755);
2448
2449 if (asprintf(&path, "/dev/.systemd/dump-%lu-XXXXXX", (unsigned long) getpid()) < 0)
2450 return -ENOMEM;
2451 } else {
2452 if (asprintf(&path, "/tmp/systemd-dump-%lu-XXXXXX", (unsigned long) getpid()) < 0)
2453 return -ENOMEM;
2454 }
a16e1123
LP
2455
2456 saved_umask = umask(0077);
2457 fd = mkostemp(path, O_RDWR|O_CLOEXEC);
2458 umask(saved_umask);
2459
2460 if (fd < 0) {
2461 free(path);
2462 return -errno;
2463 }
2464
2465 unlink(path);
2466
2467 log_debug("Serializing state to %s", path);
2468 free(path);
2469
2470 if (!(f = fdopen(fd, "w+")) < 0)
2471 return -errno;
2472
2473 *_f = f;
2474
2475 return 0;
2476}
2477
2478int manager_serialize(Manager *m, FILE *f, FDSet *fds) {
2479 Iterator i;
2480 Unit *u;
2481 const char *t;
2482 int r;
2483
2484 assert(m);
2485 assert(f);
2486 assert(fds);
2487
10f8e83c
LP
2488 fprintf(f, "startup-timestamp=%llu %llu\n\n",
2489 (unsigned long long) m->startup_timestamp.realtime,
2490 (unsigned long long) m->startup_timestamp.monotonic);
2491
47a483a1
LP
2492 if (dual_timestamp_is_set(&m->finish_timestamp))
2493 fprintf(f, "finish-timestamp=%llu %llu\n\n",
2494 (unsigned long long) m->finish_timestamp.realtime,
2495 (unsigned long long) m->finish_timestamp.monotonic);
2496
a16e1123
LP
2497 HASHMAP_FOREACH_KEY(u, t, m->units, i) {
2498 if (u->meta.id != t)
2499 continue;
2500
2501 if (!unit_can_serialize(u))
2502 continue;
2503
2504 /* Start marker */
2505 fputs(u->meta.id, f);
2506 fputc('\n', f);
2507
2508 if ((r = unit_serialize(u, f, fds)) < 0)
2509 return r;
2510 }
2511
2512 if (ferror(f))
2513 return -EIO;
2514
2515 return 0;
2516}
2517
2518int manager_deserialize(Manager *m, FILE *f, FDSet *fds) {
2519 int r = 0;
2520
2521 assert(m);
2522 assert(f);
2523
2524 log_debug("Deserializing state...");
2525
9f611ad8 2526 m->n_deserializing ++;
82c64bf5 2527
10f8e83c
LP
2528 for (;;) {
2529 char line[1024], *l;
2530
2531 if (!fgets(line, sizeof(line), f)) {
2532 if (feof(f))
2533 r = 0;
2534 else
2535 r = -errno;
2536
2537 goto finish;
2538 }
2539
2540 char_array_0(line);
2541 l = strstrip(line);
2542
2543 if (l[0] == 0)
2544 break;
2545
2546 if (startswith(l, "startup-timestamp=")) {
2547 unsigned long long a, b;
2548
2549 if (sscanf(l+18, "%lli %llu", &a, &b) != 2)
2550 log_debug("Failed to parse startup timestamp value %s", l+18);
2551 else {
2552 m->startup_timestamp.realtime = a;
2553 m->startup_timestamp.monotonic = b;
2554 }
47a483a1
LP
2555 } else if (startswith(l, "finish-timestamp=")) {
2556 unsigned long long a, b;
2557
2558 if (sscanf(l+18, "%lli %llu", &a, &b) != 2)
2559 log_debug("Failed to parse finish timestamp value %s", l+18);
2560 else {
2561 m->finish_timestamp.realtime = a;
2562 m->finish_timestamp.monotonic = b;
2563 }
10f8e83c
LP
2564 } else
2565 log_debug("Unknown serialization item '%s'", l);
2566 }
2567
a16e1123
LP
2568 for (;;) {
2569 Unit *u;
2570 char name[UNIT_NAME_MAX+2];
2571
2572 /* Start marker */
2573 if (!fgets(name, sizeof(name), f)) {
2574 if (feof(f))
10f8e83c
LP
2575 r = 0;
2576 else
2577 r = -errno;
a16e1123 2578
82c64bf5 2579 goto finish;
a16e1123
LP
2580 }
2581
2582 char_array_0(name);
2583
398ef8ba 2584 if ((r = manager_load_unit(m, strstrip(name), NULL, NULL, &u)) < 0)
82c64bf5 2585 goto finish;
a16e1123
LP
2586
2587 if ((r = unit_deserialize(u, f, fds)) < 0)
82c64bf5 2588 goto finish;
a16e1123
LP
2589 }
2590
10f8e83c 2591finish:
82c64bf5
LP
2592 if (ferror(f)) {
2593 r = -EIO;
2594 goto finish;
2595 }
a16e1123 2596
9f611ad8
LP
2597 assert(m->n_deserializing > 0);
2598 m->n_deserializing --;
82c64bf5
LP
2599
2600 return r;
a16e1123
LP
2601}
2602
2603int manager_reload(Manager *m) {
2604 int r, q;
2605 FILE *f;
2606 FDSet *fds;
2607
2608 assert(m);
2609
d8d5ab98 2610 if ((r = manager_open_serialization(m, &f)) < 0)
a16e1123
LP
2611 return r;
2612
2613 if (!(fds = fdset_new())) {
2614 r = -ENOMEM;
2615 goto finish;
2616 }
2617
2618 if ((r = manager_serialize(m, f, fds)) < 0)
2619 goto finish;
2620
2621 if (fseeko(f, 0, SEEK_SET) < 0) {
2622 r = -errno;
2623 goto finish;
2624 }
2625
2626 /* From here on there is no way back. */
2627 manager_clear_jobs_and_units(m);
2628
2ded0c04 2629 /* Find new unit paths */
84e3543e
LP
2630 lookup_paths_free(&m->lookup_paths);
2631 if ((q = lookup_paths_init(&m->lookup_paths, m->running_as)) < 0)
2ded0c04
LP
2632 r = q;
2633
9f611ad8
LP
2634 m->n_deserializing ++;
2635
a16e1123
LP
2636 /* First, enumerate what we can from all config files */
2637 if ((q = manager_enumerate(m)) < 0)
2638 r = q;
2639
2640 /* Second, deserialize our stored data */
2641 if ((q = manager_deserialize(m, f, fds)) < 0)
2642 r = q;
2643
2644 fclose(f);
2645 f = NULL;
2646
2647 /* Third, fire things up! */
2648 if ((q = manager_coldplug(m)) < 0)
2649 r = q;
2650
9f611ad8
LP
2651 assert(m->n_deserializing > 0);
2652 m->n_deserializing ++;
2653
a16e1123
LP
2654finish:
2655 if (f)
2656 fclose(f);
2657
2658 if (fds)
2659 fdset_free(fds);
2660
2661 return r;
2662}
2663
9e58ff9c
LP
2664bool manager_is_booting_or_shutting_down(Manager *m) {
2665 Unit *u;
2666
2667 assert(m);
2668
2669 /* Is the initial job still around? */
2670 if (manager_get_job(m, 1))
2671 return true;
2672
2673 /* Is there a job for the shutdown target? */
2674 if (((u = manager_get_unit(m, SPECIAL_SHUTDOWN_TARGET))))
2675 return !!u->meta.job;
2676
2677 return false;
2678}
2679
fdf20a31 2680void manager_reset_failed(Manager *m) {
5632e374
LP
2681 Unit *u;
2682 Iterator i;
2683
2684 assert(m);
2685
2686 HASHMAP_FOREACH(u, m->units, i)
fdf20a31 2687 unit_reset_failed(u);
5632e374
LP
2688}
2689
b2bb3dbe
LP
2690int manager_set_console(Manager *m, const char *console) {
2691 char *c;
2692
2693 assert(m);
2694
2695 if (!(c = strdup(console)))
2696 return -ENOMEM;
2697
2698 free(m->console);
2699 m->console = c;
2700
2701 log_debug("Using kernel console %s", c);
2702
2703 return 0;
2704}
2705
8f6df3fa
LP
2706bool manager_unit_pending_inactive(Manager *m, const char *name) {
2707 Unit *u;
2708
2709 assert(m);
2710 assert(name);
2711
2712 /* Returns true if the unit is inactive or going down */
8f6df3fa
LP
2713 if (!(u = manager_get_unit(m, name)))
2714 return true;
2715
18ffdfda 2716 return unit_pending_inactive(u);
8f6df3fa
LP
2717}
2718
b0c918b9
LP
2719void manager_check_finished(Manager *m) {
2720 char userspace[FORMAT_TIMESPAN_MAX], kernel[FORMAT_TIMESPAN_MAX], sum[FORMAT_TIMESPAN_MAX];
2721
2722 assert(m);
2723
2724 if (dual_timestamp_is_set(&m->finish_timestamp))
2725 return;
2726
2727 if (hashmap_size(m->jobs) > 0)
2728 return;
2729
2730 dual_timestamp_get(&m->finish_timestamp);
2731
2732 if (m->running_as == MANAGER_SYSTEM)
2733 log_info("Startup finished in %s (kernel) + %s (userspace) = %s.",
2734 format_timespan(kernel, sizeof(kernel),
2735 m->startup_timestamp.monotonic),
2736 format_timespan(userspace, sizeof(userspace),
2737 m->finish_timestamp.monotonic - m->startup_timestamp.monotonic),
2738 format_timespan(sum, sizeof(sum),
2739 m->finish_timestamp.monotonic));
2740 else
2741 log_debug("Startup finished in %s.",
2742 format_timespan(userspace, sizeof(userspace),
2743 m->finish_timestamp.monotonic - m->startup_timestamp.monotonic));
2744
2745}
2746
dfcd764e 2747static const char* const manager_running_as_table[_MANAGER_RUNNING_AS_MAX] = {
dfcd764e 2748 [MANAGER_SYSTEM] = "system",
036643a2 2749 [MANAGER_SESSION] = "session"
dfcd764e
LP
2750};
2751
2752DEFINE_STRING_TABLE_LOOKUP(manager_running_as, ManagerRunningAs);