chiark / gitweb /
manager: parse RD_TIMESTAMP passed from initrd
[elogind.git] / src / manager.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
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
22 #include <assert.h>
23 #include <errno.h>
24 #include <string.h>
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>
31 #include <sys/reboot.h>
32 #include <sys/ioctl.h>
33 #include <linux/kd.h>
34 #include <termios.h>
35 #include <fcntl.h>
36 #include <sys/types.h>
37 #include <sys/stat.h>
38 #include <dirent.h>
39
40 #ifdef HAVE_AUDIT
41 #include <libaudit.h>
42 #endif
43
44 #include "manager.h"
45 #include "hashmap.h"
46 #include "macro.h"
47 #include "strv.h"
48 #include "log.h"
49 #include "util.h"
50 #include "ratelimit.h"
51 #include "cgroup.h"
52 #include "mount-setup.h"
53 #include "unit-name.h"
54 #include "dbus-unit.h"
55 #include "dbus-job.h"
56 #include "missing.h"
57 #include "path-lookup.h"
58 #include "special.h"
59 #include "bus-errors.h"
60 #include "exit-status.h"
61
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 */
66 #define GC_QUEUE_USEC_MAX (10*USEC_PER_SEC)
67
68 /* Where clients shall send notification messages to */
69 #define NOTIFY_SOCKET "/org/freedesktop/systemd1/notify"
70
71 static int manager_setup_notify(Manager *m) {
72         union {
73                 struct sockaddr sa;
74                 struct sockaddr_un un;
75         } sa;
76         struct epoll_event ev;
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
90         if (getpid() != 1)
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
95         if (bind(m->notify_watch.fd, &sa.sa, offsetof(struct sockaddr_un, sun_path) + 1 + strlen(sa.un.sun_path+1)) < 0) {
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
112         if (!(m->notify_socket = strdup(sa.un.sun_path+1)))
113                 return -ENOMEM;
114
115         log_debug("Using notification socket %s", m->notify_socket);
116
117         return 0;
118 }
119
120 static 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
129         if ((fd = open_terminal("/dev/tty0", O_RDWR|O_NOCTTY)) < 0)
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
142 static int manager_setup_signals(Manager *m) {
143         sigset_t mask;
144         struct epoll_event ev;
145         struct sigaction sa;
146
147         assert(m);
148
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
155         assert_se(sigemptyset(&mask) == 0);
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 */
167                         SIGRTMIN+1,  /* systemd: isolate rescue.target */
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 */
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 */
177                         -1);
178         assert_se(sigprocmask(SIG_SETMASK, &mask, NULL) == 0);
179
180         m->signal_watch.type = WATCH_SIGNAL;
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
191         if (m->running_as == MANAGER_SYSTEM)
192                 return enable_special_signals(m);
193
194         return 0;
195 }
196
197 int manager_new(ManagerRunningAs running_as, Manager **_m) {
198         Manager *m;
199         int r = -ENOMEM;
200
201         assert(_m);
202         assert(running_as >= 0);
203         assert(running_as < _MANAGER_RUNNING_AS_MAX);
204
205         if (!(m = new0(Manager, 1)))
206                 return -ENOMEM;
207
208         dual_timestamp_get(&m->startup_timestamp);
209
210         m->running_as = running_as;
211         m->name_data_slot = m->subscribed_data_slot = -1;
212         m->exit_code = _MANAGER_EXIT_CODE_INVALID;
213         m->pin_cgroupfs_fd = -1;
214
215 #ifdef HAVE_AUDIT
216         m->audit_fd = -1;
217 #endif
218
219         m->signal_watch.fd = m->mount_watch.fd = m->udev_watch.fd = m->epoll_fd = m->dev_autofs_fd = m->swap_watch.fd = -1;
220         m->current_job_id = 1; /* start as id #1, so that we can leave #0 around as "null-like" value */
221
222         if (!(m->environment = strv_copy(environ)))
223                 goto fail;
224
225         if (!(m->units = hashmap_new(string_hash_func, string_compare_func)))
226                 goto fail;
227
228         if (!(m->jobs = hashmap_new(trivial_hash_func, trivial_compare_func)))
229                 goto fail;
230
231         if (!(m->transaction_jobs = hashmap_new(trivial_hash_func, trivial_compare_func)))
232                 goto fail;
233
234         if (!(m->watch_pids = hashmap_new(trivial_hash_func, trivial_compare_func)))
235                 goto fail;
236
237         if (!(m->cgroup_bondings = hashmap_new(string_hash_func, string_compare_func)))
238                 goto fail;
239
240         if (!(m->watch_bus = hashmap_new(string_hash_func, string_compare_func)))
241                 goto fail;
242
243         if ((m->epoll_fd = epoll_create1(EPOLL_CLOEXEC)) < 0)
244                 goto fail;
245
246         if ((r = lookup_paths_init(&m->lookup_paths, m->running_as)) < 0)
247                 goto fail;
248
249         if ((r = manager_setup_signals(m)) < 0)
250                 goto fail;
251
252         if ((r = manager_setup_cgroup(m)) < 0)
253                 goto fail;
254
255         if ((r = manager_setup_notify(m)) < 0)
256                 goto fail;
257
258         /* Try to connect to the busses, if possible. */
259         if ((r = bus_init(m)) < 0)
260                 goto fail;
261
262 #ifdef HAVE_AUDIT
263         if ((m->audit_fd = audit_open()) < 0)
264                 log_error("Failed to connect to audit log: %m");
265 #endif
266
267         *_m = m;
268         return 0;
269
270 fail:
271         manager_free(m);
272         return r;
273 }
274
275 static 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
284                 unit_free((Unit*) meta);
285                 n++;
286         }
287
288         return n;
289 }
290
291 enum {
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
299 static void unit_gc_sweep(Unit *u, unsigned gc_marker) {
300         Iterator i;
301         Unit *other;
302         bool is_bad;
303
304         assert(u);
305
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)
309                 return;
310
311         if (u->meta.in_cleanup_queue)
312                 goto bad;
313
314         if (unit_check_gc(u))
315                 goto good;
316
317         u->meta.gc_marker = gc_marker + GC_OFFSET_IN_PATH;
318
319         is_bad = true;
320
321         SET_FOREACH(other, u->meta.dependencies[UNIT_REFERENCED_BY], i) {
322                 unit_gc_sweep(other, gc_marker);
323
324                 if (other->meta.gc_marker == gc_marker + GC_OFFSET_GOOD)
325                         goto good;
326
327                 if (other->meta.gc_marker != gc_marker + GC_OFFSET_BAD)
328                         is_bad = false;
329         }
330
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
340 bad:
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);
345         return;
346
347 good:
348         u->meta.gc_marker = gc_marker + GC_OFFSET_GOOD;
349 }
350
351 static unsigned manager_dispatch_gc_queue(Manager *m) {
352         Meta *meta;
353         unsigned n = 0;
354         unsigned gc_marker;
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
365         m->gc_marker += _GC_OFFSET_MAX;
366         if (m->gc_marker + _GC_OFFSET_MAX <= _GC_OFFSET_MAX)
367                 m->gc_marker = 1;
368
369         gc_marker = m->gc_marker;
370
371         while ((meta = m->gc_queue)) {
372                 assert(meta->in_gc_queue);
373
374                 unit_gc_sweep((Unit*) meta, gc_marker);
375
376                 LIST_REMOVE(Meta, gc_queue, m->gc_queue, meta);
377                 meta->in_gc_queue = false;
378
379                 n++;
380
381                 if (meta->gc_marker == gc_marker + GC_OFFSET_BAD ||
382                     meta->gc_marker == gc_marker + GC_OFFSET_UNSURE) {
383                         log_debug("Collecting %s", meta->id);
384                         meta->gc_marker = gc_marker + GC_OFFSET_BAD;
385                         unit_add_to_cleanup_queue((Unit*) meta);
386                 }
387         }
388
389         m->n_in_gc_queue = 0;
390         m->gc_queue_timestamp = 0;
391
392         return n;
393 }
394
395 static void manager_clear_jobs_and_units(Manager *m) {
396         Job *j;
397         Unit *u;
398
399         assert(m);
400
401         while ((j = hashmap_first(m->transaction_jobs)))
402                 job_free(j);
403
404         while ((u = hashmap_first(m->units)))
405                 unit_free(u);
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));
419 }
420
421 void manager_free(Manager *m) {
422         UnitType c;
423
424         assert(m);
425
426         manager_clear_jobs_and_units(m);
427
428         for (c = 0; c < _UNIT_TYPE_MAX; c++)
429                 if (unit_vtable[c]->shutdown)
430                         unit_vtable[c]->shutdown(m);
431
432         /* If we reexecute ourselves, we keep the root cgroup
433          * around */
434         manager_shutdown_cgroup(m, m->exit_code != MANAGER_REEXECUTE);
435
436         bus_done(m);
437
438         hashmap_free(m->units);
439         hashmap_free(m->jobs);
440         hashmap_free(m->transaction_jobs);
441         hashmap_free(m->watch_pids);
442         hashmap_free(m->watch_bus);
443
444         if (m->epoll_fd >= 0)
445                 close_nointr_nofail(m->epoll_fd);
446         if (m->signal_watch.fd >= 0)
447                 close_nointr_nofail(m->signal_watch.fd);
448         if (m->notify_watch.fd >= 0)
449                 close_nointr_nofail(m->notify_watch.fd);
450
451 #ifdef HAVE_AUDIT
452         if (m->audit_fd >= 0)
453                 audit_close(m->audit_fd);
454 #endif
455
456         free(m->notify_socket);
457         free(m->console);
458
459         lookup_paths_free(&m->lookup_paths);
460         strv_free(m->environment);
461
462         hashmap_free(m->cgroup_bondings);
463         set_free_free(m->unit_path_cache);
464
465         free(m);
466 }
467
468 int manager_enumerate(Manager *m) {
469         int r = 0, q;
470         UnitType c;
471
472         assert(m);
473
474         /* Let's ask every type to load all units from disk/kernel
475          * that it might know */
476         for (c = 0; c < _UNIT_TYPE_MAX; c++)
477                 if (unit_vtable[c]->enumerate)
478                         if ((q = unit_vtable[c]->enumerate(m)) < 0)
479                                 r = q;
480
481         manager_dispatch_load_queue(m);
482         return r;
483 }
484
485 int manager_coldplug(Manager *m) {
486         int r = 0, q;
487         Iterator i;
488         Unit *u;
489         char *k;
490
491         assert(m);
492
493         /* Then, let's set up their initial state. */
494         HASHMAP_FOREACH_KEY(u, k, m->units, i) {
495
496                 /* ignore aliases */
497                 if (u->meta.id != k)
498                         continue;
499
500                 if ((q = unit_coldplug(u)) < 0)
501                         r = q;
502         }
503
504         return r;
505 }
506
507 static 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
555 fail:
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
565 int manager_startup(Manager *m, FILE *serialization, FDSet *fds) {
566         int r, q;
567
568         assert(m);
569
570         manager_build_unit_path_cache(m);
571
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
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
590         if (serialization) {
591                 assert(m->n_deserializing > 0);
592                 m->n_deserializing --;
593         }
594
595         return r;
596 }
597
598 static void transaction_delete_job(Manager *m, Job *j, bool delete_dependencies) {
599         assert(m);
600         assert(j);
601
602         /* Deletes one job from the transaction */
603
604         manager_transaction_unlink_job(m, j, delete_dependencies);
605
606         if (!j->installed)
607                 job_free(j);
608 }
609
610 static void transaction_delete_unit(Manager *m, Unit *u) {
611         Job *j;
612
613         /* Deletes all jobs associated with a certain unit from the
614          * transaction */
615
616         while ((j = hashmap_get(m->transaction_jobs, u)))
617                 transaction_delete_job(m, j, true);
618 }
619
620 static 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
638 static void transaction_abort(Manager *m) {
639         Job *j;
640
641         assert(m);
642
643         while ((j = hashmap_first(m->transaction_jobs)))
644                 if (j->installed)
645                         transaction_delete_job(m, j, true);
646                 else
647                         job_free(j);
648
649         assert(hashmap_isempty(m->transaction_jobs));
650
651         transaction_clean_dependencies(m);
652 }
653
654 static void transaction_find_jobs_that_matter_to_anchor(Manager *m, Job *j, unsigned generation) {
655         JobDependency *l;
656
657         assert(m);
658
659         /* A recursive sweep through the graph that marks all units
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
664         if (j)
665                 l = j->subject_list;
666         else
667                 l = m->transaction_anchor;
668
669         LIST_FOREACH(subject, l, l) {
670
671                 /* This link does not matter */
672                 if (!l->matters)
673                         continue;
674
675                 /* This unit has already been marked */
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
686 static void transaction_merge_and_delete_job(Manager *m, Job *j, Job *other, JobType t) {
687         JobDependency *l, *last;
688
689         assert(j);
690         assert(other);
691         assert(j->unit == other->unit);
692         assert(!j->installed);
693
694         /* Merges 'other' into 'j' and then deletes j. */
695
696         j->type = t;
697         j->state = JOB_WAITING;
698         j->override = j->override || other->override;
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;
704         LIST_FOREACH(subject, l, other->subject_list) {
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;
720         LIST_FOREACH(object, l, other->object_list) {
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
734         /* Kill the other job */
735         other->subject_list = NULL;
736         other->object_list = NULL;
737         transaction_delete_job(m, other, true);
738 }
739 static 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 }
753
754 static int delete_one_unmergeable_job(Manager *m, Job *j) {
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 */
766         LIST_FOREACH(transaction, j, j)
767                 LIST_FOREACH(transaction, k, j->transaction_next) {
768                         Job *d;
769
770                         /* Is this one mergeable? Then skip it */
771                         if (job_type_is_mergeable(j->type, k->type))
772                                 continue;
773
774                         /* Ok, we found two that conflict, let's see if we can
775                          * drop one of them */
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;
803                                 } else
804                                         d = j;
805
806                         } else if (!j->matters_to_anchor)
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. */
814                         log_debug("Fixing conflicting jobs by deleting job %s/%s", d->unit->meta.id, job_type_to_string(d->type));
815                         transaction_delete_job(m, d, true);
816                         return 0;
817                 }
818
819         return -EINVAL;
820 }
821
822 static int transaction_merge_jobs(Manager *m, DBusError *e) {
823         Job *j;
824         Iterator i;
825         int r;
826
827         assert(m);
828
829         /* First step, check whether any of the jobs for one specific
830          * task conflict. If so, try to drop one of them. */
831         HASHMAP_FOREACH(j, m->transaction_jobs, i) {
832                 JobType t;
833                 Job *k;
834
835                 t = j->type;
836                 LIST_FOREACH(transaction, k, j->transaction_next) {
837                         if (job_type_merge(&t, k->type) >= 0)
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
844                         if ((r = delete_one_unmergeable_job(m, j)) >= 0)
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 */
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);
853                         return r;
854                 }
855         }
856
857         /* Second step, merge the jobs. */
858         HASHMAP_FOREACH(j, m->transaction_jobs, i) {
859                 JobType t = j->type;
860                 Job *k;
861
862                 /* Merge all transactions */
863                 LIST_FOREACH(transaction, k, j->transaction_next)
864                         assert_se(job_type_merge(&t, k->type) == 0);
865
866                 /* If an active job is mergeable, merge it too */
867                 if (j->unit->meta.job)
868                         job_type_merge(&t, j->unit->meta.job->type); /* Might fail. Which is OK */
869
870                 while ((k = j->transaction_next)) {
871                         if (j->installed) {
872                                 transaction_merge_and_delete_job(m, k, j, t);
873                                 j = k;
874                         } else
875                                 transaction_merge_and_delete_job(m, j, k, t);
876                 }
877
878                 assert(!j->transaction_next);
879                 assert(!j->transaction_prev);
880         }
881
882         return 0;
883 }
884
885 static 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
916                         log_debug("Found redundant job %s/%s, dropping.", j->unit->meta.id, job_type_to_string(j->type));
917                         transaction_delete_job(m, j, false);
918                         again = true;
919                         break;
920                 }
921
922         } while (again);
923 }
924
925 static bool unit_matters_to_anchor(Unit *u, Job *j) {
926         assert(u);
927         assert(!j->transaction_prev);
928
929         /* Checks whether at least one of the jobs for this unit
930          * matters to the anchor. */
931
932         LIST_FOREACH(transaction, j, j)
933                 if (j->matters_to_anchor)
934                         return true;
935
936         return false;
937 }
938
939 static int transaction_verify_order_one(Manager *m, Job *j, Job *from, unsigned generation, DBusError *e) {
940         Iterator i;
941         Unit *u;
942         int r;
943
944         assert(m);
945         assert(j);
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. */
950
951         /* Have we seen this before? */
952         if (j->generation == generation) {
953                 Job *k, *delete;
954
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;
960
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. */
967                 log_warning("Found ordering cycle on %s/%s", j->unit->meta.id, job_type_to_string(j->type));
968
969                 delete = NULL;
970                 for (k = from; k; k = ((k->generation == generation && k->marker != k) ? k->marker : NULL)) {
971
972                         log_info("Walked on cycle path to %s/%s", k->unit->meta.id, job_type_to_string(k->type));
973
974                         if (!delete &&
975                             !k->installed &&
976                             !unit_matters_to_anchor(k->unit, k)) {
977                                 /* Ok, we can drop this one, so let's
978                                  * do so. */
979                                 delete = k;
980                         }
981
982                         /* Check if this in fact was the beginning of
983                          * the cycle */
984                         if (k == j)
985                                 break;
986                 }
987
988
989                 if (delete) {
990                         log_warning("Breaking ordering cycle by deleting job %s/%s", delete->unit->meta.id, job_type_to_string(delete->type));
991                         transaction_delete_unit(m, delete->unit);
992                         return -EAGAIN;
993                 }
994
995                 log_error("Unable to break cycle");
996
997                 dbus_set_error(e, BUS_ERROR_TRANSACTION_ORDER_IS_CYCLIC, "Transaction order is cyclic. See system logs for details.");
998                 return -ENOEXEC;
999         }
1000
1001         /* Make the marker point to where we come from, so that we can
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;
1006         j->generation = generation;
1007
1008         /* We assume that the the dependencies are bidirectional, and
1009          * hence can ignore UNIT_AFTER */
1010         SET_FOREACH(u, j->unit->meta.dependencies[UNIT_BEFORE], i) {
1011                 Job *o;
1012
1013                 /* Is there a job for this unit? */
1014                 if (!(o = hashmap_get(m->transaction_jobs, u)))
1015
1016                         /* Ok, there is no job for this in the
1017                          * transaction, but maybe there is already one
1018                          * running? */
1019                         if (!(o = u->meta.job))
1020                                 continue;
1021
1022                 if ((r = transaction_verify_order_one(m, o, j, generation, e)) < 0)
1023                         return r;
1024         }
1025
1026         /* Ok, let's backtrack, and remember that this entry is not on
1027          * our path anymore. */
1028         j->marker = NULL;
1029
1030         return 0;
1031 }
1032
1033 static int transaction_verify_order(Manager *m, unsigned *generation, DBusError *e) {
1034         Job *j;
1035         int r;
1036         Iterator i;
1037         unsigned g;
1038
1039         assert(m);
1040         assert(generation);
1041
1042         /* Check if the ordering graph is cyclic. If it is, try to fix
1043          * that up by dropping one of the jobs. */
1044
1045         g = (*generation)++;
1046
1047         HASHMAP_FOREACH(j, m->transaction_jobs, i)
1048                 if ((r = transaction_verify_order_one(m, j, NULL, g, e)) < 0)
1049                         return r;
1050
1051         return 0;
1052 }
1053
1054 static void transaction_collect_garbage(Manager *m) {
1055         bool again;
1056
1057         assert(m);
1058
1059         /* Drop jobs that are not required by any other job */
1060
1061         do {
1062                 Iterator i;
1063                 Job *j;
1064
1065                 again = false;
1066
1067                 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
1068                         if (j->object_list)
1069                                 continue;
1070
1071                         log_debug("Garbage collecting job %s/%s", j->unit->meta.id, job_type_to_string(j->type));
1072                         transaction_delete_job(m, j, true);
1073                         again = true;
1074                         break;
1075                 }
1076
1077         } while (again);
1078 }
1079
1080 static int transaction_is_destructive(Manager *m, DBusError *e) {
1081         Iterator i;
1082         Job *j;
1083
1084         assert(m);
1085
1086         /* Checks whether applying this transaction means that
1087          * existing jobs would be replaced */
1088
1089         HASHMAP_FOREACH(j, m->transaction_jobs, i) {
1090
1091                 /* Assume merged */
1092                 assert(!j->transaction_prev);
1093                 assert(!j->transaction_next);
1094
1095                 if (j->unit->meta.job &&
1096                     j->unit->meta.job != j &&
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.");
1100                         return -EEXIST;
1101                 }
1102         }
1103
1104         return 0;
1105 }
1106
1107 static 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;
1116                 Iterator i;
1117
1118                 again = false;
1119
1120                 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
1121                         LIST_FOREACH(transaction, j, j) {
1122                                 bool stops_running_service, changes_existing_job;
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 */
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 =
1136                                         j->unit->meta.job &&
1137                                         job_type_is_conflicting(j->type, j->unit->meta.job->type);
1138
1139                                 if (!stops_running_service && !changes_existing_job)
1140                                         continue;
1141
1142                                 if (stops_running_service)
1143                                         log_info("%s/%s would stop a running service.", j->unit->meta.id, job_type_to_string(j->type));
1144
1145                                 if (changes_existing_job)
1146                                         log_info("%s/%s would change existing job.", j->unit->meta.id, job_type_to_string(j->type));
1147
1148                                 /* Ok, let's get rid of this */
1149                                 log_info("Deleting %s/%s to minimize impact.", j->unit->meta.id, job_type_to_string(j->type));
1150
1151                                 transaction_delete_job(m, j, true);
1152                                 again = true;
1153                                 break;
1154                         }
1155
1156                         if (again)
1157                                 break;
1158                 }
1159
1160         } while (again);
1161 }
1162
1163 static int transaction_apply(Manager *m) {
1164         Iterator i;
1165         Job *j;
1166         int r;
1167
1168         /* Moves the transaction jobs to the set of active jobs */
1169
1170         HASHMAP_FOREACH(j, m->transaction_jobs, i) {
1171                 /* Assume merged */
1172                 assert(!j->transaction_prev);
1173                 assert(!j->transaction_next);
1174
1175                 if (j->installed)
1176                         continue;
1177
1178                 if ((r = hashmap_put(m->jobs, UINT32_TO_PTR(j->id), j)) < 0)
1179                         goto rollback;
1180         }
1181
1182         while ((j = hashmap_steal_first(m->transaction_jobs))) {
1183                 if (j->installed)
1184                         continue;
1185
1186                 if (j->unit->meta.job)
1187                         job_free(j->unit->meta.job);
1188
1189                 j->unit->meta.job = j;
1190                 j->installed = true;
1191                 m->n_installed_jobs ++;
1192
1193                 /* We're fully installed. Now let's free data we don't
1194                  * need anymore. */
1195
1196                 assert(!j->transaction_next);
1197                 assert(!j->transaction_prev);
1198
1199                 job_add_to_run_queue(j);
1200                 job_add_to_dbus_queue(j);
1201                 job_start_timer(j);
1202
1203                 log_debug("Installed new job %s/%s as %u", j->unit->meta.id, job_type_to_string(j->type), (unsigned) j->id);
1204         }
1205
1206         /* As last step, kill all remaining job dependencies. */
1207         transaction_clean_dependencies(m);
1208
1209         return 0;
1210
1211 rollback:
1212
1213         HASHMAP_FOREACH(j, m->transaction_jobs, i) {
1214                 if (j->installed)
1215                         continue;
1216
1217                 hashmap_remove(m->jobs, UINT32_TO_PTR(j->id));
1218         }
1219
1220         return r;
1221 }
1222
1223 static int transaction_activate(Manager *m, JobMode mode, DBusError *e) {
1224         int r;
1225         unsigned generation = 1;
1226
1227         assert(m);
1228
1229         /* This applies the changes recorded in transaction_jobs to
1230          * the actual list of jobs, if possible. */
1231
1232         /* First step: figure out which jobs matter */
1233         transaction_find_jobs_that_matter_to_anchor(m, NULL, generation++);
1234
1235         /* Second step: Try not to stop any running services if
1236          * we don't have to. Don't try to reverse running
1237          * jobs if we don't have to. */
1238         if (mode == JOB_FAIL)
1239                 transaction_minimize_impact(m);
1240
1241         /* Third step: Drop redundant jobs */
1242         transaction_drop_redundant(m);
1243
1244         for (;;) {
1245                 /* Fourth step: Let's remove unneeded jobs that might
1246                  * be lurking. */
1247                 transaction_collect_garbage(m);
1248
1249                 /* Fifth step: verify order makes sense and correct
1250                  * cycles if necessary and possible */
1251                 if ((r = transaction_verify_order(m, &generation, e)) >= 0)
1252                         break;
1253
1254                 if (r != -EAGAIN) {
1255                         log_warning("Requested transaction contains an unfixable cyclic ordering dependency: %s", bus_error(e, r));
1256                         goto rollback;
1257                 }
1258
1259                 /* Let's see if the resulting transaction ordering
1260                  * graph is still cyclic... */
1261         }
1262
1263         for (;;) {
1264                 /* Sixth step: let's drop unmergeable entries if
1265                  * necessary and possible, merge entries we can
1266                  * merge */
1267                 if ((r = transaction_merge_jobs(m, e)) >= 0)
1268                         break;
1269
1270                 if (r != -EAGAIN) {
1271                         log_warning("Requested transaction contains unmergable jobs: %s", bus_error(e, r));
1272                         goto rollback;
1273                 }
1274
1275                 /* Seventh step: an entry got dropped, let's garbage
1276                  * collect its dependencies. */
1277                 transaction_collect_garbage(m);
1278
1279                 /* Let's see if the resulting transaction still has
1280                  * unmergeable entries ... */
1281         }
1282
1283         /* Eights step: Drop redundant jobs again, if the merging now allows us to drop more. */
1284         transaction_drop_redundant(m);
1285
1286         /* Ninth step: check whether we can actually apply this */
1287         if (mode == JOB_FAIL)
1288                 if ((r = transaction_is_destructive(m, e)) < 0) {
1289                         log_notice("Requested transaction contradicts existing jobs: %s", bus_error(e, r));
1290                         goto rollback;
1291                 }
1292
1293         /* Tenth step: apply changes */
1294         if ((r = transaction_apply(m)) < 0) {
1295                 log_warning("Failed to apply transaction: %s", strerror(-r));
1296                 goto rollback;
1297         }
1298
1299         assert(hashmap_isempty(m->transaction_jobs));
1300         assert(!m->transaction_anchor);
1301
1302         return 0;
1303
1304 rollback:
1305         transaction_abort(m);
1306         return r;
1307 }
1308
1309 static Job* transaction_add_one_job(Manager *m, JobType type, Unit *unit, bool override, bool *is_new) {
1310         Job *j, *f;
1311
1312         assert(m);
1313         assert(unit);
1314
1315         /* Looks for an axisting prospective job and returns that. If
1316          * it doesn't exist it is created and added to the prospective
1317          * jobs list. */
1318
1319         f = hashmap_get(m->transaction_jobs, unit);
1320
1321         LIST_FOREACH(transaction, j, f) {
1322                 assert(j->unit == unit);
1323
1324                 if (j->type == type) {
1325                         if (is_new)
1326                                 *is_new = false;
1327                         return j;
1328                 }
1329         }
1330
1331         if (unit->meta.job && unit->meta.job->type == type)
1332                 j = unit->meta.job;
1333         else if (!(j = job_new(m, type, unit)))
1334                 return NULL;
1335
1336         j->generation = 0;
1337         j->marker = NULL;
1338         j->matters_to_anchor = false;
1339         j->override = override;
1340
1341         LIST_PREPEND(Job, transaction, f, j);
1342
1343         if (hashmap_replace(m->transaction_jobs, unit, f) < 0) {
1344                 job_free(j);
1345                 return NULL;
1346         }
1347
1348         if (is_new)
1349                 *is_new = true;
1350
1351         log_debug("Added job %s/%s to transaction.", unit->meta.id, job_type_to_string(type));
1352
1353         return j;
1354 }
1355
1356 void manager_transaction_unlink_job(Manager *m, Job *j, bool delete_dependencies) {
1357         assert(m);
1358         assert(j);
1359
1360         if (j->transaction_prev)
1361                 j->transaction_prev->transaction_next = j->transaction_next;
1362         else if (j->transaction_next)
1363                 hashmap_replace(m->transaction_jobs, j->unit, j->transaction_next);
1364         else
1365                 hashmap_remove_value(m->transaction_jobs, j->unit, j);
1366
1367         if (j->transaction_next)
1368                 j->transaction_next->transaction_prev = j->transaction_prev;
1369
1370         j->transaction_prev = j->transaction_next = NULL;
1371
1372         while (j->subject_list)
1373                 job_dependency_free(j->subject_list);
1374
1375         while (j->object_list) {
1376                 Job *other = j->object_list->matters ? j->object_list->subject : NULL;
1377
1378                 job_dependency_free(j->object_list);
1379
1380                 if (other && delete_dependencies) {
1381                         log_debug("Deleting job %s/%s as dependency of job %s/%s",
1382                                   other->unit->meta.id, job_type_to_string(other->type),
1383                                   j->unit->meta.id, job_type_to_string(j->type));
1384                         transaction_delete_job(m, other, delete_dependencies);
1385                 }
1386         }
1387 }
1388
1389 static int transaction_add_job_and_dependencies(
1390                 Manager *m,
1391                 JobType type,
1392                 Unit *unit,
1393                 Job *by,
1394                 bool matters,
1395                 bool override,
1396                 bool conflicts,
1397                 DBusError *e,
1398                 Job **_ret) {
1399         Job *ret;
1400         Iterator i;
1401         Unit *dep;
1402         int r;
1403         bool is_new;
1404
1405         assert(m);
1406         assert(type < _JOB_TYPE_MAX);
1407         assert(unit);
1408
1409         if (unit->meta.load_state != UNIT_LOADED &&
1410             unit->meta.load_state != UNIT_ERROR &&
1411             unit->meta.load_state != UNIT_MASKED) {
1412                 dbus_set_error(e, BUS_ERROR_LOAD_FAILED, "Unit %s is not loaded properly.", unit->meta.id);
1413                 return -EINVAL;
1414         }
1415
1416         if (type != JOB_STOP && unit->meta.load_state == UNIT_ERROR) {
1417                 dbus_set_error(e, BUS_ERROR_LOAD_FAILED,
1418                                "Unit %s failed to load: %s. "
1419                                "See system logs and 'systemctl status' for details.",
1420                                unit->meta.id,
1421                                strerror(-unit->meta.load_error));
1422                 return -EINVAL;
1423         }
1424
1425         if (type != JOB_STOP && unit->meta.load_state == UNIT_MASKED) {
1426                 dbus_set_error(e, BUS_ERROR_MASKED, "Unit %s is masked.", unit->meta.id);
1427                 return -EINVAL;
1428         }
1429
1430         if (!unit_job_is_applicable(unit, type)) {
1431                 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);
1432                 return -EBADR;
1433         }
1434
1435         /* First add the job. */
1436         if (!(ret = transaction_add_one_job(m, type, unit, override, &is_new)))
1437                 return -ENOMEM;
1438
1439         /* Then, add a link to the job. */
1440         if (!job_dependency_new(by, ret, matters, conflicts))
1441                 return -ENOMEM;
1442
1443         if (is_new) {
1444                 /* Finally, recursively add in all dependencies. */
1445                 if (type == JOB_START || type == JOB_RELOAD_OR_START) {
1446                         SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_REQUIRES], i)
1447                                 if ((r = transaction_add_job_and_dependencies(m, JOB_START, dep, ret, true, override, false, e, NULL)) < 0 && r != -EBADR)
1448                                         goto fail;
1449
1450                         SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_BIND_TO], i)
1451                                 if ((r = transaction_add_job_and_dependencies(m, JOB_START, dep, ret, true, override, false, e, NULL)) < 0 && r != -EBADR)
1452                                         goto fail;
1453
1454                         SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_REQUIRES_OVERRIDABLE], i)
1455                                 if ((r = transaction_add_job_and_dependencies(m, JOB_START, dep, ret, !override, override, false, e, NULL)) < 0 && r != -EBADR) {
1456                                         log_warning("Cannot add dependency job for unit %s, ignoring: %s", dep->meta.id, bus_error(e, r));
1457
1458                                         if (e)
1459                                                 dbus_error_free(e);
1460                                 }
1461
1462                         SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_WANTS], i)
1463                                 if ((r = transaction_add_job_and_dependencies(m, JOB_START, dep, ret, false, false, false, e, NULL)) < 0) {
1464                                         log_warning("Cannot add dependency job for unit %s, ignoring: %s", dep->meta.id, bus_error(e, r));
1465
1466                                         if (e)
1467                                                 dbus_error_free(e);
1468                                 }
1469
1470                         SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_REQUISITE], i)
1471                                 if ((r = transaction_add_job_and_dependencies(m, JOB_VERIFY_ACTIVE, dep, ret, true, override, false, e, NULL)) < 0 && r != -EBADR)
1472                                         goto fail;
1473
1474                         SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_REQUISITE_OVERRIDABLE], i)
1475                                 if ((r = transaction_add_job_and_dependencies(m, JOB_VERIFY_ACTIVE, dep, ret, !override, override, false, e, NULL)) < 0 && r != -EBADR) {
1476                                         log_warning("Cannot add dependency job for unit %s, ignoring: %s", dep->meta.id, bus_error(e, r));
1477
1478                                         if (e)
1479                                                 dbus_error_free(e);
1480                                 }
1481
1482                         SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_CONFLICTS], i)
1483                                 if ((r = transaction_add_job_and_dependencies(m, JOB_STOP, dep, ret, true, override, true, e, NULL)) < 0 && r != -EBADR)
1484                                         goto fail;
1485
1486                         SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_CONFLICTED_BY], i)
1487                                 if ((r = transaction_add_job_and_dependencies(m, JOB_STOP, dep, ret, false, override, false, e, NULL)) < 0 && r != -EBADR)
1488                                         goto fail;
1489
1490                 } else if (type == JOB_STOP || type == JOB_RESTART || type == JOB_TRY_RESTART) {
1491
1492                         SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_REQUIRED_BY], i)
1493                                 if ((r = transaction_add_job_and_dependencies(m, type, dep, ret, true, override, false, e, NULL)) < 0 && r != -EBADR)
1494                                         goto fail;
1495
1496                         SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_BOUND_BY], i)
1497                                 if ((r = transaction_add_job_and_dependencies(m, type, dep, ret, true, override, false, e, NULL)) < 0 && r != -EBADR)
1498                                         goto fail;
1499                 }
1500
1501                 /* JOB_VERIFY_STARTED, JOB_RELOAD require no dependency handling */
1502         }
1503
1504         if (_ret)
1505                 *_ret = ret;
1506
1507         return 0;
1508
1509 fail:
1510         return r;
1511 }
1512
1513 static int transaction_add_isolate_jobs(Manager *m) {
1514         Iterator i;
1515         Unit *u;
1516         char *k;
1517         int r;
1518
1519         assert(m);
1520
1521         HASHMAP_FOREACH_KEY(u, k, m->units, i) {
1522
1523                 /* ignore aliases */
1524                 if (u->meta.id != k)
1525                         continue;
1526
1527                 if (UNIT_VTABLE(u)->no_isolate)
1528                         continue;
1529
1530                 /* No need to stop inactive jobs */
1531                 if (UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(u)) && !u->meta.job)
1532                         continue;
1533
1534                 /* Is there already something listed for this? */
1535                 if (hashmap_get(m->transaction_jobs, u))
1536                         continue;
1537
1538                 if ((r = transaction_add_job_and_dependencies(m, JOB_STOP, u, NULL, true, false, false, NULL, NULL)) < 0)
1539                         log_warning("Cannot add isolate job for unit %s, ignoring: %s", u->meta.id, strerror(-r));
1540         }
1541
1542         return 0;
1543 }
1544
1545 int manager_add_job(Manager *m, JobType type, Unit *unit, JobMode mode, bool override, DBusError *e, Job **_ret) {
1546         int r;
1547         Job *ret;
1548
1549         assert(m);
1550         assert(type < _JOB_TYPE_MAX);
1551         assert(unit);
1552         assert(mode < _JOB_MODE_MAX);
1553
1554         if (mode == JOB_ISOLATE && type != JOB_START) {
1555                 dbus_set_error(e, BUS_ERROR_INVALID_JOB_MODE, "Isolate is only valid for start.");
1556                 return -EINVAL;
1557         }
1558
1559         if (mode == JOB_ISOLATE && !unit->meta.allow_isolate) {
1560                 dbus_set_error(e, BUS_ERROR_NO_ISOLATION, "Operation refused, unit may not be isolated.");
1561                 return -EPERM;
1562         }
1563
1564         log_debug("Trying to enqueue job %s/%s/%s", unit->meta.id, job_type_to_string(type), job_mode_to_string(mode));
1565
1566         if ((r = transaction_add_job_and_dependencies(m, type, unit, NULL, true, override, false, e, &ret)) < 0) {
1567                 transaction_abort(m);
1568                 return r;
1569         }
1570
1571         if (mode == JOB_ISOLATE)
1572                 if ((r = transaction_add_isolate_jobs(m)) < 0) {
1573                         transaction_abort(m);
1574                         return r;
1575                 }
1576
1577         if ((r = transaction_activate(m, mode, e)) < 0)
1578                 return r;
1579
1580         log_debug("Enqueued job %s/%s as %u", unit->meta.id, job_type_to_string(type), (unsigned) ret->id);
1581
1582         if (_ret)
1583                 *_ret = ret;
1584
1585         return 0;
1586 }
1587
1588 int manager_add_job_by_name(Manager *m, JobType type, const char *name, JobMode mode, bool override, DBusError *e, Job **_ret) {
1589         Unit *unit;
1590         int r;
1591
1592         assert(m);
1593         assert(type < _JOB_TYPE_MAX);
1594         assert(name);
1595         assert(mode < _JOB_MODE_MAX);
1596
1597         if ((r = manager_load_unit(m, name, NULL, NULL, &unit)) < 0)
1598                 return r;
1599
1600         return manager_add_job(m, type, unit, mode, override, e, _ret);
1601 }
1602
1603 Job *manager_get_job(Manager *m, uint32_t id) {
1604         assert(m);
1605
1606         return hashmap_get(m->jobs, UINT32_TO_PTR(id));
1607 }
1608
1609 Unit *manager_get_unit(Manager *m, const char *name) {
1610         assert(m);
1611         assert(name);
1612
1613         return hashmap_get(m->units, name);
1614 }
1615
1616 unsigned manager_dispatch_load_queue(Manager *m) {
1617         Meta *meta;
1618         unsigned n = 0;
1619
1620         assert(m);
1621
1622         /* Make sure we are not run recursively */
1623         if (m->dispatching_load_queue)
1624                 return 0;
1625
1626         m->dispatching_load_queue = true;
1627
1628         /* Dispatches the load queue. Takes a unit from the queue and
1629          * tries to load its data until the queue is empty */
1630
1631         while ((meta = m->load_queue)) {
1632                 assert(meta->in_load_queue);
1633
1634                 unit_load((Unit*) meta);
1635                 n++;
1636         }
1637
1638         m->dispatching_load_queue = false;
1639         return n;
1640 }
1641
1642 int manager_load_unit_prepare(Manager *m, const char *name, const char *path, DBusError *e, Unit **_ret) {
1643         Unit *ret;
1644         int r;
1645
1646         assert(m);
1647         assert(name || path);
1648
1649         /* This will prepare the unit for loading, but not actually
1650          * load anything from disk. */
1651
1652         if (path && !is_path(path)) {
1653                 dbus_set_error(e, BUS_ERROR_INVALID_PATH, "Path %s is not absolute.", path);
1654                 return -EINVAL;
1655         }
1656
1657         if (!name)
1658                 name = file_name_from_path(path);
1659
1660         if (!unit_name_is_valid(name, false)) {
1661                 dbus_set_error(e, BUS_ERROR_INVALID_NAME, "Unit name %s is not valid.", name);
1662                 return -EINVAL;
1663         }
1664
1665         if ((ret = manager_get_unit(m, name))) {
1666                 *_ret = ret;
1667                 return 1;
1668         }
1669
1670         if (!(ret = unit_new(m)))
1671                 return -ENOMEM;
1672
1673         if (path)
1674                 if (!(ret->meta.fragment_path = strdup(path))) {
1675                         unit_free(ret);
1676                         return -ENOMEM;
1677                 }
1678
1679         if ((r = unit_add_name(ret, name)) < 0) {
1680                 unit_free(ret);
1681                 return r;
1682         }
1683
1684         unit_add_to_load_queue(ret);
1685         unit_add_to_dbus_queue(ret);
1686         unit_add_to_gc_queue(ret);
1687
1688         if (_ret)
1689                 *_ret = ret;
1690
1691         return 0;
1692 }
1693
1694 int manager_load_unit(Manager *m, const char *name, const char *path, DBusError *e, Unit **_ret) {
1695         int r;
1696
1697         assert(m);
1698
1699         /* This will load the service information files, but not actually
1700          * start any services or anything. */
1701
1702         if ((r = manager_load_unit_prepare(m, name, path, e, _ret)) != 0)
1703                 return r;
1704
1705         manager_dispatch_load_queue(m);
1706
1707         if (_ret)
1708                 *_ret = unit_follow_merge(*_ret);
1709
1710         return 0;
1711 }
1712
1713 void manager_dump_jobs(Manager *s, FILE *f, const char *prefix) {
1714         Iterator i;
1715         Job *j;
1716
1717         assert(s);
1718         assert(f);
1719
1720         HASHMAP_FOREACH(j, s->jobs, i)
1721                 job_dump(j, f, prefix);
1722 }
1723
1724 void manager_dump_units(Manager *s, FILE *f, const char *prefix) {
1725         Iterator i;
1726         Unit *u;
1727         const char *t;
1728
1729         assert(s);
1730         assert(f);
1731
1732         HASHMAP_FOREACH_KEY(u, t, s->units, i)
1733                 if (u->meta.id == t)
1734                         unit_dump(u, f, prefix);
1735 }
1736
1737 void manager_clear_jobs(Manager *m) {
1738         Job *j;
1739
1740         assert(m);
1741
1742         transaction_abort(m);
1743
1744         while ((j = hashmap_first(m->jobs)))
1745                 job_free(j);
1746 }
1747
1748 unsigned manager_dispatch_run_queue(Manager *m) {
1749         Job *j;
1750         unsigned n = 0;
1751
1752         if (m->dispatching_run_queue)
1753                 return 0;
1754
1755         m->dispatching_run_queue = true;
1756
1757         while ((j = m->run_queue)) {
1758                 assert(j->installed);
1759                 assert(j->in_run_queue);
1760
1761                 job_run_and_invalidate(j);
1762                 n++;
1763         }
1764
1765         m->dispatching_run_queue = false;
1766         return n;
1767 }
1768
1769 unsigned manager_dispatch_dbus_queue(Manager *m) {
1770         Job *j;
1771         Meta *meta;
1772         unsigned n = 0;
1773
1774         assert(m);
1775
1776         if (m->dispatching_dbus_queue)
1777                 return 0;
1778
1779         m->dispatching_dbus_queue = true;
1780
1781         while ((meta = m->dbus_unit_queue)) {
1782                 assert(meta->in_dbus_queue);
1783
1784                 bus_unit_send_change_signal((Unit*) meta);
1785                 n++;
1786         }
1787
1788         while ((j = m->dbus_job_queue)) {
1789                 assert(j->in_dbus_queue);
1790
1791                 bus_job_send_change_signal(j);
1792                 n++;
1793         }
1794
1795         m->dispatching_dbus_queue = false;
1796         return n;
1797 }
1798
1799 static int manager_process_notify_fd(Manager *m) {
1800         ssize_t n;
1801
1802         assert(m);
1803
1804         for (;;) {
1805                 char buf[4096];
1806                 struct msghdr msghdr;
1807                 struct iovec iovec;
1808                 struct ucred *ucred;
1809                 union {
1810                         struct cmsghdr cmsghdr;
1811                         uint8_t buf[CMSG_SPACE(sizeof(struct ucred))];
1812                 } control;
1813                 Unit *u;
1814                 char **tags;
1815
1816                 zero(iovec);
1817                 iovec.iov_base = buf;
1818                 iovec.iov_len = sizeof(buf)-1;
1819
1820                 zero(control);
1821                 zero(msghdr);
1822                 msghdr.msg_iov = &iovec;
1823                 msghdr.msg_iovlen = 1;
1824                 msghdr.msg_control = &control;
1825                 msghdr.msg_controllen = sizeof(control);
1826
1827                 if ((n = recvmsg(m->notify_watch.fd, &msghdr, MSG_DONTWAIT)) <= 0) {
1828                         if (n >= 0)
1829                                 return -EIO;
1830
1831                         if (errno == EAGAIN || errno == EINTR)
1832                                 break;
1833
1834                         return -errno;
1835                 }
1836
1837                 if (msghdr.msg_controllen < CMSG_LEN(sizeof(struct ucred)) ||
1838                     control.cmsghdr.cmsg_level != SOL_SOCKET ||
1839                     control.cmsghdr.cmsg_type != SCM_CREDENTIALS ||
1840                     control.cmsghdr.cmsg_len != CMSG_LEN(sizeof(struct ucred))) {
1841                         log_warning("Received notify message without credentials. Ignoring.");
1842                         continue;
1843                 }
1844
1845                 ucred = (struct ucred*) CMSG_DATA(&control.cmsghdr);
1846
1847                 if (!(u = hashmap_get(m->watch_pids, LONG_TO_PTR(ucred->pid))))
1848                         if (!(u = cgroup_unit_by_pid(m, ucred->pid))) {
1849                                 log_warning("Cannot find unit for notify message of PID %lu.", (unsigned long) ucred->pid);
1850                                 continue;
1851                         }
1852
1853                 assert((size_t) n < sizeof(buf));
1854                 buf[n] = 0;
1855                 if (!(tags = strv_split(buf, "\n\r")))
1856                         return -ENOMEM;
1857
1858                 log_debug("Got notification message for unit %s", u->meta.id);
1859
1860                 if (UNIT_VTABLE(u)->notify_message)
1861                         UNIT_VTABLE(u)->notify_message(u, ucred->pid, tags);
1862
1863                 strv_free(tags);
1864         }
1865
1866         return 0;
1867 }
1868
1869 static int manager_dispatch_sigchld(Manager *m) {
1870         assert(m);
1871
1872         for (;;) {
1873                 siginfo_t si;
1874                 Unit *u;
1875                 int r;
1876
1877                 zero(si);
1878
1879                 /* First we call waitd() for a PID and do not reap the
1880                  * zombie. That way we can still access /proc/$PID for
1881                  * it while it is a zombie. */
1882                 if (waitid(P_ALL, 0, &si, WEXITED|WNOHANG|WNOWAIT) < 0) {
1883
1884                         if (errno == ECHILD)
1885                                 break;
1886
1887                         if (errno == EINTR)
1888                                 continue;
1889
1890                         return -errno;
1891                 }
1892
1893                 if (si.si_pid <= 0)
1894                         break;
1895
1896                 if (si.si_code == CLD_EXITED || si.si_code == CLD_KILLED || si.si_code == CLD_DUMPED) {
1897                         char *name = NULL;
1898
1899                         get_process_name(si.si_pid, &name);
1900                         log_debug("Got SIGCHLD for process %lu (%s)", (unsigned long) si.si_pid, strna(name));
1901                         free(name);
1902                 }
1903
1904                 /* Let's flush any message the dying child might still
1905                  * have queued for us. This ensures that the process
1906                  * still exists in /proc so that we can figure out
1907                  * which cgroup and hence unit it belongs to. */
1908                 if ((r = manager_process_notify_fd(m)) < 0)
1909                         return r;
1910
1911                 /* And now figure out the unit this belongs to */
1912                 if (!(u = hashmap_get(m->watch_pids, LONG_TO_PTR(si.si_pid))))
1913                         u = cgroup_unit_by_pid(m, si.si_pid);
1914
1915                 /* And now, we actually reap the zombie. */
1916                 if (waitid(P_PID, si.si_pid, &si, WEXITED) < 0) {
1917                         if (errno == EINTR)
1918                                 continue;
1919
1920                         return -errno;
1921                 }
1922
1923                 if (si.si_code != CLD_EXITED && si.si_code != CLD_KILLED && si.si_code != CLD_DUMPED)
1924                         continue;
1925
1926                 log_debug("Child %lu died (code=%s, status=%i/%s)",
1927                           (long unsigned) si.si_pid,
1928                           sigchld_code_to_string(si.si_code),
1929                           si.si_status,
1930                           strna(si.si_code == CLD_EXITED
1931                                 ? exit_status_to_string(si.si_status, EXIT_STATUS_FULL)
1932                                 : signal_to_string(si.si_status)));
1933
1934                 if (!u)
1935                         continue;
1936
1937                 log_debug("Child %lu belongs to %s", (long unsigned) si.si_pid, u->meta.id);
1938
1939                 hashmap_remove(m->watch_pids, LONG_TO_PTR(si.si_pid));
1940                 UNIT_VTABLE(u)->sigchld_event(u, si.si_pid, si.si_code, si.si_status);
1941         }
1942
1943         return 0;
1944 }
1945
1946 static int manager_start_target(Manager *m, const char *name, JobMode mode) {
1947         int r;
1948         DBusError error;
1949
1950         dbus_error_init(&error);
1951
1952         log_info("Activating special unit %s", name);
1953
1954         if ((r = manager_add_job_by_name(m, JOB_START, name, mode, true, &error, NULL)) < 0)
1955                 log_error("Failed to enqueue %s job: %s", name, bus_error(&error, r));
1956
1957         dbus_error_free(&error);
1958
1959         return r;
1960 }
1961
1962 static int manager_process_signal_fd(Manager *m) {
1963         ssize_t n;
1964         struct signalfd_siginfo sfsi;
1965         bool sigchld = false;
1966
1967         assert(m);
1968
1969         for (;;) {
1970                 if ((n = read(m->signal_watch.fd, &sfsi, sizeof(sfsi))) != sizeof(sfsi)) {
1971
1972                         if (n >= 0)
1973                                 return -EIO;
1974
1975                         if (errno == EINTR || errno == EAGAIN)
1976                                 break;
1977
1978                         return -errno;
1979                 }
1980
1981                 log_debug("Received SIG%s", strna(signal_to_string(sfsi.ssi_signo)));
1982
1983                 switch (sfsi.ssi_signo) {
1984
1985                 case SIGCHLD:
1986                         sigchld = true;
1987                         break;
1988
1989                 case SIGTERM:
1990                         if (m->running_as == MANAGER_SYSTEM) {
1991                                 /* This is for compatibility with the
1992                                  * original sysvinit */
1993                                 m->exit_code = MANAGER_REEXECUTE;
1994                                 break;
1995                         }
1996
1997                         /* Fall through */
1998
1999                 case SIGINT:
2000                         if (m->running_as == MANAGER_SYSTEM) {
2001                                 manager_start_target(m, SPECIAL_CTRL_ALT_DEL_TARGET, JOB_REPLACE);
2002                                 break;
2003                         }
2004
2005                         /* Run the exit target if there is one, if not, just exit. */
2006                         if (manager_start_target(m, SPECIAL_EXIT_TARGET, JOB_REPLACE) < 0) {
2007                                 m->exit_code = MANAGER_EXIT;
2008                                 return 0;
2009                         }
2010
2011                         break;
2012
2013                 case SIGWINCH:
2014                         if (m->running_as == MANAGER_SYSTEM)
2015                                 manager_start_target(m, SPECIAL_KBREQUEST_TARGET, JOB_REPLACE);
2016
2017                         /* This is a nop on non-init */
2018                         break;
2019
2020                 case SIGPWR:
2021                         if (m->running_as == MANAGER_SYSTEM)
2022                                 manager_start_target(m, SPECIAL_SIGPWR_TARGET, JOB_REPLACE);
2023
2024                         /* This is a nop on non-init */
2025                         break;
2026
2027                 case SIGUSR1: {
2028                         Unit *u;
2029
2030                         u = manager_get_unit(m, SPECIAL_DBUS_SERVICE);
2031
2032                         if (!u || UNIT_IS_ACTIVE_OR_RELOADING(unit_active_state(u))) {
2033                                 log_info("Trying to reconnect to bus...");
2034                                 bus_init(m);
2035                         }
2036
2037                         if (!u || !UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(u))) {
2038                                 log_info("Loading D-Bus service...");
2039                                 manager_start_target(m, SPECIAL_DBUS_SERVICE, JOB_REPLACE);
2040                         }
2041
2042                         break;
2043                 }
2044
2045                 case SIGUSR2: {
2046                         FILE *f;
2047                         char *dump = NULL;
2048                         size_t size;
2049
2050                         if (!(f = open_memstream(&dump, &size))) {
2051                                 log_warning("Failed to allocate memory stream.");
2052                                 break;
2053                         }
2054
2055                         manager_dump_units(m, f, "\t");
2056                         manager_dump_jobs(m, f, "\t");
2057
2058                         if (ferror(f)) {
2059                                 fclose(f);
2060                                 free(dump);
2061                                 log_warning("Failed to write status stream");
2062                                 break;
2063                         }
2064
2065                         fclose(f);
2066                         log_dump(LOG_INFO, dump);
2067                         free(dump);
2068
2069                         break;
2070                 }
2071
2072                 case SIGHUP:
2073                         m->exit_code = MANAGER_RELOAD;
2074                         break;
2075
2076                 default: {
2077                         /* Starting SIGRTMIN+0 */
2078                         static const char * const target_table[] = {
2079                                 [0] = SPECIAL_DEFAULT_TARGET,
2080                                 [1] = SPECIAL_RESCUE_TARGET,
2081                                 [2] = SPECIAL_EMERGENCY_TARGET,
2082                                 [3] = SPECIAL_HALT_TARGET,
2083                                 [4] = SPECIAL_POWEROFF_TARGET,
2084                                 [5] = SPECIAL_REBOOT_TARGET,
2085                                 [6] = SPECIAL_KEXEC_TARGET
2086                         };
2087
2088                         /* Starting SIGRTMIN+13, so that target halt and system halt are 10 apart */
2089                         static const ManagerExitCode code_table[] = {
2090                                 [0] = MANAGER_HALT,
2091                                 [1] = MANAGER_POWEROFF,
2092                                 [2] = MANAGER_REBOOT,
2093                                 [3] = MANAGER_KEXEC
2094                         };
2095
2096                         if ((int) sfsi.ssi_signo >= SIGRTMIN+0 &&
2097                             (int) sfsi.ssi_signo < SIGRTMIN+(int) ELEMENTSOF(target_table)) {
2098                                 manager_start_target(m, target_table[sfsi.ssi_signo - SIGRTMIN],
2099                                                      (sfsi.ssi_signo == 1 || sfsi.ssi_signo == 2) ? JOB_ISOLATE : JOB_REPLACE);
2100                                 break;
2101                         }
2102
2103                         if ((int) sfsi.ssi_signo >= SIGRTMIN+13 &&
2104                             (int) sfsi.ssi_signo < SIGRTMIN+13+(int) ELEMENTSOF(code_table)) {
2105                                 m->exit_code = code_table[sfsi.ssi_signo - SIGRTMIN - 13];
2106                                 break;
2107                         }
2108
2109                         log_warning("Got unhandled signal <%s>.", strna(signal_to_string(sfsi.ssi_signo)));
2110                 }
2111                 }
2112         }
2113
2114         if (sigchld)
2115                 return manager_dispatch_sigchld(m);
2116
2117         return 0;
2118 }
2119
2120 static int process_event(Manager *m, struct epoll_event *ev) {
2121         int r;
2122         Watch *w;
2123
2124         assert(m);
2125         assert(ev);
2126
2127         assert(w = ev->data.ptr);
2128
2129         switch (w->type) {
2130
2131         case WATCH_SIGNAL:
2132
2133                 /* An incoming signal? */
2134                 if (ev->events != EPOLLIN)
2135                         return -EINVAL;
2136
2137                 if ((r = manager_process_signal_fd(m)) < 0)
2138                         return r;
2139
2140                 break;
2141
2142         case WATCH_NOTIFY:
2143
2144                 /* An incoming daemon notification event? */
2145                 if (ev->events != EPOLLIN)
2146                         return -EINVAL;
2147
2148                 if ((r = manager_process_notify_fd(m)) < 0)
2149                         return r;
2150
2151                 break;
2152
2153         case WATCH_FD:
2154
2155                 /* Some fd event, to be dispatched to the units */
2156                 UNIT_VTABLE(w->data.unit)->fd_event(w->data.unit, w->fd, ev->events, w);
2157                 break;
2158
2159         case WATCH_UNIT_TIMER:
2160         case WATCH_JOB_TIMER: {
2161                 uint64_t v;
2162                 ssize_t k;
2163
2164                 /* Some timer event, to be dispatched to the units */
2165                 if ((k = read(w->fd, &v, sizeof(v))) != sizeof(v)) {
2166
2167                         if (k < 0 && (errno == EINTR || errno == EAGAIN))
2168                                 break;
2169
2170                         return k < 0 ? -errno : -EIO;
2171                 }
2172
2173                 if (w->type == WATCH_UNIT_TIMER)
2174                         UNIT_VTABLE(w->data.unit)->timer_event(w->data.unit, v, w);
2175                 else
2176                         job_timer_event(w->data.job, v, w);
2177                 break;
2178         }
2179
2180         case WATCH_MOUNT:
2181                 /* Some mount table change, intended for the mount subsystem */
2182                 mount_fd_event(m, ev->events);
2183                 break;
2184
2185         case WATCH_SWAP:
2186                 /* Some swap table change, intended for the swap subsystem */
2187                 swap_fd_event(m, ev->events);
2188                 break;
2189
2190         case WATCH_UDEV:
2191                 /* Some notification from udev, intended for the device subsystem */
2192                 device_fd_event(m, ev->events);
2193                 break;
2194
2195         case WATCH_DBUS_WATCH:
2196                 bus_watch_event(m, w, ev->events);
2197                 break;
2198
2199         case WATCH_DBUS_TIMEOUT:
2200                 bus_timeout_event(m, w, ev->events);
2201                 break;
2202
2203         default:
2204                 assert_not_reached("Unknown epoll event type.");
2205         }
2206
2207         return 0;
2208 }
2209
2210 int manager_loop(Manager *m) {
2211         int r;
2212
2213         RATELIMIT_DEFINE(rl, 1*USEC_PER_SEC, 1000);
2214
2215         assert(m);
2216         m->exit_code = MANAGER_RUNNING;
2217
2218         /* Release the path cache */
2219         set_free_free(m->unit_path_cache);
2220         m->unit_path_cache = NULL;
2221
2222         manager_check_finished(m);
2223
2224         /* There might still be some zombies hanging around from
2225          * before we were exec()'ed. Leat's reap them */
2226         if ((r = manager_dispatch_sigchld(m)) < 0)
2227                 return r;
2228
2229         while (m->exit_code == MANAGER_RUNNING) {
2230                 struct epoll_event event;
2231                 int n;
2232
2233                 if (!ratelimit_test(&rl)) {
2234                         /* Yay, something is going seriously wrong, pause a little */
2235                         log_warning("Looping too fast. Throttling execution a little.");
2236                         sleep(1);
2237                 }
2238
2239                 if (manager_dispatch_load_queue(m) > 0)
2240                         continue;
2241
2242                 if (manager_dispatch_run_queue(m) > 0)
2243                         continue;
2244
2245                 if (bus_dispatch(m) > 0)
2246                         continue;
2247
2248                 if (manager_dispatch_cleanup_queue(m) > 0)
2249                         continue;
2250
2251                 if (manager_dispatch_gc_queue(m) > 0)
2252                         continue;
2253
2254                 if (manager_dispatch_dbus_queue(m) > 0)
2255                         continue;
2256
2257                 if (swap_dispatch_reload(m) > 0)
2258                         continue;
2259
2260                 if ((n = epoll_wait(m->epoll_fd, &event, 1, -1)) < 0) {
2261
2262                         if (errno == EINTR)
2263                                 continue;
2264
2265                         return -errno;
2266                 }
2267
2268                 assert(n == 1);
2269
2270                 if ((r = process_event(m, &event)) < 0)
2271                         return r;
2272         }
2273
2274         return m->exit_code;
2275 }
2276
2277 int manager_get_unit_from_dbus_path(Manager *m, const char *s, Unit **_u) {
2278         char *n;
2279         Unit *u;
2280
2281         assert(m);
2282         assert(s);
2283         assert(_u);
2284
2285         if (!startswith(s, "/org/freedesktop/systemd1/unit/"))
2286                 return -EINVAL;
2287
2288         if (!(n = bus_path_unescape(s+31)))
2289                 return -ENOMEM;
2290
2291         u = manager_get_unit(m, n);
2292         free(n);
2293
2294         if (!u)
2295                 return -ENOENT;
2296
2297         *_u = u;
2298
2299         return 0;
2300 }
2301
2302 int manager_get_job_from_dbus_path(Manager *m, const char *s, Job **_j) {
2303         Job *j;
2304         unsigned id;
2305         int r;
2306
2307         assert(m);
2308         assert(s);
2309         assert(_j);
2310
2311         if (!startswith(s, "/org/freedesktop/systemd1/job/"))
2312                 return -EINVAL;
2313
2314         if ((r = safe_atou(s + 30, &id)) < 0)
2315                 return r;
2316
2317         if (!(j = manager_get_job(m, id)))
2318                 return -ENOENT;
2319
2320         *_j = j;
2321
2322         return 0;
2323 }
2324
2325 void manager_send_unit_audit(Manager *m, Unit *u, int type, bool success) {
2326
2327 #ifdef HAVE_AUDIT
2328         char *p;
2329
2330         if (m->audit_fd < 0)
2331                 return;
2332
2333         /* Don't generate audit events if the service was already
2334          * started and we're just deserializing */
2335         if (m->n_deserializing > 0)
2336                 return;
2337
2338         if (!(p = unit_name_to_prefix_and_instance(u->meta.id))) {
2339                 log_error("Failed to allocate unit name for audit message: %s", strerror(ENOMEM));
2340                 return;
2341         }
2342
2343         if (audit_log_user_comm_message(m->audit_fd, type, "", p, NULL, NULL, NULL, success) < 0)
2344                 log_error("Failed to send audit message: %m");
2345
2346         free(p);
2347 #endif
2348
2349 }
2350
2351 void manager_send_unit_plymouth(Manager *m, Unit *u) {
2352         int fd = -1;
2353         union sockaddr_union sa;
2354         int n = 0;
2355         char *message = NULL;
2356         ssize_t r;
2357
2358         /* Don't generate plymouth events if the service was already
2359          * started and we're just deserializing */
2360         if (m->n_deserializing > 0)
2361                 return;
2362
2363         if (m->running_as != MANAGER_SYSTEM)
2364                 return;
2365
2366         if (u->meta.type != UNIT_SERVICE &&
2367             u->meta.type != UNIT_MOUNT &&
2368             u->meta.type != UNIT_SWAP)
2369                 return;
2370
2371         /* We set SOCK_NONBLOCK here so that we rather drop the
2372          * message then wait for plymouth */
2373         if ((fd = socket(AF_UNIX, SOCK_STREAM|SOCK_CLOEXEC|SOCK_NONBLOCK, 0)) < 0) {
2374                 log_error("socket() failed: %m");
2375                 return;
2376         }
2377
2378         zero(sa);
2379         sa.sa.sa_family = AF_UNIX;
2380         strncpy(sa.un.sun_path+1, "/ply-boot-protocol", sizeof(sa.un.sun_path)-1);
2381         if (connect(fd, &sa.sa, sizeof(sa.un)) < 0) {
2382
2383                 if (errno != EPIPE &&
2384                     errno != EAGAIN &&
2385                     errno != ENOENT &&
2386                     errno != ECONNREFUSED &&
2387                     errno != ECONNRESET &&
2388                     errno != ECONNABORTED)
2389                         log_error("connect() failed: %m");
2390
2391                 goto finish;
2392         }
2393
2394         if (asprintf(&message, "U\002%c%s%n", (int) (strlen(u->meta.id) + 1), u->meta.id, &n) < 0) {
2395                 log_error("Out of memory");
2396                 goto finish;
2397         }
2398
2399         errno = 0;
2400         if ((r = write(fd, message, n + 1)) != n + 1) {
2401
2402                 if (errno != EPIPE &&
2403                     errno != EAGAIN &&
2404                     errno != ENOENT &&
2405                     errno != ECONNREFUSED &&
2406                     errno != ECONNRESET &&
2407                     errno != ECONNABORTED)
2408                         log_error("Failed to write Plymouth message: %m");
2409
2410                 goto finish;
2411         }
2412
2413 finish:
2414         if (fd >= 0)
2415                 close_nointr_nofail(fd);
2416
2417         free(message);
2418 }
2419
2420 void manager_dispatch_bus_name_owner_changed(
2421                 Manager *m,
2422                 const char *name,
2423                 const char* old_owner,
2424                 const char *new_owner) {
2425
2426         Unit *u;
2427
2428         assert(m);
2429         assert(name);
2430
2431         if (!(u = hashmap_get(m->watch_bus, name)))
2432                 return;
2433
2434         UNIT_VTABLE(u)->bus_name_owner_change(u, name, old_owner, new_owner);
2435 }
2436
2437 void manager_dispatch_bus_query_pid_done(
2438                 Manager *m,
2439                 const char *name,
2440                 pid_t pid) {
2441
2442         Unit *u;
2443
2444         assert(m);
2445         assert(name);
2446         assert(pid >= 1);
2447
2448         if (!(u = hashmap_get(m->watch_bus, name)))
2449                 return;
2450
2451         UNIT_VTABLE(u)->bus_query_pid_done(u, name, pid);
2452 }
2453
2454 int manager_open_serialization(Manager *m, FILE **_f) {
2455         char *path;
2456         mode_t saved_umask;
2457         int fd;
2458         FILE *f;
2459
2460         assert(_f);
2461
2462         if (m->running_as == MANAGER_SYSTEM) {
2463                 mkdir_p("/dev/.systemd", 0755);
2464
2465                 if (asprintf(&path, "/dev/.systemd/dump-%lu-XXXXXX", (unsigned long) getpid()) < 0)
2466                         return -ENOMEM;
2467         } else {
2468                 if (asprintf(&path, "/tmp/systemd-dump-%lu-XXXXXX", (unsigned long) getpid()) < 0)
2469                         return -ENOMEM;
2470         }
2471
2472         saved_umask = umask(0077);
2473         fd = mkostemp(path, O_RDWR|O_CLOEXEC);
2474         umask(saved_umask);
2475
2476         if (fd < 0) {
2477                 free(path);
2478                 return -errno;
2479         }
2480
2481         unlink(path);
2482
2483         log_debug("Serializing state to %s", path);
2484         free(path);
2485
2486         if (!(f = fdopen(fd, "w+")) < 0)
2487                 return -errno;
2488
2489         *_f = f;
2490
2491         return 0;
2492 }
2493
2494 int manager_serialize(Manager *m, FILE *f, FDSet *fds) {
2495         Iterator i;
2496         Unit *u;
2497         const char *t;
2498         int r;
2499
2500         assert(m);
2501         assert(f);
2502         assert(fds);
2503
2504         dual_timestamp_serialize(f, "initrd-timestamp", &m->initrd_timestamp);
2505         dual_timestamp_serialize(f, "startup-timestamp", &m->startup_timestamp);
2506         dual_timestamp_serialize(f, "finish-timestamp", &m->finish_timestamp);
2507
2508         fputc('\n', f);
2509
2510         HASHMAP_FOREACH_KEY(u, t, m->units, i) {
2511                 if (u->meta.id != t)
2512                         continue;
2513
2514                 if (!unit_can_serialize(u))
2515                         continue;
2516
2517                 /* Start marker */
2518                 fputs(u->meta.id, f);
2519                 fputc('\n', f);
2520
2521                 if ((r = unit_serialize(u, f, fds)) < 0)
2522                         return r;
2523         }
2524
2525         if (ferror(f))
2526                 return -EIO;
2527
2528         return 0;
2529 }
2530
2531 int manager_deserialize(Manager *m, FILE *f, FDSet *fds) {
2532         int r = 0;
2533
2534         assert(m);
2535         assert(f);
2536
2537         log_debug("Deserializing state...");
2538
2539         m->n_deserializing ++;
2540
2541         for (;;) {
2542                 char line[1024], *l;
2543
2544                 if (!fgets(line, sizeof(line), f)) {
2545                         if (feof(f))
2546                                 r = 0;
2547                         else
2548                                 r = -errno;
2549
2550                         goto finish;
2551                 }
2552
2553                 char_array_0(line);
2554                 l = strstrip(line);
2555
2556                 if (l[0] == 0)
2557                         break;
2558
2559                 if (startswith(l, "initrd-timestamp="))
2560                         dual_timestamp_deserialize(l+17, &m->initrd_timestamp);
2561                 else if (startswith(l, "startup-timestamp="))
2562                         dual_timestamp_deserialize(l+18, &m->startup_timestamp);
2563                 else if (startswith(l, "finish-timestamp="))
2564                         dual_timestamp_deserialize(l+17, &m->finish_timestamp);
2565                 else
2566                         log_debug("Unknown serialization item '%s'", l);
2567         }
2568
2569         for (;;) {
2570                 Unit *u;
2571                 char name[UNIT_NAME_MAX+2];
2572
2573                 /* Start marker */
2574                 if (!fgets(name, sizeof(name), f)) {
2575                         if (feof(f))
2576                                 r = 0;
2577                         else
2578                                 r = -errno;
2579
2580                         goto finish;
2581                 }
2582
2583                 char_array_0(name);
2584
2585                 if ((r = manager_load_unit(m, strstrip(name), NULL, NULL, &u)) < 0)
2586                         goto finish;
2587
2588                 if ((r = unit_deserialize(u, f, fds)) < 0)
2589                         goto finish;
2590         }
2591
2592 finish:
2593         if (ferror(f)) {
2594                 r = -EIO;
2595                 goto finish;
2596         }
2597
2598         assert(m->n_deserializing > 0);
2599         m->n_deserializing --;
2600
2601         return r;
2602 }
2603
2604 int manager_reload(Manager *m) {
2605         int r, q;
2606         FILE *f;
2607         FDSet *fds;
2608
2609         assert(m);
2610
2611         if ((r = manager_open_serialization(m, &f)) < 0)
2612                 return r;
2613
2614         if (!(fds = fdset_new())) {
2615                 r = -ENOMEM;
2616                 goto finish;
2617         }
2618
2619         if ((r = manager_serialize(m, f, fds)) < 0)
2620                 goto finish;
2621
2622         if (fseeko(f, 0, SEEK_SET) < 0) {
2623                 r = -errno;
2624                 goto finish;
2625         }
2626
2627         /* From here on there is no way back. */
2628         manager_clear_jobs_and_units(m);
2629
2630         /* Find new unit paths */
2631         lookup_paths_free(&m->lookup_paths);
2632         if ((q = lookup_paths_init(&m->lookup_paths, m->running_as)) < 0)
2633                 r = q;
2634
2635         m->n_deserializing ++;
2636
2637         /* First, enumerate what we can from all config files */
2638         if ((q = manager_enumerate(m)) < 0)
2639                 r = q;
2640
2641         /* Second, deserialize our stored data */
2642         if ((q = manager_deserialize(m, f, fds)) < 0)
2643                 r = q;
2644
2645         fclose(f);
2646         f = NULL;
2647
2648         /* Third, fire things up! */
2649         if ((q = manager_coldplug(m)) < 0)
2650                 r = q;
2651
2652         assert(m->n_deserializing > 0);
2653         m->n_deserializing ++;
2654
2655 finish:
2656         if (f)
2657                 fclose(f);
2658
2659         if (fds)
2660                 fdset_free(fds);
2661
2662         return r;
2663 }
2664
2665 bool manager_is_booting_or_shutting_down(Manager *m) {
2666         Unit *u;
2667
2668         assert(m);
2669
2670         /* Is the initial job still around? */
2671         if (manager_get_job(m, 1))
2672                 return true;
2673
2674         /* Is there a job for the shutdown target? */
2675         if (((u = manager_get_unit(m, SPECIAL_SHUTDOWN_TARGET))))
2676                 return !!u->meta.job;
2677
2678         return false;
2679 }
2680
2681 void manager_reset_failed(Manager *m) {
2682         Unit *u;
2683         Iterator i;
2684
2685         assert(m);
2686
2687         HASHMAP_FOREACH(u, m->units, i)
2688                 unit_reset_failed(u);
2689 }
2690
2691 int manager_set_console(Manager *m, const char *console) {
2692         char *c;
2693
2694         assert(m);
2695
2696         if (!(c = strdup(console)))
2697                 return -ENOMEM;
2698
2699         free(m->console);
2700         m->console = c;
2701
2702         log_debug("Using kernel console %s", c);
2703
2704         return 0;
2705 }
2706
2707 bool manager_unit_pending_inactive(Manager *m, const char *name) {
2708         Unit *u;
2709
2710         assert(m);
2711         assert(name);
2712
2713         /* Returns true if the unit is inactive or going down */
2714         if (!(u = manager_get_unit(m, name)))
2715                 return true;
2716
2717         return unit_pending_inactive(u);
2718 }
2719
2720 void manager_check_finished(Manager *m) {
2721         char userspace[FORMAT_TIMESPAN_MAX], initrd[FORMAT_TIMESPAN_MAX], kernel[FORMAT_TIMESPAN_MAX], sum[FORMAT_TIMESPAN_MAX];
2722
2723         assert(m);
2724
2725         if (dual_timestamp_is_set(&m->finish_timestamp))
2726                 return;
2727
2728         if (hashmap_size(m->jobs) > 0)
2729                 return;
2730
2731         dual_timestamp_get(&m->finish_timestamp);
2732
2733         if (m->running_as == MANAGER_SYSTEM) {
2734                 if (dual_timestamp_is_set(&m->initrd_timestamp)) {
2735                         log_info("Startup finished in %s (kernel) + %s (initrd) + %s (userspace) = %s.",
2736                                  format_timespan(kernel, sizeof(kernel),
2737                                                  m->initrd_timestamp.monotonic),
2738                                  format_timespan(initrd, sizeof(initrd),
2739                                                  m->startup_timestamp.monotonic - m->initrd_timestamp.monotonic),
2740                                  format_timespan(userspace, sizeof(userspace),
2741                                                  m->finish_timestamp.monotonic - m->startup_timestamp.monotonic),
2742                                  format_timespan(sum, sizeof(sum),
2743                                                  m->finish_timestamp.monotonic));
2744                 } else
2745                         log_info("Startup finished in %s (kernel) + %s (userspace) = %s.",
2746                                  format_timespan(kernel, sizeof(kernel),
2747                                                  m->startup_timestamp.monotonic),
2748                                  format_timespan(userspace, sizeof(userspace),
2749                                                  m->finish_timestamp.monotonic - m->startup_timestamp.monotonic),
2750                                  format_timespan(sum, sizeof(sum),
2751                                                  m->finish_timestamp.monotonic));
2752         } else
2753                 log_debug("Startup finished in %s.",
2754                           format_timespan(userspace, sizeof(userspace),
2755                                           m->finish_timestamp.monotonic - m->startup_timestamp.monotonic));
2756
2757 }
2758
2759 static const char* const manager_running_as_table[_MANAGER_RUNNING_AS_MAX] = {
2760         [MANAGER_SYSTEM] = "system",
2761         [MANAGER_SESSION] = "session"
2762 };
2763
2764 DEFINE_STRING_TABLE_LOOKUP(manager_running_as, ManagerRunningAs);