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