]> git.ipfire.org Git - people/ms/systemd.git/blame - manager.c
load-fragment: make socket timeout configurable
[people/ms/systemd.git] / manager.c
CommitLineData
60918275
LP
1/*-*- Mode: C; c-basic-offset: 8 -*-*/
2
a7334b09
LP
3/***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
60918275
LP
22#include <assert.h>
23#include <errno.h>
87d1515d 24#include <string.h>
9152c765
LP
25#include <sys/epoll.h>
26#include <signal.h>
27#include <sys/signalfd.h>
28#include <sys/wait.h>
29#include <unistd.h>
30#include <sys/poll.h>
e1414003
LP
31#include <sys/reboot.h>
32#include <sys/ioctl.h>
33#include <linux/kd.h>
8e274523 34#include <libcgroup.h>
60918275
LP
35
36#include "manager.h"
37#include "hashmap.h"
38#include "macro.h"
39#include "strv.h"
16354eff 40#include "log.h"
2a987ee8 41#include "util.h"
ea430986 42#include "ratelimit.h"
8e274523
LP
43#include "cgroup.h"
44#include "mount-setup.h"
60918275 45
ce578209 46static int manager_setup_signals(Manager *m) {
9152c765
LP
47 sigset_t mask;
48 struct epoll_event ev;
60918275 49
ce578209
LP
50 assert(m);
51
ce578209
LP
52 assert_se(sigemptyset(&mask) == 0);
53 assert_se(sigaddset(&mask, SIGCHLD) == 0);
54 assert_se(sigaddset(&mask, SIGINT) == 0); /* Kernel sends us this on control-alt-del */
55 assert_se(sigaddset(&mask, SIGWINCH) == 0); /* Kernel sends us this on kbrequest (alt-arrowup) */
56 assert_se(sigaddset(&mask, SIGTERM) == 0);
57 assert_se(sigaddset(&mask, SIGHUP) == 0);
58 assert_se(sigaddset(&mask, SIGUSR1) == 0);
59 assert_se(sigaddset(&mask, SIGUSR2) == 0);
60 assert_se(sigaddset(&mask, SIGPIPE) == 0);
e1414003
LP
61 assert_se(sigaddset(&mask, SIGPWR) == 0);
62 assert_se(sigaddset(&mask, SIGTTIN) == 0);
ce578209
LP
63 assert_se(sigprocmask(SIG_SETMASK, &mask, NULL) == 0);
64
ef734fd6 65 m->signal_watch.type = WATCH_SIGNAL;
ce578209
LP
66 if ((m->signal_watch.fd = signalfd(-1, &mask, SFD_NONBLOCK|SFD_CLOEXEC)) < 0)
67 return -errno;
68
69 zero(ev);
70 ev.events = EPOLLIN;
71 ev.data.ptr = &m->signal_watch;
72
73 if (epoll_ctl(m->epoll_fd, EPOLL_CTL_ADD, m->signal_watch.fd, &ev) < 0)
74 return -errno;
75
e1414003
LP
76 if (m->running_as == MANAGER_INIT) {
77 /* Enable that we get SIGINT on control-alt-del */
78 if (reboot(RB_DISABLE_CAD) < 0)
79 log_warning("Failed to enable ctrl-alt-del handling: %s", strerror(errno));
80
81 /* Enable that we get SIGWINCH on kbrequest */
82 if (ioctl(0, KDSIGACCEPT, SIGWINCH) < 0)
83 log_warning("Failed to enable kbrequest handling: %s", strerror(errno));
84 }
85
ce578209
LP
86 return 0;
87}
88
036643a2
LP
89static char** session_dirs(void) {
90 const char *home, *e;
91 char *config_home = NULL, *data_home = NULL;
92 char **config_dirs = NULL, **data_dirs = NULL;
93 char **r = NULL, **t;
94
95 /* Implement the mechanisms defined in
96 *
97 * http://standards.freedesktop.org/basedir-spec/basedir-spec-0.6.html
98 *
99 * We look in both the config and the data dirs because we
100 * want to encourage that distributors ship their unit files
101 * as data, and allow overriding as configuration.
102 */
103
104 home = getenv("HOME");
105
106 if ((e = getenv("XDG_CONFIG_HOME"))) {
107 if (asprintf(&config_home, "%s/systemd/session", e) < 0)
108 goto fail;
109
110 } else if (home) {
111 if (asprintf(&config_home, "%s/.config/systemd/session", home) < 0)
112 goto fail;
113 }
114
115 if ((e = getenv("XDG_CONFIG_DIRS")))
116 config_dirs = strv_split(e, ":");
117 else
118 config_dirs = strv_new("/etc/xdg", NULL);
119
120 if (!config_dirs)
121 goto fail;
122
123 if ((e = getenv("XDG_DATA_HOME"))) {
124 if (asprintf(&data_home, "%s/systemd/session", e) < 0)
125 goto fail;
126
127 } else if (home) {
128 if (asprintf(&data_home, "%s/.local/share/systemd/session", home) < 0)
129 goto fail;
130 }
131
132 if ((e = getenv("XDG_DATA_DIRS")))
133 data_dirs = strv_split(e, ":");
134 else
135 data_dirs = strv_new("/usr/local/share", "/usr/share", NULL);
136
137 if (!data_dirs)
138 goto fail;
139
140 /* Now merge everything we found. */
141 if (config_home) {
142 if (!(t = strv_append(r, config_home)))
143 goto fail;
144 strv_free(r);
145 r = t;
146 }
147
148 if (!(t = strv_merge_concat(r, config_dirs, "/systemd/session")))
149 goto finish;
150 strv_free(r);
151 r = t;
152
153 if (!(t = strv_append(r, SESSION_CONFIG_UNIT_PATH)))
154 goto fail;
155 strv_free(r);
156 r = t;
157
158 if (data_home) {
159 if (!(t = strv_append(r, data_home)))
160 goto fail;
161 strv_free(r);
162 r = t;
163 }
164
165 if (!(t = strv_merge_concat(r, data_dirs, "/systemd/session")))
166 goto fail;
167 strv_free(r);
168 r = t;
169
170 if (!(t = strv_append(r, SESSION_DATA_UNIT_PATH)))
171 goto fail;
172 strv_free(r);
173 r = t;
174
175 if (!strv_path_make_absolute_cwd(r))
176 goto fail;
177
178finish:
179 free(config_home);
180 strv_free(config_dirs);
181 free(data_home);
182 strv_free(data_dirs);
183
184 return r;
185
186fail:
187 strv_free(r);
188 r = NULL;
189 goto finish;
190}
191
192static int manager_find_paths(Manager *m) {
193 const char *e;
194 char *t;
23a177ef 195
036643a2
LP
196 assert(m);
197
198 /* First priority is whatever has been passed to us via env
199 * vars */
200 if ((e = getenv("SYSTEMD_UNIT_PATH")))
201 if (!(m->unit_path = split_path_and_make_absolute(e)))
202 return -ENOMEM;
203
204 if (strv_isempty(m->unit_path)) {
205
206 /* Nothing is set, so let's figure something out. */
207 strv_free(m->unit_path);
208
209 if (m->running_as == MANAGER_SESSION) {
210 if (!(m->unit_path = session_dirs()))
211 return -ENOMEM;
212 } else
213 if (!(m->unit_path = strv_new(
214 SYSTEM_CONFIG_UNIT_PATH, /* /etc/systemd/system/ */
215 SYSTEM_DATA_UNIT_PATH, /* /lib/systemd/system/ */
216 NULL)))
217 return -ENOMEM;
218 }
219
e1414003 220 if (m->running_as == MANAGER_INIT) {
036643a2
LP
221 /* /etc/init.d/ compativility does not matter to users */
222
223 if ((e = getenv("SYSTEMD_SYSVINIT_PATH")))
224 if (!(m->sysvinit_path = split_path_and_make_absolute(e)))
225 return -ENOMEM;
226
227 if (strv_isempty(m->sysvinit_path)) {
228 strv_free(m->sysvinit_path);
229
230 if (!(m->sysvinit_path = strv_new(
231 SYSTEM_SYSVINIT_PATH, /* /etc/init.d/ */
232 NULL)))
233 return -ENOMEM;
234 }
0571e011
LP
235
236 if ((e = getenv("SYSTEMD_SYSVRCND_PATH")))
237 if (!(m->sysvrcnd_path = split_path_and_make_absolute(e)))
238 return -ENOMEM;
239
240 if (strv_isempty(m->sysvrcnd_path)) {
241 strv_free(m->sysvrcnd_path);
242
243 if (!(m->sysvrcnd_path = strv_new(
244 SYSTEM_SYSVRCND_PATH, /* /etc/rcN.d/ */
245 NULL)))
246 return -ENOMEM;
247 }
036643a2
LP
248 }
249
250 strv_uniq(m->unit_path);
251 strv_uniq(m->sysvinit_path);
0571e011 252 strv_uniq(m->sysvrcnd_path);
036643a2
LP
253
254 assert(!strv_isempty(m->unit_path));
255 if (!(t = strv_join(m->unit_path, "\n\t")))
256 return -ENOMEM;
257 log_debug("Looking for unit files in:\n\t%s", t);
258 free(t);
259
260 if (!strv_isempty(m->sysvinit_path)) {
261
262 if (!(t = strv_join(m->sysvinit_path, "\n\t")))
263 return -ENOMEM;
264
265 log_debug("Looking for SysV init scripts in:\n\t%s", t);
266 free(t);
267 } else
268 log_debug("Ignoring SysV init scripts.");
269
0571e011
LP
270 if (!strv_isempty(m->sysvrcnd_path)) {
271
272 if (!(t = strv_join(m->sysvrcnd_path, "\n\t")))
273 return -ENOMEM;
274
275 log_debug("Looking for SysV rcN.d links in:\n\t%s", t);
276 free(t);
277 } else
278 log_debug("Ignoring SysV rcN.d links.");
279
036643a2
LP
280 return 0;
281}
282
a5dab5ce 283int manager_new(ManagerRunningAs running_as, Manager **_m) {
ce578209 284 Manager *m;
8e274523
LP
285 int r = -ENOMEM;
286
287 assert(_m);
a5dab5ce
LP
288 assert(running_as >= 0);
289 assert(running_as < _MANAGER_RUNNING_AS_MAX);
ce578209 290
60918275 291 if (!(m = new0(Manager, 1)))
8e274523 292 return -ENOMEM;
60918275 293
a5dab5ce 294 m->running_as = running_as;
f94ea366 295 m->signal_watch.fd = m->mount_watch.fd = m->udev_watch.fd = m->epoll_fd = -1;
ea430986 296 m->current_job_id = 1; /* start as id #1, so that we can leave #0 around as "null-like" value */
9152c765 297
87f0e418 298 if (!(m->units = hashmap_new(string_hash_func, string_compare_func)))
60918275
LP
299 goto fail;
300
301 if (!(m->jobs = hashmap_new(trivial_hash_func, trivial_compare_func)))
302 goto fail;
303
e5b5ae50 304 if (!(m->transaction_jobs = hashmap_new(trivial_hash_func, trivial_compare_func)))
60918275
LP
305 goto fail;
306
9152c765
LP
307 if (!(m->watch_pids = hashmap_new(trivial_hash_func, trivial_compare_func)))
308 goto fail;
309
8e274523
LP
310 if (!(m->cgroup_bondings = hashmap_new(string_hash_func, string_compare_func)))
311 goto fail;
312
9152c765
LP
313 if ((m->epoll_fd = epoll_create1(EPOLL_CLOEXEC)) < 0)
314 goto fail;
315
8e274523 316 if ((r = manager_find_paths(m)) < 0)
e1414003
LP
317 goto fail;
318
8e274523
LP
319 if ((r = manager_setup_signals(m)) < 0)
320 goto fail;
321
8e274523 322 if ((r = manager_setup_cgroup(m)) < 0)
9152c765
LP
323 goto fail;
324
f278026d
LP
325 /* Try to connect to the busses, if possible. */
326 if ((r = bus_init_system(m)) < 0 ||
327 (r = bus_init_api(m)) < 0)
ea430986
LP
328 goto fail;
329
8e274523
LP
330 *_m = m;
331 return 0;
60918275
LP
332
333fail:
334 manager_free(m);
8e274523 335 return r;
60918275
LP
336}
337
23a177ef
LP
338static unsigned manager_dispatch_cleanup_queue(Manager *m) {
339 Meta *meta;
340 unsigned n = 0;
341
342 assert(m);
343
344 while ((meta = m->cleanup_queue)) {
345 assert(meta->in_cleanup_queue);
346
347 unit_free(UNIT(meta));
348 n++;
349 }
350
351 return n;
352}
353
60918275 354void manager_free(Manager *m) {
7824bbeb 355 UnitType c;
87f0e418 356 Unit *u;
e5b5ae50 357 Job *j;
60918275
LP
358
359 assert(m);
360
87f0e418 361 while ((j = hashmap_first(m->transaction_jobs)))
e5b5ae50
LP
362 job_free(j);
363
87f0e418
LP
364 while ((u = hashmap_first(m->units)))
365 unit_free(u);
366
23a177ef
LP
367 manager_dispatch_cleanup_queue(m);
368
7824bbeb
LP
369 for (c = 0; c < _UNIT_TYPE_MAX; c++)
370 if (unit_vtable[c]->shutdown)
371 unit_vtable[c]->shutdown(m);
372
8e274523
LP
373 manager_shutdown_cgroup(m);
374
f278026d
LP
375 bus_done_api(m);
376 bus_done_system(m);
ea430986 377
87f0e418 378 hashmap_free(m->units);
60918275 379 hashmap_free(m->jobs);
e5b5ae50 380 hashmap_free(m->transaction_jobs);
9152c765
LP
381 hashmap_free(m->watch_pids);
382
383 if (m->epoll_fd >= 0)
384 close_nointr(m->epoll_fd);
acbb0225
LP
385 if (m->signal_watch.fd >= 0)
386 close_nointr(m->signal_watch.fd);
60918275 387
036643a2
LP
388 strv_free(m->unit_path);
389 strv_free(m->sysvinit_path);
0571e011 390 strv_free(m->sysvrcnd_path);
036643a2 391
8e274523
LP
392 free(m->cgroup_controller);
393 free(m->cgroup_hierarchy);
394
395 assert(hashmap_isempty(m->cgroup_bondings));
396 hashmap_free(m->cgroup_bondings);
397
60918275
LP
398 free(m);
399}
400
f50e0a01
LP
401int manager_coldplug(Manager *m) {
402 int r;
403 UnitType c;
404 Iterator i;
405 Unit *u;
406 char *k;
407
408 assert(m);
409
410 /* First, let's ask every type to load all units from
411 * disk/kernel that it might know */
412 for (c = 0; c < _UNIT_TYPE_MAX; c++)
413 if (unit_vtable[c]->enumerate)
414 if ((r = unit_vtable[c]->enumerate(m)) < 0)
415 return r;
416
417 manager_dispatch_load_queue(m);
418
419 /* Then, let's set up their initial state. */
420 HASHMAP_FOREACH_KEY(u, k, m->units, i) {
421
422 /* ignore aliases */
423 if (unit_id(u) != k)
424 continue;
425
426 if (UNIT_VTABLE(u)->coldplug)
427 if ((r = UNIT_VTABLE(u)->coldplug(u)) < 0)
428 return r;
429 }
430
431 return 0;
432}
433
23a177ef 434static void transaction_delete_job(Manager *m, Job *j, bool delete_dependencies) {
302d0040
LP
435 assert(m);
436 assert(j);
437
1ffba6fe
LP
438 /* Deletes one job from the transaction */
439
23a177ef 440 manager_transaction_unlink_job(m, j, delete_dependencies);
302d0040 441
ac1135be 442 if (!j->installed)
302d0040
LP
443 job_free(j);
444}
445
87f0e418 446static void transaction_delete_unit(Manager *m, Unit *u) {
1ffba6fe
LP
447 Job *j;
448
87f0e418 449 /* Deletes all jobs associated with a certain unit from the
1ffba6fe
LP
450 * transaction */
451
87f0e418 452 while ((j = hashmap_get(m->transaction_jobs, u)))
23a177ef 453 transaction_delete_job(m, j, true);
1ffba6fe
LP
454}
455
f04fa1d5
LP
456static void transaction_clean_dependencies(Manager *m) {
457 Iterator i;
458 Job *j;
459
460 assert(m);
461
462 /* Drops all dependencies of all installed jobs */
463
464 HASHMAP_FOREACH(j, m->jobs, i) {
465 while (j->subject_list)
466 job_dependency_free(j->subject_list);
467 while (j->object_list)
468 job_dependency_free(j->object_list);
469 }
470
471 assert(!m->transaction_anchor);
472}
473
11dd41ce
LP
474static void transaction_abort(Manager *m) {
475 Job *j;
476
477 assert(m);
11dd41ce 478
e5b5ae50 479 while ((j = hashmap_first(m->transaction_jobs)))
ac1135be 480 if (j->installed)
23a177ef 481 transaction_delete_job(m, j, true);
e5b5ae50
LP
482 else
483 job_free(j);
484
485 assert(hashmap_isempty(m->transaction_jobs));
f04fa1d5
LP
486
487 transaction_clean_dependencies(m);
e5b5ae50
LP
488}
489
490static void transaction_find_jobs_that_matter_to_anchor(Manager *m, Job *j, unsigned generation) {
491 JobDependency *l;
492
493 assert(m);
494
87f0e418 495 /* A recursive sweep through the graph that marks all units
1ffba6fe
LP
496 * that matter to the anchor job, i.e. are directly or
497 * indirectly a dependency of the anchor job via paths that
498 * are fully marked as mattering. */
499
44d8db9e
LP
500 if (j)
501 l = j->subject_list;
502 else
503 l = m->transaction_anchor;
504
505 LIST_FOREACH(subject, l, l) {
e5b5ae50
LP
506
507 /* This link does not matter */
508 if (!l->matters)
509 continue;
510
87f0e418 511 /* This unit has already been marked */
e5b5ae50
LP
512 if (l->object->generation == generation)
513 continue;
514
515 l->object->matters_to_anchor = true;
516 l->object->generation = generation;
517
518 transaction_find_jobs_that_matter_to_anchor(m, l->object, generation);
519 }
520}
521
7fad411c 522static void transaction_merge_and_delete_job(Manager *m, Job *j, Job *other, JobType t) {
e5b5ae50
LP
523 JobDependency *l, *last;
524
525 assert(j);
526 assert(other);
87f0e418 527 assert(j->unit == other->unit);
ac1135be 528 assert(!j->installed);
e5b5ae50 529
1ffba6fe
LP
530 /* Merges 'other' into 'j' and then deletes j. */
531
e5b5ae50
LP
532 j->type = t;
533 j->state = JOB_WAITING;
5cb5a6ff 534 j->forced = j->forced || other->forced;
e5b5ae50
LP
535
536 j->matters_to_anchor = j->matters_to_anchor || other->matters_to_anchor;
537
538 /* Patch us in as new owner of the JobDependency objects */
539 last = NULL;
44d8db9e 540 LIST_FOREACH(subject, l, other->subject_list) {
e5b5ae50
LP
541 assert(l->subject == other);
542 l->subject = j;
543 last = l;
544 }
545
546 /* Merge both lists */
547 if (last) {
548 last->subject_next = j->subject_list;
549 if (j->subject_list)
550 j->subject_list->subject_prev = last;
551 j->subject_list = other->subject_list;
552 }
553
554 /* Patch us in as new owner of the JobDependency objects */
555 last = NULL;
44d8db9e 556 LIST_FOREACH(object, l, other->object_list) {
e5b5ae50
LP
557 assert(l->object == other);
558 l->object = j;
559 last = l;
560 }
561
562 /* Merge both lists */
563 if (last) {
564 last->object_next = j->object_list;
565 if (j->object_list)
566 j->object_list->object_prev = last;
567 j->object_list = other->object_list;
568 }
569
e5b5ae50
LP
570 /* Kill the other job */
571 other->subject_list = NULL;
572 other->object_list = NULL;
23a177ef 573 transaction_delete_job(m, other, true);
e5b5ae50
LP
574}
575
5cb5a6ff 576static int delete_one_unmergeable_job(Manager *m, Job *j) {
1ffba6fe
LP
577 Job *k;
578
579 assert(j);
580
581 /* Tries to delete one item in the linked list
582 * j->transaction_next->transaction_next->... that conflicts
583 * whith another one, in an attempt to make an inconsistent
584 * transaction work. */
585
586 /* We rely here on the fact that if a merged with b does not
587 * merge with c, either a or b merge with c neither */
034c6ed7
LP
588 LIST_FOREACH(transaction, j, j)
589 LIST_FOREACH(transaction, k, j->transaction_next) {
1ffba6fe
LP
590 Job *d;
591
592 /* Is this one mergeable? Then skip it */
5cb5a6ff 593 if (job_type_is_mergeable(j->type, k->type))
1ffba6fe
LP
594 continue;
595
596 /* Ok, we found two that conflict, let's see if we can
597 * drop one of them */
598 if (!j->matters_to_anchor)
599 d = j;
600 else if (!k->matters_to_anchor)
601 d = k;
602 else
603 return -ENOEXEC;
604
605 /* Ok, we can drop one, so let's do so. */
23a177ef
LP
606 log_debug("Trying to fix job merging by deleting job %s/%s", unit_id(d->unit), job_type_to_string(d->type));
607 transaction_delete_job(m, d, true);
1ffba6fe
LP
608 return 0;
609 }
610
611 return -EINVAL;
612}
613
e5b5ae50 614static int transaction_merge_jobs(Manager *m) {
11dd41ce 615 Job *j;
034c6ed7 616 Iterator i;
e5b5ae50
LP
617 int r;
618
619 assert(m);
620
1ffba6fe
LP
621 /* First step, check whether any of the jobs for one specific
622 * task conflict. If so, try to drop one of them. */
034c6ed7 623 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
1ffba6fe
LP
624 JobType t;
625 Job *k;
626
627 t = j->type;
034c6ed7 628 LIST_FOREACH(transaction, k, j->transaction_next) {
1ffba6fe
LP
629 if ((r = job_type_merge(&t, k->type)) >= 0)
630 continue;
631
632 /* OK, we could not merge all jobs for this
633 * action. Let's see if we can get rid of one
634 * of them */
635
5cb5a6ff 636 if ((r = delete_one_unmergeable_job(m, j)) >= 0)
1ffba6fe
LP
637 /* Ok, we managed to drop one, now
638 * let's ask our callers to call us
639 * again after garbage collecting */
640 return -EAGAIN;
641
642 /* We couldn't merge anything. Failure */
643 return r;
644 }
645 }
646
647 /* Second step, merge the jobs. */
034c6ed7 648 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
e5b5ae50
LP
649 JobType t = j->type;
650 Job *k;
651
e094e853 652 /* Merge all transactions */
034c6ed7 653 LIST_FOREACH(transaction, k, j->transaction_next)
1ffba6fe 654 assert_se(job_type_merge(&t, k->type) == 0);
e5b5ae50 655
5cb5a6ff 656 /* If an active job is mergeable, merge it too */
87f0e418
LP
657 if (j->unit->meta.job)
658 job_type_merge(&t, j->unit->meta.job->type); /* Might fail. Which is OK */
e094e853 659
e5b5ae50 660 while ((k = j->transaction_next)) {
ac1135be 661 if (j->installed) {
7fad411c 662 transaction_merge_and_delete_job(m, k, j, t);
e5b5ae50
LP
663 j = k;
664 } else
7fad411c 665 transaction_merge_and_delete_job(m, j, k, t);
e5b5ae50
LP
666 }
667
668 assert(!j->transaction_next);
669 assert(!j->transaction_prev);
670 }
671
7fad411c 672 return 0;
e5b5ae50
LP
673}
674
23a177ef
LP
675static void transaction_drop_redundant(Manager *m) {
676 bool again;
677
678 assert(m);
679
680 /* Goes through the transaction and removes all jobs that are
681 * a noop */
682
683 do {
684 Job *j;
685 Iterator i;
686
687 again = false;
688
689 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
690 bool changes_something = false;
691 Job *k;
692
693 LIST_FOREACH(transaction, k, j) {
694
695 if (!job_is_anchor(k) &&
696 job_type_is_redundant(k->type, unit_active_state(k->unit)))
697 continue;
698
699 changes_something = true;
700 break;
701 }
702
703 if (changes_something)
704 continue;
705
706 log_debug("Found redundant job %s/%s, dropping.", unit_id(j->unit), job_type_to_string(j->type));
707 transaction_delete_job(m, j, false);
708 again = true;
709 break;
710 }
711
712 } while (again);
713}
714
87f0e418
LP
715static bool unit_matters_to_anchor(Unit *u, Job *j) {
716 assert(u);
1ffba6fe
LP
717 assert(!j->transaction_prev);
718
87f0e418 719 /* Checks whether at least one of the jobs for this unit
1ffba6fe
LP
720 * matters to the anchor. */
721
034c6ed7 722 LIST_FOREACH(transaction, j, j)
1ffba6fe
LP
723 if (j->matters_to_anchor)
724 return true;
725
726 return false;
727}
728
e5b5ae50 729static int transaction_verify_order_one(Manager *m, Job *j, Job *from, unsigned generation) {
034c6ed7 730 Iterator i;
87f0e418 731 Unit *u;
11dd41ce 732 int r;
e5b5ae50
LP
733
734 assert(m);
735 assert(j);
1ffba6fe
LP
736 assert(!j->transaction_prev);
737
738 /* Does a recursive sweep through the ordering graph, looking
739 * for a cycle. If we find cycle we try to break it. */
e5b5ae50 740
7fad411c 741 /* Did we find a cycle? */
e5b5ae50
LP
742 if (j->marker && j->generation == generation) {
743 Job *k;
744
745 /* So, we already have been here. We have a
1ffba6fe
LP
746 * cycle. Let's try to break it. We go backwards in
747 * our path and try to find a suitable job to
748 * remove. We use the marker to find our way back,
749 * since smart how we are we stored our way back in
750 * there. */
e5b5ae50 751
23a177ef 752 log_debug("Found ordering cycle on %s/%s", unit_id(j->unit), job_type_to_string(j->type));
9f04bd52 753
e5b5ae50 754 for (k = from; k; k = (k->generation == generation ? k->marker : NULL)) {
1ffba6fe 755
23a177ef 756 log_debug("Walked on cycle path to %s/%s", unit_id(k->unit), job_type_to_string(k->type));
9f04bd52 757
ac1135be 758 if (!k->installed &&
87f0e418 759 !unit_matters_to_anchor(k->unit, k)) {
1ffba6fe
LP
760 /* Ok, we can drop this one, so let's
761 * do so. */
87f0e418
LP
762 log_debug("Breaking order cycle by deleting job %s/%s", unit_id(k->unit), job_type_to_string(k->type));
763 transaction_delete_unit(m, k->unit);
e5b5ae50
LP
764 return -EAGAIN;
765 }
766
767 /* Check if this in fact was the beginning of
7fad411c 768 * the cycle */
e5b5ae50
LP
769 if (k == j)
770 break;
771 }
772
9f04bd52
LP
773 log_debug("Unable to break cycle");
774
1ffba6fe 775 return -ENOEXEC;
e5b5ae50
LP
776 }
777
1ffba6fe
LP
778 /* Make the marker point to where we come from, so that we can
779 * find our way backwards if we want to break a cycle */
e5b5ae50
LP
780 j->marker = from;
781 j->generation = generation;
782
1ffba6fe 783 /* We assume that the the dependencies are bidirectional, and
87f0e418
LP
784 * hence can ignore UNIT_AFTER */
785 SET_FOREACH(u, j->unit->meta.dependencies[UNIT_BEFORE], i) {
e5b5ae50
LP
786 Job *o;
787
87f0e418
LP
788 /* Is there a job for this unit? */
789 if (!(o = hashmap_get(m->transaction_jobs, u)))
1ffba6fe
LP
790
791 /* Ok, there is no job for this in the
792 * transaction, but maybe there is already one
793 * running? */
87f0e418 794 if (!(o = u->meta.job))
e5b5ae50
LP
795 continue;
796
797 if ((r = transaction_verify_order_one(m, o, j, generation)) < 0)
798 return r;
799 }
800
9f04bd52
LP
801 /* Ok, let's backtrack, and remember that this entry is not on
802 * our path anymore. */
803 j->marker = NULL;
804
e5b5ae50
LP
805 return 0;
806}
807
808static int transaction_verify_order(Manager *m, unsigned *generation) {
1ffba6fe
LP
809 Job *j;
810 int r;
034c6ed7 811 Iterator i;
1ffba6fe 812
e5b5ae50
LP
813 assert(m);
814 assert(generation);
815
1ffba6fe
LP
816 /* Check if the ordering graph is cyclic. If it is, try to fix
817 * that up by dropping one of the jobs. */
e5b5ae50 818
034c6ed7 819 HASHMAP_FOREACH(j, m->transaction_jobs, i)
1ffba6fe
LP
820 if ((r = transaction_verify_order_one(m, j, NULL, (*generation)++)) < 0)
821 return r;
e5b5ae50
LP
822
823 return 0;
824}
825
826static void transaction_collect_garbage(Manager *m) {
827 bool again;
828
829 assert(m);
830
1ffba6fe
LP
831 /* Drop jobs that are not required by any other job */
832
e5b5ae50 833 do {
034c6ed7 834 Iterator i;
e5b5ae50
LP
835 Job *j;
836
837 again = false;
838
034c6ed7 839 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
e5b5ae50
LP
840 if (j->object_list)
841 continue;
842
87f0e418 843 log_debug("Garbage collecting job %s/%s", unit_id(j->unit), job_type_to_string(j->type));
23a177ef 844 transaction_delete_job(m, j, true);
e5b5ae50
LP
845 again = true;
846 break;
847 }
848
849 } while (again);
850}
851
852static int transaction_is_destructive(Manager *m, JobMode mode) {
034c6ed7 853 Iterator i;
e5b5ae50 854 Job *j;
11dd41ce
LP
855
856 assert(m);
11dd41ce 857
e5b5ae50
LP
858 /* Checks whether applying this transaction means that
859 * existing jobs would be replaced */
11dd41ce 860
034c6ed7 861 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
e094e853
LP
862
863 /* Assume merged */
864 assert(!j->transaction_prev);
865 assert(!j->transaction_next);
866
87f0e418
LP
867 if (j->unit->meta.job &&
868 j->unit->meta.job != j &&
869 !job_type_is_superset(j->type, j->unit->meta.job->type))
e5b5ae50 870 return -EEXIST;
e094e853 871 }
11dd41ce 872
e5b5ae50
LP
873 return 0;
874}
875
e094e853
LP
876static void transaction_minimize_impact(Manager *m) {
877 bool again;
878 assert(m);
879
880 /* Drops all unnecessary jobs that reverse already active jobs
881 * or that stop a running service. */
882
883 do {
884 Job *j;
034c6ed7 885 Iterator i;
e094e853
LP
886
887 again = false;
888
034c6ed7
LP
889 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
890 LIST_FOREACH(transaction, j, j) {
c20cae32 891 bool stops_running_service, changes_existing_job;
e094e853
LP
892
893 /* If it matters, we shouldn't drop it */
894 if (j->matters_to_anchor)
895 continue;
896
897 /* Would this stop a running service?
898 * Would this change an existing job?
899 * If so, let's drop this entry */
c20cae32
LP
900
901 stops_running_service =
902 j->type == JOB_STOP && UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(j->unit));
903
904 changes_existing_job =
905 j->unit->meta.job && job_type_is_conflicting(j->type, j->unit->meta.job->state);
906
907 if (!stops_running_service && !changes_existing_job)
e094e853
LP
908 continue;
909
c20cae32
LP
910 if (stops_running_service)
911 log_debug("%s/%s would stop a running service.", unit_id(j->unit), job_type_to_string(j->type));
912
913 if (changes_existing_job)
914 log_debug("%s/%s would change existing job.", unit_id(j->unit), job_type_to_string(j->type));
915
e094e853 916 /* Ok, let's get rid of this */
c20cae32
LP
917 log_debug("Deleting %s/%s to minimize impact.", unit_id(j->unit), job_type_to_string(j->type));
918
23a177ef 919 transaction_delete_job(m, j, true);
e094e853
LP
920 again = true;
921 break;
922 }
923
924 if (again)
925 break;
926 }
927
928 } while (again);
929}
930
e5b5ae50 931static int transaction_apply(Manager *m, JobMode mode) {
034c6ed7 932 Iterator i;
e5b5ae50
LP
933 Job *j;
934 int r;
935
1ffba6fe
LP
936 /* Moves the transaction jobs to the set of active jobs */
937
034c6ed7 938 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
e094e853
LP
939 /* Assume merged */
940 assert(!j->transaction_prev);
941 assert(!j->transaction_next);
942
ac1135be 943 if (j->installed)
e5b5ae50
LP
944 continue;
945
946 if ((r = hashmap_put(m->jobs, UINT32_TO_PTR(j->id), j)) < 0)
11dd41ce
LP
947 goto rollback;
948 }
949
e5b5ae50 950 while ((j = hashmap_steal_first(m->transaction_jobs))) {
ac1135be 951 if (j->installed)
e5b5ae50
LP
952 continue;
953
87f0e418
LP
954 if (j->unit->meta.job)
955 job_free(j->unit->meta.job);
11dd41ce 956
87f0e418 957 j->unit->meta.job = j;
ac1135be 958 j->installed = true;
11dd41ce 959
e5b5ae50
LP
960 /* We're fully installed. Now let's free data we don't
961 * need anymore. */
962
963 assert(!j->transaction_next);
964 assert(!j->transaction_prev);
965
c1e1601e
LP
966 job_add_to_run_queue(j);
967 job_add_to_dbus_queue(j);
01184e04
LP
968 }
969
970 /* As last step, kill all remaining job dependencies. */
f04fa1d5 971 transaction_clean_dependencies(m);
1ffba6fe 972
11dd41ce
LP
973 return 0;
974
975rollback:
976
034c6ed7 977 HASHMAP_FOREACH(j, m->transaction_jobs, i) {
ac1135be 978 if (j->installed)
e5b5ae50
LP
979 continue;
980
981 hashmap_remove(m->jobs, UINT32_TO_PTR(j->id));
982 }
983
984 return r;
985}
986
e5b5ae50
LP
987static int transaction_activate(Manager *m, JobMode mode) {
988 int r;
989 unsigned generation = 1;
990
991 assert(m);
992
993 /* This applies the changes recorded in transaction_jobs to
994 * the actual list of jobs, if possible. */
995
996 /* First step: figure out which jobs matter */
997 transaction_find_jobs_that_matter_to_anchor(m, NULL, generation++);
998
e094e853
LP
999 /* Second step: Try not to stop any running services if
1000 * we don't have to. Don't try to reverse running
1001 * jobs if we don't have to. */
1002 transaction_minimize_impact(m);
1003
23a177ef
LP
1004 /* Third step: Drop redundant jobs */
1005 transaction_drop_redundant(m);
1006
1ffba6fe 1007 for (;;) {
23a177ef 1008 /* Fourth step: Let's remove unneeded jobs that might
1ffba6fe
LP
1009 * be lurking. */
1010 transaction_collect_garbage(m);
e5b5ae50 1011
23a177ef 1012 /* Fifth step: verify order makes sense and correct
1ffba6fe
LP
1013 * cycles if necessary and possible */
1014 if ((r = transaction_verify_order(m, &generation)) >= 0)
1015 break;
e5b5ae50 1016
9f04bd52
LP
1017 if (r != -EAGAIN) {
1018 log_debug("Requested transaction contains an unfixable cyclic ordering dependency: %s", strerror(-r));
1ffba6fe 1019 goto rollback;
9f04bd52 1020 }
e5b5ae50 1021
1ffba6fe
LP
1022 /* Let's see if the resulting transaction ordering
1023 * graph is still cyclic... */
1024 }
1025
1026 for (;;) {
23a177ef 1027 /* Sixth step: let's drop unmergeable entries if
1ffba6fe
LP
1028 * necessary and possible, merge entries we can
1029 * merge */
1030 if ((r = transaction_merge_jobs(m)) >= 0)
1031 break;
1032
9f04bd52
LP
1033 if (r != -EAGAIN) {
1034 log_debug("Requested transaction contains unmergable jobs: %s", strerror(-r));
1ffba6fe 1035 goto rollback;
9f04bd52 1036 }
1ffba6fe 1037
23a177ef 1038 /* Seventh step: an entry got dropped, let's garbage
1ffba6fe
LP
1039 * collect its dependencies. */
1040 transaction_collect_garbage(m);
1041
1042 /* Let's see if the resulting transaction still has
5cb5a6ff 1043 * unmergeable entries ... */
1ffba6fe
LP
1044 }
1045
23a177ef
LP
1046 /* Eights step: Drop redundant jobs again, if the merging now allows us to drop more. */
1047 transaction_drop_redundant(m);
1048
1049 /* Ninth step: check whether we can actually apply this */
e5b5ae50 1050 if (mode == JOB_FAIL)
9f04bd52
LP
1051 if ((r = transaction_is_destructive(m, mode)) < 0) {
1052 log_debug("Requested transaction contradicts existing jobs: %s", strerror(-r));
e5b5ae50 1053 goto rollback;
9f04bd52 1054 }
e5b5ae50 1055
23a177ef 1056 /* Tenth step: apply changes */
9f04bd52
LP
1057 if ((r = transaction_apply(m, mode)) < 0) {
1058 log_debug("Failed to apply transaction: %s", strerror(-r));
e5b5ae50 1059 goto rollback;
9f04bd52 1060 }
e5b5ae50
LP
1061
1062 assert(hashmap_isempty(m->transaction_jobs));
1063 assert(!m->transaction_anchor);
1064
1065 return 0;
11dd41ce 1066
e5b5ae50 1067rollback:
11dd41ce
LP
1068 transaction_abort(m);
1069 return r;
1070}
1071
87f0e418 1072static Job* transaction_add_one_job(Manager *m, JobType type, Unit *unit, bool force, bool *is_new) {
e5b5ae50 1073 Job *j, *f;
60918275
LP
1074 int r;
1075
1076 assert(m);
87f0e418 1077 assert(unit);
60918275 1078
e5b5ae50
LP
1079 /* Looks for an axisting prospective job and returns that. If
1080 * it doesn't exist it is created and added to the prospective
1081 * jobs list. */
60918275 1082
87f0e418 1083 f = hashmap_get(m->transaction_jobs, unit);
60918275 1084
034c6ed7 1085 LIST_FOREACH(transaction, j, f) {
87f0e418 1086 assert(j->unit == unit);
60918275 1087
e5b5ae50
LP
1088 if (j->type == type) {
1089 if (is_new)
1090 *is_new = false;
1091 return j;
1092 }
1093 }
60918275 1094
87f0e418
LP
1095 if (unit->meta.job && unit->meta.job->type == type)
1096 j = unit->meta.job;
1097 else if (!(j = job_new(m, type, unit)))
e5b5ae50 1098 return NULL;
60918275 1099
e5b5ae50
LP
1100 j->generation = 0;
1101 j->marker = NULL;
1102 j->matters_to_anchor = false;
5cb5a6ff 1103 j->forced = force;
60918275 1104
034c6ed7
LP
1105 LIST_PREPEND(Job, transaction, f, j);
1106
87f0e418 1107 if ((r = hashmap_replace(m->transaction_jobs, unit, f)) < 0) {
034c6ed7
LP
1108 job_free(j);
1109 return NULL;
1110 }
1111
e5b5ae50
LP
1112 if (is_new)
1113 *is_new = true;
60918275 1114
23a177ef
LP
1115 log_debug("Added job %s/%s to transaction.", unit_id(unit), job_type_to_string(type));
1116
e5b5ae50
LP
1117 return j;
1118}
11dd41ce 1119
23a177ef 1120void manager_transaction_unlink_job(Manager *m, Job *j, bool delete_dependencies) {
e5b5ae50
LP
1121 assert(m);
1122 assert(j);
11dd41ce 1123
e5b5ae50
LP
1124 if (j->transaction_prev)
1125 j->transaction_prev->transaction_next = j->transaction_next;
1126 else if (j->transaction_next)
87f0e418 1127 hashmap_replace(m->transaction_jobs, j->unit, j->transaction_next);
e5b5ae50 1128 else
87f0e418 1129 hashmap_remove_value(m->transaction_jobs, j->unit, j);
e5b5ae50
LP
1130
1131 if (j->transaction_next)
1132 j->transaction_next->transaction_prev = j->transaction_prev;
1133
1134 j->transaction_prev = j->transaction_next = NULL;
1135
1136 while (j->subject_list)
1137 job_dependency_free(j->subject_list);
1e198baf
LP
1138
1139 while (j->object_list) {
1140 Job *other = j->object_list->matters ? j->object_list->subject : NULL;
1141
e5b5ae50 1142 job_dependency_free(j->object_list);
1e198baf 1143
23a177ef 1144 if (other && delete_dependencies) {
5cb5a6ff 1145 log_debug("Deleting job %s/%s as dependency of job %s/%s",
87f0e418
LP
1146 unit_id(other->unit), job_type_to_string(other->type),
1147 unit_id(j->unit), job_type_to_string(j->type));
23a177ef 1148 transaction_delete_job(m, other, delete_dependencies);
1e198baf
LP
1149 }
1150 }
e5b5ae50
LP
1151}
1152
87f0e418 1153static int transaction_add_job_and_dependencies(Manager *m, JobType type, Unit *unit, Job *by, bool matters, bool force, Job **_ret) {
e5b5ae50 1154 Job *ret;
034c6ed7 1155 Iterator i;
87f0e418 1156 Unit *dep;
e5b5ae50
LP
1157 int r;
1158 bool is_new;
1159
1160 assert(m);
1161 assert(type < _JOB_TYPE_MAX);
87f0e418 1162 assert(unit);
e5b5ae50 1163
87f0e418 1164 if (unit->meta.load_state != UNIT_LOADED)
21b293e8
LP
1165 return -EINVAL;
1166
87f0e418 1167 if (!unit_job_is_applicable(unit, type))
cd2dbd7d
LP
1168 return -EBADR;
1169
e5b5ae50 1170 /* First add the job. */
87f0e418 1171 if (!(ret = transaction_add_one_job(m, type, unit, force, &is_new)))
e5b5ae50
LP
1172 return -ENOMEM;
1173
1174 /* Then, add a link to the job. */
1175 if (!job_dependency_new(by, ret, matters))
1176 return -ENOMEM;
1177
1178 if (is_new) {
1179 /* Finally, recursively add in all dependencies. */
1180 if (type == JOB_START || type == JOB_RELOAD_OR_START) {
87f0e418 1181 SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_REQUIRES], i)
542563ba 1182 if ((r = transaction_add_job_and_dependencies(m, JOB_START, dep, ret, true, force, NULL)) < 0 && r != -EBADR)
e5b5ae50 1183 goto fail;
87f0e418 1184 SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_SOFT_REQUIRES], i)
542563ba 1185 if ((r = transaction_add_job_and_dependencies(m, JOB_START, dep, ret, !force, force, NULL)) < 0 && r != -EBADR)
e5b5ae50 1186 goto fail;
87f0e418 1187 SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_WANTS], i)
8b44eabf
LP
1188 if ((r = transaction_add_job_and_dependencies(m, JOB_START, dep, ret, false, force, NULL)) < 0)
1189 log_warning("Cannot add dependency job for unit %s, ignoring: %s", unit_id(dep), strerror(-r));
87f0e418 1190 SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_REQUISITE], i)
542563ba 1191 if ((r = transaction_add_job_and_dependencies(m, JOB_VERIFY_ACTIVE, dep, ret, true, force, NULL)) < 0 && r != -EBADR)
e5b5ae50 1192 goto fail;
87f0e418 1193 SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_SOFT_REQUISITE], i)
542563ba 1194 if ((r = transaction_add_job_and_dependencies(m, JOB_VERIFY_ACTIVE, dep, ret, !force, force, NULL)) < 0 && r != -EBADR)
e5b5ae50 1195 goto fail;
87f0e418 1196 SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_CONFLICTS], i)
542563ba 1197 if ((r = transaction_add_job_and_dependencies(m, JOB_STOP, dep, ret, true, force, NULL)) < 0 && r != -EBADR)
e5b5ae50
LP
1198 goto fail;
1199
1200 } else if (type == JOB_STOP || type == JOB_RESTART || type == JOB_TRY_RESTART) {
1201
87f0e418 1202 SET_FOREACH(dep, ret->unit->meta.dependencies[UNIT_REQUIRED_BY], i)
542563ba 1203 if ((r = transaction_add_job_and_dependencies(m, type, dep, ret, true, force, NULL)) < 0 && r != -EBADR)
e5b5ae50
LP
1204 goto fail;
1205 }
1206
1207 /* JOB_VERIFY_STARTED, JOB_RELOAD require no dependency handling */
1208 }
60918275 1209
c0dafa48
LP
1210 if (_ret)
1211 *_ret = ret;
1212
60918275
LP
1213 return 0;
1214
1215fail:
e5b5ae50
LP
1216 return r;
1217}
1218
87f0e418 1219int manager_add_job(Manager *m, JobType type, Unit *unit, JobMode mode, bool force, Job **_ret) {
e5b5ae50
LP
1220 int r;
1221 Job *ret;
1222
1223 assert(m);
1224 assert(type < _JOB_TYPE_MAX);
87f0e418 1225 assert(unit);
e5b5ae50 1226 assert(mode < _JOB_MODE_MAX);
60918275 1227
9f04bd52
LP
1228 log_debug("Trying to enqueue job %s/%s", unit_id(unit), job_type_to_string(type));
1229
c0dafa48 1230 if ((r = transaction_add_job_and_dependencies(m, type, unit, NULL, true, force, &ret)) < 0) {
11dd41ce 1231 transaction_abort(m);
e5b5ae50
LP
1232 return r;
1233 }
11dd41ce 1234
e5b5ae50
LP
1235 if ((r = transaction_activate(m, mode)) < 0)
1236 return r;
1237
c0dafa48 1238 log_debug("Enqueued job %s/%s as %u", unit_id(unit), job_type_to_string(type), (unsigned) ret->id);
f50e0a01 1239
e5b5ae50
LP
1240 if (_ret)
1241 *_ret = ret;
60918275 1242
e5b5ae50
LP
1243 return 0;
1244}
60918275
LP
1245
1246Job *manager_get_job(Manager *m, uint32_t id) {
1247 assert(m);
1248
1249 return hashmap_get(m->jobs, UINT32_TO_PTR(id));
1250}
1251
87f0e418 1252Unit *manager_get_unit(Manager *m, const char *name) {
60918275
LP
1253 assert(m);
1254 assert(name);
1255
87f0e418 1256 return hashmap_get(m->units, name);
60918275
LP
1257}
1258
c1e1601e 1259unsigned manager_dispatch_load_queue(Manager *m) {
60918275 1260 Meta *meta;
c1e1601e 1261 unsigned n = 0;
60918275
LP
1262
1263 assert(m);
1264
223dabab
LP
1265 /* Make sure we are not run recursively */
1266 if (m->dispatching_load_queue)
c1e1601e 1267 return 0;
223dabab
LP
1268
1269 m->dispatching_load_queue = true;
1270
87f0e418 1271 /* Dispatches the load queue. Takes a unit from the queue and
60918275
LP
1272 * tries to load its data until the queue is empty */
1273
1274 while ((meta = m->load_queue)) {
034c6ed7
LP
1275 assert(meta->in_load_queue);
1276
87f0e418 1277 unit_load(UNIT(meta));
c1e1601e 1278 n++;
60918275
LP
1279 }
1280
223dabab 1281 m->dispatching_load_queue = false;
c1e1601e 1282 return n;
60918275
LP
1283}
1284
0301abf4 1285int manager_load_unit(Manager *m, const char *path, Unit **_ret) {
87f0e418 1286 Unit *ret;
60918275 1287 int r;
0301abf4 1288 const char *name;
60918275
LP
1289
1290 assert(m);
0301abf4 1291 assert(path);
60918275 1292 assert(_ret);
60918275 1293
223dabab 1294 /* This will load the service information files, but not actually
0301abf4
LP
1295 * start any services or anything. */
1296
1297 name = file_name_from_path(path);
60918275 1298
87f0e418 1299 if ((ret = manager_get_unit(m, name))) {
034c6ed7
LP
1300 *_ret = ret;
1301 return 0;
1302 }
60918275 1303
87f0e418 1304 if (!(ret = unit_new(m)))
60918275
LP
1305 return -ENOMEM;
1306
0301abf4 1307 if (is_path(path)) {
6be1e7d5 1308 if (!(ret->meta.fragment_path = strdup(path))) {
0301abf4
LP
1309 unit_free(ret);
1310 return -ENOMEM;
1311 }
1312 }
1313
87f0e418
LP
1314 if ((r = unit_add_name(ret, name)) < 0) {
1315 unit_free(ret);
1ffba6fe 1316 return r;
60918275
LP
1317 }
1318
87f0e418 1319 unit_add_to_load_queue(ret);
c1e1601e
LP
1320 unit_add_to_dbus_queue(ret);
1321
f50e0a01 1322 manager_dispatch_load_queue(m);
60918275 1323
23a177ef 1324 *_ret = unit_follow_merge(ret);
60918275
LP
1325 return 0;
1326}
a66d02c3 1327
cea8e32e 1328void manager_dump_jobs(Manager *s, FILE *f, const char *prefix) {
034c6ed7 1329 Iterator i;
a66d02c3
LP
1330 Job *j;
1331
1332 assert(s);
1333 assert(f);
1334
034c6ed7 1335 HASHMAP_FOREACH(j, s->jobs, i)
cea8e32e 1336 job_dump(j, f, prefix);
a66d02c3
LP
1337}
1338
87f0e418 1339void manager_dump_units(Manager *s, FILE *f, const char *prefix) {
034c6ed7 1340 Iterator i;
87f0e418 1341 Unit *u;
11dd41ce 1342 const char *t;
a66d02c3
LP
1343
1344 assert(s);
1345 assert(f);
1346
87f0e418
LP
1347 HASHMAP_FOREACH_KEY(u, t, s->units, i)
1348 if (unit_id(u) == t)
1349 unit_dump(u, f, prefix);
a66d02c3 1350}
7fad411c
LP
1351
1352void manager_clear_jobs(Manager *m) {
1353 Job *j;
1354
1355 assert(m);
1356
1357 transaction_abort(m);
1358
1359 while ((j = hashmap_first(m->jobs)))
1360 job_free(j);
1361}
83c60c9f 1362
c1e1601e 1363unsigned manager_dispatch_run_queue(Manager *m) {
83c60c9f 1364 Job *j;
c1e1601e 1365 unsigned n = 0;
83c60c9f 1366
034c6ed7 1367 if (m->dispatching_run_queue)
c1e1601e 1368 return 0;
034c6ed7
LP
1369
1370 m->dispatching_run_queue = true;
9152c765 1371
034c6ed7 1372 while ((j = m->run_queue)) {
ac1135be 1373 assert(j->installed);
034c6ed7
LP
1374 assert(j->in_run_queue);
1375
1376 job_run_and_invalidate(j);
c1e1601e 1377 n++;
9152c765 1378 }
034c6ed7
LP
1379
1380 m->dispatching_run_queue = false;
c1e1601e
LP
1381 return n;
1382}
1383
1384unsigned manager_dispatch_dbus_queue(Manager *m) {
1385 Job *j;
1386 Meta *meta;
1387 unsigned n = 0;
1388
1389 assert(m);
1390
1391 if (m->dispatching_dbus_queue)
1392 return 0;
1393
1394 m->dispatching_dbus_queue = true;
1395
1396 while ((meta = m->dbus_unit_queue)) {
23a177ef 1397 assert(meta->in_dbus_queue);
c1e1601e 1398
23a177ef 1399 bus_unit_send_change_signal(UNIT(meta));
c1e1601e
LP
1400 n++;
1401 }
1402
1403 while ((j = m->dbus_job_queue)) {
1404 assert(j->in_dbus_queue);
1405
1406 bus_job_send_change_signal(j);
1407 n++;
1408 }
1409
1410 m->dispatching_dbus_queue = false;
1411 return n;
9152c765
LP
1412}
1413
034c6ed7 1414static int manager_dispatch_sigchld(Manager *m) {
9152c765
LP
1415 assert(m);
1416
1417 for (;;) {
1418 siginfo_t si;
87f0e418 1419 Unit *u;
9152c765
LP
1420
1421 zero(si);
acbb0225
LP
1422 if (waitid(P_ALL, 0, &si, WEXITED|WNOHANG) < 0) {
1423
1424 if (errno == ECHILD)
1425 break;
1426
9152c765 1427 return -errno;
acbb0225 1428 }
9152c765
LP
1429
1430 if (si.si_pid == 0)
1431 break;
1432
034c6ed7
LP
1433 if (si.si_code != CLD_EXITED && si.si_code != CLD_KILLED && si.si_code != CLD_DUMPED)
1434 continue;
1435
94f04347 1436 log_debug("child %llu died (code=%s, status=%i)", (long long unsigned) si.si_pid, sigchld_code_to_string(si.si_code), si.si_status);
acbb0225 1437
87f0e418 1438 if (!(u = hashmap_remove(m->watch_pids, UINT32_TO_PTR(si.si_pid))))
9152c765
LP
1439 continue;
1440
6c1a0478
LP
1441 log_debug("child %llu belongs to %s", (long long unsigned) si.si_pid, unit_id(u));
1442
87f0e418 1443 UNIT_VTABLE(u)->sigchld_event(u, si.si_pid, si.si_code, si.si_status);
9152c765
LP
1444 }
1445
1446 return 0;
1447}
1448
b9cd2ec1 1449static int manager_process_signal_fd(Manager *m, bool *quit) {
9152c765
LP
1450 ssize_t n;
1451 struct signalfd_siginfo sfsi;
1452 bool sigchld = false;
1453
1454 assert(m);
1455
1456 for (;;) {
acbb0225 1457 if ((n = read(m->signal_watch.fd, &sfsi, sizeof(sfsi))) != sizeof(sfsi)) {
9152c765
LP
1458
1459 if (n >= 0)
1460 return -EIO;
1461
1462 if (errno == EAGAIN)
acbb0225 1463 break;
9152c765
LP
1464
1465 return -errno;
1466 }
1467
b9cd2ec1
LP
1468 switch (sfsi.ssi_signo) {
1469
7072ced8
LP
1470 case SIGCHLD: {
1471 char *name = NULL;
1472
1473 get_process_name(sfsi.ssi_pid, &name);
1474 log_debug("Got SIGCHLD for process %llu (%s)", (unsigned long long) sfsi.ssi_pid, strna(name));
1475 free(name);
1476
9152c765 1477 sigchld = true;
b9cd2ec1 1478 break;
7072ced8 1479 }
b9cd2ec1
LP
1480
1481 case SIGINT:
6632c602 1482 case SIGTERM:
84e9af1e
LP
1483
1484 if (m->running_as != MANAGER_INIT) {
1485 *quit = true;
1486 return 0;
1487
1488 } else {
1489 Unit *target;
1490 int r;
1491
1492 if ((r = manager_load_unit(m, SPECIAL_CTRL_ALT_DEL_TARGET, &target)) < 0)
1493 log_error("Failed to load ctrl-alt-del target: %s", strerror(-r));
1494 else if ((r = manager_add_job(m, JOB_START, target, JOB_REPLACE, true, NULL)) < 0)
1495 log_error("Failed to enqueue ctrl-alt-del job: %s", strerror(-r));
1496
1497 break;
1498 }
1499
1500 case SIGWINCH:
1501
1502 if (m->running_as == MANAGER_INIT) {
1503 Unit *target;
1504 int r;
1505
1506 if ((r = manager_load_unit(m, SPECIAL_KBREQUEST_TARGET, &target)) < 0)
1507 log_error("Failed to load kbrequest target: %s", strerror(-r));
1508 else if ((r = manager_add_job(m, JOB_START, target, JOB_REPLACE, true, NULL)) < 0)
1509 log_error("Failed to enqueue kbrequest job: %s", strerror(-r));
1510
1511 break;
1512 }
1513
1514 /* This is a nop on non-init systemd's */
1515
1516 break;
6632c602 1517
0398f3da
LP
1518 case SIGUSR1:
1519
1520 printf("→ By units:\n");
1521 manager_dump_units(m, stdout, "\t");
1522
1523 printf("→ By jobs:\n");
1524 manager_dump_jobs(m, stdout, "\t");
1525
1526 break;
1527
6632c602
LP
1528 default:
1529 log_info("Got unhandled signal <%s>.", strsignal(sfsi.ssi_signo));
b9cd2ec1 1530 }
9152c765
LP
1531 }
1532
1533 if (sigchld)
034c6ed7
LP
1534 return manager_dispatch_sigchld(m);
1535
1536 return 0;
1537}
1538
b9cd2ec1 1539static int process_event(Manager *m, struct epoll_event *ev, bool *quit) {
034c6ed7 1540 int r;
acbb0225 1541 Watch *w;
034c6ed7
LP
1542
1543 assert(m);
1544 assert(ev);
1545
acbb0225 1546 assert(w = ev->data.ptr);
034c6ed7 1547
acbb0225 1548 switch (w->type) {
034c6ed7 1549
ef734fd6 1550 case WATCH_SIGNAL:
034c6ed7 1551
acbb0225 1552 /* An incoming signal? */
f94ea366 1553 if (ev->events != EPOLLIN)
acbb0225 1554 return -EINVAL;
034c6ed7 1555
b9cd2ec1 1556 if ((r = manager_process_signal_fd(m, quit)) < 0)
acbb0225 1557 return r;
034c6ed7 1558
acbb0225 1559 break;
034c6ed7 1560
acbb0225 1561 case WATCH_FD:
034c6ed7 1562
acbb0225 1563 /* Some fd event, to be dispatched to the units */
ea430986 1564 UNIT_VTABLE(w->data.unit)->fd_event(w->data.unit, w->fd, ev->events, w);
acbb0225 1565 break;
034c6ed7 1566
acbb0225
LP
1567 case WATCH_TIMER: {
1568 uint64_t v;
1569 ssize_t k;
034c6ed7 1570
acbb0225 1571 /* Some timer event, to be dispatched to the units */
be888ebb 1572 if ((k = read(w->fd, &v, sizeof(v))) != sizeof(v)) {
034c6ed7 1573
acbb0225
LP
1574 if (k < 0 && (errno == EINTR || errno == EAGAIN))
1575 break;
034c6ed7 1576
acbb0225 1577 return k < 0 ? -errno : -EIO;
034c6ed7
LP
1578 }
1579
ea430986 1580 UNIT_VTABLE(w->data.unit)->timer_event(w->data.unit, v, w);
acbb0225
LP
1581 break;
1582 }
1583
ef734fd6
LP
1584 case WATCH_MOUNT:
1585 /* Some mount table change, intended for the mount subsystem */
1586 mount_fd_event(m, ev->events);
1587 break;
1588
f94ea366
LP
1589 case WATCH_UDEV:
1590 /* Some notification from udev, intended for the device subsystem */
1591 device_fd_event(m, ev->events);
1592 break;
1593
ea430986
LP
1594 case WATCH_DBUS_WATCH:
1595 bus_watch_event(m, w, ev->events);
1596 break;
1597
1598 case WATCH_DBUS_TIMEOUT:
1599 bus_timeout_event(m, w, ev->events);
1600 break;
1601
acbb0225
LP
1602 default:
1603 assert_not_reached("Unknown epoll event type.");
034c6ed7 1604 }
9152c765
LP
1605
1606 return 0;
1607}
1608
1609int manager_loop(Manager *m) {
1610 int r;
b9cd2ec1 1611 bool quit = false;
9152c765 1612
ea430986
LP
1613 RATELIMIT_DEFINE(rl, 1*USEC_PER_SEC, 1000);
1614
9152c765
LP
1615 assert(m);
1616
23a177ef 1617 do {
957ca890
LP
1618 struct epoll_event event;
1619 int n;
9152c765 1620
ea430986
LP
1621 if (!ratelimit_test(&rl)) {
1622 /* Yay, something is going seriously wrong, pause a little */
1623 log_warning("Looping too fast. Throttling execution a little.");
1624 sleep(1);
1625 }
1626
23a177ef
LP
1627 if (manager_dispatch_cleanup_queue(m) > 0)
1628 continue;
1629
c1e1601e
LP
1630 if (manager_dispatch_load_queue(m) > 0)
1631 continue;
034c6ed7 1632
c1e1601e
LP
1633 if (manager_dispatch_run_queue(m) > 0)
1634 continue;
1635
1636 if (bus_dispatch(m) > 0)
1637 continue;
1638
1639 if (manager_dispatch_dbus_queue(m) > 0)
ea430986 1640 continue;
ea430986 1641
957ca890 1642 if ((n = epoll_wait(m->epoll_fd, &event, 1, -1)) < 0) {
9152c765
LP
1643
1644 if (errno == -EINTR)
1645 continue;
1646
1647 return -errno;
1648 }
1649
957ca890 1650 assert(n == 1);
b9cd2ec1 1651
957ca890
LP
1652 if ((r = process_event(m, &event, &quit)) < 0)
1653 return r;
23a177ef 1654 } while (!quit);
957ca890 1655
23a177ef 1656 return 0;
83c60c9f 1657}
ea430986
LP
1658
1659int manager_get_unit_from_dbus_path(Manager *m, const char *s, Unit **_u) {
1660 char *n;
1661 Unit *u;
1662
1663 assert(m);
1664 assert(s);
1665 assert(_u);
1666
1667 if (!startswith(s, "/org/freedesktop/systemd1/unit/"))
1668 return -EINVAL;
1669
1670 if (!(n = bus_path_unescape(s+31)))
1671 return -ENOMEM;
1672
1673 u = manager_get_unit(m, n);
1674 free(n);
1675
1676 if (!u)
1677 return -ENOENT;
1678
1679 *_u = u;
1680
1681 return 0;
1682}
86fbf370
LP
1683
1684int manager_get_job_from_dbus_path(Manager *m, const char *s, Job **_j) {
1685 Job *j;
1686 unsigned id;
1687 int r;
1688
1689 assert(m);
1690 assert(s);
1691 assert(_j);
1692
1693 if (!startswith(s, "/org/freedesktop/systemd1/job/"))
1694 return -EINVAL;
1695
1696 if ((r = safe_atou(s + 30, &id)) < 0)
1697 return r;
1698
1699 if (!(j = manager_get_job(m, id)))
1700 return -ENOENT;
1701
1702 *_j = j;
1703
1704 return 0;
1705}
dfcd764e
LP
1706
1707static const char* const manager_running_as_table[_MANAGER_RUNNING_AS_MAX] = {
1708 [MANAGER_INIT] = "init",
1709 [MANAGER_SYSTEM] = "system",
036643a2 1710 [MANAGER_SESSION] = "session"
dfcd764e
LP
1711};
1712
1713DEFINE_STRING_TABLE_LOOKUP(manager_running_as, ManagerRunningAs);