chiark / gitweb /
f786359fac3eb1e182a4fb44d5a9a99f5156db04
[elogind.git] / src / unit.c
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU General Public License as published by
10   the Free Software Foundation; either version 2 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <assert.h>
23 #include <errno.h>
24 #include <string.h>
25 #include <sys/epoll.h>
26 #include <sys/timerfd.h>
27 #include <sys/poll.h>
28 #include <stdlib.h>
29 #include <unistd.h>
30
31 #include "set.h"
32 #include "unit.h"
33 #include "macro.h"
34 #include "strv.h"
35 #include "load-fragment.h"
36 #include "load-dropin.h"
37 #include "log.h"
38 #include "unit-name.h"
39 #include "specifier.h"
40 #include "dbus-unit.h"
41 #include "special.h"
42 #include "cgroup-util.h"
43
44 const UnitVTable * const unit_vtable[_UNIT_TYPE_MAX] = {
45         [UNIT_SERVICE] = &service_vtable,
46         [UNIT_TIMER] = &timer_vtable,
47         [UNIT_SOCKET] = &socket_vtable,
48         [UNIT_TARGET] = &target_vtable,
49         [UNIT_DEVICE] = &device_vtable,
50         [UNIT_MOUNT] = &mount_vtable,
51         [UNIT_AUTOMOUNT] = &automount_vtable,
52         [UNIT_SNAPSHOT] = &snapshot_vtable,
53         [UNIT_SWAP] = &swap_vtable,
54         [UNIT_PATH] = &path_vtable
55 };
56
57 Unit *unit_new(Manager *m) {
58         Unit *u;
59
60         assert(m);
61
62         if (!(u = new0(Unit, 1)))
63                 return NULL;
64
65         if (!(u->meta.names = set_new(string_hash_func, string_compare_func))) {
66                 free(u);
67                 return NULL;
68         }
69
70         u->meta.manager = m;
71         u->meta.type = _UNIT_TYPE_INVALID;
72         u->meta.deserialized_job = _JOB_TYPE_INVALID;
73         u->meta.default_dependencies = true;
74
75         return u;
76 }
77
78 bool unit_has_name(Unit *u, const char *name) {
79         assert(u);
80         assert(name);
81
82         return !!set_get(u->meta.names, (char*) name);
83 }
84
85 int unit_add_name(Unit *u, const char *text) {
86         UnitType t;
87         char *s = NULL, *i = NULL;
88         int r;
89
90         assert(u);
91         assert(text);
92
93         if (unit_name_is_template(text)) {
94                 if (!u->meta.instance)
95                         return -EINVAL;
96
97                 s = unit_name_replace_instance(text, u->meta.instance);
98         } else
99                 s = strdup(text);
100
101         if (!s)
102                 return -ENOMEM;
103
104         if (!unit_name_is_valid(s)) {
105                 r = -EINVAL;
106                 goto fail;
107         }
108
109         assert_se((t = unit_name_to_type(s)) >= 0);
110
111         if (u->meta.type != _UNIT_TYPE_INVALID && t != u->meta.type) {
112                 r = -EINVAL;
113                 goto fail;
114         }
115
116         if ((r = unit_name_to_instance(s, &i)) < 0)
117                 goto fail;
118
119         if (i && unit_vtable[t]->no_instances)
120                 goto fail;
121
122         if (u->meta.type != _UNIT_TYPE_INVALID && !streq_ptr(u->meta.instance, i)) {
123                 r = -EINVAL;
124                 goto fail;
125         }
126
127         if (unit_vtable[t]->no_alias &&
128             !set_isempty(u->meta.names) &&
129             !set_get(u->meta.names, s)) {
130                 r = -EEXIST;
131                 goto fail;
132         }
133
134         if (hashmap_size(u->meta.manager->units) >= MANAGER_MAX_NAMES) {
135                 r = -E2BIG;
136                 goto fail;
137         }
138
139         if ((r = set_put(u->meta.names, s)) < 0) {
140                 if (r == -EEXIST)
141                         r = 0;
142                 goto fail;
143         }
144
145         if ((r = hashmap_put(u->meta.manager->units, s, u)) < 0) {
146                 set_remove(u->meta.names, s);
147                 goto fail;
148         }
149
150         if (u->meta.type == _UNIT_TYPE_INVALID) {
151
152                 u->meta.type = t;
153                 u->meta.id = s;
154                 u->meta.instance = i;
155
156                 LIST_PREPEND(Meta, units_per_type, u->meta.manager->units_per_type[t], &u->meta);
157
158                 if (UNIT_VTABLE(u)->init)
159                         UNIT_VTABLE(u)->init(u);
160         } else
161                 free(i);
162
163         unit_add_to_dbus_queue(u);
164         return 0;
165
166 fail:
167         free(s);
168         free(i);
169
170         return r;
171 }
172
173 int unit_choose_id(Unit *u, const char *name) {
174         char *s, *t = NULL;
175
176         assert(u);
177         assert(name);
178
179         if (unit_name_is_template(name)) {
180
181                 if (!u->meta.instance)
182                         return -EINVAL;
183
184                 if (!(t = unit_name_replace_instance(name, u->meta.instance)))
185                         return -ENOMEM;
186
187                 name = t;
188         }
189
190         /* Selects one of the names of this unit as the id */
191         s = set_get(u->meta.names, (char*) name);
192         free(t);
193
194         if (!s)
195                 return -ENOENT;
196
197         u->meta.id = s;
198         unit_add_to_dbus_queue(u);
199
200         return 0;
201 }
202
203 int unit_set_description(Unit *u, const char *description) {
204         char *s;
205
206         assert(u);
207
208         if (!(s = strdup(description)))
209                 return -ENOMEM;
210
211         free(u->meta.description);
212         u->meta.description = s;
213
214         unit_add_to_dbus_queue(u);
215         return 0;
216 }
217
218 bool unit_check_gc(Unit *u) {
219         assert(u);
220
221         if (u->meta.load_state == UNIT_STUB)
222                 return true;
223
224         if (UNIT_VTABLE(u)->no_gc)
225                 return true;
226
227         if (u->meta.job)
228                 return true;
229
230         if (unit_active_state(u) != UNIT_INACTIVE)
231                 return true;
232
233         if (UNIT_VTABLE(u)->check_gc)
234                 if (UNIT_VTABLE(u)->check_gc(u))
235                         return true;
236
237         return false;
238 }
239
240 void unit_add_to_load_queue(Unit *u) {
241         assert(u);
242         assert(u->meta.type != _UNIT_TYPE_INVALID);
243
244         if (u->meta.load_state != UNIT_STUB || u->meta.in_load_queue)
245                 return;
246
247         LIST_PREPEND(Meta, load_queue, u->meta.manager->load_queue, &u->meta);
248         u->meta.in_load_queue = true;
249 }
250
251 void unit_add_to_cleanup_queue(Unit *u) {
252         assert(u);
253
254         if (u->meta.in_cleanup_queue)
255                 return;
256
257         LIST_PREPEND(Meta, cleanup_queue, u->meta.manager->cleanup_queue, &u->meta);
258         u->meta.in_cleanup_queue = true;
259 }
260
261 void unit_add_to_gc_queue(Unit *u) {
262         assert(u);
263
264         if (u->meta.in_gc_queue || u->meta.in_cleanup_queue)
265                 return;
266
267         if (unit_check_gc(u))
268                 return;
269
270         LIST_PREPEND(Meta, gc_queue, u->meta.manager->gc_queue, &u->meta);
271         u->meta.in_gc_queue = true;
272
273         u->meta.manager->n_in_gc_queue ++;
274
275         if (u->meta.manager->gc_queue_timestamp <= 0)
276                 u->meta.manager->gc_queue_timestamp = now(CLOCK_MONOTONIC);
277 }
278
279 void unit_add_to_dbus_queue(Unit *u) {
280         assert(u);
281         assert(u->meta.type != _UNIT_TYPE_INVALID);
282
283         if (u->meta.load_state == UNIT_STUB || u->meta.in_dbus_queue)
284                 return;
285
286         /* Shortcut things if nobody cares */
287         if (!bus_has_subscriber(u->meta.manager)) {
288                 u->meta.sent_dbus_new_signal = true;
289                 return;
290         }
291
292         LIST_PREPEND(Meta, dbus_queue, u->meta.manager->dbus_unit_queue, &u->meta);
293         u->meta.in_dbus_queue = true;
294 }
295
296 static void bidi_set_free(Unit *u, Set *s) {
297         Iterator i;
298         Unit *other;
299
300         assert(u);
301
302         /* Frees the set and makes sure we are dropped from the
303          * inverse pointers */
304
305         SET_FOREACH(other, s, i) {
306                 UnitDependency d;
307
308                 for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++)
309                         set_remove(other->meta.dependencies[d], u);
310
311                 unit_add_to_gc_queue(other);
312         }
313
314         set_free(s);
315 }
316
317 void unit_free(Unit *u) {
318         UnitDependency d;
319         Iterator i;
320         char *t;
321
322         assert(u);
323
324         bus_unit_send_removed_signal(u);
325
326         if (u->meta.load_state != UNIT_STUB)
327                 if (UNIT_VTABLE(u)->done)
328                         UNIT_VTABLE(u)->done(u);
329
330         SET_FOREACH(t, u->meta.names, i)
331                 hashmap_remove_value(u->meta.manager->units, t, u);
332
333         if (u->meta.job)
334                 job_free(u->meta.job);
335
336         for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++)
337                 bidi_set_free(u, u->meta.dependencies[d]);
338
339         if (u->meta.type != _UNIT_TYPE_INVALID)
340                 LIST_REMOVE(Meta, units_per_type, u->meta.manager->units_per_type[u->meta.type], &u->meta);
341
342         if (u->meta.in_load_queue)
343                 LIST_REMOVE(Meta, load_queue, u->meta.manager->load_queue, &u->meta);
344
345         if (u->meta.in_dbus_queue)
346                 LIST_REMOVE(Meta, dbus_queue, u->meta.manager->dbus_unit_queue, &u->meta);
347
348         if (u->meta.in_cleanup_queue)
349                 LIST_REMOVE(Meta, cleanup_queue, u->meta.manager->cleanup_queue, &u->meta);
350
351         if (u->meta.in_gc_queue) {
352                 LIST_REMOVE(Meta, gc_queue, u->meta.manager->gc_queue, &u->meta);
353                 u->meta.manager->n_in_gc_queue--;
354         }
355
356         cgroup_bonding_free_list(u->meta.cgroup_bondings);
357
358         free(u->meta.description);
359         free(u->meta.fragment_path);
360
361         set_free_free(u->meta.names);
362
363         free(u->meta.instance);
364
365         free(u);
366 }
367
368 UnitActiveState unit_active_state(Unit *u) {
369         assert(u);
370
371         if (u->meta.load_state == UNIT_MERGED)
372                 return unit_active_state(unit_follow_merge(u));
373
374         /* After a reload it might happen that a unit is not correctly
375          * loaded but still has a process around. That's why we won't
376          * shortcut failed loading to UNIT_INACTIVE_MAINTENANCE. */
377
378         return UNIT_VTABLE(u)->active_state(u);
379 }
380
381 const char* unit_sub_state_to_string(Unit *u) {
382         assert(u);
383
384         return UNIT_VTABLE(u)->sub_state_to_string(u);
385 }
386
387 static void complete_move(Set **s, Set **other) {
388         assert(s);
389         assert(other);
390
391         if (!*other)
392                 return;
393
394         if (*s)
395                 set_move(*s, *other);
396         else {
397                 *s = *other;
398                 *other = NULL;
399         }
400 }
401
402 static void merge_names(Unit *u, Unit *other) {
403         char *t;
404         Iterator i;
405
406         assert(u);
407         assert(other);
408
409         complete_move(&u->meta.names, &other->meta.names);
410
411         set_free_free(other->meta.names);
412         other->meta.names = NULL;
413         other->meta.id = NULL;
414
415         SET_FOREACH(t, u->meta.names, i)
416                 assert_se(hashmap_replace(u->meta.manager->units, t, u) == 0);
417 }
418
419 static void merge_dependencies(Unit *u, Unit *other, UnitDependency d) {
420         Iterator i;
421         Unit *back;
422         int r;
423
424         assert(u);
425         assert(other);
426         assert(d < _UNIT_DEPENDENCY_MAX);
427
428         SET_FOREACH(back, other->meta.dependencies[d], i) {
429                 UnitDependency k;
430
431                 for (k = 0; k < _UNIT_DEPENDENCY_MAX; k++)
432                         if ((r = set_remove_and_put(back->meta.dependencies[k], other, u)) < 0) {
433
434                                 if (r == -EEXIST)
435                                         set_remove(back->meta.dependencies[k], other);
436                                 else
437                                         assert(r == -ENOENT);
438                         }
439         }
440
441         complete_move(&u->meta.dependencies[d], &other->meta.dependencies[d]);
442
443         set_free(other->meta.dependencies[d]);
444         other->meta.dependencies[d] = NULL;
445 }
446
447 int unit_merge(Unit *u, Unit *other) {
448         UnitDependency d;
449
450         assert(u);
451         assert(other);
452         assert(u->meta.manager == other->meta.manager);
453         assert(u->meta.type != _UNIT_TYPE_INVALID);
454
455         other = unit_follow_merge(other);
456
457         if (other == u)
458                 return 0;
459
460         if (u->meta.type != other->meta.type)
461                 return -EINVAL;
462
463         if (!streq_ptr(u->meta.instance, other->meta.instance))
464                 return -EINVAL;
465
466         if (other->meta.load_state != UNIT_STUB &&
467             other->meta.load_state != UNIT_FAILED)
468                 return -EEXIST;
469
470         if (other->meta.job)
471                 return -EEXIST;
472
473         if (!UNIT_IS_INACTIVE_OR_MAINTENANCE(unit_active_state(other)))
474                 return -EEXIST;
475
476         /* Merge names */
477         merge_names(u, other);
478
479         /* Merge dependencies */
480         for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++)
481                 merge_dependencies(u, other, d);
482
483         other->meta.load_state = UNIT_MERGED;
484         other->meta.merged_into = u;
485
486         /* If there is still some data attached to the other node, we
487          * don't need it anymore, and can free it. */
488         if (other->meta.load_state != UNIT_STUB)
489                 if (UNIT_VTABLE(other)->done)
490                         UNIT_VTABLE(other)->done(other);
491
492         unit_add_to_dbus_queue(u);
493         unit_add_to_cleanup_queue(other);
494
495         return 0;
496 }
497
498 int unit_merge_by_name(Unit *u, const char *name) {
499         Unit *other;
500         int r;
501         char *s = NULL;
502
503         assert(u);
504         assert(name);
505
506         if (unit_name_is_template(name)) {
507                 if (!u->meta.instance)
508                         return -EINVAL;
509
510                 if (!(s = unit_name_replace_instance(name, u->meta.instance)))
511                         return -ENOMEM;
512
513                 name = s;
514         }
515
516         if (!(other = manager_get_unit(u->meta.manager, name)))
517                 r = unit_add_name(u, name);
518         else
519                 r = unit_merge(u, other);
520
521         free(s);
522         return r;
523 }
524
525 Unit* unit_follow_merge(Unit *u) {
526         assert(u);
527
528         while (u->meta.load_state == UNIT_MERGED)
529                 assert_se(u = u->meta.merged_into);
530
531         return u;
532 }
533
534 int unit_add_exec_dependencies(Unit *u, ExecContext *c) {
535         int r;
536
537         assert(u);
538         assert(c);
539
540         if (c->std_output != EXEC_OUTPUT_KMSG &&
541             c->std_output != EXEC_OUTPUT_SYSLOG &&
542             c->std_error != EXEC_OUTPUT_KMSG &&
543             c->std_error != EXEC_OUTPUT_SYSLOG)
544                 return 0;
545
546         /* If syslog or kernel logging is requested, make sure our own
547          * logging daemon is run first. */
548
549         if ((r = unit_add_dependency_by_name(u, UNIT_AFTER, SPECIAL_LOGGER_SOCKET, NULL, true)) < 0)
550                 return r;
551
552         if (u->meta.manager->running_as == MANAGER_SYSTEM)
553                 if ((r = unit_add_dependency_by_name(u, UNIT_REQUIRES, SPECIAL_LOGGER_SOCKET, NULL, true)) < 0)
554                         return r;
555
556         return 0;
557 }
558
559 const char *unit_description(Unit *u) {
560         assert(u);
561
562         if (u->meta.description)
563                 return u->meta.description;
564
565         return u->meta.id;
566 }
567
568 void unit_dump(Unit *u, FILE *f, const char *prefix) {
569         char *t;
570         UnitDependency d;
571         Iterator i;
572         char *p2;
573         const char *prefix2;
574         CGroupBonding *b;
575         char
576                 timestamp1[FORMAT_TIMESTAMP_MAX],
577                 timestamp2[FORMAT_TIMESTAMP_MAX],
578                 timestamp3[FORMAT_TIMESTAMP_MAX],
579                 timestamp4[FORMAT_TIMESTAMP_MAX];
580
581         assert(u);
582         assert(u->meta.type >= 0);
583
584         if (!prefix)
585                 prefix = "";
586         p2 = strappend(prefix, "\t");
587         prefix2 = p2 ? p2 : prefix;
588
589         fprintf(f,
590                 "%s-> Unit %s:\n"
591                 "%s\tDescription: %s\n"
592                 "%s\tInstance: %s\n"
593                 "%s\tUnit Load State: %s\n"
594                 "%s\tUnit Active State: %s\n"
595                 "%s\tInactive Exit Timestamp: %s\n"
596                 "%s\tActive Enter Timestamp: %s\n"
597                 "%s\tActive Exit Timestamp: %s\n"
598                 "%s\tInactive Enter Timestamp: %s\n"
599                 "%s\tGC Check Good: %s\n",
600                 prefix, u->meta.id,
601                 prefix, unit_description(u),
602                 prefix, strna(u->meta.instance),
603                 prefix, unit_load_state_to_string(u->meta.load_state),
604                 prefix, unit_active_state_to_string(unit_active_state(u)),
605                 prefix, strna(format_timestamp(timestamp1, sizeof(timestamp1), u->meta.inactive_exit_timestamp.realtime)),
606                 prefix, strna(format_timestamp(timestamp2, sizeof(timestamp2), u->meta.active_enter_timestamp.realtime)),
607                 prefix, strna(format_timestamp(timestamp3, sizeof(timestamp3), u->meta.active_exit_timestamp.realtime)),
608                 prefix, strna(format_timestamp(timestamp4, sizeof(timestamp4), u->meta.inactive_enter_timestamp.realtime)),
609                 prefix, yes_no(unit_check_gc(u)));
610
611         SET_FOREACH(t, u->meta.names, i)
612                 fprintf(f, "%s\tName: %s\n", prefix, t);
613
614         if (u->meta.fragment_path)
615                 fprintf(f, "%s\tFragment Path: %s\n", prefix, u->meta.fragment_path);
616
617         for (d = 0; d < _UNIT_DEPENDENCY_MAX; d++) {
618                 Unit *other;
619
620                 SET_FOREACH(other, u->meta.dependencies[d], i)
621                         fprintf(f, "%s\t%s: %s\n", prefix, unit_dependency_to_string(d), other->meta.id);
622         }
623
624         if (u->meta.load_state == UNIT_LOADED) {
625                 fprintf(f,
626                         "%s\tRecursive Stop: %s\n"
627                         "%s\tStopWhenUnneeded: %s\n"
628                         "%s\tOnlyByDependency: %s\n"
629                         "%s\tDefaultDependencies: %s\n"
630                         "%s\tIgnoreDependencyFailure: %s\n",
631                         prefix, yes_no(u->meta.recursive_stop),
632                         prefix, yes_no(u->meta.stop_when_unneeded),
633                         prefix, yes_no(u->meta.only_by_dependency),
634                         prefix, yes_no(u->meta.default_dependencies),
635                         prefix, yes_no(u->meta.ignore_dependency_failure));
636
637                 LIST_FOREACH(by_unit, b, u->meta.cgroup_bondings)
638                         fprintf(f, "%s\tControlGroup: %s:%s\n",
639                                 prefix, b->controller, b->path);
640
641                 if (UNIT_VTABLE(u)->dump)
642                         UNIT_VTABLE(u)->dump(u, f, prefix2);
643
644         } else if (u->meta.load_state == UNIT_MERGED)
645                 fprintf(f,
646                         "%s\tMerged into: %s\n",
647                         prefix, u->meta.merged_into->meta.id);
648
649         if (u->meta.job)
650                 job_dump(u->meta.job, f, prefix2);
651
652         free(p2);
653 }
654
655 /* Common implementation for multiple backends */
656 int unit_load_fragment_and_dropin(Unit *u) {
657         int r;
658
659         assert(u);
660
661         /* Load a .service file */
662         if ((r = unit_load_fragment(u)) < 0)
663                 return r;
664
665         if (u->meta.load_state == UNIT_STUB)
666                 return -ENOENT;
667
668         /* Load drop-in directory data */
669         if ((r = unit_load_dropin(unit_follow_merge(u))) < 0)
670                 return r;
671
672         return 0;
673 }
674
675 /* Common implementation for multiple backends */
676 int unit_load_fragment_and_dropin_optional(Unit *u) {
677         int r;
678
679         assert(u);
680
681         /* Same as unit_load_fragment_and_dropin(), but whether
682          * something can be loaded or not doesn't matter. */
683
684         /* Load a .service file */
685         if ((r = unit_load_fragment(u)) < 0)
686                 return r;
687
688         if (u->meta.load_state == UNIT_STUB)
689                 u->meta.load_state = UNIT_LOADED;
690
691         /* Load drop-in directory data */
692         if ((r = unit_load_dropin(unit_follow_merge(u))) < 0)
693                 return r;
694
695         return 0;
696 }
697
698 /* Common implementation for multiple backends */
699 int unit_load_nop(Unit *u) {
700         assert(u);
701
702         if (u->meta.load_state == UNIT_STUB)
703                 u->meta.load_state = UNIT_LOADED;
704
705         return 0;
706 }
707
708 int unit_load(Unit *u) {
709         int r;
710
711         assert(u);
712
713         if (u->meta.in_load_queue) {
714                 LIST_REMOVE(Meta, load_queue, u->meta.manager->load_queue, &u->meta);
715                 u->meta.in_load_queue = false;
716         }
717
718         if (u->meta.type == _UNIT_TYPE_INVALID)
719                 return -EINVAL;
720
721         if (u->meta.load_state != UNIT_STUB)
722                 return 0;
723
724         if (UNIT_VTABLE(u)->load)
725                 if ((r = UNIT_VTABLE(u)->load(u)) < 0)
726                         goto fail;
727
728         if (u->meta.load_state == UNIT_STUB) {
729                 r = -ENOENT;
730                 goto fail;
731         }
732
733         assert((u->meta.load_state != UNIT_MERGED) == !u->meta.merged_into);
734
735         unit_add_to_dbus_queue(unit_follow_merge(u));
736         unit_add_to_gc_queue(u);
737
738         return 0;
739
740 fail:
741         u->meta.load_state = UNIT_FAILED;
742         unit_add_to_dbus_queue(u);
743
744         log_notice("Failed to load configuration for %s: %s", u->meta.id, strerror(-r));
745
746         return r;
747 }
748
749 /* Errors:
750  *         -EBADR:     This unit type does not support starting.
751  *         -EALREADY:  Unit is already started.
752  *         -EAGAIN:    An operation is already in progress. Retry later.
753  *         -ECANCELED: Too many requests for now.
754  */
755 int unit_start(Unit *u) {
756         UnitActiveState state;
757
758         assert(u);
759
760         if (u->meta.load_state != UNIT_LOADED)
761                 return -EINVAL;
762
763         /* If this is already (being) started, then this will
764          * succeed. Note that this will even succeed if this unit is
765          * not startable by the user. This is relied on to detect when
766          * we need to wait for units and when waiting is finished. */
767         state = unit_active_state(u);
768         if (UNIT_IS_ACTIVE_OR_RELOADING(state))
769                 return -EALREADY;
770
771         /* If it is stopped, but we cannot start it, then fail */
772         if (!UNIT_VTABLE(u)->start)
773                 return -EBADR;
774
775         /* We don't suppress calls to ->start() here when we are
776          * already starting, to allow this request to be used as a
777          * "hurry up" call, for example when the unit is in some "auto
778          * restart" state where it waits for a holdoff timer to elapse
779          * before it will start again. */
780
781         unit_add_to_dbus_queue(u);
782
783         unit_status_printf(u, "Starting %s...\n", unit_description(u));
784
785         return UNIT_VTABLE(u)->start(u);
786 }
787
788 bool unit_can_start(Unit *u) {
789         assert(u);
790
791         return !!UNIT_VTABLE(u)->start;
792 }
793
794 /* Errors:
795  *         -EBADR:    This unit type does not support stopping.
796  *         -EALREADY: Unit is already stopped.
797  *         -EAGAIN:   An operation is already in progress. Retry later.
798  */
799 int unit_stop(Unit *u) {
800         UnitActiveState state;
801
802         assert(u);
803
804         state = unit_active_state(u);
805         if (UNIT_IS_INACTIVE_OR_MAINTENANCE(state))
806                 return -EALREADY;
807
808         if (!UNIT_VTABLE(u)->stop)
809                 return -EBADR;
810
811         unit_add_to_dbus_queue(u);
812
813         unit_status_printf(u, "Stopping %s...\n", unit_description(u));
814
815         return UNIT_VTABLE(u)->stop(u);
816 }
817
818 /* Errors:
819  *         -EBADR:    This unit type does not support reloading.
820  *         -ENOEXEC:  Unit is not started.
821  *         -EAGAIN:   An operation is already in progress. Retry later.
822  */
823 int unit_reload(Unit *u) {
824         UnitActiveState state;
825
826         assert(u);
827
828         if (u->meta.load_state != UNIT_LOADED)
829                 return -EINVAL;
830
831         if (!unit_can_reload(u))
832                 return -EBADR;
833
834         state = unit_active_state(u);
835         if (unit_active_state(u) == UNIT_RELOADING)
836                 return -EALREADY;
837
838         if (unit_active_state(u) != UNIT_ACTIVE)
839                 return -ENOEXEC;
840
841         unit_add_to_dbus_queue(u);
842         return UNIT_VTABLE(u)->reload(u);
843 }
844
845 bool unit_can_reload(Unit *u) {
846         assert(u);
847
848         if (!UNIT_VTABLE(u)->reload)
849                 return false;
850
851         if (!UNIT_VTABLE(u)->can_reload)
852                 return true;
853
854         return UNIT_VTABLE(u)->can_reload(u);
855 }
856
857 static void unit_check_uneeded(Unit *u) {
858         Iterator i;
859         Unit *other;
860
861         assert(u);
862
863         /* If this service shall be shut down when unneeded then do
864          * so. */
865
866         if (!u->meta.stop_when_unneeded)
867                 return;
868
869         if (!UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(u)))
870                 return;
871
872         SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRED_BY], i)
873                 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
874                         return;
875
876         SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRED_BY_OVERRIDABLE], i)
877                 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
878                         return;
879
880         SET_FOREACH(other, u->meta.dependencies[UNIT_WANTED_BY], i)
881                 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
882                         return;
883
884         log_info("Service %s is not needed anymore. Stopping.", u->meta.id);
885
886         /* Ok, nobody needs us anymore. Sniff. Then let's commit suicide */
887         manager_add_job(u->meta.manager, JOB_STOP, u, JOB_FAIL, true, NULL, NULL);
888 }
889
890 static void retroactively_start_dependencies(Unit *u) {
891         Iterator i;
892         Unit *other;
893
894         assert(u);
895         assert(UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(u)));
896
897         SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRES], i)
898                 if (!UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
899                         manager_add_job(u->meta.manager, JOB_START, other, JOB_REPLACE, true, NULL, NULL);
900
901         SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRES_OVERRIDABLE], i)
902                 if (!UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
903                         manager_add_job(u->meta.manager, JOB_START, other, JOB_FAIL, false, NULL, NULL);
904
905         SET_FOREACH(other, u->meta.dependencies[UNIT_REQUISITE], i)
906                 if (!UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
907                         manager_add_job(u->meta.manager, JOB_START, other, JOB_REPLACE, true, NULL, NULL);
908
909         SET_FOREACH(other, u->meta.dependencies[UNIT_WANTS], i)
910                 if (!UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
911                         manager_add_job(u->meta.manager, JOB_START, other, JOB_FAIL, false, NULL, NULL);
912
913         SET_FOREACH(other, u->meta.dependencies[UNIT_CONFLICTS], i)
914                 if (!UNIT_IS_ACTIVE_OR_ACTIVATING(unit_active_state(other)))
915                         manager_add_job(u->meta.manager, JOB_STOP, other, JOB_REPLACE, true, NULL, NULL);
916 }
917
918 static void retroactively_stop_dependencies(Unit *u) {
919         Iterator i;
920         Unit *other;
921
922         assert(u);
923         assert(UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(u)));
924
925         if (u->meta.recursive_stop) {
926                 /* Pull down units need us recursively if enabled */
927                 SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRED_BY], i)
928                         if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
929                                 manager_add_job(u->meta.manager, JOB_STOP, other, JOB_REPLACE, true, NULL, NULL);
930         }
931
932         /* Garbage collect services that might not be needed anymore, if enabled */
933         SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRES], i)
934                 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
935                         unit_check_uneeded(other);
936         SET_FOREACH(other, u->meta.dependencies[UNIT_REQUIRES_OVERRIDABLE], i)
937                 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
938                         unit_check_uneeded(other);
939         SET_FOREACH(other, u->meta.dependencies[UNIT_WANTS], i)
940                 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
941                         unit_check_uneeded(other);
942         SET_FOREACH(other, u->meta.dependencies[UNIT_REQUISITE], i)
943                 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
944                         unit_check_uneeded(other);
945         SET_FOREACH(other, u->meta.dependencies[UNIT_REQUISITE_OVERRIDABLE], i)
946                 if (!UNIT_IS_INACTIVE_OR_DEACTIVATING(unit_active_state(other)))
947                         unit_check_uneeded(other);
948 }
949
950 void unit_notify(Unit *u, UnitActiveState os, UnitActiveState ns) {
951         dual_timestamp ts;
952
953         assert(u);
954         assert(os < _UNIT_ACTIVE_STATE_MAX);
955         assert(ns < _UNIT_ACTIVE_STATE_MAX);
956
957         /* Note that this is called for all low-level state changes,
958          * even if they might map to the same high-level
959          * UnitActiveState! That means that ns == os is OK an expected
960          * behaviour here. For example: if a mount point is remounted
961          * this function will be called too and the utmp code below
962          * relies on that! */
963
964         dual_timestamp_get(&ts);
965
966         if (UNIT_IS_INACTIVE_OR_MAINTENANCE(os) && !UNIT_IS_INACTIVE_OR_MAINTENANCE(ns))
967                 u->meta.inactive_exit_timestamp = ts;
968         else if (!UNIT_IS_INACTIVE_OR_MAINTENANCE(os) && UNIT_IS_INACTIVE_OR_MAINTENANCE(ns))
969                 u->meta.inactive_enter_timestamp = ts;
970
971         if (!UNIT_IS_ACTIVE_OR_RELOADING(os) && UNIT_IS_ACTIVE_OR_RELOADING(ns))
972                 u->meta.active_enter_timestamp = ts;
973         else if (UNIT_IS_ACTIVE_OR_RELOADING(os) && !UNIT_IS_ACTIVE_OR_RELOADING(ns))
974                 u->meta.active_exit_timestamp = ts;
975
976         if (ns != os && ns == UNIT_MAINTENANCE)
977                 log_notice("Unit %s entered maintenance state.", u->meta.id);
978
979         if (UNIT_IS_INACTIVE_OR_MAINTENANCE(ns))
980                 cgroup_bonding_trim_list(u->meta.cgroup_bondings, true);
981
982         timer_unit_notify(u, ns);
983         path_unit_notify(u, ns);
984
985         if (u->meta.job) {
986                 bool unexpected = false;
987
988                 if (u->meta.job->state == JOB_WAITING)
989
990                         /* So we reached a different state for this
991                          * job. Let's see if we can run it now if it
992                          * failed previously due to EAGAIN. */
993                         job_add_to_run_queue(u->meta.job);
994
995
996                 /* Let's check whether this state change constitutes a
997                  * finished job, or maybe cotradicts a running job and
998                  * hence needs to invalidate jobs. */
999
1000                 switch (u->meta.job->type) {
1001
1002                 case JOB_START:
1003                 case JOB_VERIFY_ACTIVE:
1004
1005                         if (UNIT_IS_ACTIVE_OR_RELOADING(ns))
1006                                 job_finish_and_invalidate(u->meta.job, true);
1007                         else if (u->meta.job->state == JOB_RUNNING && ns != UNIT_ACTIVATING) {
1008                                 unexpected = true;
1009                                 job_finish_and_invalidate(u->meta.job, false);
1010                         }
1011
1012                         break;
1013
1014                 case JOB_RELOAD:
1015                 case JOB_RELOAD_OR_START:
1016
1017                         if (u->meta.job->state == JOB_RUNNING) {
1018                                 if (ns == UNIT_ACTIVE)
1019                                         job_finish_and_invalidate(u->meta.job, true);
1020                                 else if (ns != UNIT_ACTIVATING && ns != UNIT_RELOADING) {
1021                                         unexpected = true;
1022                                         job_finish_and_invalidate(u->meta.job, false);
1023                                 }
1024                         }
1025
1026                         break;
1027
1028                 case JOB_STOP:
1029                 case JOB_RESTART:
1030                 case JOB_TRY_RESTART:
1031
1032                         if (ns == UNIT_INACTIVE || ns == UNIT_MAINTENANCE)
1033                                 job_finish_and_invalidate(u->meta.job, true);
1034                         else if (u->meta.job->state == JOB_RUNNING && ns != UNIT_DEACTIVATING) {
1035                                 unexpected = true;
1036                                 job_finish_and_invalidate(u->meta.job, false);
1037                         }
1038
1039                         break;
1040
1041                 default:
1042                         assert_not_reached("Job type unknown");
1043                 }
1044
1045                 /* If this state change happened without being
1046                  * requested by a job, then let's retroactively start
1047                  * or stop dependencies */
1048
1049                 if (unexpected) {
1050                         if (UNIT_IS_INACTIVE_OR_DEACTIVATING(os) && UNIT_IS_ACTIVE_OR_ACTIVATING(ns))
1051                                 retroactively_start_dependencies(u);
1052                         else if (UNIT_IS_ACTIVE_OR_ACTIVATING(os) && UNIT_IS_INACTIVE_OR_DEACTIVATING(ns))
1053                                 retroactively_stop_dependencies(u);
1054                 }
1055         }
1056
1057         /* Some names are special */
1058         if (UNIT_IS_ACTIVE_OR_RELOADING(ns)) {
1059                 if (unit_has_name(u, SPECIAL_DBUS_SERVICE)) {
1060                         /* The bus just might have become available,
1061                          * hence try to connect to it, if we aren't
1062                          * yet connected. */
1063                         bus_init(u->meta.manager);
1064                 }
1065
1066                 if (unit_has_name(u, SPECIAL_SYSLOG_SERVICE))
1067                         /* The syslog daemon just might have become
1068                          * available, hence try to connect to it, if
1069                          * we aren't yet connected. */
1070                         log_open();
1071
1072                 if (u->meta.type == UNIT_MOUNT)
1073                         /* Another directory became available, let's
1074                          * check if that is enough to write our utmp
1075                          * entry. */
1076                         manager_write_utmp_reboot(u->meta.manager);
1077
1078                 if (u->meta.type == UNIT_TARGET)
1079                         /* A target got activated, maybe this is a runlevel? */
1080                         manager_write_utmp_runlevel(u->meta.manager, u);
1081
1082         } else if (!UNIT_IS_ACTIVE_OR_RELOADING(ns)) {
1083
1084                 if (unit_has_name(u, SPECIAL_SYSLOG_SERVICE))
1085                         /* The syslog daemon might just have
1086                          * terminated, hence try to disconnect from
1087                          * it. */
1088                         log_close_syslog();
1089
1090                 /* We don't care about D-Bus here, since we'll get an
1091                  * asynchronous notification for it anyway. */
1092         }
1093
1094         /* Maybe we finished startup and are now ready for being
1095          * stopped because unneeded? */
1096         unit_check_uneeded(u);
1097
1098         unit_add_to_dbus_queue(u);
1099         unit_add_to_gc_queue(u);
1100 }
1101
1102 int unit_watch_fd(Unit *u, int fd, uint32_t events, Watch *w) {
1103         struct epoll_event ev;
1104
1105         assert(u);
1106         assert(fd >= 0);
1107         assert(w);
1108         assert(w->type == WATCH_INVALID || (w->type == WATCH_FD && w->fd == fd && w->data.unit == u));
1109
1110         zero(ev);
1111         ev.data.ptr = w;
1112         ev.events = events;
1113
1114         if (epoll_ctl(u->meta.manager->epoll_fd,
1115                       w->type == WATCH_INVALID ? EPOLL_CTL_ADD : EPOLL_CTL_MOD,
1116                       fd,
1117                       &ev) < 0)
1118                 return -errno;
1119
1120         w->fd = fd;
1121         w->type = WATCH_FD;
1122         w->data.unit = u;
1123
1124         return 0;
1125 }
1126
1127 void unit_unwatch_fd(Unit *u, Watch *w) {
1128         assert(u);
1129         assert(w);
1130
1131         if (w->type == WATCH_INVALID)
1132                 return;
1133
1134         assert(w->type == WATCH_FD);
1135         assert(w->data.unit == u);
1136         assert_se(epoll_ctl(u->meta.manager->epoll_fd, EPOLL_CTL_DEL, w->fd, NULL) >= 0);
1137
1138         w->fd = -1;
1139         w->type = WATCH_INVALID;
1140         w->data.unit = NULL;
1141 }
1142
1143 int unit_watch_pid(Unit *u, pid_t pid) {
1144         assert(u);
1145         assert(pid >= 1);
1146
1147         /* Watch a specific PID. We only support one unit watching
1148          * each PID for now. */
1149
1150         return hashmap_put(u->meta.manager->watch_pids, LONG_TO_PTR(pid), u);
1151 }
1152
1153 void unit_unwatch_pid(Unit *u, pid_t pid) {
1154         assert(u);
1155         assert(pid >= 1);
1156
1157         hashmap_remove_value(u->meta.manager->watch_pids, LONG_TO_PTR(pid), u);
1158 }
1159
1160 int unit_watch_timer(Unit *u, usec_t delay, Watch *w) {
1161         struct itimerspec its;
1162         int flags, fd;
1163         bool ours;
1164
1165         assert(u);
1166         assert(w);
1167         assert(w->type == WATCH_INVALID || (w->type == WATCH_TIMER && w->data.unit == u));
1168
1169         /* This will try to reuse the old timer if there is one */
1170
1171         if (w->type == WATCH_TIMER) {
1172                 ours = false;
1173                 fd = w->fd;
1174         } else {
1175                 ours = true;
1176                 if ((fd = timerfd_create(CLOCK_MONOTONIC, TFD_NONBLOCK|TFD_CLOEXEC)) < 0)
1177                         return -errno;
1178         }
1179
1180         zero(its);
1181
1182         if (delay <= 0) {
1183                 /* Set absolute time in the past, but not 0, since we
1184                  * don't want to disarm the timer */
1185                 its.it_value.tv_sec = 0;
1186                 its.it_value.tv_nsec = 1;
1187
1188                 flags = TFD_TIMER_ABSTIME;
1189         } else {
1190                 timespec_store(&its.it_value, delay);
1191                 flags = 0;
1192         }
1193
1194         /* This will also flush the elapse counter */
1195         if (timerfd_settime(fd, flags, &its, NULL) < 0)
1196                 goto fail;
1197
1198         if (w->type == WATCH_INVALID) {
1199                 struct epoll_event ev;
1200
1201                 zero(ev);
1202                 ev.data.ptr = w;
1203                 ev.events = EPOLLIN;
1204
1205                 if (epoll_ctl(u->meta.manager->epoll_fd, EPOLL_CTL_ADD, fd, &ev) < 0)
1206                         goto fail;
1207         }
1208
1209         w->fd = fd;
1210         w->type = WATCH_TIMER;
1211         w->data.unit = u;
1212
1213         return 0;
1214
1215 fail:
1216         if (ours)
1217                 close_nointr_nofail(fd);
1218
1219         return -errno;
1220 }
1221
1222 void unit_unwatch_timer(Unit *u, Watch *w) {
1223         assert(u);
1224         assert(w);
1225
1226         if (w->type == WATCH_INVALID)
1227                 return;
1228
1229         assert(w->type == WATCH_TIMER && w->data.unit == u);
1230
1231         assert_se(epoll_ctl(u->meta.manager->epoll_fd, EPOLL_CTL_DEL, w->fd, NULL) >= 0);
1232         close_nointr_nofail(w->fd);
1233
1234         w->fd = -1;
1235         w->type = WATCH_INVALID;
1236         w->data.unit = NULL;
1237 }
1238
1239 bool unit_job_is_applicable(Unit *u, JobType j) {
1240         assert(u);
1241         assert(j >= 0 && j < _JOB_TYPE_MAX);
1242
1243         switch (j) {
1244
1245         case JOB_VERIFY_ACTIVE:
1246         case JOB_START:
1247                 return true;
1248
1249         case JOB_STOP:
1250         case JOB_RESTART:
1251         case JOB_TRY_RESTART:
1252                 return unit_can_start(u);
1253
1254         case JOB_RELOAD:
1255                 return unit_can_reload(u);
1256
1257         case JOB_RELOAD_OR_START:
1258                 return unit_can_reload(u) && unit_can_start(u);
1259
1260         default:
1261                 assert_not_reached("Invalid job type");
1262         }
1263 }
1264
1265 int unit_add_dependency(Unit *u, UnitDependency d, Unit *other, bool add_reference) {
1266
1267         static const UnitDependency inverse_table[_UNIT_DEPENDENCY_MAX] = {
1268                 [UNIT_REQUIRES] = UNIT_REQUIRED_BY,
1269                 [UNIT_REQUIRES_OVERRIDABLE] = UNIT_REQUIRED_BY_OVERRIDABLE,
1270                 [UNIT_WANTS] = UNIT_WANTED_BY,
1271                 [UNIT_REQUISITE] = UNIT_REQUIRED_BY,
1272                 [UNIT_REQUISITE_OVERRIDABLE] = UNIT_REQUIRED_BY_OVERRIDABLE,
1273                 [UNIT_REQUIRED_BY] = _UNIT_DEPENDENCY_INVALID,
1274                 [UNIT_REQUIRED_BY_OVERRIDABLE] = _UNIT_DEPENDENCY_INVALID,
1275                 [UNIT_WANTED_BY] = _UNIT_DEPENDENCY_INVALID,
1276                 [UNIT_CONFLICTS] = UNIT_CONFLICTS,
1277                 [UNIT_BEFORE] = UNIT_AFTER,
1278                 [UNIT_AFTER] = UNIT_BEFORE,
1279                 [UNIT_REFERENCES] = UNIT_REFERENCED_BY,
1280                 [UNIT_REFERENCED_BY] = UNIT_REFERENCES
1281         };
1282         int r, q = 0, v = 0, w = 0;
1283
1284         assert(u);
1285         assert(d >= 0 && d < _UNIT_DEPENDENCY_MAX);
1286         assert(inverse_table[d] != _UNIT_DEPENDENCY_INVALID);
1287         assert(other);
1288
1289         /* We won't allow dependencies on ourselves. We will not
1290          * consider them an error however. */
1291         if (u == other)
1292                 return 0;
1293
1294         if (UNIT_VTABLE(u)->no_requires &&
1295             (d == UNIT_REQUIRES ||
1296              d == UNIT_REQUIRES_OVERRIDABLE ||
1297              d == UNIT_REQUISITE ||
1298              d == UNIT_REQUISITE_OVERRIDABLE)) {
1299                     return -EINVAL;
1300         }
1301
1302         if ((r = set_ensure_allocated(&u->meta.dependencies[d], trivial_hash_func, trivial_compare_func)) < 0 ||
1303             (r = set_ensure_allocated(&other->meta.dependencies[inverse_table[d]], trivial_hash_func, trivial_compare_func)) < 0)
1304                 return r;
1305
1306         if (add_reference)
1307                 if ((r = set_ensure_allocated(&u->meta.dependencies[UNIT_REFERENCES], trivial_hash_func, trivial_compare_func)) < 0 ||
1308                     (r = set_ensure_allocated(&other->meta.dependencies[UNIT_REFERENCED_BY], trivial_hash_func, trivial_compare_func)) < 0)
1309                         return r;
1310
1311         if ((q = set_put(u->meta.dependencies[d], other)) < 0)
1312                 return q;
1313
1314         if ((v = set_put(other->meta.dependencies[inverse_table[d]], u)) < 0) {
1315                 r = v;
1316                 goto fail;
1317         }
1318
1319         if (add_reference) {
1320                 if ((w = set_put(u->meta.dependencies[UNIT_REFERENCES], other)) < 0) {
1321                         r = w;
1322                         goto fail;
1323                 }
1324
1325                 if ((r = set_put(other->meta.dependencies[UNIT_REFERENCED_BY], u)) < 0)
1326                         goto fail;
1327         }
1328
1329         unit_add_to_dbus_queue(u);
1330         return 0;
1331
1332 fail:
1333         if (q > 0)
1334                 set_remove(u->meta.dependencies[d], other);
1335
1336         if (v > 0)
1337                 set_remove(other->meta.dependencies[inverse_table[d]], u);
1338
1339         if (w > 0)
1340                 set_remove(u->meta.dependencies[UNIT_REFERENCES], other);
1341
1342         return r;
1343 }
1344
1345 int unit_add_two_dependencies(Unit *u, UnitDependency d, UnitDependency e, Unit *other, bool add_reference) {
1346         int r;
1347
1348         assert(u);
1349
1350         if ((r = unit_add_dependency(u, d, other, add_reference)) < 0)
1351                 return r;
1352
1353         if ((r = unit_add_dependency(u, e, other, add_reference)) < 0)
1354                 return r;
1355
1356         return 0;
1357 }
1358
1359 static const char *resolve_template(Unit *u, const char *name, const char*path, char **p) {
1360         char *s;
1361
1362         assert(u);
1363         assert(name || path);
1364
1365         if (!name)
1366                 name = file_name_from_path(path);
1367
1368         if (!unit_name_is_template(name)) {
1369                 *p = NULL;
1370                 return name;
1371         }
1372
1373         if (u->meta.instance)
1374                 s = unit_name_replace_instance(name, u->meta.instance);
1375         else {
1376                 char *i;
1377
1378                 if (!(i = unit_name_to_prefix(u->meta.id)))
1379                         return NULL;
1380
1381                 s = unit_name_replace_instance(name, i);
1382                 free(i);
1383         }
1384
1385         if (!s)
1386                 return NULL;
1387
1388         *p = s;
1389         return s;
1390 }
1391
1392 int unit_add_dependency_by_name(Unit *u, UnitDependency d, const char *name, const char *path, bool add_reference) {
1393         Unit *other;
1394         int r;
1395         char *s;
1396
1397         assert(u);
1398         assert(name || path);
1399
1400         if (!(name = resolve_template(u, name, path, &s)))
1401                 return -ENOMEM;
1402
1403         if ((r = manager_load_unit(u->meta.manager, name, path, NULL, &other)) < 0)
1404                 goto finish;
1405
1406         r = unit_add_dependency(u, d, other, add_reference);
1407
1408 finish:
1409         free(s);
1410         return r;
1411 }
1412
1413 int unit_add_two_dependencies_by_name(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference) {
1414         Unit *other;
1415         int r;
1416         char *s;
1417
1418         assert(u);
1419         assert(name || path);
1420
1421         if (!(name = resolve_template(u, name, path, &s)))
1422                 return -ENOMEM;
1423
1424         if ((r = manager_load_unit(u->meta.manager, name, path, NULL, &other)) < 0)
1425                 goto finish;
1426
1427         r = unit_add_two_dependencies(u, d, e, other, add_reference);
1428
1429 finish:
1430         free(s);
1431         return r;
1432 }
1433
1434 int unit_add_dependency_by_name_inverse(Unit *u, UnitDependency d, const char *name, const char *path, bool add_reference) {
1435         Unit *other;
1436         int r;
1437         char *s;
1438
1439         assert(u);
1440         assert(name || path);
1441
1442         if (!(name = resolve_template(u, name, path, &s)))
1443                 return -ENOMEM;
1444
1445         if ((r = manager_load_unit(u->meta.manager, name, path, NULL, &other)) < 0)
1446                 goto finish;
1447
1448         r = unit_add_dependency(other, d, u, add_reference);
1449
1450 finish:
1451         free(s);
1452         return r;
1453 }
1454
1455 int unit_add_two_dependencies_by_name_inverse(Unit *u, UnitDependency d, UnitDependency e, const char *name, const char *path, bool add_reference) {
1456         Unit *other;
1457         int r;
1458         char *s;
1459
1460         assert(u);
1461         assert(name || path);
1462
1463         if (!(name = resolve_template(u, name, path, &s)))
1464                 return -ENOMEM;
1465
1466         if ((r = manager_load_unit(u->meta.manager, name, path, NULL, &other)) < 0)
1467                 goto finish;
1468
1469         if ((r = unit_add_two_dependencies(other, d, e, u, add_reference)) < 0)
1470                 goto finish;
1471
1472 finish:
1473         free(s);
1474         return r;
1475 }
1476
1477 int set_unit_path(const char *p) {
1478         char *cwd, *c;
1479         int r;
1480
1481         /* This is mostly for debug purposes */
1482
1483         if (path_is_absolute(p)) {
1484                 if (!(c = strdup(p)))
1485                         return -ENOMEM;
1486         } else {
1487                 if (!(cwd = get_current_dir_name()))
1488                         return -errno;
1489
1490                 r = asprintf(&c, "%s/%s", cwd, p);
1491                 free(cwd);
1492
1493                 if (r < 0)
1494                         return -ENOMEM;
1495         }
1496
1497         if (setenv("SYSTEMD_UNIT_PATH", c, 0) < 0) {
1498                 r = -errno;
1499                 free(c);
1500                 return r;
1501         }
1502
1503         return 0;
1504 }
1505
1506 char *unit_dbus_path(Unit *u) {
1507         char *p, *e;
1508
1509         assert(u);
1510
1511         if (!(e = bus_path_escape(u->meta.id)))
1512                 return NULL;
1513
1514         p = strappend("/org/freedesktop/systemd1/unit/", e);
1515         free(e);
1516
1517         return p;
1518 }
1519
1520 int unit_add_cgroup(Unit *u, CGroupBonding *b) {
1521         CGroupBonding *l;
1522         int r;
1523
1524         assert(u);
1525         assert(b);
1526
1527         assert(b->path);
1528
1529         if (!b->controller)
1530                 if (!(b->controller = strdup(SYSTEMD_CGROUP_CONTROLLER)))
1531                         return -ENOMEM;
1532
1533         /* Ensure this hasn't been added yet */
1534         assert(!b->unit);
1535
1536         l = hashmap_get(u->meta.manager->cgroup_bondings, b->path);
1537         LIST_PREPEND(CGroupBonding, by_path, l, b);
1538
1539         if ((r = hashmap_replace(u->meta.manager->cgroup_bondings, b->path, l)) < 0) {
1540                 LIST_REMOVE(CGroupBonding, by_path, l, b);
1541                 return r;
1542         }
1543
1544         LIST_PREPEND(CGroupBonding, by_unit, u->meta.cgroup_bondings, b);
1545         b->unit = u;
1546
1547         return 0;
1548 }
1549
1550 static char *default_cgroup_path(Unit *u) {
1551         char *p;
1552         int r;
1553
1554         assert(u);
1555
1556         if (u->meta.instance) {
1557                 char *t;
1558
1559                 if (!(t = unit_name_template(u->meta.id)))
1560                         return NULL;
1561
1562                 r = asprintf(&p, "%s/%s/%s", u->meta.manager->cgroup_hierarchy, t, u->meta.instance);
1563                 free(t);
1564         } else
1565                 r = asprintf(&p, "%s/%s", u->meta.manager->cgroup_hierarchy, u->meta.id);
1566
1567         return r < 0 ? NULL : p;
1568 }
1569
1570 int unit_add_cgroup_from_text(Unit *u, const char *name) {
1571         char *controller = NULL, *path = NULL;
1572         CGroupBonding *b = NULL;
1573         int r;
1574
1575         assert(u);
1576         assert(name);
1577
1578         if ((r = cg_split_spec(name, &controller, &path)) < 0)
1579                 return r;
1580
1581         if (!path)
1582                 path = default_cgroup_path(u);
1583
1584         if (!controller)
1585                 controller = strdup(SYSTEMD_CGROUP_CONTROLLER);
1586
1587         if (!path || !controller) {
1588                 free(path);
1589                 free(controller);
1590
1591                 return -ENOMEM;
1592         }
1593
1594         if (cgroup_bonding_find_list(u->meta.cgroup_bondings, controller)) {
1595                 r = -EEXIST;
1596                 goto fail;
1597         }
1598
1599         if (!(b = new0(CGroupBonding, 1))) {
1600                 r = -ENOMEM;
1601                 goto fail;
1602         }
1603
1604         b->controller = controller;
1605         b->path = path;
1606         b->only_us = false;
1607         b->clean_up = false;
1608
1609         if ((r = unit_add_cgroup(u, b)) < 0)
1610                 goto fail;
1611
1612         return 0;
1613
1614 fail:
1615         free(path);
1616         free(controller);
1617         free(b);
1618
1619         return r;
1620 }
1621
1622 int unit_add_default_cgroup(Unit *u) {
1623         CGroupBonding *b;
1624         int r = -ENOMEM;
1625
1626         assert(u);
1627
1628         /* Adds in the default cgroup data, if it wasn't specified yet */
1629
1630         if (unit_get_default_cgroup(u))
1631                 return 0;
1632
1633         if (!(b = new0(CGroupBonding, 1)))
1634                 return -ENOMEM;
1635
1636         if (!(b->path = default_cgroup_path(u)))
1637                 goto fail;
1638
1639         b->clean_up = true;
1640         b->only_us = true;
1641
1642         if ((r = unit_add_cgroup(u, b)) < 0)
1643                 goto fail;
1644
1645         return 0;
1646
1647 fail:
1648         free(b->path);
1649         free(b->controller);
1650         free(b);
1651
1652         return r;
1653 }
1654
1655 CGroupBonding* unit_get_default_cgroup(Unit *u) {
1656         assert(u);
1657
1658         return cgroup_bonding_find_list(u->meta.cgroup_bondings, SYSTEMD_CGROUP_CONTROLLER);
1659 }
1660
1661 int unit_load_related_unit(Unit *u, const char *type, Unit **_found) {
1662         char *t;
1663         int r;
1664
1665         assert(u);
1666         assert(type);
1667         assert(_found);
1668
1669         if (!(t = unit_name_change_suffix(u->meta.id, type)))
1670                 return -ENOMEM;
1671
1672         assert(!unit_has_name(u, t));
1673
1674         r = manager_load_unit(u->meta.manager, t, NULL, NULL, _found);
1675         free(t);
1676
1677         assert(r < 0 || *_found != u);
1678
1679         return r;
1680 }
1681
1682 int unit_get_related_unit(Unit *u, const char *type, Unit **_found) {
1683         Unit *found;
1684         char *t;
1685
1686         assert(u);
1687         assert(type);
1688         assert(_found);
1689
1690         if (!(t = unit_name_change_suffix(u->meta.id, type)))
1691                 return -ENOMEM;
1692
1693         assert(!unit_has_name(u, t));
1694
1695         found = manager_get_unit(u->meta.manager, t);
1696         free(t);
1697
1698         if (!found)
1699                 return -ENOENT;
1700
1701         *_found = found;
1702         return 0;
1703 }
1704
1705 static char *specifier_prefix_and_instance(char specifier, void *data, void *userdata) {
1706         Unit *u = userdata;
1707         assert(u);
1708
1709         return unit_name_to_prefix_and_instance(u->meta.id);
1710 }
1711
1712 static char *specifier_prefix(char specifier, void *data, void *userdata) {
1713         Unit *u = userdata;
1714         assert(u);
1715
1716         return unit_name_to_prefix(u->meta.id);
1717 }
1718
1719 static char *specifier_prefix_unescaped(char specifier, void *data, void *userdata) {
1720         Unit *u = userdata;
1721         char *p, *r;
1722
1723         assert(u);
1724
1725         if (!(p = unit_name_to_prefix(u->meta.id)))
1726                 return NULL;
1727
1728         r = unit_name_unescape(p);
1729         free(p);
1730
1731         return r;
1732 }
1733
1734 static char *specifier_instance_unescaped(char specifier, void *data, void *userdata) {
1735         Unit *u = userdata;
1736         assert(u);
1737
1738         if (u->meta.instance)
1739                 return unit_name_unescape(u->meta.instance);
1740
1741         return strdup("");
1742 }
1743
1744 char *unit_name_printf(Unit *u, const char* format) {
1745
1746         /*
1747          * This will use the passed string as format string and
1748          * replace the following specifiers:
1749          *
1750          * %n: the full id of the unit                 (foo@bar.waldo)
1751          * %N: the id of the unit without the suffix   (foo@bar)
1752          * %p: the prefix                              (foo)
1753          * %i: the instance                            (bar)
1754          */
1755
1756         const Specifier table[] = {
1757                 { 'n', specifier_string,              u->meta.id },
1758                 { 'N', specifier_prefix_and_instance, NULL },
1759                 { 'p', specifier_prefix,              NULL },
1760                 { 'i', specifier_string,              u->meta.instance },
1761                 { 0, NULL, NULL }
1762         };
1763
1764         assert(u);
1765         assert(format);
1766
1767         return specifier_printf(format, table, u);
1768 }
1769
1770 char *unit_full_printf(Unit *u, const char *format) {
1771
1772         /* This is similar to unit_name_printf() but also supports
1773          * unescaping */
1774
1775         const Specifier table[] = {
1776                 { 'n', specifier_string,              u->meta.id },
1777                 { 'N', specifier_prefix_and_instance, NULL },
1778                 { 'p', specifier_prefix,              NULL },
1779                 { 'P', specifier_prefix_unescaped,    NULL },
1780                 { 'i', specifier_string,              u->meta.instance },
1781                 { 'I', specifier_instance_unescaped,  NULL },
1782                 { 0, NULL, NULL }
1783         };
1784
1785         assert(u);
1786         assert(format);
1787
1788         return specifier_printf(format, table, u);
1789 }
1790
1791 char **unit_full_printf_strv(Unit *u, char **l) {
1792         size_t n;
1793         char **r, **i, **j;
1794
1795         /* Applies unit_full_printf to every entry in l */
1796
1797         assert(u);
1798
1799         n = strv_length(l);
1800         if (!(r = new(char*, n+1)))
1801                 return NULL;
1802
1803         for (i = l, j = r; *i; i++, j++)
1804                 if (!(*j = unit_full_printf(u, *i)))
1805                         goto fail;
1806
1807         *j = NULL;
1808         return r;
1809
1810 fail:
1811         j--;
1812         while (j >= r)
1813                 free(*j);
1814
1815         free(r);
1816
1817         return NULL;
1818 }
1819
1820 int unit_watch_bus_name(Unit *u, const char *name) {
1821         assert(u);
1822         assert(name);
1823
1824         /* Watch a specific name on the bus. We only support one unit
1825          * watching each name for now. */
1826
1827         return hashmap_put(u->meta.manager->watch_bus, name, u);
1828 }
1829
1830 void unit_unwatch_bus_name(Unit *u, const char *name) {
1831         assert(u);
1832         assert(name);
1833
1834         hashmap_remove_value(u->meta.manager->watch_bus, name, u);
1835 }
1836
1837 bool unit_can_serialize(Unit *u) {
1838         assert(u);
1839
1840         return UNIT_VTABLE(u)->serialize && UNIT_VTABLE(u)->deserialize_item;
1841 }
1842
1843 int unit_serialize(Unit *u, FILE *f, FDSet *fds) {
1844         int r;
1845
1846         assert(u);
1847         assert(f);
1848         assert(fds);
1849
1850         if (!unit_can_serialize(u))
1851                 return 0;
1852
1853         if ((r = UNIT_VTABLE(u)->serialize(u, f, fds)) < 0)
1854                 return r;
1855
1856         if (u->meta.job)
1857                 unit_serialize_item(u, f, "job", job_type_to_string(u->meta.job->type));
1858
1859         /* End marker */
1860         fputc('\n', f);
1861         return 0;
1862 }
1863
1864 void unit_serialize_item_format(Unit *u, FILE *f, const char *key, const char *format, ...) {
1865         va_list ap;
1866
1867         assert(u);
1868         assert(f);
1869         assert(key);
1870         assert(format);
1871
1872         fputs(key, f);
1873         fputc('=', f);
1874
1875         va_start(ap, format);
1876         vfprintf(f, format, ap);
1877         va_end(ap);
1878
1879         fputc('\n', f);
1880 }
1881
1882 void unit_serialize_item(Unit *u, FILE *f, const char *key, const char *value) {
1883         assert(u);
1884         assert(f);
1885         assert(key);
1886         assert(value);
1887
1888         fprintf(f, "%s=%s\n", key, value);
1889 }
1890
1891 int unit_deserialize(Unit *u, FILE *f, FDSet *fds) {
1892         int r;
1893
1894         assert(u);
1895         assert(f);
1896         assert(fds);
1897
1898         if (!unit_can_serialize(u))
1899                 return 0;
1900
1901         for (;;) {
1902                 char line[1024], *l, *v;
1903                 size_t k;
1904
1905                 if (!fgets(line, sizeof(line), f)) {
1906                         if (feof(f))
1907                                 return 0;
1908                         return -errno;
1909                 }
1910
1911                 l = strstrip(line);
1912
1913                 /* End marker */
1914                 if (l[0] == 0)
1915                         return 0;
1916
1917                 k = strcspn(l, "=");
1918
1919                 if (l[k] == '=') {
1920                         l[k] = 0;
1921                         v = l+k+1;
1922                 } else
1923                         v = l+k;
1924
1925                 if (streq(l, "job")) {
1926                         JobType type;
1927
1928                         if ((type = job_type_from_string(v)) < 0)
1929                                 log_debug("Failed to parse job type value %s", v);
1930                         else
1931                                 u->meta.deserialized_job = type;
1932
1933                         continue;
1934                 }
1935
1936                 if ((r = UNIT_VTABLE(u)->deserialize_item(u, l, v, fds)) < 0)
1937                         return r;
1938         }
1939 }
1940
1941 int unit_add_node_link(Unit *u, const char *what, bool wants) {
1942         Unit *device;
1943         char *e;
1944         int r;
1945
1946         assert(u);
1947
1948         if (!what)
1949                 return 0;
1950
1951         /* Adds in links to the device node that this unit is based on */
1952
1953         if (!is_device_path(what))
1954                 return 0;
1955
1956         if (!(e = unit_name_build_escape(what+1, NULL, ".device")))
1957                 return -ENOMEM;
1958
1959         r = manager_load_unit(u->meta.manager, e, NULL, NULL, &device);
1960         free(e);
1961
1962         if (r < 0)
1963                 return r;
1964
1965         if ((r = unit_add_two_dependencies(u, UNIT_AFTER, UNIT_REQUIRES, device, true)) < 0)
1966                 return r;
1967
1968         if (wants)
1969                 if ((r = unit_add_dependency(device, UNIT_WANTS, u, false)) < 0)
1970                         return r;
1971
1972         return 0;
1973 }
1974
1975 int unit_coldplug(Unit *u) {
1976         int r;
1977
1978         assert(u);
1979
1980         if (UNIT_VTABLE(u)->coldplug)
1981                 if ((r = UNIT_VTABLE(u)->coldplug(u)) < 0)
1982                         return r;
1983
1984         if (u->meta.deserialized_job >= 0) {
1985                 if ((r = manager_add_job(u->meta.manager, u->meta.deserialized_job, u, JOB_FAIL, false, NULL, NULL)) < 0)
1986                         return r;
1987
1988                 u->meta.deserialized_job = _JOB_TYPE_INVALID;
1989         }
1990
1991         return 0;
1992 }
1993
1994 void unit_status_printf(Unit *u, const char *format, ...) {
1995         va_list ap;
1996
1997         assert(u);
1998         assert(format);
1999
2000         if (!UNIT_VTABLE(u)->show_status)
2001                 return;
2002
2003         if (u->meta.manager->running_as != MANAGER_SYSTEM)
2004                 return;
2005
2006         if (!u->meta.manager->show_status)
2007                 return;
2008
2009         if (!manager_is_booting_or_shutting_down(u->meta.manager))
2010                 return;
2011
2012         va_start(ap, format);
2013         status_vprintf(format, ap);
2014         va_end(ap);
2015 }
2016
2017 static const char* const unit_type_table[_UNIT_TYPE_MAX] = {
2018         [UNIT_SERVICE] = "service",
2019         [UNIT_TIMER] = "timer",
2020         [UNIT_SOCKET] = "socket",
2021         [UNIT_TARGET] = "target",
2022         [UNIT_DEVICE] = "device",
2023         [UNIT_MOUNT] = "mount",
2024         [UNIT_AUTOMOUNT] = "automount",
2025         [UNIT_SNAPSHOT] = "snapshot",
2026         [UNIT_SWAP] = "swap"
2027 };
2028
2029 DEFINE_STRING_TABLE_LOOKUP(unit_type, UnitType);
2030
2031 static const char* const unit_load_state_table[_UNIT_LOAD_STATE_MAX] = {
2032         [UNIT_STUB] = "stub",
2033         [UNIT_LOADED] = "loaded",
2034         [UNIT_FAILED] = "failed",
2035         [UNIT_MERGED] = "merged"
2036 };
2037
2038 DEFINE_STRING_TABLE_LOOKUP(unit_load_state, UnitLoadState);
2039
2040 static const char* const unit_active_state_table[_UNIT_ACTIVE_STATE_MAX] = {
2041         [UNIT_ACTIVE] = "active",
2042         [UNIT_RELOADING] = "reloading",
2043         [UNIT_INACTIVE] = "inactive",
2044         [UNIT_MAINTENANCE] = "maintenance",
2045         [UNIT_ACTIVATING] = "activating",
2046         [UNIT_DEACTIVATING] = "deactivating"
2047 };
2048
2049 DEFINE_STRING_TABLE_LOOKUP(unit_active_state, UnitActiveState);
2050
2051 static const char* const unit_dependency_table[_UNIT_DEPENDENCY_MAX] = {
2052         [UNIT_REQUIRES] = "Requires",
2053         [UNIT_REQUIRES_OVERRIDABLE] = "RequiresOverridable",
2054         [UNIT_WANTS] = "Wants",
2055         [UNIT_REQUISITE] = "Requisite",
2056         [UNIT_REQUISITE_OVERRIDABLE] = "RequisiteOverridable",
2057         [UNIT_REQUIRED_BY] = "RequiredBy",
2058         [UNIT_REQUIRED_BY_OVERRIDABLE] = "RequiredByOverridable",
2059         [UNIT_WANTED_BY] = "WantedBy",
2060         [UNIT_CONFLICTS] = "Conflicts",
2061         [UNIT_BEFORE] = "Before",
2062         [UNIT_AFTER] = "After",
2063         [UNIT_REFERENCES] = "References",
2064         [UNIT_REFERENCED_BY] = "ReferencedBy"
2065 };
2066
2067 DEFINE_STRING_TABLE_LOOKUP(unit_dependency, UnitDependency);
2068
2069 static const char* const kill_mode_table[_KILL_MODE_MAX] = {
2070         [KILL_CONTROL_GROUP] = "control-group",
2071         [KILL_PROCESS_GROUP] = "process-group",
2072         [KILL_PROCESS] = "process",
2073         [KILL_NONE] = "none"
2074 };
2075
2076 DEFINE_STRING_TABLE_LOOKUP(kill_mode, KillMode);