1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
6 This file is part of systemd.
8 Copyright 2010 Lennart Poettering
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
28 #define UNIT_NAME_MAX 256
30 typedef enum UnitType UnitType;
31 typedef enum UnitLoadState UnitLoadState;
32 typedef enum UnitDependency UnitDependency;
49 _UNIT_TYPE_INVALID = -1
60 _UNIT_LOAD_STATE_INVALID = -1
64 /* Positive dependencies */
66 UNIT_REQUIRES_OVERRIDABLE,
68 UNIT_REQUISITE_OVERRIDABLE,
73 /* Inverse of the above */
74 UNIT_REQUIRED_BY, /* inverse of 'requires' is 'required_by' */
75 UNIT_REQUIRED_BY_OVERRIDABLE, /* inverse of 'requires_overridable' is 'required_by_overridable' */
76 UNIT_REQUISITE_OF, /* inverse of 'requisite' is 'requisite_of' */
77 UNIT_REQUISITE_OF_OVERRIDABLE,/* inverse of 'requisite_overridable' is 'requisite_of_overridable' */
78 UNIT_WANTED_BY, /* inverse of 'wants' */
79 UNIT_BOUND_BY, /* inverse of 'binds_to' */
80 UNIT_CONSISTS_OF, /* inverse of 'part_of' */
82 /* Negative dependencies */
83 UNIT_CONFLICTS, /* inverse of 'conflicts' is 'conflicted_by' */
87 UNIT_BEFORE, /* inverse of 'before' is 'after' and vice versa */
93 /* Triggers (i.e. a socket triggers a service) */
97 /* Propagate reloads */
98 UNIT_PROPAGATES_RELOAD_TO,
99 UNIT_RELOAD_PROPAGATED_FROM,
101 /* Joins namespace of */
102 UNIT_JOINS_NAMESPACE_OF,
104 /* Reference information for GC logic */
105 UNIT_REFERENCES, /* Inverse of 'references' is 'referenced_by' */
108 _UNIT_DEPENDENCY_MAX,
109 _UNIT_DEPENDENCY_INVALID = -1
112 typedef enum UnitNameFlags {
113 UNIT_NAME_PLAIN = 1, /* Allow foo.service */
114 UNIT_NAME_INSTANCE = 2, /* Allow foo@bar.service */
115 UNIT_NAME_TEMPLATE = 4, /* Allow foo@.service */
116 UNIT_NAME_ANY = UNIT_NAME_PLAIN|UNIT_NAME_INSTANCE|UNIT_NAME_TEMPLATE,
119 bool unit_name_is_valid(const char *n, UnitNameFlags flags) _pure_;
120 bool unit_prefix_is_valid(const char *p) _pure_;
121 bool unit_instance_is_valid(const char *i) _pure_;
122 bool unit_suffix_is_valid(const char *s) _pure_;
124 static inline int unit_prefix_and_instance_is_valid(const char *p) {
125 /* For prefix+instance and instance the same rules apply */
126 return unit_instance_is_valid(p);
129 int unit_name_to_prefix(const char *n, char **prefix);
130 // UNNEEDED int unit_name_to_instance(const char *n, char **instance);
131 // UNNEEDED int unit_name_to_prefix_and_instance(const char *n, char **ret);
133 UnitType unit_name_to_type(const char *n) _pure_;
135 // UNNEEDED int unit_name_change_suffix(const char *n, const char *suffix, char **ret);
137 int unit_name_build(const char *prefix, const char *instance, const char *suffix, char **ret);
139 char *unit_name_escape(const char *f);
140 int unit_name_unescape(const char *f, char **ret);
141 int unit_name_path_escape(const char *f, char **ret);
142 int unit_name_path_unescape(const char *f, char **ret);
144 // UNNEEDED int unit_name_replace_instance(const char *f, const char *i, char **ret);
146 // UNNEEDED int unit_name_template(const char *f, char **ret);
148 int unit_name_from_path(const char *path, const char *suffix, char **ret);
149 // UNNEEDED int unit_name_from_path_instance(const char *prefix, const char *path, const char *suffix, char **ret);
150 // UNNEEDED int unit_name_to_path(const char *name, char **ret);
152 char *unit_dbus_path_from_name(const char *name);
153 int unit_name_from_dbus_path(const char *path, char **name);
155 typedef enum UnitNameMangle {
160 int unit_name_mangle_with_suffix(const char *name, UnitNameMangle allow_globs, const char *suffix, char **ret);
162 static inline int unit_name_mangle(const char *name, UnitNameMangle allow_globs, char **ret) {
163 return unit_name_mangle_with_suffix(name, allow_globs, ".service", ret);
166 // UNNEEDED int slice_build_parent_slice(const char *slice, char **ret);
167 int slice_build_subslice(const char *slice, const char*name, char **subslice);
168 bool slice_name_is_valid(const char *name);
170 const char *unit_type_to_string(UnitType i) _const_;
171 UnitType unit_type_from_string(const char *s) _pure_;
173 const char *unit_load_state_to_string(UnitLoadState i) _const_;
174 UnitLoadState unit_load_state_from_string(const char *s) _pure_;
176 const char *unit_dependency_to_string(UnitDependency i) _const_;
177 UnitDependency unit_dependency_from_string(const char *s) _pure_;