]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/unit-printf.c
Add SPDX license identifiers to source files under the LGPL
[thirdparty/systemd.git] / src / core / unit-printf.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
41f9172f
LP
2/***
3 This file is part of systemd.
4
5 Copyright 2010 Lennart Poettering
6
7 systemd is free software; you can redistribute it and/or modify it
8 under the terms of the GNU Lesser General Public License as published by
9 the Free Software Foundation; either version 2.1 of the License, or
10 (at your option) any later version.
11
12 systemd is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Lesser General Public License for more details.
16
17 You should have received a copy of the GNU Lesser General Public License
18 along with systemd; If not, see <http://www.gnu.org/licenses/>.
19***/
20
b5efdb8a 21#include "alloc-util.h"
07630cea 22#include "cgroup-util.h"
f97b34a6 23#include "format-util.h"
07630cea 24#include "macro.h"
41f9172f 25#include "specifier.h"
07630cea 26#include "string-util.h"
41f9172f
LP
27#include "strv.h"
28#include "unit-name.h"
29#include "unit-printf.h"
b1d4f8e1
LP
30#include "unit.h"
31#include "user-util.h"
41f9172f 32
19f6d710 33static int specifier_prefix_and_instance(char specifier, void *data, void *userdata, char **ret) {
41f9172f 34 Unit *u = userdata;
19f6d710 35
41f9172f
LP
36 assert(u);
37
7410616c 38 return unit_name_to_prefix_and_instance(u->id, ret);
41f9172f
LP
39}
40
19f6d710 41static int specifier_prefix(char specifier, void *data, void *userdata, char **ret) {
41f9172f 42 Unit *u = userdata;
19f6d710 43
41f9172f
LP
44 assert(u);
45
7410616c 46 return unit_name_to_prefix(u->id, ret);
41f9172f
LP
47}
48
19f6d710 49static int specifier_prefix_unescaped(char specifier, void *data, void *userdata, char **ret) {
19f6d710 50 _cleanup_free_ char *p = NULL;
7410616c
LP
51 Unit *u = userdata;
52 int r;
41f9172f
LP
53
54 assert(u);
55
7410616c
LP
56 r = unit_name_to_prefix(u->id, &p);
57 if (r < 0)
58 return r;
41f9172f 59
7410616c 60 return unit_name_unescape(p, ret);
41f9172f
LP
61}
62
19f6d710 63static int specifier_instance_unescaped(char specifier, void *data, void *userdata, char **ret) {
41f9172f 64 Unit *u = userdata;
19f6d710 65
41f9172f
LP
66 assert(u);
67
115cbf7e 68 return unit_name_unescape(strempty(u->instance), ret);
41f9172f
LP
69}
70
19f6d710 71static int specifier_filename(char specifier, void *data, void *userdata, char **ret) {
41f9172f 72 Unit *u = userdata;
19f6d710 73
41f9172f
LP
74 assert(u);
75
76 if (u->instance)
7410616c 77 return unit_name_path_unescape(u->instance, ret);
19f6d710 78 else
7410616c 79 return unit_name_to_path(u->id, ret);
41f9172f
LP
80}
81
1b89b0c4
LP
82static void bad_specifier(Unit *u, char specifier) {
83 log_unit_warning(u, "Specifier '%%%c' used in unit configuration, which is deprecated. Please update your unit file, as it does not work as intended.", specifier);
84}
85
19f6d710 86static int specifier_cgroup(char specifier, void *data, void *userdata, char **ret) {
41f9172f 87 Unit *u = userdata;
19f6d710
LP
88 char *n;
89
41f9172f
LP
90 assert(u);
91
1b89b0c4
LP
92 bad_specifier(u, specifier);
93
2cfbd749
LP
94 if (u->cgroup_path)
95 n = strdup(u->cgroup_path);
96 else
97 n = unit_default_cgroup_path(u);
19f6d710
LP
98 if (!n)
99 return -ENOMEM;
100
101 *ret = n;
102 return 0;
41f9172f
LP
103}
104
19f6d710 105static int specifier_cgroup_root(char specifier, void *data, void *userdata, char **ret) {
41f9172f 106 Unit *u = userdata;
19f6d710 107 char *n;
41f9172f 108
9444b1f2 109 assert(u);
41f9172f 110
1b89b0c4
LP
111 bad_specifier(u, specifier);
112
696fd1ef
LP
113 n = strdup(u->manager->cgroup_root);
114 if (!n)
115 return -ENOMEM;
41f9172f 116
696fd1ef
LP
117 *ret = n;
118 return 0;
119}
19f6d710 120
696fd1ef
LP
121static int specifier_cgroup_slice(char specifier, void *data, void *userdata, char **ret) {
122 Unit *u = userdata;
123 char *n;
124
125 assert(u);
126
1b89b0c4
LP
127 bad_specifier(u, specifier);
128
696fd1ef
LP
129 if (UNIT_ISSET(u->slice)) {
130 Unit *slice;
131
132 slice = UNIT_DEREF(u->slice);
133
134 if (slice->cgroup_path)
135 n = strdup(slice->cgroup_path);
136 else
137 n = unit_default_cgroup_path(slice);
138 } else
139 n = strdup(u->manager->cgroup_root);
115cbf7e
EV
140 if (!n)
141 return -ENOMEM;
41f9172f 142
19f6d710
LP
143 *ret = n;
144 return 0;
41f9172f
LP
145}
146
14068e17 147static int specifier_special_directory(char specifier, void *data, void *userdata, char **ret) {
41f9172f 148 Unit *u = userdata;
19f6d710
LP
149 char *n = NULL;
150
41f9172f
LP
151 assert(u);
152
14068e17 153 n = strdup(u->manager->prefix[PTR_TO_UINT(data)]);
2cfbd749
LP
154 if (!n)
155 return -ENOMEM;
19f6d710
LP
156
157 *ret = n;
158 return 0;
41f9172f
LP
159}
160
19f6d710 161static int specifier_user_name(char specifier, void *data, void *userdata, char **ret) {
79413b67 162 char *t;
2cfbd749 163
79413b67
LP
164 /* If we are UID 0 (root), this will not result in NSS,
165 * otherwise it might. This is good, as we want to be able to
166 * run this in PID 1, where our user ID is 0, but where NSS
167 * lookups are not allowed. */
067d851d 168
79413b67
LP
169 t = getusername_malloc();
170 if (!t)
19f6d710
LP
171 return -ENOMEM;
172
79413b67 173 *ret = t;
19f6d710 174 return 0;
41f9172f
LP
175}
176
79413b67 177static int specifier_user_id(char specifier, void *data, void *userdata, char **ret) {
41f9172f 178
79413b67 179 if (asprintf(ret, UID_FMT, getuid()) < 0)
19f6d710
LP
180 return -ENOMEM;
181
19f6d710 182 return 0;
41f9172f
LP
183}
184
79413b67 185static int specifier_user_home(char specifier, void *data, void *userdata, char **ret) {
2cfbd749 186
79413b67
LP
187 /* On PID 1 (which runs as root) this will not result in NSS,
188 * which is good. See above */
2cfbd749 189
79413b67
LP
190 return get_home_dir(ret);
191}
2cfbd749 192
79413b67 193static int specifier_user_shell(char specifier, void *data, void *userdata, char **ret) {
41f9172f 194
79413b67
LP
195 /* On PID 1 (which runs as root) this will not result in NSS,
196 * which is good. See above */
41f9172f 197
79413b67 198 return get_shell(ret);
41f9172f
LP
199}
200
19f6d710 201int unit_name_printf(Unit *u, const char* format, char **ret) {
41f9172f
LP
202
203 /*
b1801e64
LP
204 * This will use the passed string as format string and replace the following specifiers (which should all be
205 * safe for inclusion in unit names):
41f9172f
LP
206 *
207 * %n: the full id of the unit (foo@bar.waldo)
208 * %N: the id of the unit without the suffix (foo@bar)
209 * %p: the prefix (foo)
210 * %i: the instance (bar)
b1801e64
LP
211 *
212 * %U: the UID of the running user
213 * %u: the username of the running user
214 *
215 * %m: the machine ID of the running system
216 * %H: the host name of the running system
217 * %b: the boot ID of the running system
41f9172f
LP
218 */
219
220 const Specifier table[] = {
221 { 'n', specifier_string, u->id },
222 { 'N', specifier_prefix_and_instance, NULL },
223 { 'p', specifier_prefix, NULL },
224 { 'i', specifier_string, u->instance },
b1801e64
LP
225
226 { 'U', specifier_user_id, NULL },
227 { 'u', specifier_user_name, NULL },
228
229 { 'm', specifier_machine_id, NULL },
230 { 'H', specifier_host_name, NULL },
231 { 'b', specifier_boot_id, NULL },
232 {}
41f9172f
LP
233 };
234
235 assert(u);
236 assert(format);
19f6d710 237 assert(ret);
41f9172f 238
19f6d710 239 return specifier_printf(format, table, u, ret);
41f9172f
LP
240}
241
19f6d710 242int unit_full_printf(Unit *u, const char *format, char **ret) {
41f9172f 243
b1801e64
LP
244 /* This is similar to unit_name_printf() but also supports unescaping. Also, adds a couple of additional codes
245 * (which are likely not suitable for unescaped inclusion in unit names):
246 *
247 * %f: the unescaped instance if set, otherwise the id unescaped as path
14068e17 248 *
1b89b0c4
LP
249 * %c: cgroup path of unit (deprecated)
250 * %r: where units in this slice are placed in the cgroup tree (deprecated)
251 * %R: the root of this systemd's instance tree (deprecated)
14068e17
LP
252 *
253 * %t: the runtime directory root (e.g. /run or $XDG_RUNTIME_DIR)
254 * %S: the state directory root (e.g. /var/lib or $XDG_CONFIG_HOME)
255 * %C: the cache directory root (e.g. /var/cache or $XDG_CACHE_HOME)
256 * %L: the log directory root (e.g. /var/log or $XDG_CONFIG_HOME/log)
b1801e64
LP
257 *
258 * %h: the homedir of the running user
259 * %s: the shell of the running user
41f9172f 260 *
b1801e64 261 * %v: `uname -r` of the running system
03fc9c72
LP
262 *
263 * NOTICE: When you add new entries here, please be careful: specifiers which depend on settings of the unit
264 * file itself are broken by design, as they would resolve differently depending on whether they are used
265 * before or after the relevant configuration setting. Hence: don't add them.
41f9172f
LP
266 */
267
268 const Specifier table[] = {
269 { 'n', specifier_string, u->id },
270 { 'N', specifier_prefix_and_instance, NULL },
271 { 'p', specifier_prefix, NULL },
272 { 'P', specifier_prefix_unescaped, NULL },
273 { 'i', specifier_string, u->instance },
274 { 'I', specifier_instance_unescaped, NULL },
275
276 { 'f', specifier_filename, NULL },
277 { 'c', specifier_cgroup, NULL },
696fd1ef 278 { 'r', specifier_cgroup_slice, NULL },
41f9172f 279 { 'R', specifier_cgroup_root, NULL },
14068e17
LP
280 { 't', specifier_special_directory, UINT_TO_PTR(EXEC_DIRECTORY_RUNTIME) },
281 { 'S', specifier_special_directory, UINT_TO_PTR(EXEC_DIRECTORY_STATE) },
282 { 'C', specifier_special_directory, UINT_TO_PTR(EXEC_DIRECTORY_CACHE) },
283 { 'L', specifier_special_directory, UINT_TO_PTR(EXEC_DIRECTORY_LOGS) },
79413b67
LP
284
285 { 'U', specifier_user_id, NULL },
41f9172f
LP
286 { 'u', specifier_user_name, NULL },
287 { 'h', specifier_user_home, NULL },
288 { 's', specifier_user_shell, NULL },
6569cae1
LP
289
290 { 'm', specifier_machine_id, NULL },
291 { 'H', specifier_host_name, NULL },
292 { 'b', specifier_boot_id, NULL },
6aaa8c2f
ZJS
293 { 'v', specifier_kernel_release, NULL },
294 {}
41f9172f
LP
295 };
296
19f6d710 297 assert(u);
41f9172f 298 assert(format);
19f6d710 299 assert(ret);
41f9172f 300
19f6d710 301 return specifier_printf(format, table, u, ret);
41f9172f
LP
302}
303
19f6d710 304int unit_full_printf_strv(Unit *u, char **l, char ***ret) {
41f9172f
LP
305 size_t n;
306 char **r, **i, **j;
19f6d710 307 int q;
41f9172f
LP
308
309 /* Applies unit_full_printf to every entry in l */
310
311 assert(u);
312
313 n = strv_length(l);
314 r = new(char*, n+1);
315 if (!r)
19f6d710 316 return -ENOMEM;
41f9172f
LP
317
318 for (i = l, j = r; *i; i++, j++) {
19f6d710
LP
319 q = unit_full_printf(u, *i, j);
320 if (q < 0)
41f9172f
LP
321 goto fail;
322 }
323
324 *j = NULL;
19f6d710
LP
325 *ret = r;
326 return 0;
41f9172f
LP
327
328fail:
329 for (j--; j >= r; j--)
330 free(*j);
331
332 free(r);
19f6d710 333 return q;
41f9172f 334}