1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
4 This file is part of systemd.
6 Copyright 2010 Lennart Poettering
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.
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.
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/>.
25 #include <sys/epoll.h>
26 #include <sys/timerfd.h>
36 #include "load-fragment.h"
37 #include "load-dropin.h"
39 #include "unit-name.h"
40 #include "specifier.h"
41 #include "dbus-unit.h"
43 #include "cgroup-util.h"
46 const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX] = {
47 [UNIT_SERVICE] = &service_vtable,
48 [UNIT_TIMER] = &timer_vtable,
49 [UNIT_SOCKET] = &socket_vtable,
50 [UNIT_TARGET] = &target_vtable,
51 [UNIT_DEVICE] = &device_vtable,
52 [UNIT_MOUNT] = &mount_vtable,
53 [UNIT_AUTOMOUNT] = &automount_vtable,
54 [UNIT_SNAPSHOT] = &snapshot_vtable,
55 [UNIT_SWAP] = &swap_vtable,
56 [UNIT_PATH] = &path_vtable
59 Unit *unit_new(Manager *m) {
64 if (!(u = new0(Unit, 1)))
67 if (!(u->meta.names = set_new(string_hash_func, string_compare_func))) {
73 u->meta.type = _UNIT_TYPE_INVALID;
74 u->meta.deserialized_job = _JOB_TYPE_INVALID;
75 u->meta.default_dependencies = true;
80 bool unit_has_name(Unit *u, const char *name) {
84 return !!set_get(u->meta.names, (char*) name);
87 int unit_add_name(Unit *u, const char *text) {
95 if (unit_name_is_template(text)) {
96 if (!u->meta.instance)
99 s = unit_name_replace_instance(text, u->meta.instance);
106 if (!unit_name_is_valid(s, false)) {
111 assert_se((t = unit_name_to_type(s)) >= 0);
113 if (u->meta.type != _UNIT_TYPE_INVALID && t != u->meta.type) {
118 if ((r = unit_name_to_instance(s, &i)) < 0)
121 if (i && unit_vtable[t]->no_instances)
124 /* Ensure that this unit is either instanced or not instanced,
126 if (u->meta.type != _UNIT_TYPE_INVALID && !u->meta.instance != !i) {
131 if (unit_vtable[t]->no_alias &&
132 !set_isempty(u->meta.names) &&
133 !set_get(u->meta.names, s)) {
138 if (hashmap_size(u->meta.manager->units) >= MANAGER_MAX_NAMES) {
143 if ((r = set_put(u->meta.names, s)) < 0) {
149 if ((r = hashmap_put(u->meta.manager->units, s, u)) < 0) {
150 set_remove(u->meta.names, s);
154 if (u->meta.type == _UNIT_TYPE_INVALID) {
158 u->meta.instance = i;
160 LIST_PREPEND(Meta, units_per_type, u->meta.manager->units_per_type[t], &u->meta);
162 if (UNIT_VTABLE(u)->init)
163 UNIT_VTABLE(u)->init(u);
167 unit_add_to_dbus_queue(u);
177 int unit_choose_id(Unit *u, const char *name) {
178 char *s, *t = NULL, *i;
184 if (unit_name_is_template(name)) {
186 if (!u->meta.instance)
189 if (!(t = unit_name_replace_instance(name, u->meta.instance)))
195 /* Selects one of the names of this unit as the id */
196 s = set_get(u->meta.names, (char*) name);
202 if ((r = unit_name_to_instance(s, &i)) < 0)
207 free(u->meta.instance);
208 u->meta.instance = i;
210 unit_add_to_dbus_queue(u);
215 int unit_set_description(Unit *u, const char *description) {
220 if (!(s = strdup(description)))
223 free(u->meta.description);
224 u->meta.description = s;
226 unit_add_to_dbus_queue(u);
230 bool unit_check_gc(Unit *u) {
233 if (u->meta.load_state == UNIT_STUB)
236 if (UNIT_VTABLE(u)->no_gc)
245 if (unit_active_state(u) != UNIT_INACTIVE)
248 if (UNIT_VTABLE(u)->check_gc)
249 if (UNIT_VTABLE(u)->check_gc(u))
255 void unit_add_to_load_queue(Unit *u) {
257 assert(u->meta.type != _UNIT_TYPE_INVALID);
259 if (u->meta.load_state != UNIT_STUB || u->meta.in_load_queue)
262 LIST_PREPEND(Meta, load_queue, u->meta.manager->load_queue, &u->meta);
263 u->meta.in_load_queue = true;
266 void unit_add_to_cleanup_queue(Unit *u) {
269 if (u->meta.in_cleanup_queue)
272 LIST_PREPEND(Meta, cleanup_queue, u->meta.manager->cleanup_queue, &u->meta);
273 u->meta.in_cleanup_queue = true;
276 void unit_add_to_gc_queue(Unit *u) {
279 if (u->meta.in_gc_queue || u->meta.in_cleanup_queue)
282 if (unit_check_gc(u))
285 LIST_PREPEND(Meta, gc_queue, u->meta.manager->gc_queue, &u->meta);
286 u->meta.in_gc_queue = true;
288 u->meta.manager->n_in_gc_queue ++;
290 if (u->meta.manager->gc_queue_timestamp <= 0)
291 u->meta.manager->gc_queue_timestamp = now(CLOCK_MONOTONIC);
294 void unit_add_to_dbus_queue(Unit *u) {
296 assert(u->meta.type != _UNIT_TYPE_INVALID);
298 if (u->meta.load_state == UNIT_STUB || u->meta.in_dbus_queue)
301 /* Shortcut things if nobody cares */
302 if (!bus_has_subscriber(u->meta.manager)) {
303 u->meta.sent_dbus_new_signal = true;
307 LIST_PREPEND(Meta, dbus_queue, u->meta.manager->dbus_unit_queue, &u->meta);
308 u->meta.in_dbus_queue = true;
311 static void bidi_set_free(Unit *u, Set *s) {
317 /* Frees the set and makes sure we are dropped from the
318 * inverse pointers */
320 SET_FOREACH(other, s, i) {
323 for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++)
324 set_remove(other->meta.dependencies[d], u);
326 unit_add_to_gc_queue(other);
332 void unit_free(Unit *u) {
339 bus_unit_send_removed_signal(u);
341 if (u->meta.load_state != UNIT_STUB)
342 if (UNIT_VTABLE(u)->done)
343 UNIT_VTABLE(u)->done(u);
345 SET_FOREACH(t, u->meta.names, i)
346 hashmap_remove_value(u->meta.manager->units, t, u);
349 job_free(u->meta.job);
351 for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++)
352 bidi_set_free(u, u->meta.dependencies[d]);
354 if (u->meta.type != _UNIT_TYPE_INVALID)
355 LIST_REMOVE(Meta, units_per_type, u->meta.manager->units_per_type[u->meta.type], &u->meta);
357 if (u->meta.in_load_queue)
358 LIST_REMOVE(Meta, load_queue, u->meta.manager->load_queue, &u->meta);
360 if (u->meta.in_dbus_queue)
361 LIST_REMOVE(Meta, dbus_queue, u->meta.manager->dbus_unit_queue, &u->meta);
363 if (u->meta.in_cleanup_queue)
364 LIST_REMOVE(Meta, cleanup_queue, u->meta.manager->cleanup_queue, &u->meta);
366 if (u->meta.in_gc_queue) {
367 LIST_REMOVE(Meta, gc_queue, u->meta.manager->gc_queue, &u->meta);
368 u->meta.manager->n_in_gc_queue--;
371 cgroup_bonding_free_list(u->meta.cgroup_bondings);
373 free(u->meta.description);
374 free(u->meta.fragment_path);
376 set_free_free(u->meta.names);
378 condition_free_list(u->meta.conditions);
380 free(u->meta.instance);
384 UnitActiveState unit_active_state(Unit *u) {
387 if (u->meta.load_state == UNIT_MERGED)
388 return unit_active_state(unit_follow_merge(u));
390 /* After a reload it might happen that a unit is not correctly
391 * loaded but still has a process around. That's why we won't
392 * shortcut failed loading to UNIT_INACTIVE_FAILED. */
394 return UNIT_VTABLE(u)->active_state(u);
397 const char* unit_sub_state_to_string(Unit *u) {
400 return UNIT_VTABLE(u)->sub_state_to_string(u);
403 static void complete_move(Set **s, Set **other) {
411 set_move(*s, *other);
418 static void merge_names(Unit *u, Unit *other) {
425 complete_move(&u->meta.names, &other->meta.names);
427 set_free_free(other->meta.names);
428 other->meta.names = NULL;
429 other->meta.id = NULL;
431 SET_FOREACH(t, u->meta.names, i)
432 assert_se(hashmap_replace(u->meta.manager->units, t, u) == 0);
435 static void merge_dependencies(Unit *u, Unit *other, UnitDependency d) {
442 assert(d < _UNIT_DEPENDENCY_MAX);
444 /* Fix backwards pointers */
445 SET_FOREACH(back, other->meta.dependencies[d], i) {
448 for (k = 0; k < _UNIT_DEPENDENCY_MAX; k++)
449 if ((r = set_remove_and_put(back->meta.dependencies[k], other, u)) < 0) {
452 set_remove(back->meta.dependencies[k], other);
454 assert(r == -ENOENT);
458 complete_move(&u->meta.dependencies[d], &other->meta.dependencies[d]);
460 set_free(other->meta.dependencies[d]);
461 other->meta.dependencies[d] = NULL;
464 int unit_merge(Unit *u, Unit *other) {
469 assert(u->meta.manager == other->meta.manager);
470 assert(u->meta.type != _UNIT_TYPE_INVALID);
472 other = unit_follow_merge(other);
477 if (u->meta.type != other->meta.type)
480 if (!u->meta.instance != !other->meta.instance)
483 if (other->meta.load_state != UNIT_STUB &&
484 other->meta.load_state != UNIT_ERROR)
490 if (!UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(other)))
494 merge_names(u, other);
496 /* Merge dependencies */
497 for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++)
498 merge_dependencies(u, other, d);
500 other->meta.load_state = UNIT_MERGED;
501 other->meta.merged_into = u;
503 /* If there is still some data attached to the other node, we
504 * don't need it anymore, and can free it. */
505 if (other->meta.load_state != UNIT_STUB)
506 if (UNIT_VTABLE(other)->done)
507 UNIT_VTABLE(other)->done(other);
509 unit_add_to_dbus_queue(u);
510 unit_add_to_cleanup_queue(other);
515 int unit_merge_by_name(Unit *u, const char *name) {
523 if (unit_name_is_template(name)) {
524 if (!u->meta.instance)
527 if (!(s = unit_name_replace_instance(name, u->meta.instance)))
533 if (!(other = manager_get_unit(u->meta.manager, name)))
534 r = unit_add_name(u, name);
536 r = unit_merge(u, other);
542 Unit* unit_follow_merge(Unit *u) {
545 while (u->meta.load_state == UNIT_MERGED)
546 assert_se(u = u->meta.merged_into);
551 int unit_add_exec_dependencies(Unit *u, ExecContext *c) {
557 if (c->std_output != EXEC_OUTPUT_KMSG &&
558 c->std_output != EXEC_OUTPUT_SYSLOG &&
559 c->std_output != EXEC_OUTPUT_KMSG_AND_CONSOLE &&
560 c->std_output != EXEC_OUTPUT_SYSLOG_AND_CONSOLE &&
561 c->std_error != EXEC_OUTPUT_KMSG &&
562 c->std_error != EXEC_OUTPUT_SYSLOG_AND_CONSOLE &&
563 c->std_error != EXEC_OUTPUT_KMSG &&
564 c->std_error != EXEC_OUTPUT_SYSLOG_AND_CONSOLE)
567 /* If syslog or kernel logging is requested, make sure our own
568 * logging daemon is run first. */
570 if (u->meta.manager->running_as == MANAGER_SYSTEM)
571 if ((r = unit_add_two_dependencies_by_name(u, UNIT_REQUIRES, UNIT_AFTER, SPECIAL_LOGGER_SOCKET, NULL, true)) < 0)
577 const char *unit_description(Unit *u) {
580 if (u->meta.description)
581 return u->meta.description;
583 return strna(u->meta.id);
586 void unit_dump(Unit *u, FILE *f, const char *prefix) {
594 timestamp1[FORMAT_TIMESTAMP_MAX],
595 timestamp2[FORMAT_TIMESTAMP_MAX],
596 timestamp3[FORMAT_TIMESTAMP_MAX],
597 timestamp4[FORMAT_TIMESTAMP_MAX],
598 timespan[FORMAT_TIMESPAN_MAX];
602 assert(u->meta.type >= 0);
606 p2 = strappend(prefix, "\t");
607 prefix2 = p2 ? p2 : prefix;
611 "%s\tDescription: %s\n"
613 "%s\tUnit Load State: %s\n"
614 "%s\tUnit Active State: %s\n"
615 "%s\tInactive Exit Timestamp: %s\n"
616 "%s\tActive Enter Timestamp: %s\n"
617 "%s\tActive Exit Timestamp: %s\n"
618 "%s\tInactive Enter Timestamp: %s\n"
619 "%s\tGC Check Good: %s\n"
620 "%s\tNeed Daemon Reload: %s\n",
622 prefix, unit_description(u),
623 prefix, strna(u->meta.instance),
624 prefix, unit_load_state_to_string(u->meta.load_state),
625 prefix, unit_active_state_to_string(unit_active_state(u)),
626 prefix, strna(format_timestamp(timestamp1, sizeof(timestamp1), u->meta.inactive_exit_timestamp.realtime)),
627 prefix, strna(format_timestamp(timestamp2, sizeof(timestamp2), u->meta.active_enter_timestamp.realtime)),
628 prefix, strna(format_timestamp(timestamp3, sizeof(timestamp3), u->meta.active_exit_timestamp.realtime)),
629 prefix, strna(format_timestamp(timestamp4, sizeof(timestamp4), u->meta.inactive_enter_timestamp.realtime)),
630 prefix, yes_no(unit_check_gc(u)),
631 prefix, yes_no(unit_need_daemon_reload(u)));
633 SET_FOREACH(t, u->meta.names, i)
634 fprintf(f, "%s\tName: %s\n", prefix, t);
636 if ((following = unit_following(u)))
637 fprintf(f, "%s\tFollowing: %s\n", prefix, following->meta.id);
639 if (u->meta.fragment_path)
640 fprintf(f, "%s\tFragment Path: %s\n", prefix, u->meta.fragment_path);
642 if (u->meta.job_timeout > 0)
643 fprintf(f, "%s\tJob Timeout: %s\n", prefix, format_timespan(timespan, sizeof(timespan), u->meta.job_timeout));
645 condition_dump_list(u->meta.conditions, f, prefix);
647 if (dual_timestamp_is_set(&u->meta.condition_timestamp))
649 "%s\tCondition Timestamp: %s\n"
650 "%s\tCondition Result: %s\n",
651 prefix, strna(format_timestamp(timestamp1, sizeof(timestamp1), u->meta.condition_timestamp.realtime)),
652 prefix, yes_no(u->meta.condition_result));
654 for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++) {
657 SET_FOREACH(other, u->meta.dependencies[d], i)
658 fprintf(f, "%s\t%s: %s\n", prefix, unit_dependency_to_string(d), other->meta.id);
661 if (u->meta.load_state == UNIT_LOADED) {
663 "%s\tStopWhenUnneeded: %s\n"
664 "%s\tRefuseManualStart: %s\n"
665 "%s\tRefuseManualStop: %s\n"
666 "%s\tDefaultDependencies: %s\n"
667 "%s\rOnFailureIsolate: %s\n",
668 prefix, yes_no(u->meta.stop_when_unneeded),
669 prefix, yes_no(u->meta.refuse_manual_start),
670 prefix, yes_no(u->meta.refuse_manual_stop),
671 prefix, yes_no(u->meta.default_dependencies),
672 prefix, yes_no(u->meta.on_failure_isolate));
674 LIST_FOREACH(by_unit, b, u->meta.cgroup_bondings)
675 fprintf(f, "%s\tControlGroup: %s:%s\n",
676 prefix, b->controller, b->path);
678 if (UNIT_VTABLE(u)->dump)
679 UNIT_VTABLE(u)->dump(u, f, prefix2);
681 } else if (u->meta.load_state == UNIT_MERGED)
683 "%s\tMerged into: %s\n",
684 prefix, u->meta.merged_into->meta.id);
685 else if (u->meta.load_state == UNIT_ERROR)
686 fprintf(f, "%s\tLoad Error Code: %s\n", prefix, strerror(-u->meta.load_error));
690 job_dump(u->meta.job, f, prefix2);
695 /* Common implementation for multiple backends */
696 int unit_load_fragment_and_dropin(Unit *u) {
701 /* Load a .service file */
702 if ((r = unit_load_fragment(u)) < 0)
705 if (u->meta.load_state == UNIT_STUB)
708 /* Load drop-in directory data */
709 if ((r = unit_load_dropin(unit_follow_merge(u))) < 0)
715 /* Common implementation for multiple backends */
716 int unit_load_fragment_and_dropin_optional(Unit *u) {
721 /* Same as unit_load_fragment_and_dropin(), but whether
722 * something can be loaded or not doesn't matter. */
724 /* Load a .service file */
725 if ((r = unit_load_fragment(u)) < 0)
728 if (u->meta.load_state == UNIT_STUB)
729 u->meta.load_state = UNIT_LOADED;
731 /* Load drop-in directory data */
732 if ((r = unit_load_dropin(unit_follow_merge(u))) < 0)
738 int unit_add_default_target_dependency(Unit *u, Unit *target) {
742 if (target->meta.type != UNIT_TARGET)
745 /* Only add the dependency if both units are loaded, so that
746 * that loop check below is reliable */
747 if (u->meta.load_state != UNIT_LOADED ||
748 target->meta.load_state != UNIT_LOADED)
751 /* If either side wants no automatic dependencies, then let's
753 if (!u->meta.default_dependencies ||
754 target->meta.default_dependencies)
757 /* Don't create loops */
758 if (set_get(target->meta.dependencies[UNIT_BEFORE], u))
761 return unit_add_dependency(target, UNIT_AFTER, u, true);
764 static int unit_add_default_dependencies(Unit *u) {
765 static const UnitDependency deps[] = {
767 UNIT_REQUIRED_BY_OVERRIDABLE,
779 for (k = 0; k < ELEMENTSOF(deps); k++)
780 SET_FOREACH(target, u->meta.dependencies[deps[k]], i)
781 if ((r = unit_add_default_target_dependency(u, target)) < 0)
787 int unit_load(Unit *u) {
792 if (u->meta.in_load_queue) {
793 LIST_REMOVE(Meta, load_queue, u->meta.manager->load_queue, &u->meta);
794 u->meta.in_load_queue = false;
797 if (u->meta.type == _UNIT_TYPE_INVALID)
800 if (u->meta.load_state != UNIT_STUB)
803 if (UNIT_VTABLE(u)->load)
804 if ((r = UNIT_VTABLE(u)->load(u)) < 0)
807 if (u->meta.load_state == UNIT_STUB) {
812 if (u->meta.load_state == UNIT_LOADED &&
813 u->meta.default_dependencies)
814 if ((r = unit_add_default_dependencies(u)) < 0)
817 if (u->meta.on_failure_isolate &&
818 set_size(u->meta.dependencies[UNIT_ON_FAILURE]) > 1) {
820 log_error("More than one OnFailure= dependencies specified for %s but OnFailureIsolate= enabled. Refusing.",
827 assert((u->meta.load_state != UNIT_MERGED) == !u->meta.merged_into);
829 unit_add_to_dbus_queue(unit_follow_merge(u));
830 unit_add_to_gc_queue(u);
835 u->meta.load_state = UNIT_ERROR;
836 u->meta.load_error = r;
837 unit_add_to_dbus_queue(u);
839 log_debug("Failed to load configuration for %s: %s", u->meta.id, strerror(-r));
844 bool unit_condition_test(Unit *u) {
847 dual_timestamp_get(&u->meta.condition_timestamp);
848 u->meta.condition_result = condition_test_list(u->meta.conditions);
850 return u->meta.condition_result;
854 * -EBADR: This unit type does not support starting.
855 * -EALREADY: Unit is already started.
856 * -EAGAIN: An operation is already in progress. Retry later.
857 * -ECANCELED: Too many requests for now.
859 int unit_start(Unit *u) {
860 UnitActiveState state;
865 if (u->meta.load_state != UNIT_LOADED)
868 /* If this is already (being) started, then this will
869 * succeed. Note that this will even succeed if this unit is
870 * not startable by the user. This is relied on to detect when
871 * we need to wait for units and when waiting is finished. */
872 state = unit_active_state(u);
873 if (UNIT_IS_ACTIVE_OR_RELOADING(state))
876 /* If the conditions failed, don't do anything at all */
877 if (!unit_condition_test(u)) {
878 log_debug("Starting of %s requested but condition failed. Ignoring.", u->meta.id);
882 /* Forward to the main object, if we aren't it. */
883 if ((following = unit_following(u))) {
884 log_debug("Redirecting start request from %s to %s.", u->meta.id, following->meta.id);
885 return unit_start(following);
888 /* If it is stopped, but we cannot start it, then fail */
889 if (!UNIT_VTABLE(u)->start)
892 /* We don't suppress calls to ->start() here when we are
893 * already starting, to allow this request to be used as a
894 * "hurry up" call, for example when the unit is in some "auto
895 * restart" state where it waits for a holdoff timer to elapse
896 * before it will start again. */
898 unit_add_to_dbus_queue(u);
900 unit_status_printf(u, "Starting %s...\n", unit_description(u));
901 return UNIT_VTABLE(u)->start(u);
904 bool unit_can_start(Unit *u) {
907 return !!UNIT_VTABLE(u)->start;
910 bool unit_can_isolate(Unit *u) {
913 return unit_can_start(u) &&
914 u->meta.allow_isolate;
918 * -EBADR: This unit type does not support stopping.
919 * -EALREADY: Unit is already stopped.
920 * -EAGAIN: An operation is already in progress. Retry later.
922 int unit_stop(Unit *u) {
923 UnitActiveState state;
928 state = unit_active_state(u);
929 if (UNIT_IS_INACTIVE_OR_FAILED(state))
932 if ((following = unit_following(u))) {
933 log_debug("Redirecting stop request from %s to %s.", u->meta.id, following->meta.id);
934 return unit_stop(following);
937 if (!UNIT_VTABLE(u)->stop)
940 unit_add_to_dbus_queue(u);
942 unit_status_printf(u, "Stopping %s...\n", unit_description(u));
943 return UNIT_VTABLE(u)->stop(u);
947 * -EBADR: This unit type does not support reloading.
948 * -ENOEXEC: Unit is not started.
949 * -EAGAIN: An operation is already in progress. Retry later.
951 int unit_reload(Unit *u) {
952 UnitActiveState state;
957 if (u->meta.load_state != UNIT_LOADED)
960 if (!unit_can_reload(u))
963 state = unit_active_state(u);
964 if (state == UNIT_RELOADING)
967 if (state != UNIT_ACTIVE)
970 if ((following = unit_following(u))) {
971 log_debug("Redirecting reload request from %s to %s.", u->meta.id, following->meta.id);
972 return unit_reload(following);
975 unit_add_to_dbus_queue(u);
976 return UNIT_VTABLE(u)->reload(u);
979 bool unit_can_reload(Unit *u) {
982 if (!UNIT_VTABLE(u)->reload)
985 if (!UNIT_VTABLE(u)->can_reload)
988 return UNIT_VTABLE(u)->can_reload(u);
991 static void unit_check_unneeded(Unit *u) {
997 /* If this service shall be shut down when unneeded then do
1000 if (!u->meta.stop_when_unneeded)
1003 if (!UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(u)))
1006 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRED_BY], i)
1007 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
1010 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRED_BY_OVERRIDABLE], i)
1011 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
1014 SET_FOREACH(other, u->meta.dependencies[UNIT_WANTED_BY], i)
1015 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
1018 SET_FOREACH(other, u->meta.dependencies[UNIT_BOUND_BY], i)
1019 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
1022 log_info("Service %s is not needed anymore. Stopping.", u->meta.id);
1024 /* Ok, nobody needs us anymore. Sniff. Then let's commit suicide */
1025 manager_add_job(u->meta.manager, JOB_STOP, u, JOB_FAIL, true, NULL, NULL);
1028 static void retroactively_start_dependencies(Unit *u) {
1033 assert(UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(u)));
1035 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRES], i)
1036 if (!set_get(u->meta.dependencies[UNIT_AFTER], other) &&
1037 !UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
1038 manager_add_job(u->meta.manager, JOB_START, other, JOB_REPLACE, true, NULL, NULL);
1040 SET_FOREACH(other, u->meta.dependencies[UNIT_BIND_TO], i)
1041 if (!set_get(u->meta.dependencies[UNIT_AFTER], other) &&
1042 !UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
1043 manager_add_job(u->meta.manager, JOB_START, other, JOB_REPLACE, true, NULL, NULL);
1045 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRES_OVERRIDABLE], i)
1046 if (!set_get(u->meta.dependencies[UNIT_AFTER], other) &&
1047 !UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
1048 manager_add_job(u->meta.manager, JOB_START, other, JOB_FAIL, false, NULL, NULL);
1050 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUISITE], i)
1051 if (!set_get(u->meta.dependencies[UNIT_AFTER], other) &&
1052 !UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
1053 manager_add_job(u->meta.manager, JOB_START, other, JOB_REPLACE, true, NULL, NULL);
1055 SET_FOREACH(other, u->meta.dependencies[UNIT_WANTS], i)
1056 if (!set_get(u->meta.dependencies[UNIT_AFTER], other) &&
1057 !UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
1058 manager_add_job(u->meta.manager, JOB_START, other, JOB_FAIL, false, NULL, NULL);
1060 SET_FOREACH(other, u->meta.dependencies[UNIT_CONFLICTS], i)
1061 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
1062 manager_add_job(u->meta.manager, JOB_STOP, other, JOB_REPLACE, true, NULL, NULL);
1064 SET_FOREACH(other, u->meta.dependencies[UNIT_CONFLICTED_BY], i)
1065 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
1066 manager_add_job(u->meta.manager, JOB_STOP, other, JOB_REPLACE, true, NULL, NULL);
1069 static void retroactively_stop_dependencies(Unit *u) {
1074 assert(UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(u)));
1076 /* Pull down units which are bound to us recursively if enabled */
1077 SET_FOREACH(other, u->meta.dependencies[UNIT_BOUND_BY], i)
1078 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
1079 manager_add_job(u->meta.manager, JOB_STOP, other, JOB_REPLACE, true, NULL, NULL);
1081 /* Garbage collect services that might not be needed anymore, if enabled */
1082 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRES], i)
1083 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
1084 unit_check_unneeded(other);
1085 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRES_OVERRIDABLE], i)
1086 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
1087 unit_check_unneeded(other);
1088 SET_FOREACH(other, u->meta.dependencies[UNIT_WANTS], i)
1089 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
1090 unit_check_unneeded(other);
1091 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUISITE], i)
1092 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
1093 unit_check_unneeded(other);
1094 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUISITE_OVERRIDABLE], i)
1095 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
1096 unit_check_unneeded(other);
1097 SET_FOREACH(other, u->meta.dependencies[UNIT_BIND_TO], i)
1098 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
1099 unit_check_unneeded(other);
1102 void unit_trigger_on_failure(Unit *u) {
1108 if (set_size(u->meta.dependencies[UNIT_ON_FAILURE]) <= 0)
1111 log_info("Triggering OnFailure= dependencies of %s.", u->meta.id);
1113 SET_FOREACH(other, u->meta.dependencies[UNIT_ON_FAILURE], i) {
1116 if ((r = manager_add_job(u->meta.manager, JOB_START, other, u->meta.on_failure_isolate ? JOB_ISOLATE : JOB_REPLACE, true, NULL, NULL)) < 0)
1117 log_error("Failed to enqueue OnFailure= job: %s", strerror(-r));
1121 void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns, bool reload_success) {
1125 assert(os < _UNIT_ACTIVE_STATE_MAX);
1126 assert(ns < _UNIT_ACTIVE_STATE_MAX);
1128 /* Note that this is called for all low-level state changes,
1129 * even if they might map to the same high-level
1130 * UnitActiveState! That means that ns == os is OK an expected
1131 * behaviour here. For example: if a mount point is remounted
1132 * this function will be called too! */
1134 if (u->meta.manager->n_deserializing <= 0) {
1137 dual_timestamp_get(&ts);
1139 if (UNIT_IS_INACTIVE_OR_FAILED(os) && !UNIT_IS_INACTIVE_OR_FAILED(ns))
1140 u->meta.inactive_exit_timestamp = ts;
1141 else if (!UNIT_IS_INACTIVE_OR_FAILED(os) && UNIT_IS_INACTIVE_OR_FAILED(ns))
1142 u->meta.inactive_enter_timestamp = ts;
1144 if (!UNIT_IS_ACTIVE_OR_RELOADING(os) && UNIT_IS_ACTIVE_OR_RELOADING(ns))
1145 u->meta.active_enter_timestamp = ts;
1146 else if (UNIT_IS_ACTIVE_OR_RELOADING(os) && !UNIT_IS_ACTIVE_OR_RELOADING(ns))
1147 u->meta.active_exit_timestamp = ts;
1149 timer_unit_notify(u, ns);
1150 path_unit_notify(u, ns);
1153 if (UNIT_IS_INACTIVE_OR_FAILED(ns))
1154 cgroup_bonding_trim_list(u->meta.cgroup_bondings, true);
1159 if (u->meta.job->state == JOB_WAITING)
1161 /* So we reached a different state for this
1162 * job. Let's see if we can run it now if it
1163 * failed previously due to EAGAIN. */
1164 job_add_to_run_queue(u->meta.job);
1166 /* Let's check whether this state change constitutes a
1167 * finished job, or maybe contradicts a running job and
1168 * hence needs to invalidate jobs. */
1170 switch (u->meta.job->type) {
1173 case JOB_VERIFY_ACTIVE:
1175 if (UNIT_IS_ACTIVE_OR_RELOADING(ns))
1176 job_finish_and_invalidate(u->meta.job, JOB_DONE);
1177 else if (u->meta.job->state == JOB_RUNNING && ns != UNIT_ACTIVATING) {
1180 if (UNIT_IS_INACTIVE_OR_FAILED(ns))
1181 job_finish_and_invalidate(u->meta.job, ns == UNIT_FAILED ? JOB_FAILED : JOB_DONE);
1187 case JOB_RELOAD_OR_START:
1189 if (u->meta.job->state == JOB_RUNNING) {
1190 if (ns == UNIT_ACTIVE)
1191 job_finish_and_invalidate(u->meta.job, reload_success ? JOB_DONE : JOB_FAILED);
1192 else if (ns != UNIT_ACTIVATING && ns != UNIT_RELOADING) {
1195 if (UNIT_IS_INACTIVE_OR_FAILED(ns))
1196 job_finish_and_invalidate(u->meta.job, ns == UNIT_FAILED ? JOB_FAILED : JOB_DONE);
1204 case JOB_TRY_RESTART:
1206 if (UNIT_IS_INACTIVE_OR_FAILED(ns))
1207 job_finish_and_invalidate(u->meta.job, JOB_DONE);
1208 else if (u->meta.job->state == JOB_RUNNING && ns != UNIT_DEACTIVATING) {
1210 job_finish_and_invalidate(u->meta.job, JOB_FAILED);
1216 assert_not_reached("Job type unknown");
1222 if (u->meta.manager->n_deserializing <= 0) {
1224 /* If this state change happened without being
1225 * requested by a job, then let's retroactively start
1226 * or stop dependencies. We skip that step when
1227 * deserializing, since we don't want to create any
1228 * additional jobs just because something is already
1232 if (UNIT_IS_INACTIVE_OR_FAILED(os) && UNIT_IS_ACTIVE_OR_ACTIVATING(ns))
1233 retroactively_start_dependencies(u);
1234 else if (UNIT_IS_ACTIVE_OR_ACTIVATING(os) && UNIT_IS_INACTIVE_OR_DEACTIVATING(ns))
1235 retroactively_stop_dependencies(u);
1238 if (ns != os && ns == UNIT_FAILED) {
1239 log_notice("Unit %s entered failed state.", u->meta.id);
1240 unit_trigger_on_failure(u);
1244 /* Some names are special */
1245 if (UNIT_IS_ACTIVE_OR_RELOADING(ns)) {
1247 if (unit_has_name(u, SPECIAL_DBUS_SERVICE))
1248 /* The bus just might have become available,
1249 * hence try to connect to it, if we aren't
1251 bus_init(u->meta.manager, true);
1253 if (u->meta.type == UNIT_SERVICE &&
1254 !UNIT_IS_ACTIVE_OR_RELOADING(os) &&
1255 u->meta.manager->n_deserializing <= 0) {
1256 /* Write audit record if we have just finished starting up */
1257 manager_send_unit_audit(u->meta.manager, u, AUDIT_SERVICE_START, true);
1258 u->meta.in_audit = true;
1261 if (!UNIT_IS_ACTIVE_OR_RELOADING(os))
1262 manager_send_unit_plymouth(u->meta.manager, u);
1266 /* We don't care about D-Bus here, since we'll get an
1267 * asynchronous notification for it anyway. */
1269 if (u->meta.type == UNIT_SERVICE &&
1270 UNIT_IS_INACTIVE_OR_FAILED(ns) &&
1271 !UNIT_IS_INACTIVE_OR_FAILED(os) &&
1272 u->meta.manager->n_deserializing <= 0) {
1274 /* Hmm, if there was no start record written
1275 * write it now, so that we always have a nice
1277 if (!u->meta.in_audit) {
1278 manager_send_unit_audit(u->meta.manager, u, AUDIT_SERVICE_START, ns == UNIT_INACTIVE);
1280 if (ns == UNIT_INACTIVE)
1281 manager_send_unit_audit(u->meta.manager, u, AUDIT_SERVICE_STOP, true);
1283 /* Write audit record if we have just finished shutting down */
1284 manager_send_unit_audit(u->meta.manager, u, AUDIT_SERVICE_STOP, ns == UNIT_INACTIVE);
1286 u->meta.in_audit = false;
1290 manager_recheck_syslog(u->meta.manager);
1292 /* Maybe we finished startup and are now ready for being
1293 * stopped because unneeded? */
1294 unit_check_unneeded(u);
1296 unit_add_to_dbus_queue(u);
1297 unit_add_to_gc_queue(u);
1300 int unit_watch_fd(Unit *u, int fd, uint32_t events, Watch *w) {
1301 struct epoll_event ev;
1306 assert(w->type == WATCH_INVALID || (w->type == WATCH_FD && w->fd == fd && w->data.unit == u));
1312 if (epoll_ctl(u->meta.manager->epoll_fd,
1313 w->type == WATCH_INVALID ? EPOLL_CTL_ADD : EPOLL_CTL_MOD,
1325 void unit_unwatch_fd(Unit *u, Watch *w) {
1329 if (w->type == WATCH_INVALID)
1332 assert(w->type == WATCH_FD);
1333 assert(w->data.unit == u);
1334 assert_se(epoll_ctl(u->meta.manager->epoll_fd, EPOLL_CTL_DEL, w->fd, NULL) >= 0);
1337 w->type = WATCH_INVALID;
1338 w->data.unit = NULL;
1341 int unit_watch_pid(Unit *u, pid_t pid) {
1345 /* Watch a specific PID. We only support one unit watching
1346 * each PID for now. */
1348 return hashmap_put(u->meta.manager->watch_pids, LONG_TO_PTR(pid), u);
1351 void unit_unwatch_pid(Unit *u, pid_t pid) {
1355 hashmap_remove_value(u->meta.manager->watch_pids, LONG_TO_PTR(pid), u);
1358 int unit_watch_timer(Unit *u, usec_t delay, Watch *w) {
1359 struct itimerspec its;
1365 assert(w->type == WATCH_INVALID || (w->type == WATCH_UNIT_TIMER && w->data.unit == u));
1367 /* This will try to reuse the old timer if there is one */
1369 if (w->type == WATCH_UNIT_TIMER) {
1370 assert(w->data.unit == u);
1375 } else if (w->type == WATCH_INVALID) {
1378 if ((fd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK|TFD_CLOEXEC)) < 0)
1381 assert_not_reached("Invalid watch type");
1386 /* Set absolute time in the past, but not 0, since we
1387 * don't want to disarm the timer */
1388 its.it_value.tv_sec = 0;
1389 its.it_value.tv_nsec = 1;
1391 flags = TFD_TIMER_ABSTIME;
1393 timespec_store(&its.it_value, delay);
1397 /* This will also flush the elapse counter */
1398 if (timerfd_settime(fd, flags, &its, NULL) < 0)
1401 if (w->type == WATCH_INVALID) {
1402 struct epoll_event ev;
1406 ev.events = EPOLLIN;
1408 if (epoll_ctl(u->meta.manager->epoll_fd, EPOLL_CTL_ADD, fd, &ev) < 0)
1412 w->type = WATCH_UNIT_TIMER;
1420 close_nointr_nofail(fd);
1425 void unit_unwatch_timer(Unit *u, Watch *w) {
1429 if (w->type == WATCH_INVALID)
1432 assert(w->type == WATCH_UNIT_TIMER);
1433 assert(w->data.unit == u);
1436 assert_se(epoll_ctl(u->meta.manager->epoll_fd, EPOLL_CTL_DEL, w->fd, NULL) >= 0);
1437 close_nointr_nofail(w->fd);
1440 w->type = WATCH_INVALID;
1441 w->data.unit = NULL;
1444 bool unit_job_is_applicable(Unit *u, JobType j) {
1446 assert(j >= 0 && j < _JOB_TYPE_MAX);
1450 case JOB_VERIFY_ACTIVE:
1456 case JOB_TRY_RESTART:
1457 return unit_can_start(u);
1460 return unit_can_reload(u);
1462 case JOB_RELOAD_OR_START:
1463 return unit_can_reload(u) && unit_can_start(u);
1466 assert_not_reached("Invalid job type");
1470 int unit_add_dependency(Unit *u, UnitDependency d, Unit *other, bool add_reference) {
1472 static const UnitDependency inverse_table[_UNIT_DEPENDENCY_MAX] = {
1473 [UNIT_REQUIRES] = UNIT_REQUIRED_BY,
1474 [UNIT_REQUIRES_OVERRIDABLE] = UNIT_REQUIRED_BY_OVERRIDABLE,
1475 [UNIT_WANTS] = UNIT_WANTED_BY,
1476 [UNIT_REQUISITE] = UNIT_REQUIRED_BY,
1477 [UNIT_REQUISITE_OVERRIDABLE] = UNIT_REQUIRED_BY_OVERRIDABLE,
1478 [UNIT_BIND_TO] = UNIT_BOUND_BY,
1479 [UNIT_REQUIRED_BY] = _UNIT_DEPENDENCY_INVALID,
1480 [UNIT_REQUIRED_BY_OVERRIDABLE] = _UNIT_DEPENDENCY_INVALID,
1481 [UNIT_WANTED_BY] = _UNIT_DEPENDENCY_INVALID,
1482 [UNIT_BOUND_BY] = UNIT_BIND_TO,
1483 [UNIT_CONFLICTS] = UNIT_CONFLICTED_BY,
1484 [UNIT_CONFLICTED_BY] = UNIT_CONFLICTS,
1485 [UNIT_BEFORE] = UNIT_AFTER,
1486 [UNIT_AFTER] = UNIT_BEFORE,
1487 [UNIT_ON_FAILURE] = _UNIT_DEPENDENCY_INVALID,
1488 [UNIT_REFERENCES] = UNIT_REFERENCED_BY,
1489 [UNIT_REFERENCED_BY] = UNIT_REFERENCES
1491 int r, q = 0, v = 0, w = 0;
1494 assert(d >= 0 && d < _UNIT_DEPENDENCY_MAX);
1497 u = unit_follow_merge(u);
1498 other = unit_follow_merge(other);
1500 /* We won't allow dependencies on ourselves. We will not
1501 * consider them an error however. */
1505 if ((r = set_ensure_allocated(&u->meta.dependencies[d], trivial_hash_func, trivial_compare_func)) < 0)
1508 if (inverse_table[d] != _UNIT_DEPENDENCY_INVALID)
1509 if ((r = set_ensure_allocated(&other->meta.dependencies[inverse_table[d]], trivial_hash_func, trivial_compare_func)) < 0)
1513 if ((r = set_ensure_allocated(&u->meta.dependencies[UNIT_REFERENCES], trivial_hash_func, trivial_compare_func)) < 0 ||
1514 (r = set_ensure_allocated(&other->meta.dependencies[UNIT_REFERENCED_BY], trivial_hash_func, trivial_compare_func)) < 0)
1517 if ((q = set_put(u->meta.dependencies[d], other)) < 0)
1520 if (inverse_table[d] != _UNIT_DEPENDENCY_INVALID)
1521 if ((v = set_put(other->meta.dependencies[inverse_table[d]], u)) < 0) {
1526 if (add_reference) {
1527 if ((w = set_put(u->meta.dependencies[UNIT_REFERENCES], other)) < 0) {
1532 if ((r = set_put(other->meta.dependencies[UNIT_REFERENCED_BY], u)) < 0)
1536 unit_add_to_dbus_queue(u);
1541 set_remove(u->meta.dependencies[d], other);
1544 set_remove(other->meta.dependencies[inverse_table[d]], u);
1547 set_remove(u->meta.dependencies[UNIT_REFERENCES], other);
1552 int unit_add_two_dependencies(Unit *u, UnitDependency d, UnitDependency e, Unit *other, bool add_reference) {
1557 if ((r = unit_add_dependency(u, d, other, add_reference)) < 0)
1560 if ((r = unit_add_dependency(u, e, other, add_reference)) < 0)
1566 static const char *resolve_template(Unit *u, const char *name, const char*path, char **p) {
1570 assert(name || path);
1573 name = file_name_from_path(path);
1575 if (!unit_name_is_template(name)) {
1580 if (u->meta.instance)
1581 s = unit_name_replace_instance(name, u->meta.instance);
1585 if (!(i = unit_name_to_prefix(u->meta.id)))
1588 s = unit_name_replace_instance(name, i);
1599 int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, const char *path, bool add_reference) {
1605 assert(name || path);
1607 if (!(name = resolve_template(u, name, path, &s)))
1610 if ((r = manager_load_unit(u->meta.manager, name, path, NULL, &other)) < 0)
1613 r = unit_add_dependency(u, d, other, add_reference);
1620 int unit_add_two_dependencies_by_name(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference) {
1626 assert(name || path);
1628 if (!(name = resolve_template(u, name, path, &s)))
1631 if ((r = manager_load_unit(u->meta.manager, name, path, NULL, &other)) < 0)
1634 r = unit_add_two_dependencies(u, d, e, other, add_reference);
1641 int unit_add_dependency_by_name_inverse(Unit *u, UnitDependency d, const char *name, const char *path, bool add_reference) {
1647 assert(name || path);
1649 if (!(name = resolve_template(u, name, path, &s)))
1652 if ((r = manager_load_unit(u->meta.manager, name, path, NULL, &other)) < 0)
1655 r = unit_add_dependency(other, d, u, add_reference);
1662 int unit_add_two_dependencies_by_name_inverse(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference) {
1668 assert(name || path);
1670 if (!(name = resolve_template(u, name, path, &s)))
1673 if ((r = manager_load_unit(u->meta.manager, name, path, NULL, &other)) < 0)
1676 if ((r = unit_add_two_dependencies(other, d, e, u, add_reference)) < 0)
1684 int set_unit_path(const char *p) {
1688 /* This is mostly for debug purposes */
1690 if (path_is_absolute(p)) {
1691 if (!(c = strdup(p)))
1694 if (!(cwd = get_current_dir_name()))
1697 r = asprintf(&c, "%s/%s", cwd, p);
1704 if (setenv("SYSTEMD_UNIT_PATH", c, 0) < 0) {
1713 char *unit_dbus_path(Unit *u) {
1721 if (!(e = bus_path_escape(u->meta.id)))
1724 p = strappend("/org/freedesktop/systemd1/unit/", e);
1730 int unit_add_cgroup(Unit *u, CGroupBonding *b) {
1739 if (!(b->controller = strdup(SYSTEMD_CGROUP_CONTROLLER)))
1742 /* Ensure this hasn't been added yet */
1745 if (streq(b->controller, SYSTEMD_CGROUP_CONTROLLER)) {
1748 l = hashmap_get(u->meta.manager->cgroup_bondings, b->path);
1749 LIST_PREPEND(CGroupBonding, by_path, l, b);
1751 if ((r = hashmap_replace(u->meta.manager->cgroup_bondings, b->path, l)) < 0) {
1752 LIST_REMOVE(CGroupBonding, by_path, l, b);
1757 LIST_PREPEND(CGroupBonding, by_unit, u->meta.cgroup_bondings, b);
1763 static char *default_cgroup_path(Unit *u) {
1769 if (u->meta.instance) {
1772 if (!(t = unit_name_template(u->meta.id)))
1775 r = asprintf(&p, "%s/%s/%s", u->meta.manager->cgroup_hierarchy, t, u->meta.instance);
1778 r = asprintf(&p, "%s/%s", u->meta.manager->cgroup_hierarchy, u->meta.id);
1780 return r < 0 ? NULL : p;
1783 int unit_add_cgroup_from_text(Unit *u, const char *name) {
1784 char *controller = NULL, *path = NULL;
1785 CGroupBonding *b = NULL;
1791 if ((r = cg_split_spec(name, &controller, &path)) < 0)
1795 path = default_cgroup_path(u);
1798 controller = strdup(SYSTEMD_CGROUP_CONTROLLER);
1800 if (!path || !controller) {
1807 if (cgroup_bonding_find_list(u->meta.cgroup_bondings, controller)) {
1812 if (!(b = new0(CGroupBonding, 1))) {
1817 b->controller = controller;
1821 if ((r = unit_add_cgroup(u, b)) < 0)
1834 static int unit_add_one_default_cgroup(Unit *u, const char *controller) {
1835 CGroupBonding *b = NULL;
1841 controller = SYSTEMD_CGROUP_CONTROLLER;
1843 if (cgroup_bonding_find_list(u->meta.cgroup_bondings, controller))
1846 if (!(b = new0(CGroupBonding, 1)))
1849 if (!(b->controller = strdup(controller)))
1852 if (!(b->path = default_cgroup_path(u)))
1856 b->essential = streq(controller, SYSTEMD_CGROUP_CONTROLLER);
1858 if ((r = unit_add_cgroup(u, b)) < 0)
1865 free(b->controller);
1871 int unit_add_default_cgroups(Unit *u) {
1876 /* Adds in the default cgroups, if they weren't specified
1879 if ((r = unit_add_one_default_cgroup(u, NULL)) < 0)
1882 STRV_FOREACH(c, u->meta.manager->default_controllers)
1883 if ((r = unit_add_one_default_cgroup(u, *c)) < 0)
1889 CGroupBonding* unit_get_default_cgroup(Unit *u) {
1892 return cgroup_bonding_find_list(u->meta.cgroup_bondings, SYSTEMD_CGROUP_CONTROLLER);
1895 int unit_load_related_unit(Unit *u, const char *type, Unit **_found) {
1903 if (!(t = unit_name_change_suffix(u->meta.id, type)))
1906 assert(!unit_has_name(u, t));
1908 r = manager_load_unit(u->meta.manager, t, NULL, NULL, _found);
1911 assert(r < 0 || *_found != u);
1916 int unit_get_related_unit(Unit *u, const char *type, Unit **_found) {
1924 if (!(t = unit_name_change_suffix(u->meta.id, type)))
1927 assert(!unit_has_name(u, t));
1929 found = manager_get_unit(u->meta.manager, t);
1939 static char *specifier_prefix_and_instance(char specifier, void *data, void *userdata) {
1943 return unit_name_to_prefix_and_instance(u->meta.id);
1946 static char *specifier_prefix(char specifier, void *data, void *userdata) {
1950 return unit_name_to_prefix(u->meta.id);
1953 static char *specifier_prefix_unescaped(char specifier, void *data, void *userdata) {
1959 if (!(p = unit_name_to_prefix(u->meta.id)))
1962 r = unit_name_unescape(p);
1968 static char *specifier_instance_unescaped(char specifier, void *data, void *userdata) {
1972 if (u->meta.instance)
1973 return unit_name_unescape(u->meta.instance);
1978 static char *specifier_filename(char specifier, void *data, void *userdata) {
1982 if (u->meta.instance)
1983 return unit_name_path_unescape(u->meta.instance);
1985 return unit_name_to_path(u->meta.instance);
1988 char *unit_name_printf(Unit *u, const char* format) {
1991 * This will use the passed string as format string and
1992 * replace the following specifiers:
1994 * %n: the full id of the unit (foo@bar.waldo)
1995 * %N: the id of the unit without the suffix (foo@bar)
1996 * %p: the prefix (foo)
1997 * %i: the instance (bar)
2000 const Specifier table[] = {
2001 { 'n', specifier_string, u->meta.id },
2002 { 'N', specifier_prefix_and_instance, NULL },
2003 { 'p', specifier_prefix, NULL },
2004 { 'i', specifier_string, u->meta.instance },
2011 return specifier_printf(format, table, u);
2014 char *unit_full_printf(Unit *u, const char *format) {
2016 /* This is similar to unit_name_printf() but also supports
2019 const Specifier table[] = {
2020 { 'n', specifier_string, u->meta.id },
2021 { 'N', specifier_prefix_and_instance, NULL },
2022 { 'p', specifier_prefix, NULL },
2023 { 'P', specifier_prefix_unescaped, NULL },
2024 { 'i', specifier_string, u->meta.instance },
2025 { 'I', specifier_instance_unescaped, NULL },
2026 { 'f', specifier_filename, NULL },
2033 return specifier_printf(format, table, u);
2036 char **unit_full_printf_strv(Unit *u, char **l) {
2040 /* Applies unit_full_printf to every entry in l */
2045 if (!(r = new(char*, n+1)))
2048 for (i = l, j = r; *i; i++, j++)
2049 if (!(*j = unit_full_printf(u, *i)))
2056 for (j--; j >= r; j--)
2064 int unit_watch_bus_name(Unit *u, const char *name) {
2068 /* Watch a specific name on the bus. We only support one unit
2069 * watching each name for now. */
2071 return hashmap_put(u->meta.manager->watch_bus, name, u);
2074 void unit_unwatch_bus_name(Unit *u, const char *name) {
2078 hashmap_remove_value(u->meta.manager->watch_bus, name, u);
2081 bool unit_can_serialize(Unit *u) {
2084 return UNIT_VTABLE(u)->serialize && UNIT_VTABLE(u)->deserialize_item;
2087 int unit_serialize(Unit *u, FILE *f, FDSet *fds) {
2094 if (!unit_can_serialize(u))
2097 if ((r = UNIT_VTABLE(u)->serialize(u, f, fds)) < 0)
2101 unit_serialize_item(u, f, "job", job_type_to_string(u->meta.job->type));
2103 dual_timestamp_serialize(f, "inactive-exit-timestamp", &u->meta.inactive_exit_timestamp);
2104 dual_timestamp_serialize(f, "active-enter-timestamp", &u->meta.active_enter_timestamp);
2105 dual_timestamp_serialize(f, "active-exit-timestamp", &u->meta.active_exit_timestamp);
2106 dual_timestamp_serialize(f, "inactive-enter-timestamp", &u->meta.inactive_enter_timestamp);
2107 dual_timestamp_serialize(f, "condition-timestamp", &u->meta.condition_timestamp);
2109 if (dual_timestamp_is_set(&u->meta.condition_timestamp))
2110 unit_serialize_item(u, f, "condition-result", yes_no(u->meta.condition_result));
2117 void unit_serialize_item_format(Unit *u, FILE *f, const char *key, const char *format, ...) {
2128 va_start(ap, format);
2129 vfprintf(f, format, ap);
2135 void unit_serialize_item(Unit *u, FILE *f, const char *key, const char *value) {
2141 fprintf(f, "%s=%s\n", key, value);
2144 int unit_deserialize(Unit *u, FILE *f, FDSet *fds) {
2151 if (!unit_can_serialize(u))
2155 char line[LINE_MAX], *l, *v;
2158 if (!fgets(line, sizeof(line), f)) {
2171 k = strcspn(l, "=");
2179 if (streq(l, "job")) {
2182 if ((type = job_type_from_string(v)) < 0)
2183 log_debug("Failed to parse job type value %s", v);
2185 u->meta.deserialized_job = type;
2188 } else if (streq(l, "inactive-exit-timestamp")) {
2189 dual_timestamp_deserialize(v, &u->meta.inactive_exit_timestamp);
2191 } else if (streq(l, "active-enter-timestamp")) {
2192 dual_timestamp_deserialize(v, &u->meta.active_enter_timestamp);
2194 } else if (streq(l, "active-exit-timestamp")) {
2195 dual_timestamp_deserialize(v, &u->meta.active_exit_timestamp);
2197 } else if (streq(l, "inactive-enter-timestamp")) {
2198 dual_timestamp_deserialize(v, &u->meta.inactive_enter_timestamp);
2200 } else if (streq(l, "condition-timestamp")) {
2201 dual_timestamp_deserialize(v, &u->meta.condition_timestamp);
2203 } else if (streq(l, "condition-result")) {
2206 if ((b = parse_boolean(v)) < 0)
2207 log_debug("Failed to parse condition result value %s", v);
2209 u->meta.condition_result = b;
2214 if ((r = UNIT_VTABLE(u)->deserialize_item(u, l, v, fds)) < 0)
2219 int unit_add_node_link(Unit *u, const char *what, bool wants) {
2229 /* Adds in links to the device node that this unit is based on */
2231 if (!is_device_path(what))
2234 if (!(e = unit_name_build_escape(what+1, NULL, ".device")))
2237 r = manager_load_unit(u->meta.manager, e, NULL, NULL, &device);
2243 if ((r = unit_add_two_dependencies(u, UNIT_AFTER, UNIT_BIND_TO, device, true)) < 0)
2247 if ((r = unit_add_dependency(device, UNIT_WANTS, u, false)) < 0)
2253 int unit_coldplug(Unit *u) {
2258 if (UNIT_VTABLE(u)->coldplug)
2259 if ((r = UNIT_VTABLE(u)->coldplug(u)) < 0)
2262 if (u->meta.deserialized_job >= 0) {
2263 if ((r = manager_add_job(u->meta.manager, u->meta.deserialized_job, u, JOB_IGNORE_REQUIREMENTS, false, NULL, NULL)) < 0)
2266 u->meta.deserialized_job = _JOB_TYPE_INVALID;
2272 void unit_status_printf(Unit *u, const char *format, ...) {
2278 if (!UNIT_VTABLE(u)->show_status)
2281 if (u->meta.manager->running_as != MANAGER_SYSTEM)
2284 /* If Plymouth is running make sure we show the status, so
2285 * that there's something nice to see when people press Esc */
2287 if (!u->meta.manager->show_status && !plymouth_running())
2290 if (!manager_is_booting_or_shutting_down(u->meta.manager))
2293 va_start(ap, format);
2294 status_vprintf(format, ap);
2298 bool unit_need_daemon_reload(Unit *u) {
2303 if (!u->meta.fragment_path)
2307 if (stat(u->meta.fragment_path, &st) < 0)
2308 /* What, cannot access this anymore? */
2312 u->meta.fragment_mtime &&
2313 timespec_load(&st.st_mtim) != u->meta.fragment_mtime;
2316 void unit_reset_failed(Unit *u) {
2319 if (UNIT_VTABLE(u)->reset_failed)
2320 UNIT_VTABLE(u)->reset_failed(u);
2323 Unit *unit_following(Unit *u) {
2326 if (UNIT_VTABLE(u)->following)
2327 return UNIT_VTABLE(u)->following(u);
2332 bool unit_pending_inactive(Unit *u) {
2335 /* Returns true if the unit is inactive or going down */
2337 if (UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(u)))
2340 if (u->meta.job && u->meta.job->type == JOB_STOP)
2346 bool unit_pending_active(Unit *u) {
2349 /* Returns true if the unit is inactive or going down */
2351 if (UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(u)))
2355 (u->meta.job->type == JOB_START ||
2356 u->meta.job->type == JOB_RELOAD_OR_START ||
2357 u->meta.job->type == JOB_RESTART))
2363 UnitType unit_name_to_type(const char *n) {
2368 for (t = 0; t < _UNIT_TYPE_MAX; t++)
2369 if (endswith(n, unit_vtable[t]->suffix))
2372 return _UNIT_TYPE_INVALID;
2375 bool unit_name_is_valid(const char *n, bool template_ok) {
2378 t = unit_name_to_type(n);
2379 if (t < 0 || t >= _UNIT_TYPE_MAX)
2382 return unit_name_is_valid_no_type(n, template_ok);
2385 int unit_kill(Unit *u, KillWho w, KillMode m, int signo, DBusError *error) {
2387 assert(w >= 0 && w < _KILL_WHO_MAX);
2388 assert(m >= 0 && m < _KILL_MODE_MAX);
2390 assert(signo < _NSIG);
2395 if (!UNIT_VTABLE(u)->kill)
2398 return UNIT_VTABLE(u)->kill(u, w, m, signo, error);
2402 int unit_following_set(Unit *u, Set **s) {
2406 if (UNIT_VTABLE(u)->following_set)
2407 return UNIT_VTABLE(u)->following_set(u, s);
2413 static const char* const unit_load_state_table[_UNIT_LOAD_STATE_MAX] = {
2414 [UNIT_STUB] = "stub",
2415 [UNIT_LOADED] = "loaded",
2416 [UNIT_ERROR] = "error",
2417 [UNIT_MERGED] = "merged",
2418 [UNIT_MASKED] = "masked"
2421 DEFINE_STRING_TABLE_LOOKUP(unit_load_state, UnitLoadState);
2423 static const char* const unit_active_state_table[_UNIT_ACTIVE_STATE_MAX] = {
2424 [UNIT_ACTIVE] = "active",
2425 [UNIT_RELOADING] = "reloading",
2426 [UNIT_INACTIVE] = "inactive",
2427 [UNIT_FAILED] = "failed",
2428 [UNIT_ACTIVATING] = "activating",
2429 [UNIT_DEACTIVATING] = "deactivating"
2432 DEFINE_STRING_TABLE_LOOKUP(unit_active_state, UnitActiveState);
2434 static const char* const unit_dependency_table[_UNIT_DEPENDENCY_MAX] = {
2435 [UNIT_REQUIRES] = "Requires",
2436 [UNIT_REQUIRES_OVERRIDABLE] = "RequiresOverridable",
2437 [UNIT_WANTS] = "Wants",
2438 [UNIT_REQUISITE] = "Requisite",
2439 [UNIT_REQUISITE_OVERRIDABLE] = "RequisiteOverridable",
2440 [UNIT_REQUIRED_BY] = "RequiredBy",
2441 [UNIT_REQUIRED_BY_OVERRIDABLE] = "RequiredByOverridable",
2442 [UNIT_BIND_TO] = "BindTo",
2443 [UNIT_WANTED_BY] = "WantedBy",
2444 [UNIT_CONFLICTS] = "Conflicts",
2445 [UNIT_CONFLICTED_BY] = "ConflictedBy",
2446 [UNIT_BOUND_BY] = "BoundBy",
2447 [UNIT_BEFORE] = "Before",
2448 [UNIT_AFTER] = "After",
2449 [UNIT_REFERENCES] = "References",
2450 [UNIT_REFERENCED_BY] = "ReferencedBy",
2451 [UNIT_ON_FAILURE] = "OnFailure"
2454 DEFINE_STRING_TABLE_LOOKUP(unit_dependency, UnitDependency);