]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/load-fragment.c
tree-wide: avoid some loaded terms
[thirdparty/systemd.git] / src / core / load-fragment.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
a7334b09 2/***
96b2fb93 3 Copyright © 2012 Holger Hans Peter Freyther
a7334b09
LP
4***/
5
3efd4195 6#include <errno.h>
87f0e418 7#include <fcntl.h>
25e870b5 8#include <linux/fs.h>
5f5d8eab 9#include <linux/oom.h>
349cc4a5 10#if HAVE_SECCOMP
618234a5
LP
11#include <seccomp.h>
12#endif
5f5d8eab 13#include <sched.h>
3d57c6ab 14#include <sys/resource.h>
3efd4195 15
5f5d8eab 16#include "af-list.h"
cf0fbc49 17#include "alloc-util.h"
57b7a260 18#include "all-units.h"
fab34748 19#include "bpf-firewall.h"
5f5d8eab
LP
20#include "bus-error.h"
21#include "bus-internal.h"
22#include "bus-util.h"
23#include "cap-list.h"
a103496c 24#include "capability-util.h"
fdb3deca 25#include "cgroup-setup.h"
3efd4195 26#include "conf-parser.h"
618234a5 27#include "cpu-set-util.h"
5f5d8eab
LP
28#include "env-util.h"
29#include "errno-list.h"
4f5dd394 30#include "escape.h"
3ffd4af2 31#include "fd-util.h"
0389f4fa 32#include "fileio.h"
f4f15635 33#include "fs-util.h"
08f3be7a 34#include "hexdecoct.h"
d3070fbd 35#include "io-util.h"
9eba9da4 36#include "ioprio.h"
da96ad5a 37#include "ip-protocol-list.h"
d3070fbd 38#include "journal-util.h"
eefc66aa 39#include "limits-util.h"
3ffd4af2 40#include "load-fragment.h"
5f5d8eab 41#include "log.h"
049af8ad 42#include "mountpoint-util.h"
d8b4d14d 43#include "nulstr-util.h"
6bedfcbb 44#include "parse-util.h"
9eb977db 45#include "path-util.h"
7b3e062c 46#include "process-util.h"
349cc4a5 47#if HAVE_SECCOMP
57183d11
LP
48#include "seccomp-util.h"
49#endif
07d46372 50#include "securebits-util.h"
5f5d8eab 51#include "signal-util.h"
5c3fa98d 52#include "socket-netlink.h"
8fcde012 53#include "stat-util.h"
07630cea 54#include "string-util.h"
5f5d8eab 55#include "strv.h"
91dd5f7c
LP
56#include "syslog-util.h"
57#include "time-util.h"
5f5d8eab
LP
58#include "unit-name.h"
59#include "unit-printf.h"
66dccd8d 60#include "user-util.h"
49cf4170 61#include "web-util.h"
57183d11 62
d2b42d63 63static int parse_socket_protocol(const char *s) {
53577580
YW
64 int r;
65
d2b42d63 66 r = parse_ip_protocol(s);
53577580 67 if (r < 0)
acf4d158 68 return r;
53577580
YW
69 if (!IN_SET(r, IPPROTO_UDPLITE, IPPROTO_SCTP))
70 return -EPROTONOSUPPORT;
71
72 return r;
73}
74
a07a7324
FS
75int parse_crash_chvt(const char *value, int *data) {
76 int b;
77
78 if (safe_atoi(value, data) >= 0)
79 return 0;
80
81 b = parse_boolean(value);
82 if (b < 0)
83 return b;
84
85 if (b > 0)
86 *data = 0; /* switch to where kmsg goes */
87 else
88 *data = -1; /* turn off switching */
89
90 return 0;
91}
92
93int parse_confirm_spawn(const char *value, char **console) {
94 char *s;
95 int r;
96
97 r = value ? parse_boolean(value) : 1;
98 if (r == 0) {
99 *console = NULL;
100 return 0;
4a8daee7 101 } else if (r > 0) /* on with default tty */
a07a7324
FS
102 s = strdup("/dev/console");
103 else if (is_path(value)) /* on with fully qualified path */
104 s = strdup(value);
105 else /* on with only a tty file name, not a fully qualified path */
4a8daee7 106 s = path_join("/dev/", value);
a07a7324
FS
107 if (!s)
108 return -ENOMEM;
109
110 *console = s;
111 return 0;
112}
113
d2b42d63 114DEFINE_CONFIG_PARSE(config_parse_socket_protocol, parse_socket_protocol, "Failed to parse socket protocol");
53577580 115DEFINE_CONFIG_PARSE(config_parse_exec_secure_bits, secure_bits_from_string, "Failed to parse secure bits");
5afe510c 116DEFINE_CONFIG_PARSE_ENUM(config_parse_collect_mode, collect_mode, CollectMode, "Failed to parse garbage collection mode");
53577580 117DEFINE_CONFIG_PARSE_ENUM(config_parse_device_policy, cgroup_device_policy, CGroupDevicePolicy, "Failed to parse device policy");
53577580
YW
118DEFINE_CONFIG_PARSE_ENUM(config_parse_exec_keyring_mode, exec_keyring_mode, ExecKeyringMode, "Failed to parse keyring mode");
119DEFINE_CONFIG_PARSE_ENUM(config_parse_exec_utmp_mode, exec_utmp_mode, ExecUtmpMode, "Failed to parse utmp mode");
120DEFINE_CONFIG_PARSE_ENUM(config_parse_job_mode, job_mode, JobMode, "Failed to parse job mode");
53577580 121DEFINE_CONFIG_PARSE_ENUM(config_parse_notify_access, notify_access, NotifyAccess, "Failed to parse notify access specifier");
1e8c7bd5
YW
122DEFINE_CONFIG_PARSE_ENUM(config_parse_protect_home, protect_home, ProtectHome, "Failed to parse protect home value");
123DEFINE_CONFIG_PARSE_ENUM(config_parse_protect_system, protect_system, ProtectSystem, "Failed to parse protect system value");
53577580
YW
124DEFINE_CONFIG_PARSE_ENUM(config_parse_runtime_preserve_mode, exec_preserve_mode, ExecPreserveMode, "Failed to parse runtime directory preserve mode");
125DEFINE_CONFIG_PARSE_ENUM(config_parse_service_type, service_type, ServiceType, "Failed to parse service type");
126DEFINE_CONFIG_PARSE_ENUM(config_parse_service_restart, service_restart, ServiceRestart, "Failed to parse service restart specifier");
bf760801 127DEFINE_CONFIG_PARSE_ENUM(config_parse_service_timeout_failure_mode, service_timeout_failure_mode, ServiceTimeoutFailureMode, "Failed to parse timeout failure mode");
53577580 128DEFINE_CONFIG_PARSE_ENUM(config_parse_socket_bind, socket_address_bind_ipv6_only_or_bool, SocketAddressBindIPv6Only, "Failed to parse bind IPv6 only value");
afcfaa69 129DEFINE_CONFIG_PARSE_ENUM(config_parse_oom_policy, oom_policy, OOMPolicy, "Failed to parse OOM policy");
53577580
YW
130DEFINE_CONFIG_PARSE_ENUM_WITH_DEFAULT(config_parse_ip_tos, ip_tos, int, -1, "Failed to parse IP TOS value");
131DEFINE_CONFIG_PARSE_PTR(config_parse_blockio_weight, cg_blkio_weight_parse, uint64_t, "Invalid block IO weight");
132DEFINE_CONFIG_PARSE_PTR(config_parse_cg_weight, cg_weight_parse, uint64_t, "Invalid weight");
133DEFINE_CONFIG_PARSE_PTR(config_parse_cpu_shares, cg_cpu_shares_parse, uint64_t, "Invalid CPU shares");
134DEFINE_CONFIG_PARSE_PTR(config_parse_exec_mount_flags, mount_propagation_flags_from_string, unsigned long, "Failed to parse mount flag");
b070c7c0 135DEFINE_CONFIG_PARSE_ENUM_WITH_DEFAULT(config_parse_numa_policy, mpol, int, -1, "Invalid NUMA policy type");
6327aa9f 136DEFINE_CONFIG_PARSE_ENUM(config_parse_status_unit_format, status_unit_format, StatusUnitFormat, "Failed to parse status unit format");
5afe510c 137
f32b43bd
LP
138int config_parse_unit_deps(
139 const char *unit,
140 const char *filename,
141 unsigned line,
142 const char *section,
143 unsigned section_line,
144 const char *lvalue,
145 int ltype,
146 const char *rvalue,
147 void *data,
148 void *userdata) {
3efd4195 149
f975e971 150 UnitDependency d = ltype;
87f0e418 151 Unit *u = userdata;
3d793d29 152 const char *p;
3efd4195
LP
153
154 assert(filename);
155 assert(lvalue);
156 assert(rvalue);
3efd4195 157
3d793d29 158 p = rvalue;
9ed794a3 159 for (;;) {
3d793d29 160 _cleanup_free_ char *word = NULL, *k = NULL;
3efd4195 161 int r;
3efd4195 162
c89f52ac 163 r = extract_first_word(&p, &word, NULL, EXTRACT_RETAIN_ESCAPE);
3d793d29
SS
164 if (r == 0)
165 break;
166 if (r == -ENOMEM)
74051b9b 167 return log_oom();
3d793d29
SS
168 if (r < 0) {
169 log_syntax(unit, LOG_ERR, filename, line, r, "Invalid syntax, ignoring: %s", rvalue);
170 break;
171 }
3efd4195 172
3d793d29 173 r = unit_name_printf(u, word, &k);
19f6d710 174 if (r < 0) {
063c4b1a 175 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s', ignoring: %m", word);
19f6d710
LP
176 continue;
177 }
9e2f7c11 178
35d8c19a 179 r = unit_add_dependency_by_name(u, d, k, true, UNIT_DEPENDENCY_FILE);
57020a3a 180 if (r < 0)
12ca818f 181 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to add dependency on %s, ignoring: %m", k);
3efd4195
LP
182 }
183
184 return 0;
185}
186
f32b43bd
LP
187int config_parse_obsolete_unit_deps(
188 const char *unit,
189 const char *filename,
190 unsigned line,
191 const char *section,
192 unsigned section_line,
193 const char *lvalue,
194 int ltype,
195 const char *rvalue,
196 void *data,
197 void *userdata) {
198
199 log_syntax(unit, LOG_WARNING, filename, line, 0,
200 "Unit dependency type %s= is obsolete, replacing by %s=, please update your unit file", lvalue, unit_dependency_to_string(ltype));
201
202 return config_parse_unit_deps(unit, filename, line, section, section_line, lvalue, ltype, rvalue, data, userdata);
203}
204
b02cb41c
LP
205int config_parse_unit_string_printf(
206 const char *unit,
207 const char *filename,
208 unsigned line,
209 const char *section,
210 unsigned section_line,
211 const char *lvalue,
212 int ltype,
213 const char *rvalue,
214 void *data,
215 void *userdata) {
932921b5 216
74051b9b 217 _cleanup_free_ char *k = NULL;
47538b76 218 const Unit *u = userdata;
19f6d710 219 int r;
932921b5
LP
220
221 assert(filename);
222 assert(lvalue);
223 assert(rvalue);
f2d3769a 224 assert(u);
932921b5 225
19f6d710 226 r = unit_full_printf(u, rvalue, &k);
b02cb41c 227 if (r < 0) {
063c4b1a 228 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s', ignoring: %m", rvalue);
b02cb41c
LP
229 return 0;
230 }
932921b5 231
b02cb41c 232 return config_parse_string(unit, filename, line, section, section_line, lvalue, ltype, k, data, userdata);
932921b5
LP
233}
234
12ca818f
LP
235int config_parse_unit_strv_printf(
236 const char *unit,
237 const char *filename,
238 unsigned line,
239 const char *section,
240 unsigned section_line,
241 const char *lvalue,
242 int ltype,
243 const char *rvalue,
244 void *data,
245 void *userdata) {
8fef7659 246
47538b76 247 const Unit *u = userdata;
74051b9b 248 _cleanup_free_ char *k = NULL;
19f6d710 249 int r;
8fef7659
LP
250
251 assert(filename);
252 assert(lvalue);
253 assert(rvalue);
254 assert(u);
255
19f6d710 256 r = unit_full_printf(u, rvalue, &k);
12ca818f 257 if (r < 0) {
063c4b1a 258 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s', ignoring: %m", rvalue);
12ca818f
LP
259 return 0;
260 }
8fef7659 261
12ca818f 262 return config_parse_strv(unit, filename, line, section, section_line, lvalue, ltype, k, data, userdata);
8fef7659
LP
263}
264
5f5d8eab
LP
265int config_parse_unit_path_printf(
266 const char *unit,
267 const char *filename,
268 unsigned line,
269 const char *section,
270 unsigned section_line,
271 const char *lvalue,
272 int ltype,
273 const char *rvalue,
274 void *data,
275 void *userdata) {
6ea832a2 276
74051b9b 277 _cleanup_free_ char *k = NULL;
47538b76 278 const Unit *u = userdata;
19f6d710 279 int r;
2c75fb73 280 bool fatal = ltype;
6ea832a2
LP
281
282 assert(filename);
283 assert(lvalue);
284 assert(rvalue);
6ea832a2
LP
285 assert(u);
286
e3c3d676
ZJS
287 /* Let's not bother with anything that is too long */
288 if (strlen(rvalue) >= PATH_MAX) {
289 log_syntax(unit, LOG_ERR, filename, line, 0,
290 "%s value too long%s.",
291 lvalue, fatal ? "" : ", ignoring");
292 return fatal ? -ENAMETOOLONG : 0;
293 }
294
19f6d710 295 r = unit_full_printf(u, rvalue, &k);
811ba7a0 296 if (r < 0) {
2c75fb73 297 log_syntax(unit, LOG_ERR, filename, line, r,
063c4b1a 298 "Failed to resolve unit specifiers in '%s'%s: %m",
e3c3d676 299 rvalue, fatal ? "" : ", ignoring");
2c75fb73 300 return fatal ? -ENOEXEC : 0;
811ba7a0 301 }
6ea832a2 302
811ba7a0
LP
303 return config_parse_path(unit, filename, line, section, section_line, lvalue, ltype, k, data, userdata);
304}
305
306int config_parse_unit_path_strv_printf(
307 const char *unit,
308 const char *filename,
309 unsigned line,
310 const char *section,
311 unsigned section_line,
312 const char *lvalue,
313 int ltype,
314 const char *rvalue,
315 void *data,
316 void *userdata) {
317
a2a5291b 318 char ***x = data;
47538b76 319 const Unit *u = userdata;
811ba7a0 320 int r;
035fe294 321 const char *p;
811ba7a0
LP
322
323 assert(filename);
324 assert(lvalue);
325 assert(rvalue);
326 assert(u);
327
499295fb 328 if (isempty(rvalue)) {
9f2d41a6 329 *x = strv_free(*x);
499295fb
YW
330 return 0;
331 }
332
035fe294
ZJS
333 for (p = rvalue;;) {
334 _cleanup_free_ char *word = NULL, *k = NULL;
811ba7a0 335
4ec85141 336 r = extract_first_word(&p, &word, NULL, EXTRACT_UNQUOTE);
035fe294
ZJS
337 if (r == 0)
338 return 0;
339 if (r == -ENOMEM)
340 return log_oom();
341 if (r < 0) {
342 log_syntax(unit, LOG_WARNING, filename, line, r,
343 "Invalid syntax, ignoring: %s", rvalue);
344 return 0;
345 }
811ba7a0 346
035fe294 347 r = unit_full_printf(u, word, &k);
811ba7a0 348 if (r < 0) {
035fe294 349 log_syntax(unit, LOG_ERR, filename, line, r,
063c4b1a 350 "Failed to resolve unit specifiers in '%s', ignoring: %m", word);
811ba7a0
LP
351 return 0;
352 }
353
2f4d31c1
YW
354 r = path_simplify_and_warn(k, PATH_CHECK_ABSOLUTE, unit, filename, line, lvalue);
355 if (r < 0)
811ba7a0 356 return 0;
811ba7a0 357
7d2c9c6b 358 r = strv_consume(x, TAKE_PTR(k));
811ba7a0
LP
359 if (r < 0)
360 return log_oom();
811ba7a0 361 }
6ea832a2
LP
362}
363
4a66b5c9
LP
364static int patch_var_run(
365 const char *unit,
366 const char *filename,
367 unsigned line,
368 const char *lvalue,
369 char **path) {
370
371 const char *e;
372 char *z;
373
374 e = path_startswith(*path, "/var/run/");
375 if (!e)
376 return 0;
377
378 z = path_join("/run/", e);
379 if (!z)
380 return log_oom();
381
382 log_syntax(unit, LOG_NOTICE, filename, line, 0,
383 "%s= references a path below legacy directory /var/run/, updating %s → %s; "
384 "please update the unit file accordingly.", lvalue, *path, z);
385
386 free_and_replace(*path, z);
387
388 return 1;
389}
390
391int config_parse_socket_listen(
392 const char *unit,
393 const char *filename,
394 unsigned line,
395 const char *section,
396 unsigned section_line,
397 const char *lvalue,
398 int ltype,
399 const char *rvalue,
400 void *data,
401 void *userdata) {
42f4e3c4 402
b1389b0d
ZJS
403 _cleanup_free_ SocketPort *p = NULL;
404 SocketPort *tail;
542563ba 405 Socket *s;
19f6d710 406 int r;
16354eff 407
42f4e3c4
LP
408 assert(filename);
409 assert(lvalue);
410 assert(rvalue);
411 assert(data);
412
595ed347 413 s = SOCKET(data);
542563ba 414
74051b9b
LP
415 if (isempty(rvalue)) {
416 /* An empty assignment removes all ports */
417 socket_free_ports(s);
418 return 0;
419 }
420
7f110ff9
LP
421 p = new0(SocketPort, 1);
422 if (!p)
74051b9b 423 return log_oom();
916abb21 424
74051b9b 425 if (ltype != SOCKET_SOCKET) {
2f4d31c1 426 _cleanup_free_ char *k = NULL;
916abb21 427
2f4d31c1 428 r = unit_full_printf(UNIT(s), rvalue, &k);
19f6d710 429 if (r < 0) {
063c4b1a 430 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s', ignoring: %m", rvalue);
12ca818f 431 return 0;
916abb21
LP
432 }
433
2f4d31c1
YW
434 r = path_simplify_and_warn(k, PATH_CHECK_ABSOLUTE, unit, filename, line, lvalue);
435 if (r < 0)
436 return 0;
437
4a66b5c9
LP
438 if (ltype == SOCKET_FIFO) {
439 r = patch_var_run(unit, filename, line, lvalue, &k);
440 if (r < 0)
441 return r;
442 }
443
2f4d31c1
YW
444 free_and_replace(p->path, k);
445 p->type = ltype;
916abb21 446
7a22745a 447 } else if (streq(lvalue, "ListenNetlink")) {
74051b9b 448 _cleanup_free_ char *k = NULL;
1fd45a90 449
19f6d710 450 r = unit_full_printf(UNIT(s), rvalue, &k);
12ca818f 451 if (r < 0) {
063c4b1a 452 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s', ignoring: %m", rvalue);
12ca818f
LP
453 return 0;
454 }
7a22745a 455
12ca818f 456 r = socket_address_parse_netlink(&p->address, k);
1fd45a90 457 if (r < 0) {
063c4b1a 458 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse address value in '%s', ignoring: %m", k);
7a22745a
LP
459 return 0;
460 }
461
2f4d31c1
YW
462 p->type = SOCKET_SOCKET;
463
542563ba 464 } else {
74051b9b 465 _cleanup_free_ char *k = NULL;
1fd45a90 466
19f6d710 467 r = unit_full_printf(UNIT(s), rvalue, &k);
12ca818f 468 if (r < 0) {
063c4b1a 469 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s', ignoring: %m", rvalue);
12ca818f
LP
470 return 0;
471 }
542563ba 472
4a66b5c9
LP
473 if (k[0] == '/') { /* Only for AF_UNIX file system sockets… */
474 r = patch_var_run(unit, filename, line, lvalue, &k);
475 if (r < 0)
476 return r;
477 }
478
12ca818f 479 r = socket_address_parse_and_warn(&p->address, k);
1fd45a90 480 if (r < 0) {
f847b8b7 481 if (r != -EAFNOSUPPORT)
063c4b1a 482 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse address value in '%s', ignoring: %m", k);
c0b34696 483 return 0;
542563ba
LP
484 }
485
486 if (streq(lvalue, "ListenStream"))
487 p->address.type = SOCK_STREAM;
488 else if (streq(lvalue, "ListenDatagram"))
489 p->address.type = SOCK_DGRAM;
490 else {
491 assert(streq(lvalue, "ListenSequentialPacket"));
492 p->address.type = SOCK_SEQPACKET;
493 }
494
495 if (socket_address_family(&p->address) != AF_LOCAL && p->address.type == SOCK_SEQPACKET) {
12ca818f 496 log_syntax(unit, LOG_ERR, filename, line, 0, "Address family not supported, ignoring: %s", rvalue);
c0b34696 497 return 0;
542563ba 498 }
2f4d31c1
YW
499
500 p->type = SOCKET_SOCKET;
16354eff
LP
501 }
502
542563ba 503 p->fd = -1;
15087cdb
PS
504 p->auxiliary_fds = NULL;
505 p->n_auxiliary_fds = 0;
2e41a51e 506 p->socket = s;
49f91047 507
533f8a67
YW
508 LIST_FIND_TAIL(port, s->ports, tail);
509 LIST_INSERT_AFTER(port, s->ports, tail, p);
510
b1389b0d 511 p = NULL;
542563ba 512
16354eff 513 return 0;
42f4e3c4
LP
514}
515
41bf0590
LP
516int config_parse_exec_nice(
517 const char *unit,
518 const char *filename,
519 unsigned line,
520 const char *section,
521 unsigned section_line,
522 const char *lvalue,
523 int ltype,
524 const char *rvalue,
525 void *data,
526 void *userdata) {
034c6ed7 527
fb33a393 528 ExecContext *c = data;
e8e581bf 529 int priority, r;
034c6ed7
LP
530
531 assert(filename);
532 assert(lvalue);
533 assert(rvalue);
534 assert(data);
535
de5e6038
YW
536 if (isempty(rvalue)) {
537 c->nice_set = false;
538 return 0;
539 }
540
41bf0590 541 r = parse_nice(rvalue, &priority);
e8e581bf 542 if (r < 0) {
41bf0590
LP
543 if (r == -ERANGE)
544 log_syntax(unit, LOG_ERR, filename, line, r, "Nice priority out of range, ignoring: %s", rvalue);
545 else
063c4b1a 546 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse nice priority '%s', ignoring: %m", rvalue);
c0b34696 547 return 0;
034c6ed7
LP
548 }
549
fb33a393 550 c->nice = priority;
71155933 551 c->nice_set = true;
fb33a393 552
034c6ed7
LP
553 return 0;
554}
555
e9eb2c02
LP
556int config_parse_exec_oom_score_adjust(
557 const char* unit,
558 const char *filename,
559 unsigned line,
560 const char *section,
561 unsigned section_line,
562 const char *lvalue,
563 int ltype,
564 const char *rvalue,
565 void *data,
566 void *userdata) {
034c6ed7 567
fb33a393 568 ExecContext *c = data;
e8e581bf 569 int oa, r;
034c6ed7
LP
570
571 assert(filename);
572 assert(lvalue);
573 assert(rvalue);
574 assert(data);
575
e9eb2c02
LP
576 if (isempty(rvalue)) {
577 c->oom_score_adjust_set = false;
c0b34696 578 return 0;
034c6ed7
LP
579 }
580
e9eb2c02 581 r = parse_oom_score_adjust(rvalue, &oa);
e9eb2c02 582 if (r < 0) {
063c4b1a
YW
583 if (r == -ERANGE)
584 log_syntax(unit, LOG_ERR, filename, line, r, "OOM score adjust value out of range, ignoring: %s", rvalue);
585 else
586 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse the OOM score adjust value '%s', ignoring: %m", rvalue);
c0b34696 587 return 0;
034c6ed7
LP
588 }
589
dd6c17b1
LP
590 c->oom_score_adjust = oa;
591 c->oom_score_adjust_set = true;
fb33a393 592
034c6ed7
LP
593 return 0;
594}
595
ad21e542
ZJS
596int config_parse_exec_coredump_filter(
597 const char* unit,
598 const char *filename,
599 unsigned line,
600 const char *section,
601 unsigned section_line,
602 const char *lvalue,
603 int ltype,
604 const char *rvalue,
605 void *data,
606 void *userdata) {
607
608 ExecContext *c = data;
609 int r;
610
611 assert(filename);
612 assert(lvalue);
613 assert(rvalue);
614 assert(data);
615
616 if (isempty(rvalue)) {
617 c->coredump_filter = 0;
618 c->coredump_filter_set = false;
619 return 0;
620 }
621
622 uint64_t f;
623 r = coredump_filter_mask_from_string(rvalue, &f);
624 if (r < 0) {
625 log_syntax(unit, LOG_WARNING, filename, line, r,
626 "Failed to parse the CoredumpFilter=%s, ignoring: %m", rvalue);
627 return 0;
628 }
629
630 c->coredump_filter |= f;
631 c->oom_score_adjust_set = true;
632 return 0;
633}
634
d068765b
LP
635int config_parse_kill_mode(
636 const char* unit,
637 const char *filename,
638 unsigned line,
639 const char *section,
640 unsigned section_line,
641 const char *lvalue,
642 int ltype,
643 const char *rvalue,
644 void *data,
645 void *userdata) {
646
647 KillMode *k = data, m;
648
649 assert(filename);
650 assert(lvalue);
651 assert(rvalue);
652 assert(data);
653
654 if (isempty(rvalue)) {
655 *k = KILL_CONTROL_GROUP;
656 return 0;
657 }
658
659 m = kill_mode_from_string(rvalue);
660 if (m < 0) {
661 log_syntax(unit, LOG_WARNING, filename, line, 0,
662 "Failed to parse kill mode specification, ignoring: %s", rvalue);
663 return 0;
664 }
665
666 if (m == KILL_NONE)
667 log_syntax(unit, LOG_WARNING, filename, line, 0,
668 "Unit configured to use KillMode=none. "
669 "This is unsafe, as it disables systemd's process life-cycle management for the service. "
670 "Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. "
671 "Support for KillMode=none is deprecated and will eventually be removed.");
672
673 *k = m;
674 return 0;
675}
676
527b7a42
LP
677int config_parse_exec(
678 const char *unit,
679 const char *filename,
680 unsigned line,
681 const char *section,
682 unsigned section_line,
683 const char *lvalue,
684 int ltype,
685 const char *rvalue,
686 void *data,
687 void *userdata) {
034c6ed7 688
46a0d98a 689 ExecCommand **e = data;
47538b76 690 const Unit *u = userdata;
46a0d98a
FB
691 const char *p;
692 bool semicolon;
7f110ff9 693 int r;
034c6ed7
LP
694
695 assert(filename);
696 assert(lvalue);
697 assert(rvalue);
61e5d8ed 698 assert(e);
034c6ed7 699
74051b9b 700 e += ltype;
c83f1f30 701
74051b9b
LP
702 if (isempty(rvalue)) {
703 /* An empty assignment resets the list */
f1acf85a 704 *e = exec_command_free_list(*e);
74051b9b
LP
705 return 0;
706 }
707
bd1b973f 708 p = rvalue;
46a0d98a 709 do {
dea7b6b0 710 _cleanup_free_ char *path = NULL, *firstword = NULL;
165a31c0
LP
711 ExecCommandFlags flags = 0;
712 bool ignore = false, separate_argv0 = false;
dea7b6b0 713 _cleanup_free_ ExecCommand *nce = NULL;
46a0d98a
FB
714 _cleanup_strv_free_ char **n = NULL;
715 size_t nlen = 0, nbufsize = 0;
5125e762 716 const char *f;
6c666e26 717
46a0d98a
FB
718 semicolon = false;
719
4ec85141 720 r = extract_first_word_and_warn(&p, &firstword, NULL, EXTRACT_UNQUOTE|EXTRACT_CUNESCAPE, unit, filename, line, rvalue);
46a0d98a
FB
721 if (r <= 0)
722 return 0;
6c666e26 723
46a0d98a 724 f = firstword;
007f48bb 725 for (;;) {
165a31c0
LP
726 /* We accept an absolute path as first argument. If it's prefixed with - and the path doesn't
727 * exist, we ignore it instead of erroring out; if it's prefixed with @, we allow overriding of
7ca69792
AZ
728 * argv[0]; if it's prefixed with :, we will not do environment variable substitution;
729 * if it's prefixed with +, it will be run with full privileges and no sandboxing; if
165a31c0
LP
730 * it's prefixed with '!' we apply sandboxing, but do not change user/group credentials; if
731 * it's prefixed with '!!', then we apply user/group credentials if the kernel supports ambient
732 * capabilities -- if it doesn't we don't apply the credentials themselves, but do apply most
733 * other sandboxing, with some special exceptions for changing UID.
734 *
735 * The idea is that '!!' may be used to write services that can take benefit of systemd's
736 * UID/GID dropping if the kernel supports ambient creds, but provide an automatic fallback to
737 * privilege dropping within the daemon if the kernel does not offer that. */
738
739 if (*f == '-' && !(flags & EXEC_COMMAND_IGNORE_FAILURE)) {
740 flags |= EXEC_COMMAND_IGNORE_FAILURE;
46a0d98a 741 ignore = true;
165a31c0 742 } else if (*f == '@' && !separate_argv0)
46a0d98a 743 separate_argv0 = true;
7ca69792
AZ
744 else if (*f == ':' && !(flags & EXEC_COMMAND_NO_ENV_EXPAND))
745 flags |= EXEC_COMMAND_NO_ENV_EXPAND;
165a31c0
LP
746 else if (*f == '+' && !(flags & (EXEC_COMMAND_FULLY_PRIVILEGED|EXEC_COMMAND_NO_SETUID|EXEC_COMMAND_AMBIENT_MAGIC)))
747 flags |= EXEC_COMMAND_FULLY_PRIVILEGED;
748 else if (*f == '!' && !(flags & (EXEC_COMMAND_FULLY_PRIVILEGED|EXEC_COMMAND_NO_SETUID|EXEC_COMMAND_AMBIENT_MAGIC)))
749 flags |= EXEC_COMMAND_NO_SETUID;
750 else if (*f == '!' && !(flags & (EXEC_COMMAND_FULLY_PRIVILEGED|EXEC_COMMAND_AMBIENT_MAGIC))) {
751 flags &= ~EXEC_COMMAND_NO_SETUID;
752 flags |= EXEC_COMMAND_AMBIENT_MAGIC;
753 } else
46a0d98a 754 break;
313cefa1 755 f++;
61e5d8ed 756 }
46a0d98a 757
5125e762
LP
758 r = unit_full_printf(u, f, &path);
759 if (r < 0) {
bb28e684 760 log_syntax(unit, LOG_ERR, filename, line, r,
063c4b1a 761 "Failed to resolve unit specifiers in '%s'%s: %m",
bb28e684
ZJS
762 f, ignore ? ", ignoring" : "");
763 return ignore ? 0 : -ENOEXEC;
5125e762
LP
764 }
765
766 if (isempty(path)) {
46a0d98a 767 /* First word is either "-" or "@" with no command. */
bb28e684 768 log_syntax(unit, LOG_ERR, filename, line, 0,
063c4b1a 769 "Empty path in command line%s: '%s'",
bb28e684
ZJS
770 ignore ? ", ignoring" : "", rvalue);
771 return ignore ? 0 : -ENOEXEC;
b2fadec6 772 }
5125e762 773 if (!string_is_safe(path)) {
bb28e684 774 log_syntax(unit, LOG_ERR, filename, line, 0,
5008da1e
ZJS
775 "Executable name contains special characters%s: %s",
776 ignore ? ", ignoring" : "", path);
bb28e684 777 return ignore ? 0 : -ENOEXEC;
46a0d98a 778 }
5125e762 779 if (endswith(path, "/")) {
bb28e684
ZJS
780 log_syntax(unit, LOG_ERR, filename, line, 0,
781 "Executable path specifies a directory%s: %s",
5008da1e 782 ignore ? ", ignoring" : "", path);
bb28e684 783 return ignore ? 0 : -ENOEXEC;
46a0d98a 784 }
61e5d8ed 785
5008da1e
ZJS
786 if (!path_is_absolute(path)) {
787 const char *prefix;
788 bool found = false;
789
790 if (!filename_is_valid(path)) {
791 log_syntax(unit, LOG_ERR, filename, line, 0,
792 "Neither a valid executable name nor an absolute path%s: %s",
793 ignore ? ", ignoring" : "", path);
794 return ignore ? 0 : -ENOEXEC;
795 }
796
797 /* Resolve a single-component name to a full path */
798 NULSTR_FOREACH(prefix, DEFAULT_PATH_NULSTR) {
799 _cleanup_free_ char *fullpath = NULL;
800
657ee2d8 801 fullpath = path_join(prefix, path);
5008da1e
ZJS
802 if (!fullpath)
803 return log_oom();
804
805 if (access(fullpath, F_OK) >= 0) {
806 free_and_replace(path, fullpath);
807 found = true;
808 break;
809 }
810 }
811
812 if (!found) {
813 log_syntax(unit, LOG_ERR, filename, line, 0,
814 "Executable \"%s\" not found in path \"%s\"%s",
815 path, DEFAULT_PATH, ignore ? ", ignoring" : "");
816 return ignore ? 0 : -ENOEXEC;
817 }
818 }
819
46a0d98a 820 if (!separate_argv0) {
5125e762
LP
821 char *w = NULL;
822
46a0d98a
FB
823 if (!GREEDY_REALLOC(n, nbufsize, nlen + 2))
824 return log_oom();
5125e762
LP
825
826 w = strdup(path);
827 if (!w)
46a0d98a 828 return log_oom();
5125e762 829 n[nlen++] = w;
46a0d98a
FB
830 n[nlen] = NULL;
831 }
7f110ff9 832
858d36c1 833 path_simplify(path, false);
46a0d98a 834
4b1c1753 835 while (!isempty(p)) {
5125e762 836 _cleanup_free_ char *word = NULL, *resolved = NULL;
46a0d98a
FB
837
838 /* Check explicitly for an unquoted semicolon as
839 * command separator token. */
840 if (p[0] == ';' && (!p[1] || strchr(WHITESPACE, p[1]))) {
313cefa1 841 p++;
46a0d98a
FB
842 p += strspn(p, WHITESPACE);
843 semicolon = true;
844 break;
c8539536 845 }
7f110ff9 846
5125e762
LP
847 /* Check for \; explicitly, to not confuse it with \\; or "\;" or "\\;" etc.
848 * extract_first_word() would return the same for all of those. */
46a0d98a 849 if (p[0] == '\\' && p[1] == ';' && (!p[2] || strchr(WHITESPACE, p[2]))) {
5125e762
LP
850 char *w;
851
46a0d98a
FB
852 p += 2;
853 p += strspn(p, WHITESPACE);
5125e762 854
46a0d98a
FB
855 if (!GREEDY_REALLOC(n, nbufsize, nlen + 2))
856 return log_oom();
5125e762
LP
857
858 w = strdup(";");
859 if (!w)
46a0d98a 860 return log_oom();
5125e762 861 n[nlen++] = w;
46a0d98a
FB
862 n[nlen] = NULL;
863 continue;
61e5d8ed 864 }
c8539536 865
4ec85141 866 r = extract_first_word_and_warn(&p, &word, NULL, EXTRACT_UNQUOTE|EXTRACT_CUNESCAPE, unit, filename, line, rvalue);
46a0d98a
FB
867 if (r == 0)
868 break;
5125e762 869 if (r < 0)
bb28e684 870 return ignore ? 0 : -ENOEXEC;
5125e762
LP
871
872 r = unit_full_printf(u, word, &resolved);
873 if (r < 0) {
bb28e684 874 log_syntax(unit, LOG_ERR, filename, line, r,
063c4b1a 875 "Failed to resolve unit specifiers in %s%s: %m",
bb28e684
ZJS
876 word, ignore ? ", ignoring" : "");
877 return ignore ? 0 : -ENOEXEC;
5125e762 878 }
46a0d98a
FB
879
880 if (!GREEDY_REALLOC(n, nbufsize, nlen + 2))
881 return log_oom();
1cc6c93a
YW
882
883 n[nlen++] = TAKE_PTR(resolved);
46a0d98a 884 n[nlen] = NULL;
61e5d8ed
LP
885 }
886
46a0d98a 887 if (!n || !n[0]) {
bb28e684
ZJS
888 log_syntax(unit, LOG_ERR, filename, line, 0,
889 "Empty executable name or zeroeth argument%s: %s",
890 ignore ? ", ignoring" : "", rvalue);
891 return ignore ? 0 : -ENOEXEC;
7f110ff9 892 }
6c666e26 893
7f110ff9 894 nce = new0(ExecCommand, 1);
46a0d98a
FB
895 if (!nce)
896 return log_oom();
61e5d8ed 897
1cc6c93a
YW
898 nce->argv = TAKE_PTR(n);
899 nce->path = TAKE_PTR(path);
165a31c0 900 nce->flags = flags;
034c6ed7 901
61e5d8ed 902 exec_command_append_list(e, nce);
01f78473 903
46a0d98a 904 /* Do not _cleanup_free_ these. */
46a0d98a 905 nce = NULL;
034c6ed7 906
46a0d98a
FB
907 rvalue = p;
908 } while (semicolon);
034c6ed7 909
46a0d98a 910 return 0;
034c6ed7
LP
911}
912
d31645ad
LP
913int config_parse_socket_bindtodevice(
914 const char* unit,
915 const char *filename,
916 unsigned line,
917 const char *section,
918 unsigned section_line,
919 const char *lvalue,
920 int ltype,
921 const char *rvalue,
922 void *data,
923 void *userdata) {
acbb0225
LP
924
925 Socket *s = data;
acbb0225
LP
926
927 assert(filename);
928 assert(lvalue);
929 assert(rvalue);
930 assert(data);
931
063c4b1a
YW
932 if (isempty(rvalue) || streq(rvalue, "*")) {
933 s->bind_to_device = mfree(s->bind_to_device);
934 return 0;
935 }
d31645ad 936
063c4b1a
YW
937 if (!ifname_valid(rvalue)) {
938 log_syntax(unit, LOG_ERR, filename, line, 0, "Invalid interface name, ignoring: %s", rvalue);
939 return 0;
940 }
acbb0225 941
3c381a67
YW
942 if (free_and_strdup(&s->bind_to_device, rvalue) < 0)
943 return log_oom();
acbb0225
LP
944
945 return 0;
946}
947
9bd6a50e
LP
948int config_parse_exec_input(
949 const char *unit,
950 const char *filename,
951 unsigned line,
952 const char *section,
953 unsigned section_line,
954 const char *lvalue,
955 int ltype,
956 const char *rvalue,
957 void *data,
958 void *userdata) {
52c239d7 959
52c239d7 960 ExecContext *c = data;
47538b76 961 const Unit *u = userdata;
2038c3f5
LP
962 const char *n;
963 ExecInput ei;
52c239d7
LB
964 int r;
965
966 assert(data);
967 assert(filename);
968 assert(line);
969 assert(rvalue);
970
2038c3f5
LP
971 n = startswith(rvalue, "fd:");
972 if (n) {
973 _cleanup_free_ char *resolved = NULL;
974
975 r = unit_full_printf(u, n, &resolved);
976 if (r < 0)
063c4b1a 977 return log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s': %m", n);
2038c3f5
LP
978
979 if (isempty(resolved))
980 resolved = mfree(resolved);
981 else if (!fdname_is_valid(resolved)) {
982 log_syntax(unit, LOG_ERR, filename, line, 0, "Invalid file descriptor name: %s", resolved);
6f40aa45 983 return -ENOEXEC;
52c239d7 984 }
9bd6a50e 985
2038c3f5
LP
986 free_and_replace(c->stdio_fdname[STDIN_FILENO], resolved);
987
988 ei = EXEC_INPUT_NAMED_FD;
989
990 } else if ((n = startswith(rvalue, "file:"))) {
991 _cleanup_free_ char *resolved = NULL;
992
993 r = unit_full_printf(u, n, &resolved);
52c239d7 994 if (r < 0)
063c4b1a 995 return log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s': %m", n);
9bd6a50e 996
2f4d31c1
YW
997 r = path_simplify_and_warn(resolved, PATH_CHECK_ABSOLUTE | PATH_CHECK_FATAL, unit, filename, line, lvalue);
998 if (r < 0)
6f40aa45 999 return -ENOEXEC;
2038c3f5
LP
1000
1001 free_and_replace(c->stdio_file[STDIN_FILENO], resolved);
1002
1003 ei = EXEC_INPUT_FILE;
9bd6a50e 1004
52c239d7 1005 } else {
9bd6a50e
LP
1006 ei = exec_input_from_string(rvalue);
1007 if (ei < 0) {
52c239d7 1008 log_syntax(unit, LOG_ERR, filename, line, 0, "Failed to parse input specifier, ignoring: %s", rvalue);
9bd6a50e
LP
1009 return 0;
1010 }
52c239d7 1011 }
9bd6a50e 1012
2038c3f5 1013 c->std_input = ei;
9bd6a50e 1014 return 0;
52c239d7
LB
1015}
1016
08f3be7a
LP
1017int config_parse_exec_input_text(
1018 const char *unit,
1019 const char *filename,
1020 unsigned line,
1021 const char *section,
1022 unsigned section_line,
1023 const char *lvalue,
1024 int ltype,
1025 const char *rvalue,
1026 void *data,
1027 void *userdata) {
1028
1029 _cleanup_free_ char *unescaped = NULL, *resolved = NULL;
1030 ExecContext *c = data;
47538b76 1031 const Unit *u = userdata;
08f3be7a
LP
1032 size_t sz;
1033 void *p;
1034 int r;
1035
1036 assert(data);
1037 assert(filename);
1038 assert(line);
1039 assert(rvalue);
1040
1041 if (isempty(rvalue)) {
1042 /* Reset if the empty string is assigned */
1043 c->stdin_data = mfree(c->stdin_data);
1044 c->stdin_data_size = 0;
52c239d7
LB
1045 return 0;
1046 }
08f3be7a
LP
1047
1048 r = cunescape(rvalue, 0, &unescaped);
2038c3f5 1049 if (r < 0)
063c4b1a 1050 return log_syntax(unit, LOG_ERR, filename, line, r, "Failed to decode C escaped text '%s': %m", rvalue);
08f3be7a
LP
1051
1052 r = unit_full_printf(u, unescaped, &resolved);
2038c3f5 1053 if (r < 0)
063c4b1a 1054 return log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s': %m", unescaped);
08f3be7a
LP
1055
1056 sz = strlen(resolved);
1057 if (c->stdin_data_size + sz + 1 < c->stdin_data_size || /* check for overflow */
1058 c->stdin_data_size + sz + 1 > EXEC_STDIN_DATA_MAX) {
2038c3f5
LP
1059 log_syntax(unit, LOG_ERR, filename, line, 0, "Standard input data too large (%zu), maximum of %zu permitted, ignoring.", c->stdin_data_size + sz, (size_t) EXEC_STDIN_DATA_MAX);
1060 return -E2BIG;
08f3be7a
LP
1061 }
1062
1063 p = realloc(c->stdin_data, c->stdin_data_size + sz + 1);
1064 if (!p)
1065 return log_oom();
1066
1067 *((char*) mempcpy((char*) p + c->stdin_data_size, resolved, sz)) = '\n';
1068
1069 c->stdin_data = p;
1070 c->stdin_data_size += sz + 1;
1071
1072 return 0;
52c239d7
LB
1073}
1074
08f3be7a
LP
1075int config_parse_exec_input_data(
1076 const char *unit,
1077 const char *filename,
1078 unsigned line,
1079 const char *section,
1080 unsigned section_line,
1081 const char *lvalue,
1082 int ltype,
1083 const char *rvalue,
1084 void *data,
1085 void *userdata) {
1086
08f3be7a
LP
1087 _cleanup_free_ void *p = NULL;
1088 ExecContext *c = data;
1089 size_t sz;
1090 void *q;
1091 int r;
1092
1093 assert(data);
1094 assert(filename);
1095 assert(line);
1096 assert(rvalue);
1097
1098 if (isempty(rvalue)) {
1099 /* Reset if the empty string is assigned */
1100 c->stdin_data = mfree(c->stdin_data);
1101 c->stdin_data_size = 0;
1102 return 0;
1103 }
1104
081f36d8 1105 r = unbase64mem(rvalue, (size_t) -1, &p, &sz);
2038c3f5 1106 if (r < 0)
081f36d8 1107 return log_syntax(unit, LOG_ERR, filename, line, r, "Failed to decode base64 data, ignoring: %s", rvalue);
08f3be7a
LP
1108
1109 assert(sz > 0);
1110
1111 if (c->stdin_data_size + sz < c->stdin_data_size || /* check for overflow */
1112 c->stdin_data_size + sz > EXEC_STDIN_DATA_MAX) {
2038c3f5
LP
1113 log_syntax(unit, LOG_ERR, filename, line, 0, "Standard input data too large (%zu), maximum of %zu permitted, ignoring.", c->stdin_data_size + sz, (size_t) EXEC_STDIN_DATA_MAX);
1114 return -E2BIG;
08f3be7a
LP
1115 }
1116
1117 q = realloc(c->stdin_data, c->stdin_data_size + sz);
1118 if (!q)
1119 return log_oom();
1120
1121 memcpy((uint8_t*) q + c->stdin_data_size, p, sz);
1122
1123 c->stdin_data = q;
1124 c->stdin_data_size += sz;
1125
1126 return 0;
1127}
1128
2038c3f5
LP
1129int config_parse_exec_output(
1130 const char *unit,
1131 const char *filename,
1132 unsigned line,
1133 const char *section,
1134 unsigned section_line,
1135 const char *lvalue,
1136 int ltype,
1137 const char *rvalue,
1138 void *data,
1139 void *userdata) {
1140
1141 _cleanup_free_ char *resolved = NULL;
1142 const char *n;
52c239d7 1143 ExecContext *c = data;
47538b76 1144 const Unit *u = userdata;
f3dc6af2 1145 bool obsolete = false;
52c239d7 1146 ExecOutput eo;
52c239d7
LB
1147 int r;
1148
1149 assert(data);
1150 assert(filename);
1151 assert(line);
1152 assert(lvalue);
1153 assert(rvalue);
1154
2038c3f5
LP
1155 n = startswith(rvalue, "fd:");
1156 if (n) {
1157 r = unit_full_printf(u, n, &resolved);
1158 if (r < 0)
063c4b1a 1159 return log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in %s: %m", n);
2038c3f5
LP
1160
1161 if (isempty(resolved))
1162 resolved = mfree(resolved);
1163 else if (!fdname_is_valid(resolved)) {
1164 log_syntax(unit, LOG_ERR, filename, line, 0, "Invalid file descriptor name: %s", resolved);
6f40aa45 1165 return -ENOEXEC;
52c239d7 1166 }
2038c3f5 1167
52c239d7 1168 eo = EXEC_OUTPUT_NAMED_FD;
2038c3f5 1169
f3dc6af2
LP
1170 } else if (streq(rvalue, "syslog")) {
1171 eo = EXEC_OUTPUT_JOURNAL;
1172 obsolete = true;
1173
1174 } else if (streq(rvalue, "syslog+console")) {
1175 eo = EXEC_OUTPUT_JOURNAL_AND_CONSOLE;
1176 obsolete = true;
1177
2038c3f5
LP
1178 } else if ((n = startswith(rvalue, "file:"))) {
1179
1180 r = unit_full_printf(u, n, &resolved);
1181 if (r < 0)
063c4b1a 1182 return log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in %s: %m", n);
2038c3f5 1183
2f4d31c1
YW
1184 r = path_simplify_and_warn(resolved, PATH_CHECK_ABSOLUTE | PATH_CHECK_FATAL, unit, filename, line, lvalue);
1185 if (r < 0)
6f40aa45 1186 return -ENOEXEC;
2038c3f5
LP
1187
1188 eo = EXEC_OUTPUT_FILE;
1189
566b7d23
ZD
1190 } else if ((n = startswith(rvalue, "append:"))) {
1191
1192 r = unit_full_printf(u, n, &resolved);
1193 if (r < 0)
1194 return log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in %s: %m", n);
1195
1196 r = path_simplify_and_warn(resolved, PATH_CHECK_ABSOLUTE | PATH_CHECK_FATAL, unit, filename, line, lvalue);
1197 if (r < 0)
1198 return -ENOEXEC;
1199
1200 eo = EXEC_OUTPUT_FILE_APPEND;
52c239d7
LB
1201 } else {
1202 eo = exec_output_from_string(rvalue);
2038c3f5 1203 if (eo < 0) {
52c239d7
LB
1204 log_syntax(unit, LOG_ERR, filename, line, 0, "Failed to parse output specifier, ignoring: %s", rvalue);
1205 return 0;
1206 }
1207 }
1208
f3dc6af2
LP
1209 if (obsolete)
1210 log_syntax(unit, LOG_NOTICE, filename, line, 0,
1211 "Standard output type %s is obsolete, automatically updating to %s. Please update your unit file, and consider removing the setting altogether.",
1212 rvalue, exec_output_to_string(eo));
1213
52c239d7 1214 if (streq(lvalue, "StandardOutput")) {
2038c3f5
LP
1215 if (eo == EXEC_OUTPUT_NAMED_FD)
1216 free_and_replace(c->stdio_fdname[STDOUT_FILENO], resolved);
1217 else
1218 free_and_replace(c->stdio_file[STDOUT_FILENO], resolved);
1219
52c239d7 1220 c->std_output = eo;
2038c3f5 1221
52c239d7 1222 } else {
2038c3f5
LP
1223 assert(streq(lvalue, "StandardError"));
1224
1225 if (eo == EXEC_OUTPUT_NAMED_FD)
1226 free_and_replace(c->stdio_fdname[STDERR_FILENO], resolved);
1227 else
1228 free_and_replace(c->stdio_file[STDERR_FILENO], resolved);
1229
1230 c->std_error = eo;
52c239d7 1231 }
2038c3f5
LP
1232
1233 return 0;
52c239d7 1234}
87f0e418 1235
e8e581bf
ZJS
1236int config_parse_exec_io_class(const char *unit,
1237 const char *filename,
1238 unsigned line,
1239 const char *section,
71a61510 1240 unsigned section_line,
e8e581bf
ZJS
1241 const char *lvalue,
1242 int ltype,
1243 const char *rvalue,
1244 void *data,
1245 void *userdata) {
94f04347
LP
1246
1247 ExecContext *c = data;
1248 int x;
1249
1250 assert(filename);
1251 assert(lvalue);
1252 assert(rvalue);
1253 assert(data);
1254
617d253a
YW
1255 if (isempty(rvalue)) {
1256 c->ioprio_set = false;
1257 c->ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 0);
1258 return 0;
1259 }
1260
f8b69d1d
MS
1261 x = ioprio_class_from_string(rvalue);
1262 if (x < 0) {
12ca818f 1263 log_syntax(unit, LOG_ERR, filename, line, 0, "Failed to parse IO scheduling class, ignoring: %s", rvalue);
c0b34696 1264 return 0;
0d87eb42 1265 }
94f04347
LP
1266
1267 c->ioprio = IOPRIO_PRIO_VALUE(x, IOPRIO_PRIO_DATA(c->ioprio));
1268 c->ioprio_set = true;
1269
1270 return 0;
1271}
1272
e8e581bf
ZJS
1273int config_parse_exec_io_priority(const char *unit,
1274 const char *filename,
1275 unsigned line,
1276 const char *section,
71a61510 1277 unsigned section_line,
e8e581bf
ZJS
1278 const char *lvalue,
1279 int ltype,
1280 const char *rvalue,
1281 void *data,
1282 void *userdata) {
94f04347
LP
1283
1284 ExecContext *c = data;
e8e581bf 1285 int i, r;
94f04347
LP
1286
1287 assert(filename);
1288 assert(lvalue);
1289 assert(rvalue);
1290 assert(data);
1291
617d253a
YW
1292 if (isempty(rvalue)) {
1293 c->ioprio_set = false;
1294 c->ioprio = IOPRIO_PRIO_VALUE(IOPRIO_CLASS_BE, 0);
1295 return 0;
1296 }
1297
7f452159
LP
1298 r = ioprio_parse_priority(rvalue, &i);
1299 if (r < 0) {
12ca818f 1300 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse IO priority, ignoring: %s", rvalue);
c0b34696 1301 return 0;
071830ff
LP
1302 }
1303
94f04347
LP
1304 c->ioprio = IOPRIO_PRIO_VALUE(IOPRIO_PRIO_CLASS(c->ioprio), i);
1305 c->ioprio_set = true;
1306
071830ff
LP
1307 return 0;
1308}
1309
e8e581bf
ZJS
1310int config_parse_exec_cpu_sched_policy(const char *unit,
1311 const char *filename,
1312 unsigned line,
1313 const char *section,
71a61510 1314 unsigned section_line,
e8e581bf
ZJS
1315 const char *lvalue,
1316 int ltype,
1317 const char *rvalue,
1318 void *data,
1319 void *userdata) {
9eba9da4 1320
94f04347
LP
1321 ExecContext *c = data;
1322 int x;
1323
1324 assert(filename);
1325 assert(lvalue);
1326 assert(rvalue);
1327 assert(data);
1328
b00e1a9e
YW
1329 if (isempty(rvalue)) {
1330 c->cpu_sched_set = false;
1331 c->cpu_sched_policy = SCHED_OTHER;
1332 c->cpu_sched_priority = 0;
1333 return 0;
1334 }
1335
f8b69d1d
MS
1336 x = sched_policy_from_string(rvalue);
1337 if (x < 0) {
12ca818f 1338 log_syntax(unit, LOG_ERR, filename, line, 0, "Failed to parse CPU scheduling policy, ignoring: %s", rvalue);
c0b34696 1339 return 0;
0d87eb42 1340 }
94f04347
LP
1341
1342 c->cpu_sched_policy = x;
bb112710
HHPF
1343 /* Moving to or from real-time policy? We need to adjust the priority */
1344 c->cpu_sched_priority = CLAMP(c->cpu_sched_priority, sched_get_priority_min(x), sched_get_priority_max(x));
94f04347
LP
1345 c->cpu_sched_set = true;
1346
1347 return 0;
1348}
1349
b070c7c0
MS
1350int config_parse_numa_mask(const char *unit,
1351 const char *filename,
1352 unsigned line,
1353 const char *section,
1354 unsigned section_line,
1355 const char *lvalue,
1356 int ltype,
1357 const char *rvalue,
1358 void *data,
1359 void *userdata) {
1360 int r;
1361 NUMAPolicy *p = data;
1362
1363 assert(filename);
1364 assert(lvalue);
1365 assert(rvalue);
1366 assert(data);
1367
1368 r = parse_cpu_set_extend(rvalue, &p->nodes, true, unit, filename, line, lvalue);
1369 if (r < 0) {
1370 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse NUMA node mask, ignoring: %s", rvalue);
1371 return 0;
1372 }
1373
1374 return r;
1375}
1376
e8e581bf
ZJS
1377int config_parse_exec_cpu_sched_prio(const char *unit,
1378 const char *filename,
1379 unsigned line,
1380 const char *section,
71a61510 1381 unsigned section_line,
e8e581bf
ZJS
1382 const char *lvalue,
1383 int ltype,
1384 const char *rvalue,
1385 void *data,
1386 void *userdata) {
9eba9da4
LP
1387
1388 ExecContext *c = data;
e8e581bf 1389 int i, min, max, r;
9eba9da4
LP
1390
1391 assert(filename);
1392 assert(lvalue);
1393 assert(rvalue);
1394 assert(data);
1395
e8e581bf
ZJS
1396 r = safe_atoi(rvalue, &i);
1397 if (r < 0) {
063c4b1a 1398 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse CPU scheduling priority, ignoring: %s", rvalue);
c0b34696 1399 return 0;
94f04347 1400 }
9eba9da4 1401
bb112710
HHPF
1402 /* On Linux RR/FIFO range from 1 to 99 and OTHER/BATCH may only be 0 */
1403 min = sched_get_priority_min(c->cpu_sched_policy);
1404 max = sched_get_priority_max(c->cpu_sched_policy);
1405
1406 if (i < min || i > max) {
12ca818f 1407 log_syntax(unit, LOG_ERR, filename, line, 0, "CPU scheduling priority is out of range, ignoring: %s", rvalue);
bb112710
HHPF
1408 return 0;
1409 }
1410
94f04347
LP
1411 c->cpu_sched_priority = i;
1412 c->cpu_sched_set = true;
1413
1414 return 0;
1415}
1416
0389f4fa
LB
1417int config_parse_exec_root_hash(
1418 const char *unit,
1419 const char *filename,
1420 unsigned line,
1421 const char *section,
1422 unsigned section_line,
1423 const char *lvalue,
1424 int ltype,
1425 const char *rvalue,
1426 void *data,
1427 void *userdata) {
1428
1429 _cleanup_free_ void *roothash_decoded = NULL;
1430 ExecContext *c = data;
1431 size_t roothash_decoded_size = 0;
1432 int r;
1433
1434 assert(data);
1435 assert(filename);
1436 assert(line);
1437 assert(rvalue);
1438
1439 if (isempty(rvalue)) {
1440 /* Reset if the empty string is assigned */
1441 c->root_hash_path = mfree(c->root_hash_path);
1442 c->root_hash = mfree(c->root_hash);
1443 c->root_hash_size = 0;
1444 return 0;
1445 }
1446
1447 if (path_is_absolute(rvalue)) {
1448 /* We have the path to a roothash to load and decode, eg: RootHash=/foo/bar.roothash */
1449 _cleanup_free_ char *p = NULL;
1450
1451 p = strdup(rvalue);
1452 if (!p)
1453 return -ENOMEM;
1454
1455 free_and_replace(c->root_hash_path, p);
1456 c->root_hash = mfree(c->root_hash);
1457 c->root_hash_size = 0;
1458 return 0;
1459 }
1460
1461 /* We have a roothash to decode, eg: RootHash=012345789abcdef */
1462 r = unhexmem(rvalue, strlen(rvalue), &roothash_decoded, &roothash_decoded_size);
1463 if (r < 0)
1464 return log_syntax(unit, LOG_ERR, filename, line, r, "Failed to decode RootHash=, ignoring: %s", rvalue);
1465 if (roothash_decoded_size < sizeof(sd_id128_t))
1466 return log_syntax(unit, LOG_ERR, filename, line, SYNTHETIC_ERRNO(EINVAL), "RootHash= is too short, ignoring: %s", rvalue);
1467
1468 free_and_replace(c->root_hash, roothash_decoded);
1469 c->root_hash_size = roothash_decoded_size;
1470 c->root_hash_path = mfree(c->root_hash_path);
1471
1472 return 0;
1473}
1474
e8e581bf
ZJS
1475int config_parse_exec_cpu_affinity(const char *unit,
1476 const char *filename,
1477 unsigned line,
1478 const char *section,
71a61510 1479 unsigned section_line,
e8e581bf
ZJS
1480 const char *lvalue,
1481 int ltype,
1482 const char *rvalue,
1483 void *data,
1484 void *userdata) {
94f04347
LP
1485
1486 ExecContext *c = data;
e2b2fb7f 1487 int r;
94f04347
LP
1488
1489 assert(filename);
1490 assert(lvalue);
1491 assert(rvalue);
1492 assert(data);
1493
e2b2fb7f
MS
1494 if (streq(rvalue, "numa")) {
1495 c->cpu_affinity_from_numa = true;
1496 cpu_set_reset(&c->cpu_set);
1497
1498 return 0;
1499 }
1500
1501 r = parse_cpu_set_extend(rvalue, &c->cpu_set, true, unit, filename, line, lvalue);
1502 if (r >= 0)
1503 c->cpu_affinity_from_numa = false;
1504
1505 return r;
94f04347
LP
1506}
1507
a103496c 1508int config_parse_capability_set(
65dce264
LP
1509 const char *unit,
1510 const char *filename,
1511 unsigned line,
1512 const char *section,
1513 unsigned section_line,
1514 const char *lvalue,
1515 int ltype,
1516 const char *rvalue,
1517 void *data,
1518 void *userdata) {
94f04347 1519
a103496c
IP
1520 uint64_t *capability_set = data;
1521 uint64_t sum = 0, initial = 0;
260abb78 1522 bool invert = false;
dd1f5bd0 1523 int r;
94f04347
LP
1524
1525 assert(filename);
1526 assert(lvalue);
1527 assert(rvalue);
1528 assert(data);
1529
260abb78
LP
1530 if (rvalue[0] == '~') {
1531 invert = true;
1532 rvalue++;
1533 }
1534
70d54d90 1535 if (streq(lvalue, "CapabilityBoundingSet"))
a103496c 1536 initial = CAP_ALL; /* initialized to all bits on */
755d4b67 1537 /* else "AmbientCapabilities" initialized to all bits off */
260abb78 1538
dd1f5bd0 1539 r = capability_set_from_string(rvalue, &sum);
dd1f5bd0 1540 if (r < 0) {
063c4b1a 1541 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse %s= specifier '%s', ignoring: %m", lvalue, rvalue);
dd1f5bd0 1542 return 0;
94f04347 1543 }
9eba9da4 1544
a103496c 1545 if (sum == 0 || *capability_set == initial)
c792ec2e
IP
1546 /* "", "~" or uninitialized data -> replace */
1547 *capability_set = invert ? ~sum : sum;
1548 else {
a103496c 1549 /* previous data -> merge */
c792ec2e
IP
1550 if (invert)
1551 *capability_set &= ~sum;
1552 else
1553 *capability_set |= sum;
1554 }
260abb78 1555
9eba9da4
LP
1556 return 0;
1557}
1558
5f8640fb
LP
1559int config_parse_exec_selinux_context(
1560 const char *unit,
1561 const char *filename,
1562 unsigned line,
1563 const char *section,
1564 unsigned section_line,
1565 const char *lvalue,
1566 int ltype,
1567 const char *rvalue,
1568 void *data,
1569 void *userdata) {
1570
1571 ExecContext *c = data;
47538b76 1572 const Unit *u = userdata;
5f8640fb
LP
1573 bool ignore;
1574 char *k;
1575 int r;
1576
1577 assert(filename);
1578 assert(lvalue);
1579 assert(rvalue);
1580 assert(data);
1581
1582 if (isempty(rvalue)) {
a1e58e8e 1583 c->selinux_context = mfree(c->selinux_context);
5f8640fb
LP
1584 c->selinux_context_ignore = false;
1585 return 0;
1586 }
1587
1588 if (rvalue[0] == '-') {
1589 ignore = true;
1590 rvalue++;
1591 } else
1592 ignore = false;
1593
18913df9 1594 r = unit_full_printf(u, rvalue, &k);
5f8640fb 1595 if (r < 0) {
bb28e684 1596 log_syntax(unit, LOG_ERR, filename, line, r,
063c4b1a
YW
1597 "Failed to resolve unit specifiers in '%s'%s: %m",
1598 rvalue, ignore ? ", ignoring" : "");
bb28e684 1599 return ignore ? 0 : -ENOEXEC;
5f8640fb
LP
1600 }
1601
063c4b1a 1602 free_and_replace(c->selinux_context, k);
5f8640fb
LP
1603 c->selinux_context_ignore = ignore;
1604
1605 return 0;
1606}
1607
eef65bf3
MS
1608int config_parse_exec_apparmor_profile(
1609 const char *unit,
1610 const char *filename,
1611 unsigned line,
1612 const char *section,
1613 unsigned section_line,
1614 const char *lvalue,
1615 int ltype,
1616 const char *rvalue,
1617 void *data,
1618 void *userdata) {
1619
1620 ExecContext *c = data;
47538b76 1621 const Unit *u = userdata;
eef65bf3
MS
1622 bool ignore;
1623 char *k;
1624 int r;
1625
1626 assert(filename);
1627 assert(lvalue);
1628 assert(rvalue);
1629 assert(data);
1630
1631 if (isempty(rvalue)) {
a1e58e8e 1632 c->apparmor_profile = mfree(c->apparmor_profile);
eef65bf3
MS
1633 c->apparmor_profile_ignore = false;
1634 return 0;
1635 }
1636
1637 if (rvalue[0] == '-') {
1638 ignore = true;
1639 rvalue++;
1640 } else
1641 ignore = false;
1642
18913df9 1643 r = unit_full_printf(u, rvalue, &k);
eef65bf3 1644 if (r < 0) {
bb28e684 1645 log_syntax(unit, LOG_ERR, filename, line, r,
063c4b1a
YW
1646 "Failed to resolve unit specifiers in '%s'%s: %m",
1647 rvalue, ignore ? ", ignoring" : "");
bb28e684 1648 return ignore ? 0 : -ENOEXEC;
eef65bf3
MS
1649 }
1650
063c4b1a 1651 free_and_replace(c->apparmor_profile, k);
eef65bf3
MS
1652 c->apparmor_profile_ignore = ignore;
1653
1654 return 0;
1655}
1656
2ca620c4
WC
1657int config_parse_exec_smack_process_label(
1658 const char *unit,
1659 const char *filename,
1660 unsigned line,
1661 const char *section,
1662 unsigned section_line,
1663 const char *lvalue,
1664 int ltype,
1665 const char *rvalue,
1666 void *data,
1667 void *userdata) {
1668
1669 ExecContext *c = data;
47538b76 1670 const Unit *u = userdata;
2ca620c4
WC
1671 bool ignore;
1672 char *k;
1673 int r;
1674
1675 assert(filename);
1676 assert(lvalue);
1677 assert(rvalue);
1678 assert(data);
1679
1680 if (isempty(rvalue)) {
a1e58e8e 1681 c->smack_process_label = mfree(c->smack_process_label);
2ca620c4
WC
1682 c->smack_process_label_ignore = false;
1683 return 0;
1684 }
1685
1686 if (rvalue[0] == '-') {
1687 ignore = true;
1688 rvalue++;
1689 } else
1690 ignore = false;
1691
18913df9 1692 r = unit_full_printf(u, rvalue, &k);
2ca620c4 1693 if (r < 0) {
bb28e684 1694 log_syntax(unit, LOG_ERR, filename, line, r,
063c4b1a
YW
1695 "Failed to resolve unit specifiers in '%s'%s: %m",
1696 rvalue, ignore ? ", ignoring" : "");
bb28e684 1697 return ignore ? 0 : -ENOEXEC;
2ca620c4
WC
1698 }
1699
063c4b1a 1700 free_and_replace(c->smack_process_label, k);
2ca620c4
WC
1701 c->smack_process_label_ignore = ignore;
1702
1703 return 0;
1704}
1705
25a04ae5
LP
1706int config_parse_timer(
1707 const char *unit,
1708 const char *filename,
1709 unsigned line,
1710 const char *section,
1711 unsigned section_line,
1712 const char *lvalue,
1713 int ltype,
1714 const char *rvalue,
1715 void *data,
1716 void *userdata) {
871d7de4 1717
25a04ae5
LP
1718 _cleanup_(calendar_spec_freep) CalendarSpec *c = NULL;
1719 _cleanup_free_ char *k = NULL;
47538b76 1720 const Unit *u = userdata;
871d7de4 1721 Timer *t = data;
2507992f 1722 usec_t usec = 0;
871d7de4 1723 TimerValue *v;
2507992f 1724 int r;
871d7de4
LP
1725
1726 assert(filename);
1727 assert(lvalue);
1728 assert(rvalue);
1729 assert(data);
1730
74051b9b
LP
1731 if (isempty(rvalue)) {
1732 /* Empty assignment resets list */
1733 timer_free_values(t);
1734 return 0;
1735 }
1736
2507992f
DC
1737 r = unit_full_printf(u, rvalue, &k);
1738 if (r < 0) {
063c4b1a 1739 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s', ignoring: %m", rvalue);
2507992f
DC
1740 return 0;
1741 }
1742
25a04ae5 1743 if (ltype == TIMER_CALENDAR) {
dc44c96d
LP
1744 r = calendar_spec_from_string(k, &c);
1745 if (r < 0) {
1746 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse calendar specification, ignoring: %s", k);
36697dc0
LP
1747 return 0;
1748 }
dc44c96d
LP
1749 } else {
1750 r = parse_sec(k, &usec);
1751 if (r < 0) {
1752 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse timer value, ignoring: %s", k);
36697dc0
LP
1753 return 0;
1754 }
dc44c96d 1755 }
871d7de4 1756
25a04ae5 1757 v = new(TimerValue, 1);
921b5987 1758 if (!v)
74051b9b 1759 return log_oom();
871d7de4 1760
25a04ae5
LP
1761 *v = (TimerValue) {
1762 .base = ltype,
1763 .value = usec,
1764 .calendar_spec = TAKE_PTR(c),
1765 };
871d7de4 1766
71fda00f 1767 LIST_PREPEND(value, t->values, v);
871d7de4
LP
1768
1769 return 0;
1770}
1771
3ecaa09b
LP
1772int config_parse_trigger_unit(
1773 const char *unit,
1774 const char *filename,
1775 unsigned line,
1776 const char *section,
71a61510 1777 unsigned section_line,
3ecaa09b
LP
1778 const char *lvalue,
1779 int ltype,
1780 const char *rvalue,
1781 void *data,
1782 void *userdata) {
871d7de4 1783
74051b9b 1784 _cleanup_free_ char *p = NULL;
3ecaa09b
LP
1785 Unit *u = data;
1786 UnitType type;
1787 int r;
398ef8ba
LP
1788
1789 assert(filename);
1790 assert(lvalue);
1791 assert(rvalue);
1792 assert(data);
1793
eef85c4a 1794 if (!hashmap_isempty(u->dependencies[UNIT_TRIGGERS])) {
12ca818f 1795 log_syntax(unit, LOG_ERR, filename, line, 0, "Multiple units to trigger specified, ignoring: %s", rvalue);
3ecaa09b
LP
1796 return 0;
1797 }
871d7de4 1798
19f6d710 1799 r = unit_name_printf(u, rvalue, &p);
12ca818f 1800 if (r < 0) {
063c4b1a 1801 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in %s, ignoring: %m", rvalue);
12ca818f
LP
1802 return 0;
1803 }
74051b9b 1804
12ca818f 1805 type = unit_name_to_type(p);
3ecaa09b 1806 if (type < 0) {
12ca818f 1807 log_syntax(unit, LOG_ERR, filename, line, 0, "Unit type not valid, ignoring: %s", rvalue);
c0b34696 1808 return 0;
871d7de4 1809 }
49219a1c
JR
1810 if (unit_has_name(u, p)) {
1811 log_syntax(unit, LOG_ERR, filename, line, 0, "Units cannot trigger themselves, ignoring: %s", rvalue);
3ecaa09b
LP
1812 return 0;
1813 }
1814
5a724170 1815 r = unit_add_two_dependencies_by_name(u, UNIT_BEFORE, UNIT_TRIGGERS, p, true, UNIT_DEPENDENCY_FILE);
57020a3a 1816 if (r < 0) {
12ca818f 1817 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to add trigger on %s, ignoring: %m", p);
c0b34696 1818 return 0;
871d7de4
LP
1819 }
1820
1821 return 0;
1822}
1823
e8e581bf
ZJS
1824int config_parse_path_spec(const char *unit,
1825 const char *filename,
1826 unsigned line,
1827 const char *section,
71a61510 1828 unsigned section_line,
e8e581bf
ZJS
1829 const char *lvalue,
1830 int ltype,
1831 const char *rvalue,
1832 void *data,
1833 void *userdata) {
01f78473
LP
1834
1835 Path *p = data;
1836 PathSpec *s;
1837 PathType b;
7fd1b19b 1838 _cleanup_free_ char *k = NULL;
19f6d710 1839 int r;
01f78473
LP
1840
1841 assert(filename);
1842 assert(lvalue);
1843 assert(rvalue);
1844 assert(data);
1845
74051b9b
LP
1846 if (isempty(rvalue)) {
1847 /* Empty assignment clears list */
1848 path_free_specs(p);
1849 return 0;
1850 }
1851
93e4c84b
LP
1852 b = path_type_from_string(lvalue);
1853 if (b < 0) {
12ca818f 1854 log_syntax(unit, LOG_ERR, filename, line, 0, "Failed to parse path type, ignoring: %s", lvalue);
c0b34696 1855 return 0;
01f78473
LP
1856 }
1857
19f6d710
LP
1858 r = unit_full_printf(UNIT(p), rvalue, &k);
1859 if (r < 0) {
063c4b1a 1860 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in %s, ignoring: %m", rvalue);
12ca818f 1861 return 0;
487060c2 1862 }
93e4c84b 1863
2f4d31c1
YW
1864 r = path_simplify_and_warn(k, PATH_CHECK_ABSOLUTE, unit, filename, line, lvalue);
1865 if (r < 0)
c0b34696 1866 return 0;
01f78473 1867
93e4c84b 1868 s = new0(PathSpec, 1);
543295ad 1869 if (!s)
93e4c84b 1870 return log_oom();
01f78473 1871
718db961 1872 s->unit = UNIT(p);
063c4b1a 1873 s->path = TAKE_PTR(k);
01f78473
LP
1874 s->type = b;
1875 s->inotify_fd = -1;
1876
71fda00f 1877 LIST_PREPEND(spec, p->specs, s);
01f78473
LP
1878
1879 return 0;
1880}
1881
b02cb41c
LP
1882int config_parse_socket_service(
1883 const char *unit,
1884 const char *filename,
1885 unsigned line,
1886 const char *section,
1887 unsigned section_line,
1888 const char *lvalue,
1889 int ltype,
1890 const char *rvalue,
1891 void *data,
1892 void *userdata) {
d9ff321a 1893
4afd3348 1894 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
8dd4c05b 1895 _cleanup_free_ char *p = NULL;
d9ff321a 1896 Socket *s = data;
4ff77f66 1897 Unit *x;
8dd4c05b 1898 int r;
d9ff321a
LP
1899
1900 assert(filename);
1901 assert(lvalue);
1902 assert(rvalue);
1903 assert(data);
1904
19f6d710 1905 r = unit_name_printf(UNIT(s), rvalue, &p);
613b411c 1906 if (r < 0) {
063c4b1a 1907 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in %s: %m", rvalue);
bb28e684 1908 return -ENOEXEC;
613b411c 1909 }
74051b9b 1910
613b411c 1911 if (!endswith(p, ".service")) {
bb28e684
ZJS
1912 log_syntax(unit, LOG_ERR, filename, line, 0, "Unit must be of type service: %s", rvalue);
1913 return -ENOEXEC;
d9ff321a
LP
1914 }
1915
613b411c 1916 r = manager_load_unit(UNIT(s)->manager, p, NULL, &error, &x);
4ff77f66 1917 if (r < 0) {
bb28e684
ZJS
1918 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to load unit %s: %s", rvalue, bus_error_message(&error, r));
1919 return -ENOEXEC;
d9ff321a
LP
1920 }
1921
7f7d01ed 1922 unit_ref_set(&s->service, UNIT(s), x);
4ff77f66 1923
d9ff321a
LP
1924 return 0;
1925}
1926
8dd4c05b
LP
1927int config_parse_fdname(
1928 const char *unit,
1929 const char *filename,
1930 unsigned line,
1931 const char *section,
1932 unsigned section_line,
1933 const char *lvalue,
1934 int ltype,
1935 const char *rvalue,
1936 void *data,
1937 void *userdata) {
1938
1939 _cleanup_free_ char *p = NULL;
1940 Socket *s = data;
1941 int r;
1942
1943 assert(filename);
1944 assert(lvalue);
1945 assert(rvalue);
1946 assert(data);
1947
1948 if (isempty(rvalue)) {
1949 s->fdname = mfree(s->fdname);
1950 return 0;
1951 }
1952
18913df9 1953 r = unit_full_printf(UNIT(s), rvalue, &p);
8dd4c05b 1954 if (r < 0) {
063c4b1a 1955 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s', ignoring: %m", rvalue);
8dd4c05b
LP
1956 return 0;
1957 }
1958
1959 if (!fdname_is_valid(p)) {
1960 log_syntax(unit, LOG_ERR, filename, line, 0, "Invalid file descriptor name, ignoring: %s", p);
1961 return 0;
1962 }
1963
3b319885 1964 return free_and_replace(s->fdname, p);
8dd4c05b
LP
1965}
1966
b02cb41c
LP
1967int config_parse_service_sockets(
1968 const char *unit,
1969 const char *filename,
1970 unsigned line,
1971 const char *section,
1972 unsigned section_line,
1973 const char *lvalue,
1974 int ltype,
1975 const char *rvalue,
1976 void *data,
1977 void *userdata) {
f976f3f6
LP
1978
1979 Service *s = data;
7b2313f5 1980 const char *p;
b02cb41c 1981 int r;
f976f3f6
LP
1982
1983 assert(filename);
1984 assert(lvalue);
1985 assert(rvalue);
1986 assert(data);
1987
7b2313f5 1988 p = rvalue;
9ed794a3 1989 for (;;) {
6a0f3175 1990 _cleanup_free_ char *word = NULL, *k = NULL;
f976f3f6 1991
7b2313f5
SS
1992 r = extract_first_word(&p, &word, NULL, 0);
1993 if (r == 0)
1994 break;
1995 if (r == -ENOMEM)
74051b9b 1996 return log_oom();
7b2313f5
SS
1997 if (r < 0) {
1998 log_syntax(unit, LOG_ERR, filename, line, r, "Trailing garbage in sockets, ignoring: %s", rvalue);
1999 break;
2000 }
f976f3f6 2001
7b2313f5 2002 r = unit_name_printf(UNIT(s), word, &k);
b02cb41c 2003 if (r < 0) {
063c4b1a 2004 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s', ignoring: %m", word);
b02cb41c
LP
2005 continue;
2006 }
57020a3a 2007
b02cb41c 2008 if (!endswith(k, ".socket")) {
12ca818f 2009 log_syntax(unit, LOG_ERR, filename, line, 0, "Unit must be of type socket, ignoring: %s", k);
f976f3f6
LP
2010 continue;
2011 }
2012
5a724170 2013 r = unit_add_two_dependencies_by_name(UNIT(s), UNIT_WANTS, UNIT_AFTER, k, true, UNIT_DEPENDENCY_FILE);
57020a3a 2014 if (r < 0)
b02cb41c 2015 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to add dependency on %s, ignoring: %m", k);
f976f3f6 2016
35d8c19a 2017 r = unit_add_dependency_by_name(UNIT(s), UNIT_TRIGGERED_BY, k, true, UNIT_DEPENDENCY_FILE);
57020a3a 2018 if (r < 0)
b02cb41c 2019 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to add dependency on %s, ignoring: %m", k);
f976f3f6
LP
2020 }
2021
2022 return 0;
2023}
2024
b02cb41c
LP
2025int config_parse_bus_name(
2026 const char *unit,
2027 const char *filename,
2028 unsigned line,
2029 const char *section,
2030 unsigned section_line,
2031 const char *lvalue,
2032 int ltype,
2033 const char *rvalue,
2034 void *data,
2035 void *userdata) {
2036
2037 _cleanup_free_ char *k = NULL;
47538b76 2038 const Unit *u = userdata;
b02cb41c
LP
2039 int r;
2040
2041 assert(filename);
2042 assert(lvalue);
2043 assert(rvalue);
2044 assert(u);
2045
2046 r = unit_full_printf(u, rvalue, &k);
2047 if (r < 0) {
063c4b1a 2048 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in %s, ignoring: %m", rvalue);
b02cb41c
LP
2049 return 0;
2050 }
2051
5453a4b1 2052 if (!sd_bus_service_name_is_valid(k)) {
063c4b1a 2053 log_syntax(unit, LOG_ERR, filename, line, 0, "Invalid bus name, ignoring: %s", k);
b02cb41c
LP
2054 return 0;
2055 }
2056
2057 return config_parse_string(unit, filename, line, section, section_line, lvalue, ltype, k, data, userdata);
2058}
2059
aad41f08
LP
2060int config_parse_service_timeout(
2061 const char *unit,
2062 const char *filename,
2063 unsigned line,
2064 const char *section,
2065 unsigned section_line,
2066 const char *lvalue,
2067 int ltype,
2068 const char *rvalue,
2069 void *data,
2070 void *userdata) {
98709151
LN
2071
2072 Service *s = userdata;
aad41f08 2073 usec_t usec;
98709151
LN
2074 int r;
2075
2076 assert(filename);
2077 assert(lvalue);
2078 assert(rvalue);
2079 assert(s);
2080
6c58305a 2081 /* This is called for two cases: TimeoutSec= and TimeoutStartSec=. */
98709151 2082
fb27be3f
YW
2083 /* Traditionally, these options accepted 0 to disable the timeouts. However, a timeout of 0 suggests it happens
2084 * immediately, hence fix this to become USEC_INFINITY instead. This is in-line with how we internally handle
2085 * all other timeouts. */
2086 r = parse_sec_fix_0(rvalue, &usec);
aad41f08
LP
2087 if (r < 0) {
2088 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse %s= parameter, ignoring: %s", lvalue, rvalue);
2089 return 0;
2090 }
d568a335 2091
6c58305a
YW
2092 s->start_timeout_defined = true;
2093 s->timeout_start_usec = usec;
36c16a7c 2094
6c58305a 2095 if (streq(lvalue, "TimeoutSec"))
aad41f08 2096 s->timeout_stop_usec = usec;
36c16a7c 2097
d568a335 2098 return 0;
98709151
LN
2099}
2100
a61d6874 2101int config_parse_timeout_abort(
dc653bf4
JK
2102 const char *unit,
2103 const char *filename,
2104 unsigned line,
2105 const char *section,
2106 unsigned section_line,
2107 const char *lvalue,
2108 int ltype,
2109 const char *rvalue,
2110 void *data,
2111 void *userdata) {
2112
a61d6874 2113 usec_t *ret = data;
dc653bf4
JK
2114 int r;
2115
2116 assert(filename);
2117 assert(lvalue);
2118 assert(rvalue);
a61d6874
ZJS
2119 assert(ret);
2120
2121 /* Note: apart from setting the arg, this returns an extra bit of information in the return value. */
dc653bf4 2122
dc653bf4 2123 if (isempty(rvalue)) {
a61d6874
ZJS
2124 *ret = 0;
2125 return 0; /* "not set" */
dc653bf4
JK
2126 }
2127
a61d6874
ZJS
2128 r = parse_sec(rvalue, ret);
2129 if (r < 0)
2130 return log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse %s= setting, ignoring: %s", lvalue, rvalue);
2131
2132 return 1; /* "set" */
2133}
2134
2135int config_parse_service_timeout_abort(
2136 const char *unit,
2137 const char *filename,
2138 unsigned line,
2139 const char *section,
2140 unsigned section_line,
2141 const char *lvalue,
2142 int ltype,
2143 const char *rvalue,
2144 void *data,
2145 void *userdata) {
2146
2147 Service *s = userdata;
2148 int r;
dc653bf4 2149
a61d6874
ZJS
2150 assert(s);
2151
2152 r = config_parse_timeout_abort(unit, filename, line, section, section_line, lvalue, ltype, rvalue,
2153 &s->timeout_abort_usec, s);
2154 if (r >= 0)
2155 s->timeout_abort_set = r;
dc653bf4
JK
2156 return 0;
2157}
2158
89beff89
LP
2159int config_parse_sec_fix_0(
2160 const char *unit,
2161 const char *filename,
2162 unsigned line,
2163 const char *section,
2164 unsigned section_line,
2165 const char *lvalue,
2166 int ltype,
2167 const char *rvalue,
2168 void *data,
2169 void *userdata) {
2170
2171 usec_t *usec = data;
2172 int r;
2173
2174 assert(filename);
2175 assert(lvalue);
2176 assert(rvalue);
2177 assert(usec);
2178
2179 /* This is pretty much like config_parse_sec(), except that this treats a time of 0 as infinity, for
2180 * compatibility with older versions of systemd where 0 instead of infinity was used as indicator to turn off a
2181 * timeout. */
2182
0004f698 2183 r = parse_sec_fix_0(rvalue, usec);
89beff89
LP
2184 if (r < 0) {
2185 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse %s= parameter, ignoring: %s", lvalue, rvalue);
2186 return 0;
2187 }
2188
89beff89
LP
2189 return 0;
2190}
2191
ae480f0b 2192int config_parse_user_group_compat(
66dccd8d
LP
2193 const char *unit,
2194 const char *filename,
2195 unsigned line,
2196 const char *section,
2197 unsigned section_line,
2198 const char *lvalue,
2199 int ltype,
2200 const char *rvalue,
2201 void *data,
2202 void *userdata) {
2203
063c4b1a
YW
2204 _cleanup_free_ char *k = NULL;
2205 char **user = data;
47538b76 2206 const Unit *u = userdata;
66dccd8d
LP
2207 int r;
2208
2209 assert(filename);
2210 assert(lvalue);
2211 assert(rvalue);
2212 assert(u);
2213
063c4b1a
YW
2214 if (isempty(rvalue)) {
2215 *user = mfree(*user);
2216 return 0;
2217 }
66dccd8d 2218
063c4b1a
YW
2219 r = unit_full_printf(u, rvalue, &k);
2220 if (r < 0) {
2221 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in %s: %m", rvalue);
2222 return -ENOEXEC;
66dccd8d
LP
2223 }
2224
7a8867ab 2225 if (!valid_user_group_name(k, VALID_USER_ALLOW_NUMERIC|VALID_USER_RELAX|VALID_USER_WARN)) {
063c4b1a
YW
2226 log_syntax(unit, LOG_ERR, filename, line, 0, "Invalid user/group name or numeric ID: %s", k);
2227 return -ENOEXEC;
2228 }
66dccd8d 2229
063c4b1a 2230 return free_and_replace(*user, k);
66dccd8d
LP
2231}
2232
ae480f0b 2233int config_parse_user_group_strv_compat(
66dccd8d
LP
2234 const char *unit,
2235 const char *filename,
2236 unsigned line,
2237 const char *section,
2238 unsigned section_line,
2239 const char *lvalue,
2240 int ltype,
2241 const char *rvalue,
2242 void *data,
2243 void *userdata) {
2244
2245 char ***users = data;
47538b76 2246 const Unit *u = userdata;
063c4b1a 2247 const char *p = rvalue;
66dccd8d
LP
2248 int r;
2249
2250 assert(filename);
2251 assert(lvalue);
2252 assert(rvalue);
2253 assert(u);
2254
2255 if (isempty(rvalue)) {
9f2d41a6 2256 *users = strv_free(*users);
66dccd8d
LP
2257 return 0;
2258 }
2259
66dccd8d
LP
2260 for (;;) {
2261 _cleanup_free_ char *word = NULL, *k = NULL;
2262
9a82ab95 2263 r = extract_first_word(&p, &word, NULL, 0);
66dccd8d
LP
2264 if (r == 0)
2265 break;
2266 if (r == -ENOMEM)
2267 return log_oom();
2268 if (r < 0) {
bb28e684
ZJS
2269 log_syntax(unit, LOG_ERR, filename, line, r, "Invalid syntax: %s", rvalue);
2270 return -ENOEXEC;
66dccd8d
LP
2271 }
2272
2273 r = unit_full_printf(u, word, &k);
2274 if (r < 0) {
bb28e684
ZJS
2275 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in %s: %m", word);
2276 return -ENOEXEC;
66dccd8d
LP
2277 }
2278
7a8867ab 2279 if (!valid_user_group_name(k, VALID_USER_ALLOW_NUMERIC|VALID_USER_RELAX|VALID_USER_WARN)) {
bb28e684
ZJS
2280 log_syntax(unit, LOG_ERR, filename, line, 0, "Invalid user/group name or numeric ID: %s", k);
2281 return -ENOEXEC;
66dccd8d
LP
2282 }
2283
2284 r = strv_push(users, k);
2285 if (r < 0)
2286 return log_oom();
2287
2288 k = NULL;
2289 }
2290
2291 return 0;
2292}
2293
5f5d8eab
LP
2294int config_parse_working_directory(
2295 const char *unit,
2296 const char *filename,
2297 unsigned line,
2298 const char *section,
2299 unsigned section_line,
2300 const char *lvalue,
2301 int ltype,
2302 const char *rvalue,
2303 void *data,
2304 void *userdata) {
2305
2306 ExecContext *c = data;
47538b76 2307 const Unit *u = userdata;
5f5d8eab
LP
2308 bool missing_ok;
2309 int r;
2310
2311 assert(filename);
2312 assert(lvalue);
2313 assert(rvalue);
2314 assert(c);
2315 assert(u);
2316
862fcffd
YW
2317 if (isempty(rvalue)) {
2318 c->working_directory_home = false;
2319 c->working_directory = mfree(c->working_directory);
2320 return 0;
2321 }
2322
5f5d8eab
LP
2323 if (rvalue[0] == '-') {
2324 missing_ok = true;
2325 rvalue++;
2326 } else
2327 missing_ok = false;
2328
2329 if (streq(rvalue, "~")) {
2330 c->working_directory_home = true;
2331 c->working_directory = mfree(c->working_directory);
2332 } else {
2333 _cleanup_free_ char *k = NULL;
2334
2335 r = unit_full_printf(u, rvalue, &k);
2336 if (r < 0) {
bb28e684
ZJS
2337 log_syntax(unit, LOG_ERR, filename, line, r,
2338 "Failed to resolve unit specifiers in working directory path '%s'%s: %m",
2339 rvalue, missing_ok ? ", ignoring" : "");
2340 return missing_ok ? 0 : -ENOEXEC;
5f5d8eab
LP
2341 }
2342
2f4d31c1
YW
2343 r = path_simplify_and_warn(k, PATH_CHECK_ABSOLUTE | (missing_ok ? 0 : PATH_CHECK_FATAL), unit, filename, line, lvalue);
2344 if (r < 0)
bb28e684 2345 return missing_ok ? 0 : -ENOEXEC;
5f5d8eab 2346
5f5d8eab 2347 c->working_directory_home = false;
bb28e684 2348 free_and_replace(c->working_directory, k);
5f5d8eab
LP
2349 }
2350
2351 c->working_directory_missing_ok = missing_ok;
2352 return 0;
2353}
2354
e8e581bf
ZJS
2355int config_parse_unit_env_file(const char *unit,
2356 const char *filename,
2357 unsigned line,
2358 const char *section,
71a61510 2359 unsigned section_line,
e8e581bf
ZJS
2360 const char *lvalue,
2361 int ltype,
2362 const char *rvalue,
2363 void *data,
2364 void *userdata) {
ddb26e18 2365
853b8397 2366 char ***env = data;
47538b76 2367 const Unit *u = userdata;
19f6d710 2368 _cleanup_free_ char *n = NULL;
853b8397 2369 int r;
ddb26e18
LP
2370
2371 assert(filename);
2372 assert(lvalue);
2373 assert(rvalue);
2374 assert(data);
2375
74051b9b
LP
2376 if (isempty(rvalue)) {
2377 /* Empty assignment frees the list */
6796073e 2378 *env = strv_free(*env);
74051b9b
LP
2379 return 0;
2380 }
2381
19f6d710 2382 r = unit_full_printf(u, rvalue, &n);
12ca818f 2383 if (r < 0) {
063c4b1a 2384 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s', ignoring: %m", rvalue);
12ca818f
LP
2385 return 0;
2386 }
8fef7659 2387
2f4d31c1
YW
2388 r = path_simplify_and_warn(n[0] == '-' ? n + 1 : n, PATH_CHECK_ABSOLUTE, unit, filename, line, lvalue);
2389 if (r < 0)
afe4bfe2 2390 return 0;
afe4bfe2 2391
2f4d31c1 2392 r = strv_push(env, n);
853b8397
LP
2393 if (r < 0)
2394 return log_oom();
2395
2f4d31c1
YW
2396 n = NULL;
2397
853b8397
LP
2398 return 0;
2399}
2400
f7f3f5c3
LP
2401int config_parse_environ(
2402 const char *unit,
2403 const char *filename,
2404 unsigned line,
2405 const char *section,
2406 unsigned section_line,
2407 const char *lvalue,
2408 int ltype,
2409 const char *rvalue,
2410 void *data,
2411 void *userdata) {
853b8397 2412
47538b76 2413 const Unit *u = userdata;
035fe294
ZJS
2414 char ***env = data;
2415 const char *p;
19f6d710 2416 int r;
853b8397
LP
2417
2418 assert(filename);
2419 assert(lvalue);
2420 assert(rvalue);
97d0e5f8 2421 assert(data);
853b8397
LP
2422
2423 if (isempty(rvalue)) {
2424 /* Empty assignment resets the list */
6796073e 2425 *env = strv_free(*env);
853b8397
LP
2426 return 0;
2427 }
2428
035fe294
ZJS
2429 for (p = rvalue;; ) {
2430 _cleanup_free_ char *word = NULL, *k = NULL;
035fe294 2431
4ec85141 2432 r = extract_first_word(&p, &word, NULL, EXTRACT_CUNESCAPE|EXTRACT_UNQUOTE);
035fe294
ZJS
2433 if (r == 0)
2434 return 0;
2435 if (r == -ENOMEM)
2436 return log_oom();
12ca818f 2437 if (r < 0) {
035fe294
ZJS
2438 log_syntax(unit, LOG_WARNING, filename, line, r,
2439 "Invalid syntax, ignoring: %s", rvalue);
12ca818f
LP
2440 return 0;
2441 }
97d0e5f8 2442
035fe294
ZJS
2443 if (u) {
2444 r = unit_full_printf(u, word, &k);
2445 if (r < 0) {
2446 log_syntax(unit, LOG_ERR, filename, line, r,
063c4b1a 2447 "Failed to resolve unit specifiers in %s, ignoring: %m", word);
035fe294
ZJS
2448 continue;
2449 }
ae2a15bc
LP
2450 } else
2451 k = TAKE_PTR(word);
853b8397 2452
035fe294
ZJS
2453 if (!env_assignment_is_valid(k)) {
2454 log_syntax(unit, LOG_ERR, filename, line, 0,
2455 "Invalid environment assignment, ignoring: %s", k);
853b8397
LP
2456 continue;
2457 }
2458
54ac3494
ZJS
2459 r = strv_env_replace(env, k);
2460 if (r < 0)
853b8397 2461 return log_oom();
f7f3f5c3 2462
54ac3494 2463 k = NULL;
853b8397 2464 }
ddb26e18
LP
2465}
2466
00819cc1
LP
2467int config_parse_pass_environ(
2468 const char *unit,
2469 const char *filename,
2470 unsigned line,
2471 const char *section,
2472 unsigned section_line,
2473 const char *lvalue,
2474 int ltype,
2475 const char *rvalue,
2476 void *data,
2477 void *userdata) {
b4c14404 2478
b4c14404
FB
2479 _cleanup_strv_free_ char **n = NULL;
2480 size_t nlen = 0, nbufsize = 0;
41de9cc2 2481 char*** passenv = data;
063c4b1a 2482 const char *p = rvalue;
47538b76 2483 const Unit *u = userdata;
b4c14404
FB
2484 int r;
2485
2486 assert(filename);
2487 assert(lvalue);
2488 assert(rvalue);
2489 assert(data);
2490
2491 if (isempty(rvalue)) {
2492 /* Empty assignment resets the list */
2493 *passenv = strv_free(*passenv);
2494 return 0;
2495 }
2496
2497 for (;;) {
41de9cc2 2498 _cleanup_free_ char *word = NULL, *k = NULL;
b4c14404 2499
4ec85141 2500 r = extract_first_word(&p, &word, NULL, EXTRACT_UNQUOTE);
b4c14404
FB
2501 if (r == 0)
2502 break;
2503 if (r == -ENOMEM)
2504 return log_oom();
2505 if (r < 0) {
2506 log_syntax(unit, LOG_ERR, filename, line, r,
063c4b1a 2507 "Trailing garbage in %s, ignoring: %s", lvalue, rvalue);
b4c14404
FB
2508 break;
2509 }
2510
41de9cc2
LP
2511 if (u) {
2512 r = unit_full_printf(u, word, &k);
2513 if (r < 0) {
2514 log_syntax(unit, LOG_ERR, filename, line, r,
063c4b1a 2515 "Failed to resolve specifiers in %s, ignoring: %m", word);
41de9cc2
LP
2516 continue;
2517 }
ae2a15bc
LP
2518 } else
2519 k = TAKE_PTR(word);
41de9cc2
LP
2520
2521 if (!env_name_is_valid(k)) {
2522 log_syntax(unit, LOG_ERR, filename, line, 0,
2523 "Invalid environment name for %s, ignoring: %s", lvalue, k);
b4c14404
FB
2524 continue;
2525 }
2526
2527 if (!GREEDY_REALLOC(n, nbufsize, nlen + 2))
2528 return log_oom();
41de9cc2 2529
1cc6c93a 2530 n[nlen++] = TAKE_PTR(k);
b4c14404 2531 n[nlen] = NULL;
b4c14404
FB
2532 }
2533
2534 if (n) {
2535 r = strv_extend_strv(passenv, n, true);
2536 if (r < 0)
2537 return r;
2538 }
2539
2540 return 0;
2541}
2542
00819cc1
LP
2543int config_parse_unset_environ(
2544 const char *unit,
2545 const char *filename,
2546 unsigned line,
2547 const char *section,
2548 unsigned section_line,
2549 const char *lvalue,
2550 int ltype,
2551 const char *rvalue,
2552 void *data,
2553 void *userdata) {
2554
2555 _cleanup_strv_free_ char **n = NULL;
00819cc1
LP
2556 size_t nlen = 0, nbufsize = 0;
2557 char*** unsetenv = data;
063c4b1a 2558 const char *p = rvalue;
47538b76 2559 const Unit *u = userdata;
00819cc1
LP
2560 int r;
2561
2562 assert(filename);
2563 assert(lvalue);
2564 assert(rvalue);
2565 assert(data);
2566
2567 if (isempty(rvalue)) {
2568 /* Empty assignment resets the list */
2569 *unsetenv = strv_free(*unsetenv);
2570 return 0;
2571 }
2572
2573 for (;;) {
2574 _cleanup_free_ char *word = NULL, *k = NULL;
2575
4ec85141 2576 r = extract_first_word(&p, &word, NULL, EXTRACT_CUNESCAPE|EXTRACT_UNQUOTE);
00819cc1
LP
2577 if (r == 0)
2578 break;
2579 if (r == -ENOMEM)
2580 return log_oom();
2581 if (r < 0) {
2582 log_syntax(unit, LOG_ERR, filename, line, r,
063c4b1a 2583 "Trailing garbage in %s, ignoring: %s", lvalue, rvalue);
00819cc1
LP
2584 break;
2585 }
2586
2587 if (u) {
2588 r = unit_full_printf(u, word, &k);
2589 if (r < 0) {
2590 log_syntax(unit, LOG_ERR, filename, line, r,
063c4b1a 2591 "Failed to resolve unit specifiers in %s, ignoring: %m", word);
00819cc1
LP
2592 continue;
2593 }
ae2a15bc
LP
2594 } else
2595 k = TAKE_PTR(word);
00819cc1
LP
2596
2597 if (!env_assignment_is_valid(k) && !env_name_is_valid(k)) {
2598 log_syntax(unit, LOG_ERR, filename, line, 0,
2599 "Invalid environment name or assignment %s, ignoring: %s", lvalue, k);
2600 continue;
2601 }
2602
2603 if (!GREEDY_REALLOC(n, nbufsize, nlen + 2))
2604 return log_oom();
2605
1cc6c93a 2606 n[nlen++] = TAKE_PTR(k);
00819cc1 2607 n[nlen] = NULL;
00819cc1
LP
2608 }
2609
2610 if (n) {
2611 r = strv_extend_strv(unsetenv, n, true);
2612 if (r < 0)
2613 return r;
2614 }
2615
2616 return 0;
2617}
2618
d3070fbd
LP
2619int config_parse_log_extra_fields(
2620 const char *unit,
2621 const char *filename,
2622 unsigned line,
2623 const char *section,
2624 unsigned section_line,
2625 const char *lvalue,
2626 int ltype,
2627 const char *rvalue,
2628 void *data,
2629 void *userdata) {
2630
2631 ExecContext *c = data;
47538b76 2632 const Unit *u = userdata;
063c4b1a 2633 const char *p = rvalue;
d3070fbd
LP
2634 int r;
2635
2636 assert(filename);
2637 assert(lvalue);
2638 assert(rvalue);
2639 assert(c);
2640
2641 if (isempty(rvalue)) {
2642 exec_context_free_log_extra_fields(c);
2643 return 0;
2644 }
2645
063c4b1a 2646 for (;;) {
d3070fbd
LP
2647 _cleanup_free_ char *word = NULL, *k = NULL;
2648 struct iovec *t;
2649 const char *eq;
2650
4ec85141 2651 r = extract_first_word(&p, &word, NULL, EXTRACT_CUNESCAPE|EXTRACT_UNQUOTE);
d3070fbd 2652 if (r == 0)
063c4b1a 2653 return 0;
d3070fbd
LP
2654 if (r == -ENOMEM)
2655 return log_oom();
2656 if (r < 0) {
2657 log_syntax(unit, LOG_WARNING, filename, line, r, "Invalid syntax, ignoring: %s", rvalue);
2658 return 0;
2659 }
2660
2661 r = unit_full_printf(u, word, &k);
2662 if (r < 0) {
063c4b1a 2663 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in %s, ignoring: %m", word);
d3070fbd
LP
2664 continue;
2665 }
2666
2667 eq = strchr(k, '=');
2668 if (!eq) {
063c4b1a 2669 log_syntax(unit, LOG_ERR, filename, line, 0, "Log field lacks '=' character, ignoring: %s", k);
d3070fbd
LP
2670 continue;
2671 }
2672
2673 if (!journal_field_valid(k, eq-k, false)) {
063c4b1a 2674 log_syntax(unit, LOG_ERR, filename, line, 0, "Log field name is invalid, ignoring: %s", k);
d3070fbd
LP
2675 continue;
2676 }
2677
aa484f35 2678 t = reallocarray(c->log_extra_fields, c->n_log_extra_fields+1, sizeof(struct iovec));
d3070fbd
LP
2679 if (!t)
2680 return log_oom();
2681
2682 c->log_extra_fields = t;
2683 c->log_extra_fields[c->n_log_extra_fields++] = IOVEC_MAKE_STRING(k);
2684
2685 k = NULL;
2686 }
d3070fbd
LP
2687}
2688
91dd5f7c
LP
2689int config_parse_log_namespace(
2690 const char *unit,
2691 const char *filename,
2692 unsigned line,
2693 const char *section,
2694 unsigned section_line,
2695 const char *lvalue,
2696 int ltype,
2697 const char *rvalue,
2698 void *data,
2699 void *userdata) {
2700
2701 _cleanup_free_ char *k = NULL;
2702 ExecContext *c = data;
2703 const Unit *u = userdata;
2704 int r;
2705
2706 assert(filename);
2707 assert(lvalue);
2708 assert(rvalue);
2709 assert(c);
2710
2711 if (isempty(rvalue)) {
2712 c->log_namespace = mfree(c->log_namespace);
2713 return 0;
2714 }
2715
2716 r = unit_full_printf(u, rvalue, &k);
2717 if (r < 0) {
2718 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in %s, ignoring: %m", rvalue);
2719 return 0;
2720 }
2721
2722 if (!log_namespace_name_valid(k)) {
2723 log_syntax(unit, LOG_ERR, filename, line, SYNTHETIC_ERRNO(EINVAL), "Specified log namespace name is not valid: %s", k);
2724 return 0;
2725 }
2726
2727 free_and_replace(c->log_namespace, k);
2728 return 0;
2729}
2730
59fccdc5
LP
2731int config_parse_unit_condition_path(
2732 const char *unit,
2733 const char *filename,
2734 unsigned line,
2735 const char *section,
2736 unsigned section_line,
2737 const char *lvalue,
2738 int ltype,
2739 const char *rvalue,
2740 void *data,
2741 void *userdata) {
52661efd 2742
2fbe635a 2743 _cleanup_free_ char *p = NULL;
59fccdc5
LP
2744 Condition **list = data, *c;
2745 ConditionType t = ltype;
2746 bool trigger, negate;
47538b76 2747 const Unit *u = userdata;
19f6d710 2748 int r;
52661efd
LP
2749
2750 assert(filename);
2751 assert(lvalue);
2752 assert(rvalue);
2753 assert(data);
2754
74051b9b
LP
2755 if (isempty(rvalue)) {
2756 /* Empty assignment resets the list */
447021aa 2757 *list = condition_free_list(*list);
74051b9b
LP
2758 return 0;
2759 }
2760
ab7f148f
LP
2761 trigger = rvalue[0] == '|';
2762 if (trigger)
267632f0
LP
2763 rvalue++;
2764
ab7f148f
LP
2765 negate = rvalue[0] == '!';
2766 if (negate)
52661efd
LP
2767 rvalue++;
2768
19f6d710 2769 r = unit_full_printf(u, rvalue, &p);
59fccdc5 2770 if (r < 0) {
063c4b1a 2771 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in %s, ignoring: %m", rvalue);
59fccdc5 2772 return 0;
19f6d710 2773 }
095b2d7a 2774
2f4d31c1
YW
2775 r = path_simplify_and_warn(p, PATH_CHECK_ABSOLUTE, unit, filename, line, lvalue);
2776 if (r < 0)
52661efd 2777 return 0;
52661efd 2778
59fccdc5 2779 c = condition_new(t, p, trigger, negate);
ab7f148f 2780 if (!c)
74051b9b 2781 return log_oom();
52661efd 2782
59fccdc5 2783 LIST_PREPEND(conditions, *list, c);
52661efd
LP
2784 return 0;
2785}
2786
59fccdc5
LP
2787int config_parse_unit_condition_string(
2788 const char *unit,
2789 const char *filename,
2790 unsigned line,
2791 const char *section,
2792 unsigned section_line,
2793 const char *lvalue,
2794 int ltype,
2795 const char *rvalue,
2796 void *data,
2797 void *userdata) {
039655a4 2798
2fbe635a 2799 _cleanup_free_ char *s = NULL;
59fccdc5
LP
2800 Condition **list = data, *c;
2801 ConditionType t = ltype;
2802 bool trigger, negate;
47538b76 2803 const Unit *u = userdata;
19f6d710 2804 int r;
039655a4
LP
2805
2806 assert(filename);
2807 assert(lvalue);
2808 assert(rvalue);
2809 assert(data);
2810
74051b9b
LP
2811 if (isempty(rvalue)) {
2812 /* Empty assignment resets the list */
447021aa 2813 *list = condition_free_list(*list);
74051b9b
LP
2814 return 0;
2815 }
2816
9266f31e 2817 trigger = *rvalue == '|';
c0d6e764 2818 if (trigger)
9266f31e 2819 rvalue += 1 + strspn(rvalue + 1, WHITESPACE);
267632f0 2820
9266f31e 2821 negate = *rvalue == '!';
c0d6e764 2822 if (negate)
9266f31e 2823 rvalue += 1 + strspn(rvalue + 1, WHITESPACE);
039655a4 2824
19f6d710 2825 r = unit_full_printf(u, rvalue, &s);
59fccdc5 2826 if (r < 0) {
cae90de3
ZJS
2827 log_syntax(unit, LOG_ERR, filename, line, r,
2828 "Failed to resolve unit specifiers in '%s', ignoring: %m", rvalue);
59fccdc5 2829 return 0;
19f6d710 2830 }
095b2d7a 2831
59fccdc5 2832 c = condition_new(t, s, trigger, negate);
c0d6e764
LP
2833 if (!c)
2834 return log_oom();
039655a4 2835
59fccdc5 2836 LIST_PREPEND(conditions, *list, c);
039655a4
LP
2837 return 0;
2838}
2839
59fccdc5
LP
2840int config_parse_unit_condition_null(
2841 const char *unit,
2842 const char *filename,
2843 unsigned line,
2844 const char *section,
2845 unsigned section_line,
2846 const char *lvalue,
2847 int ltype,
2848 const char *rvalue,
2849 void *data,
2850 void *userdata) {
d257ddef 2851
59fccdc5 2852 Condition **list = data, *c;
267632f0 2853 bool trigger, negate;
d257ddef
LP
2854 int b;
2855
2856 assert(filename);
2857 assert(lvalue);
2858 assert(rvalue);
2859 assert(data);
2860
55dadc5c
LP
2861 log_syntax(unit, LOG_WARNING, filename, line, 0, "%s= is deprecated, please do not use.", lvalue);
2862
74051b9b
LP
2863 if (isempty(rvalue)) {
2864 /* Empty assignment resets the list */
447021aa 2865 *list = condition_free_list(*list);
74051b9b
LP
2866 return 0;
2867 }
2868
2869 trigger = rvalue[0] == '|';
2870 if (trigger)
267632f0
LP
2871 rvalue++;
2872
74051b9b
LP
2873 negate = rvalue[0] == '!';
2874 if (negate)
d257ddef
LP
2875 rvalue++;
2876
74051b9b
LP
2877 b = parse_boolean(rvalue);
2878 if (b < 0) {
12ca818f 2879 log_syntax(unit, LOG_ERR, filename, line, b, "Failed to parse boolean value in condition, ignoring: %s", rvalue);
d257ddef
LP
2880 return 0;
2881 }
2882
2883 if (!b)
2884 negate = !negate;
2885
74051b9b
LP
2886 c = condition_new(CONDITION_NULL, NULL, trigger, negate);
2887 if (!c)
2888 return log_oom();
d257ddef 2889
59fccdc5 2890 LIST_PREPEND(conditions, *list, c);
d257ddef
LP
2891 return 0;
2892}
2893
a57f7e2c
LP
2894int config_parse_unit_requires_mounts_for(
2895 const char *unit,
2896 const char *filename,
2897 unsigned line,
2898 const char *section,
71a61510 2899 unsigned section_line,
a57f7e2c
LP
2900 const char *lvalue,
2901 int ltype,
2902 const char *rvalue,
2903 void *data,
2904 void *userdata) {
7c8fa05c 2905
063c4b1a 2906 const char *p = rvalue;
7c8fa05c 2907 Unit *u = userdata;
035fe294 2908 int r;
7c8fa05c
LP
2909
2910 assert(filename);
2911 assert(lvalue);
2912 assert(rvalue);
2913 assert(data);
2914
063c4b1a 2915 for (;;) {
744bb5b1 2916 _cleanup_free_ char *word = NULL, *resolved = NULL;
a57f7e2c 2917
4ec85141 2918 r = extract_first_word(&p, &word, NULL, EXTRACT_UNQUOTE);
035fe294
ZJS
2919 if (r == 0)
2920 return 0;
2921 if (r == -ENOMEM)
a57f7e2c 2922 return log_oom();
035fe294
ZJS
2923 if (r < 0) {
2924 log_syntax(unit, LOG_WARNING, filename, line, r,
2925 "Invalid syntax, ignoring: %s", rvalue);
2926 return 0;
2927 }
7c8fa05c 2928
744bb5b1
LP
2929 r = unit_full_printf(u, word, &resolved);
2930 if (r < 0) {
063c4b1a 2931 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s', ignoring: %m", word);
744bb5b1
LP
2932 continue;
2933 }
2934
2f4d31c1
YW
2935 r = path_simplify_and_warn(resolved, PATH_CHECK_ABSOLUTE, unit, filename, line, lvalue);
2936 if (r < 0)
2937 continue;
2938
eef85c4a 2939 r = unit_require_mounts_for(u, resolved, UNIT_DEPENDENCY_FILE);
a57f7e2c 2940 if (r < 0) {
063c4b1a 2941 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to add required mount '%s', ignoring: %m", resolved);
a57f7e2c
LP
2942 continue;
2943 }
2944 }
7c8fa05c 2945}
9e372868 2946
e8e581bf
ZJS
2947int config_parse_documentation(const char *unit,
2948 const char *filename,
2949 unsigned line,
2950 const char *section,
71a61510 2951 unsigned section_line,
e8e581bf
ZJS
2952 const char *lvalue,
2953 int ltype,
2954 const char *rvalue,
2955 void *data,
2956 void *userdata) {
49dbfa7b
LP
2957
2958 Unit *u = userdata;
2959 int r;
2960 char **a, **b;
2961
2962 assert(filename);
2963 assert(lvalue);
2964 assert(rvalue);
2965 assert(u);
2966
74051b9b
LP
2967 if (isempty(rvalue)) {
2968 /* Empty assignment resets the list */
6796073e 2969 u->documentation = strv_free(u->documentation);
74051b9b
LP
2970 return 0;
2971 }
2972
71a61510 2973 r = config_parse_unit_strv_printf(unit, filename, line, section, section_line, lvalue, ltype,
e8e581bf 2974 rvalue, data, userdata);
49dbfa7b
LP
2975 if (r < 0)
2976 return r;
2977
2978 for (a = b = u->documentation; a && *a; a++) {
2979
a2e03378 2980 if (documentation_url_is_valid(*a))
49dbfa7b
LP
2981 *(b++) = *a;
2982 else {
12ca818f 2983 log_syntax(unit, LOG_ERR, filename, line, 0, "Invalid URL, ignoring: %s", *a);
49dbfa7b
LP
2984 free(*a);
2985 }
2986 }
f6d2d421
ZJS
2987 if (b)
2988 *b = NULL;
49dbfa7b
LP
2989
2990 return r;
2991}
2992
349cc4a5 2993#if HAVE_SECCOMP
17df7223
LP
2994int config_parse_syscall_filter(
2995 const char *unit,
2996 const char *filename,
2997 unsigned line,
2998 const char *section,
2999 unsigned section_line,
3000 const char *lvalue,
3001 int ltype,
3002 const char *rvalue,
3003 void *data,
3004 void *userdata) {
3005
8351ceae 3006 ExecContext *c = data;
0a0e594a 3007 _unused_ const Unit *u = userdata;
b5fb3789 3008 bool invert = false;
8130926d 3009 const char *p;
17df7223 3010 int r;
8351ceae
LP
3011
3012 assert(filename);
3013 assert(lvalue);
3014 assert(rvalue);
3015 assert(u);
3016
74051b9b
LP
3017 if (isempty(rvalue)) {
3018 /* Empty assignment resets the list */
8cfa775f 3019 c->syscall_filter = hashmap_free(c->syscall_filter);
6b000af4 3020 c->syscall_allow_list = false;
74051b9b
LP
3021 return 0;
3022 }
3023
8351ceae
LP
3024 if (rvalue[0] == '~') {
3025 invert = true;
3026 rvalue++;
3027 }
3028
17df7223 3029 if (!c->syscall_filter) {
8cfa775f 3030 c->syscall_filter = hashmap_new(NULL);
17df7223
LP
3031 if (!c->syscall_filter)
3032 return log_oom();
3033
c0467cf3 3034 if (invert)
17df7223 3035 /* Allow everything but the ones listed */
6b000af4 3036 c->syscall_allow_list = false;
c0467cf3 3037 else {
17df7223 3038 /* Allow nothing but the ones listed */
6b000af4 3039 c->syscall_allow_list = true;
8351ceae 3040
6b000af4 3041 /* Accept default syscalls if we are on a allow_list */
2f6b9110
LP
3042 r = seccomp_parse_syscall_filter(
3043 "@default", -1, c->syscall_filter,
6b000af4 3044 SECCOMP_PARSE_PERMISSIVE|SECCOMP_PARSE_ALLOW_LIST,
58f6ab44
ZJS
3045 unit,
3046 NULL, 0);
201c1cc2
TM
3047 if (r < 0)
3048 return r;
c0467cf3 3049 }
8351ceae
LP
3050 }
3051
8130926d
LP
3052 p = rvalue;
3053 for (;;) {
8cfa775f
YW
3054 _cleanup_free_ char *word = NULL, *name = NULL;
3055 int num;
8351ceae 3056
8130926d
LP
3057 r = extract_first_word(&p, &word, NULL, 0);
3058 if (r == 0)
063c4b1a 3059 return 0;
8130926d 3060 if (r == -ENOMEM)
74051b9b 3061 return log_oom();
8130926d
LP
3062 if (r < 0) {
3063 log_syntax(unit, LOG_WARNING, filename, line, r, "Invalid syntax, ignoring: %s", rvalue);
063c4b1a 3064 return 0;
8130926d 3065 }
8351ceae 3066
8cfa775f
YW
3067 r = parse_syscall_and_errno(word, &name, &num);
3068 if (r < 0) {
3069 log_syntax(unit, LOG_WARNING, filename, line, r, "Failed to parse syscall:errno, ignoring: %s", word);
3070 continue;
3071 }
3072
58f6ab44 3073 r = seccomp_parse_syscall_filter(
acd142af
LP
3074 name, num, c->syscall_filter,
3075 SECCOMP_PARSE_LOG|SECCOMP_PARSE_PERMISSIVE|
3076 (invert ? SECCOMP_PARSE_INVERT : 0)|
6b000af4 3077 (c->syscall_allow_list ? SECCOMP_PARSE_ALLOW_LIST : 0),
acd142af 3078 unit, filename, line);
201c1cc2
TM
3079 if (r < 0)
3080 return r;
c0467cf3 3081 }
17df7223
LP
3082}
3083
57183d11
LP
3084int config_parse_syscall_archs(
3085 const char *unit,
3086 const char *filename,
3087 unsigned line,
3088 const char *section,
3089 unsigned section_line,
3090 const char *lvalue,
3091 int ltype,
3092 const char *rvalue,
3093 void *data,
3094 void *userdata) {
3095
063c4b1a 3096 const char *p = rvalue;
d3b1c508 3097 Set **archs = data;
57183d11
LP
3098 int r;
3099
3100 if (isempty(rvalue)) {
525d3cc7 3101 *archs = set_free(*archs);
57183d11
LP
3102 return 0;
3103 }
3104
063c4b1a 3105 for (;;) {
035fe294 3106 _cleanup_free_ char *word = NULL;
57183d11
LP
3107 uint32_t a;
3108
4ec85141 3109 r = extract_first_word(&p, &word, NULL, EXTRACT_UNQUOTE);
035fe294
ZJS
3110 if (r == 0)
3111 return 0;
3112 if (r == -ENOMEM)
57183d11 3113 return log_oom();
035fe294
ZJS
3114 if (r < 0) {
3115 log_syntax(unit, LOG_WARNING, filename, line, r,
3116 "Invalid syntax, ignoring: %s", rvalue);
3117 return 0;
3118 }
57183d11 3119
035fe294 3120 r = seccomp_arch_from_string(word, &a);
57183d11 3121 if (r < 0) {
035fe294
ZJS
3122 log_syntax(unit, LOG_ERR, filename, line, r,
3123 "Failed to parse system call architecture \"%s\", ignoring: %m", word);
57183d11
LP
3124 continue;
3125 }
3126
de7fef4b 3127 r = set_ensure_put(archs, NULL, UINT32_TO_PTR(a + 1));
57183d11
LP
3128 if (r < 0)
3129 return log_oom();
3130 }
57183d11
LP
3131}
3132
17df7223
LP
3133int config_parse_syscall_errno(
3134 const char *unit,
3135 const char *filename,
3136 unsigned line,
3137 const char *section,
3138 unsigned section_line,
3139 const char *lvalue,
3140 int ltype,
3141 const char *rvalue,
3142 void *data,
3143 void *userdata) {
3144
3145 ExecContext *c = data;
3146 int e;
3147
3148 assert(filename);
3149 assert(lvalue);
3150 assert(rvalue);
3151
3152 if (isempty(rvalue)) {
3153 /* Empty assignment resets to KILL */
3154 c->syscall_errno = 0;
3155 return 0;
8351ceae
LP
3156 }
3157
3df90f24
YW
3158 e = parse_errno(rvalue);
3159 if (e <= 0) {
12ca818f 3160 log_syntax(unit, LOG_ERR, filename, line, 0, "Failed to parse error number, ignoring: %s", rvalue);
17df7223
LP
3161 return 0;
3162 }
8351ceae 3163
17df7223 3164 c->syscall_errno = e;
8351ceae
LP
3165 return 0;
3166}
4298d0b5
LP
3167
3168int config_parse_address_families(
3169 const char *unit,
3170 const char *filename,
3171 unsigned line,
3172 const char *section,
3173 unsigned section_line,
3174 const char *lvalue,
3175 int ltype,
3176 const char *rvalue,
3177 void *data,
3178 void *userdata) {
3179
3180 ExecContext *c = data;
4298d0b5 3181 bool invert = false;
035fe294 3182 const char *p;
4298d0b5
LP
3183 int r;
3184
3185 assert(filename);
3186 assert(lvalue);
3187 assert(rvalue);
4298d0b5
LP
3188
3189 if (isempty(rvalue)) {
3190 /* Empty assignment resets the list */
525d3cc7 3191 c->address_families = set_free(c->address_families);
6b000af4 3192 c->address_families_allow_list = false;
4298d0b5
LP
3193 return 0;
3194 }
3195
3196 if (rvalue[0] == '~') {
3197 invert = true;
3198 rvalue++;
3199 }
3200
3201 if (!c->address_families) {
d5099efc 3202 c->address_families = set_new(NULL);
4298d0b5
LP
3203 if (!c->address_families)
3204 return log_oom();
3205
6b000af4 3206 c->address_families_allow_list = !invert;
4298d0b5
LP
3207 }
3208
035fe294
ZJS
3209 for (p = rvalue;;) {
3210 _cleanup_free_ char *word = NULL;
4298d0b5
LP
3211 int af;
3212
4ec85141 3213 r = extract_first_word(&p, &word, NULL, EXTRACT_UNQUOTE);
035fe294
ZJS
3214 if (r == 0)
3215 return 0;
3216 if (r == -ENOMEM)
4298d0b5 3217 return log_oom();
035fe294
ZJS
3218 if (r < 0) {
3219 log_syntax(unit, LOG_WARNING, filename, line, r,
3220 "Invalid syntax, ignoring: %s", rvalue);
3221 return 0;
3222 }
4298d0b5 3223
035fe294 3224 af = af_from_name(word);
acf4d158
YW
3225 if (af < 0) {
3226 log_syntax(unit, LOG_ERR, filename, line, af,
063c4b1a 3227 "Failed to parse address family, ignoring: %s", word);
4298d0b5
LP
3228 continue;
3229 }
3230
3231 /* If we previously wanted to forbid an address family and now
035fe294 3232 * we want to allow it, then just remove it from the list.
4298d0b5 3233 */
6b000af4 3234 if (!invert == c->address_families_allow_list) {
4298d0b5 3235 r = set_put(c->address_families, INT_TO_PTR(af));
4298d0b5
LP
3236 if (r < 0)
3237 return log_oom();
3238 } else
3239 set_remove(c->address_families, INT_TO_PTR(af));
3240 }
4298d0b5 3241}
add00535
LP
3242
3243int config_parse_restrict_namespaces(
3244 const char *unit,
3245 const char *filename,
3246 unsigned line,
3247 const char *section,
3248 unsigned section_line,
3249 const char *lvalue,
3250 int ltype,
3251 const char *rvalue,
3252 void *data,
3253 void *userdata) {
3254
3255 ExecContext *c = data;
aa9d574d 3256 unsigned long flags;
add00535
LP
3257 bool invert = false;
3258 int r;
3259
3260 if (isempty(rvalue)) {
3261 /* Reset to the default. */
aa9d574d
YW
3262 c->restrict_namespaces = NAMESPACE_FLAGS_INITIAL;
3263 return 0;
3264 }
3265
3266 /* Boolean parameter ignores the previous settings */
3267 r = parse_boolean(rvalue);
3268 if (r > 0) {
3269 c->restrict_namespaces = 0;
3270 return 0;
3271 } else if (r == 0) {
add00535
LP
3272 c->restrict_namespaces = NAMESPACE_FLAGS_ALL;
3273 return 0;
3274 }
3275
3276 if (rvalue[0] == '~') {
3277 invert = true;
3278 rvalue++;
3279 }
3280
aa9d574d
YW
3281 /* Not a boolean argument, in this case it's a list of namespace types. */
3282 r = namespace_flags_from_string(rvalue, &flags);
3283 if (r < 0) {
3284 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse namespace type string, ignoring: %s", rvalue);
3285 return 0;
add00535
LP
3286 }
3287
aa9d574d
YW
3288 if (c->restrict_namespaces == NAMESPACE_FLAGS_INITIAL)
3289 /* Initial assignment. Just set the value. */
3290 c->restrict_namespaces = invert ? (~flags) & NAMESPACE_FLAGS_ALL : flags;
3291 else
3292 /* Merge the value with the previous one. */
3293 SET_FLAG(c->restrict_namespaces, flags, !invert);
add00535
LP
3294
3295 return 0;
3296}
c0467cf3 3297#endif
8351ceae 3298
a016b922
LP
3299int config_parse_unit_slice(
3300 const char *unit,
3301 const char *filename,
3302 unsigned line,
3303 const char *section,
71a61510 3304 unsigned section_line,
a016b922
LP
3305 const char *lvalue,
3306 int ltype,
3307 const char *rvalue,
3308 void *data,
3309 void *userdata) {
3310
063c4b1a 3311 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
a016b922 3312 _cleanup_free_ char *k = NULL;
abc9fa1c 3313 Unit *u = userdata, *slice;
a016b922
LP
3314 int r;
3315
3316 assert(filename);
3317 assert(lvalue);
3318 assert(rvalue);
3319 assert(u);
3320
19f6d710 3321 r = unit_name_printf(u, rvalue, &k);
d79200e2 3322 if (r < 0) {
063c4b1a 3323 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in %s, ignoring: %m", rvalue);
d79200e2 3324 return 0;
19f6d710 3325 }
a016b922 3326
063c4b1a 3327 r = manager_load_unit(u->manager, k, NULL, &error, &slice);
a016b922 3328 if (r < 0) {
063c4b1a 3329 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to load slice unit %s, ignoring: %s", k, bus_error_message(&error, r));
a016b922
LP
3330 return 0;
3331 }
3332
d79200e2
LP
3333 r = unit_set_slice(u, slice);
3334 if (r < 0) {
063c4b1a 3335 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to assign slice %s to unit %s, ignoring: %m", slice->id, u->id);
a016b922
LP
3336 return 0;
3337 }
3338
a016b922
LP
3339 return 0;
3340}
3341
b2f8b02e
LP
3342int config_parse_cpu_quota(
3343 const char *unit,
3344 const char *filename,
3345 unsigned line,
3346 const char *section,
3347 unsigned section_line,
3348 const char *lvalue,
3349 int ltype,
3350 const char *rvalue,
3351 void *data,
3352 void *userdata) {
3353
3354 CGroupContext *c = data;
9184ca48 3355 int r;
b2f8b02e
LP
3356
3357 assert(filename);
3358 assert(lvalue);
3359 assert(rvalue);
3360
3361 if (isempty(rvalue)) {
3a43da28 3362 c->cpu_quota_per_sec_usec = USEC_INFINITY;
b2f8b02e
LP
3363 return 0;
3364 }
3365
f806dfd3 3366 r = parse_permille_unbounded(rvalue);
9184ca48 3367 if (r <= 0) {
063c4b1a 3368 log_syntax(unit, LOG_ERR, filename, line, r, "Invalid CPU quota '%s', ignoring.", rvalue);
9a054909 3369 return 0;
b2f8b02e
LP
3370 }
3371
f806dfd3 3372 c->cpu_quota_per_sec_usec = ((usec_t) r * USEC_PER_SEC) / 1000U;
b2f8b02e
LP
3373 return 0;
3374}
3375
0b8d3075 3376int config_parse_allowed_cpus(
047f5d63
PH
3377 const char *unit,
3378 const char *filename,
3379 unsigned line,
3380 const char *section,
3381 unsigned section_line,
3382 const char *lvalue,
3383 int ltype,
3384 const char *rvalue,
3385 void *data,
3386 void *userdata) {
3387
3388 CGroupContext *c = data;
3389
3390 (void) parse_cpu_set_extend(rvalue, &c->cpuset_cpus, true, unit, filename, line, lvalue);
3391
3392 return 0;
3393}
3394
0b8d3075 3395int config_parse_allowed_mems(
047f5d63
PH
3396 const char *unit,
3397 const char *filename,
3398 unsigned line,
3399 const char *section,
3400 unsigned section_line,
3401 const char *lvalue,
3402 int ltype,
3403 const char *rvalue,
3404 void *data,
3405 void *userdata) {
3406
3407 CGroupContext *c = data;
3408
3409 (void) parse_cpu_set_extend(rvalue, &c->cpuset_mems, true, unit, filename, line, lvalue);
3410
3411 return 0;
3412}
3413
4ad49000
LP
3414int config_parse_memory_limit(
3415 const char *unit,
3416 const char *filename,
3417 unsigned line,
3418 const char *section,
71a61510 3419 unsigned section_line,
4ad49000
LP
3420 const char *lvalue,
3421 int ltype,
3422 const char *rvalue,
3423 void *data,
3424 void *userdata) {
3425
3426 CGroupContext *c = data;
da4d897e 3427 uint64_t bytes = CGROUP_LIMIT_MAX;
4ad49000
LP
3428 int r;
3429
db2b8d2e
MK
3430 if (STR_IN_SET(lvalue, "DefaultMemoryLow",
3431 "DefaultMemoryMin",
3432 "MemoryLow",
3433 "MemoryMin"))
3434 bytes = CGROUP_LIMIT_MIN;
3435
e57c9ce1 3436 if (!isempty(rvalue) && !streq(rvalue, "infinity")) {
875ae566 3437
f806dfd3 3438 r = parse_permille(rvalue);
875ae566
LP
3439 if (r < 0) {
3440 r = parse_size(rvalue, 1024, &bytes);
3441 if (r < 0) {
063c4b1a 3442 log_syntax(unit, LOG_ERR, filename, line, r, "Invalid memory limit '%s', ignoring: %m", rvalue);
875ae566
LP
3443 return 0;
3444 }
3445 } else
f806dfd3 3446 bytes = physical_memory_scale(r, 1000U);
875ae566 3447
906bdbf5 3448 if (bytes >= UINT64_MAX ||
22bf131b 3449 (bytes <= 0 && !STR_IN_SET(lvalue, "MemorySwapMax", "MemoryLow", "MemoryMin", "DefaultMemoryLow", "DefaultMemoryMin"))) {
063c4b1a 3450 log_syntax(unit, LOG_ERR, filename, line, 0, "Memory limit '%s' out of range, ignoring.", rvalue);
da4d897e
TH
3451 return 0;
3452 }
4ad49000
LP
3453 }
3454
c52db42b 3455 if (streq(lvalue, "DefaultMemoryLow")) {
db2b8d2e 3456 c->default_memory_low = bytes;
c52db42b 3457 c->default_memory_low_set = true;
7ad5439e 3458 } else if (streq(lvalue, "DefaultMemoryMin")) {
db2b8d2e 3459 c->default_memory_min = bytes;
7ad5439e 3460 c->default_memory_min_set = true;
7ad5439e 3461 } else if (streq(lvalue, "MemoryMin")) {
48422635 3462 c->memory_min = bytes;
311a0e2e 3463 c->memory_min_set = true;
7ad5439e 3464 } else if (streq(lvalue, "MemoryLow")) {
da4d897e 3465 c->memory_low = bytes;
311a0e2e 3466 c->memory_low_set = true;
c52db42b 3467 } else if (streq(lvalue, "MemoryHigh"))
da4d897e
TH
3468 c->memory_high = bytes;
3469 else if (streq(lvalue, "MemoryMax"))
3470 c->memory_max = bytes;
96e131ea
WC
3471 else if (streq(lvalue, "MemorySwapMax"))
3472 c->memory_swap_max = bytes;
3473 else if (streq(lvalue, "MemoryLimit"))
da4d897e 3474 c->memory_limit = bytes;
96e131ea
WC
3475 else
3476 return -EINVAL;
4ad49000 3477
4ad49000
LP
3478 return 0;
3479}
3480
03a7b521
LP
3481int config_parse_tasks_max(
3482 const char *unit,
3483 const char *filename,
3484 unsigned line,
3485 const char *section,
3486 unsigned section_line,
3487 const char *lvalue,
3488 int ltype,
3489 const char *rvalue,
3490 void *data,
3491 void *userdata) {
3492
47538b76 3493 const Unit *u = userdata;
3a0f06c4
ZJS
3494 TasksMax *tasks_max = data;
3495 uint64_t v;
03a7b521
LP
3496 int r;
3497
f5058264 3498 if (isempty(rvalue)) {
3a0f06c4 3499 *tasks_max = u ? u->manager->default_tasks_max : TASKS_MAX_UNSET;
f5058264
TH
3500 return 0;
3501 }
3502
3503 if (streq(rvalue, "infinity")) {
3a0f06c4 3504 *tasks_max = TASKS_MAX_UNSET;
03a7b521
LP
3505 return 0;
3506 }
3507
f806dfd3 3508 r = parse_permille(rvalue);
3a0f06c4
ZJS
3509 if (r >= 0)
3510 *tasks_max = (TasksMax) { r, 1000U }; /* r‰ */
3511 else {
f5058264 3512 r = safe_atou64(rvalue, &v);
83f8e808 3513 if (r < 0) {
063c4b1a 3514 log_syntax(unit, LOG_ERR, filename, line, r, "Invalid maximum tasks value '%s', ignoring: %m", rvalue);
83f8e808
LP
3515 return 0;
3516 }
83f8e808 3517
3a0f06c4
ZJS
3518 if (v <= 0 || v >= UINT64_MAX) {
3519 log_syntax(unit, LOG_ERR, filename, line, 0, "Maximum tasks value '%s' out of range, ignoring.", rvalue);
3520 return 0;
3521 }
3522
3523 *tasks_max = (TasksMax) { v };
03a7b521
LP
3524 }
3525
3526 return 0;
3527}
3528
02638280
LP
3529int config_parse_delegate(
3530 const char *unit,
3531 const char *filename,
3532 unsigned line,
3533 const char *section,
3534 unsigned section_line,
3535 const char *lvalue,
3536 int ltype,
3537 const char *rvalue,
3538 void *data,
3539 void *userdata) {
3540
3541 CGroupContext *c = data;
ecae73d7 3542 UnitType t;
02638280
LP
3543 int r;
3544
ecae73d7
ZJS
3545 t = unit_name_to_type(unit);
3546 assert(t != _UNIT_TYPE_INVALID);
3547
3548 if (!unit_vtable[t]->can_delegate) {
3549 log_syntax(unit, LOG_ERR, filename, line, 0, "Delegate= setting not supported for this unit type, ignoring.");
3550 return 0;
3551 }
3552
02638280
LP
3553 /* We either accept a boolean value, which may be used to turn on delegation for all controllers, or turn it
3554 * off for all. Or it takes a list of controller names, in which case we add the specified controllers to the
3555 * mask to delegate. */
3556
1bdfc7b9 3557 if (isempty(rvalue)) {
d48013f8
YW
3558 /* An empty string resets controllers and set Delegate=yes. */
3559 c->delegate = true;
1bdfc7b9
YW
3560 c->delegate_controllers = 0;
3561 return 0;
3562 }
3563
02638280
LP
3564 r = parse_boolean(rvalue);
3565 if (r < 0) {
3566 const char *p = rvalue;
3567 CGroupMask mask = 0;
3568
3569 for (;;) {
3570 _cleanup_free_ char *word = NULL;
3571 CGroupController cc;
3572
4ec85141 3573 r = extract_first_word(&p, &word, NULL, EXTRACT_UNQUOTE);
02638280
LP
3574 if (r == 0)
3575 break;
3576 if (r == -ENOMEM)
3577 return log_oom();
3578 if (r < 0) {
3579 log_syntax(unit, LOG_ERR, filename, line, r, "Invalid syntax, ignoring: %s", rvalue);
ff1b8455 3580 return 0;
02638280
LP
3581 }
3582
3583 cc = cgroup_controller_from_string(word);
3584 if (cc < 0) {
063c4b1a 3585 log_syntax(unit, LOG_ERR, filename, line, r, "Invalid controller name '%s', ignoring", word);
02638280
LP
3586 continue;
3587 }
3588
3589 mask |= CGROUP_CONTROLLER_TO_MASK(cc);
3590 }
3591
3592 c->delegate = true;
3593 c->delegate_controllers |= mask;
3594
3595 } else if (r > 0) {
3596 c->delegate = true;
3597 c->delegate_controllers = _CGROUP_MASK_ALL;
3598 } else {
3599 c->delegate = false;
3600 c->delegate_controllers = 0;
3601 }
3602
3603 return 0;
3604}
3605
4ad49000
LP
3606int config_parse_device_allow(
3607 const char *unit,
3608 const char *filename,
3609 unsigned line,
3610 const char *section,
71a61510 3611 unsigned section_line,
4ad49000
LP
3612 const char *lvalue,
3613 int ltype,
3614 const char *rvalue,
3615 void *data,
3616 void *userdata) {
3617
c9f620bf 3618 _cleanup_free_ char *path = NULL, *resolved = NULL;
4ad49000 3619 CGroupContext *c = data;
c9f620bf 3620 const char *p = rvalue;
1116e14c 3621 int r;
4ad49000
LP
3622
3623 if (isempty(rvalue)) {
3624 while (c->device_allow)
3625 cgroup_context_free_device_allow(c, c->device_allow);
3626
3627 return 0;
3628 }
3629
4ec85141 3630 r = extract_first_word(&p, &path, NULL, EXTRACT_UNQUOTE);
c9f620bf
YW
3631 if (r == -ENOMEM)
3632 return log_oom();
508f63b4 3633 if (r < 0) {
1116e14c 3634 log_syntax(unit, LOG_WARNING, filename, line, r,
c9f620bf
YW
3635 "Invalid syntax, ignoring: %s", rvalue);
3636 return 0;
3637 }
3638 if (r == 0) {
3639 log_syntax(unit, LOG_WARNING, filename, line, 0,
3640 "Failed to extract device path and rights from '%s', ignoring.", rvalue);
20d52ab6 3641 return 0;
1116e14c
NBS
3642 }
3643
c9f620bf
YW
3644 r = unit_full_printf(userdata, path, &resolved);
3645 if (r < 0) {
3646 log_syntax(unit, LOG_WARNING, filename, line, r,
3647 "Failed to resolve unit specifiers in '%s', ignoring: %m", path);
4ad49000
LP
3648 return 0;
3649 }
3650
49fe5c09 3651 if (!STARTSWITH_SET(resolved, "block-", "char-")) {
2f4d31c1 3652
57e84e75
LP
3653 r = path_simplify_and_warn(resolved, 0, unit, filename, line, lvalue);
3654 if (r < 0)
3655 return 0;
3656
3657 if (!valid_device_node_path(resolved)) {
3658 log_syntax(unit, LOG_ERR, filename, line, 0, "Invalid device node path '%s', ignoring.", resolved);
3659 return 0;
3660 }
c9f620bf 3661 }
4ad49000 3662
c9f620bf
YW
3663 if (!isempty(p) && !in_charset(p, "rwm")) {
3664 log_syntax(unit, LOG_ERR, filename, line, 0, "Invalid device rights '%s', ignoring.", p);
4ad49000
LP
3665 return 0;
3666 }
3667
fd870bac 3668 return cgroup_add_device_allow(c, resolved, p);
4ad49000
LP
3669}
3670
13c31542
TH
3671int config_parse_io_device_weight(
3672 const char *unit,
3673 const char *filename,
3674 unsigned line,
3675 const char *section,
3676 unsigned section_line,
3677 const char *lvalue,
3678 int ltype,
3679 const char *rvalue,
3680 void *data,
3681 void *userdata) {
3682
c9f620bf 3683 _cleanup_free_ char *path = NULL, *resolved = NULL;
13c31542
TH
3684 CGroupIODeviceWeight *w;
3685 CGroupContext *c = data;
c9f620bf 3686 const char *p = rvalue;
13c31542 3687 uint64_t u;
13c31542
TH
3688 int r;
3689
3690 assert(filename);
3691 assert(lvalue);
3692 assert(rvalue);
3693
3694 if (isempty(rvalue)) {
3695 while (c->io_device_weights)
3696 cgroup_context_free_io_device_weight(c, c->io_device_weights);
3697
3698 return 0;
3699 }
3700
4ec85141 3701 r = extract_first_word(&p, &path, NULL, EXTRACT_UNQUOTE);
c9f620bf
YW
3702 if (r == -ENOMEM)
3703 return log_oom();
3704 if (r < 0) {
3705 log_syntax(unit, LOG_WARNING, filename, line, r,
3706 "Invalid syntax, ignoring: %s", rvalue);
3707 return 0;
3708 }
3709 if (r == 0 || isempty(p)) {
3710 log_syntax(unit, LOG_WARNING, filename, line, 0,
3711 "Failed to extract device path and weight from '%s', ignoring.", rvalue);
13c31542
TH
3712 return 0;
3713 }
3714
c9f620bf
YW
3715 r = unit_full_printf(userdata, path, &resolved);
3716 if (r < 0) {
3717 log_syntax(unit, LOG_WARNING, filename, line, r,
3718 "Failed to resolve unit specifiers in '%s', ignoring: %m", path);
3719 return 0;
3720 }
13c31542 3721
2f4d31c1
YW
3722 r = path_simplify_and_warn(resolved, 0, unit, filename, line, lvalue);
3723 if (r < 0)
3724 return 0;
3725
c9f620bf 3726 r = cg_weight_parse(p, &u);
13c31542 3727 if (r < 0) {
c9f620bf 3728 log_syntax(unit, LOG_ERR, filename, line, r, "IO weight '%s' invalid, ignoring: %m", p);
13c31542
TH
3729 return 0;
3730 }
3731
3732 assert(u != CGROUP_WEIGHT_INVALID);
3733
3734 w = new0(CGroupIODeviceWeight, 1);
3735 if (!w)
3736 return log_oom();
3737
c9f620bf 3738 w->path = TAKE_PTR(resolved);
13c31542
TH
3739 w->weight = u;
3740
3741 LIST_PREPEND(device_weights, c->io_device_weights, w);
3742 return 0;
3743}
3744
6ae4283c
TH
3745int config_parse_io_device_latency(
3746 const char *unit,
3747 const char *filename,
3748 unsigned line,
3749 const char *section,
3750 unsigned section_line,
3751 const char *lvalue,
3752 int ltype,
3753 const char *rvalue,
3754 void *data,
3755 void *userdata) {
3756
3757 _cleanup_free_ char *path = NULL, *resolved = NULL;
3758 CGroupIODeviceLatency *l;
3759 CGroupContext *c = data;
3760 const char *p = rvalue;
3761 usec_t usec;
3762 int r;
3763
3764 assert(filename);
3765 assert(lvalue);
3766 assert(rvalue);
3767
3768 if (isempty(rvalue)) {
3769 while (c->io_device_latencies)
3770 cgroup_context_free_io_device_latency(c, c->io_device_latencies);
3771
3772 return 0;
3773 }
3774
4ec85141 3775 r = extract_first_word(&p, &path, NULL, EXTRACT_UNQUOTE);
6ae4283c
TH
3776 if (r == -ENOMEM)
3777 return log_oom();
3778 if (r < 0) {
3779 log_syntax(unit, LOG_WARNING, filename, line, r,
3780 "Invalid syntax, ignoring: %s", rvalue);
3781 return 0;
3782 }
3783 if (r == 0 || isempty(p)) {
3784 log_syntax(unit, LOG_WARNING, filename, line, 0,
3785 "Failed to extract device path and latency from '%s', ignoring.", rvalue);
3786 return 0;
3787 }
3788
3789 r = unit_full_printf(userdata, path, &resolved);
3790 if (r < 0) {
3791 log_syntax(unit, LOG_WARNING, filename, line, r,
3792 "Failed to resolve unit specifiers in '%s', ignoring: %m", path);
3793 return 0;
3794 }
3795
3796 r = path_simplify_and_warn(resolved, 0, unit, filename, line, lvalue);
3797 if (r < 0)
3798 return 0;
3799
3800 if (parse_sec(p, &usec) < 0) {
3801 log_syntax(unit, LOG_ERR, filename, line, 0, "Failed to parse timer value, ignoring: %s", p);
3802 return 0;
3803 }
3804
3805 l = new0(CGroupIODeviceLatency, 1);
3806 if (!l)
3807 return log_oom();
3808
3809 l->path = TAKE_PTR(resolved);
3810 l->target_usec = usec;
3811
3812 LIST_PREPEND(device_latencies, c->io_device_latencies, l);
3813 return 0;
3814}
3815
13c31542
TH
3816int config_parse_io_limit(
3817 const char *unit,
3818 const char *filename,
3819 unsigned line,
3820 const char *section,
3821 unsigned section_line,
3822 const char *lvalue,
3823 int ltype,
3824 const char *rvalue,
3825 void *data,
3826 void *userdata) {
3827
c9f620bf 3828 _cleanup_free_ char *path = NULL, *resolved = NULL;
13c31542
TH
3829 CGroupIODeviceLimit *l = NULL, *t;
3830 CGroupContext *c = data;
9be57249 3831 CGroupIOLimitType type;
c9f620bf 3832 const char *p = rvalue;
13c31542 3833 uint64_t num;
13c31542
TH
3834 int r;
3835
3836 assert(filename);
3837 assert(lvalue);
3838 assert(rvalue);
3839
9be57249
TH
3840 type = cgroup_io_limit_type_from_string(lvalue);
3841 assert(type >= 0);
13c31542
TH
3842
3843 if (isempty(rvalue)) {
3844 LIST_FOREACH(device_limits, l, c->io_device_limits)
9be57249 3845 l->limits[type] = cgroup_io_limit_defaults[type];
13c31542
TH
3846 return 0;
3847 }
3848
4ec85141 3849 r = extract_first_word(&p, &path, NULL, EXTRACT_UNQUOTE);
c9f620bf
YW
3850 if (r == -ENOMEM)
3851 return log_oom();
3852 if (r < 0) {
3853 log_syntax(unit, LOG_WARNING, filename, line, r,
3854 "Invalid syntax, ignoring: %s", rvalue);
3855 return 0;
3856 }
3857 if (r == 0 || isempty(p)) {
3858 log_syntax(unit, LOG_WARNING, filename, line, 0,
3859 "Failed to extract device node and bandwidth from '%s', ignoring.", rvalue);
13c31542
TH
3860 return 0;
3861 }
3862
c9f620bf
YW
3863 r = unit_full_printf(userdata, path, &resolved);
3864 if (r < 0) {
3865 log_syntax(unit, LOG_WARNING, filename, line, r,
3866 "Failed to resolve unit specifiers in '%s', ignoring: %m", path);
3867 return 0;
3868 }
13c31542 3869
2f4d31c1
YW
3870 r = path_simplify_and_warn(resolved, 0, unit, filename, line, lvalue);
3871 if (r < 0)
3872 return 0;
3873
9d5e9b4a 3874 if (streq("infinity", p))
13c31542 3875 num = CGROUP_LIMIT_MAX;
9d5e9b4a 3876 else {
c9f620bf 3877 r = parse_size(p, 1000, &num);
13c31542 3878 if (r < 0 || num <= 0) {
c9f620bf 3879 log_syntax(unit, LOG_ERR, filename, line, 0, "Invalid IO limit '%s', ignoring.", p);
13c31542
TH
3880 return 0;
3881 }
3882 }
3883
3884 LIST_FOREACH(device_limits, t, c->io_device_limits) {
c9f620bf 3885 if (path_equal(resolved, t->path)) {
13c31542
TH
3886 l = t;
3887 break;
3888 }
3889 }
3890
3891 if (!l) {
9be57249
TH
3892 CGroupIOLimitType ttype;
3893
13c31542
TH
3894 l = new0(CGroupIODeviceLimit, 1);
3895 if (!l)
3896 return log_oom();
3897
c9f620bf 3898 l->path = TAKE_PTR(resolved);
9be57249
TH
3899 for (ttype = 0; ttype < _CGROUP_IO_LIMIT_TYPE_MAX; ttype++)
3900 l->limits[ttype] = cgroup_io_limit_defaults[ttype];
13c31542
TH
3901
3902 LIST_PREPEND(device_limits, c->io_device_limits, l);
3903 }
3904
9be57249 3905 l->limits[type] = num;
13c31542
TH
3906
3907 return 0;
3908}
3909
8e7076ca
LP
3910int config_parse_blockio_device_weight(
3911 const char *unit,
3912 const char *filename,
3913 unsigned line,
3914 const char *section,
71a61510 3915 unsigned section_line,
8e7076ca
LP
3916 const char *lvalue,
3917 int ltype,
3918 const char *rvalue,
3919 void *data,
3920 void *userdata) {
3921
c9f620bf 3922 _cleanup_free_ char *path = NULL, *resolved = NULL;
8e7076ca 3923 CGroupBlockIODeviceWeight *w;
4ad49000 3924 CGroupContext *c = data;
c9f620bf 3925 const char *p = rvalue;
d53d9474 3926 uint64_t u;
4ad49000
LP
3927 int r;
3928
3929 assert(filename);
3930 assert(lvalue);
3931 assert(rvalue);
3932
3933 if (isempty(rvalue)) {
4ad49000
LP
3934 while (c->blockio_device_weights)
3935 cgroup_context_free_blockio_device_weight(c, c->blockio_device_weights);
3936
3937 return 0;
3938 }
3939
4ec85141 3940 r = extract_first_word(&p, &path, NULL, EXTRACT_UNQUOTE);
c9f620bf
YW
3941 if (r == -ENOMEM)
3942 return log_oom();
3943 if (r < 0) {
3944 log_syntax(unit, LOG_WARNING, filename, line, r,
3945 "Invalid syntax, ignoring: %s", rvalue);
3946 return 0;
3947 }
3948 if (r == 0 || isempty(p)) {
3949 log_syntax(unit, LOG_WARNING, filename, line, 0,
3950 "Failed to extract device node and weight from '%s', ignoring.", rvalue);
8e7076ca
LP
3951 return 0;
3952 }
4ad49000 3953
c9f620bf
YW
3954 r = unit_full_printf(userdata, path, &resolved);
3955 if (r < 0) {
3956 log_syntax(unit, LOG_WARNING, filename, line, r,
3957 "Failed to resolve unit specifiers in '%s', ignoring: %m", path);
3958 return 0;
3959 }
4ad49000 3960
2f4d31c1
YW
3961 r = path_simplify_and_warn(resolved, 0, unit, filename, line, lvalue);
3962 if (r < 0)
3963 return 0;
3964
c9f620bf 3965 r = cg_blkio_weight_parse(p, &u);
d53d9474 3966 if (r < 0) {
c9f620bf 3967 log_syntax(unit, LOG_ERR, filename, line, r, "Invalid block IO weight '%s', ignoring: %m", p);
4ad49000
LP
3968 return 0;
3969 }
3970
d53d9474
LP
3971 assert(u != CGROUP_BLKIO_WEIGHT_INVALID);
3972
8e7076ca
LP
3973 w = new0(CGroupBlockIODeviceWeight, 1);
3974 if (!w)
3975 return log_oom();
4ad49000 3976
c9f620bf 3977 w->path = TAKE_PTR(resolved);
d53d9474 3978 w->weight = u;
4ad49000 3979
71fda00f 3980 LIST_PREPEND(device_weights, c->blockio_device_weights, w);
4ad49000
LP
3981 return 0;
3982}
3983
3984int config_parse_blockio_bandwidth(
3985 const char *unit,
3986 const char *filename,
3987 unsigned line,
3988 const char *section,
71a61510 3989 unsigned section_line,
4ad49000
LP
3990 const char *lvalue,
3991 int ltype,
3992 const char *rvalue,
3993 void *data,
3994 void *userdata) {
3995
c9f620bf 3996 _cleanup_free_ char *path = NULL, *resolved = NULL;
979d0311 3997 CGroupBlockIODeviceBandwidth *b = NULL, *t;
4ad49000 3998 CGroupContext *c = data;
c9f620bf 3999 const char *p = rvalue;
59f448cf 4000 uint64_t bytes;
47c0980d 4001 bool read;
4ad49000
LP
4002 int r;
4003
4004 assert(filename);
4005 assert(lvalue);
4006 assert(rvalue);
4007
47c0980d
G
4008 read = streq("BlockIOReadBandwidth", lvalue);
4009
4ad49000 4010 if (isempty(rvalue)) {
979d0311
TH
4011 LIST_FOREACH(device_bandwidths, b, c->blockio_device_bandwidths) {
4012 b->rbps = CGROUP_LIMIT_MAX;
4013 b->wbps = CGROUP_LIMIT_MAX;
4014 }
4ad49000
LP
4015 return 0;
4016 }
4017
4ec85141 4018 r = extract_first_word(&p, &path, NULL, EXTRACT_UNQUOTE);
c9f620bf
YW
4019 if (r == -ENOMEM)
4020 return log_oom();
4021 if (r < 0) {
4022 log_syntax(unit, LOG_WARNING, filename, line, r,
4023 "Invalid syntax, ignoring: %s", rvalue);
4024 return 0;
4025 }
4026 if (r == 0 || isempty(p)) {
4027 log_syntax(unit, LOG_WARNING, filename, line, 0,
4028 "Failed to extract device node and bandwidth from '%s', ignoring.", rvalue);
4ad49000
LP
4029 return 0;
4030 }
4031
c9f620bf
YW
4032 r = unit_full_printf(userdata, path, &resolved);
4033 if (r < 0) {
4034 log_syntax(unit, LOG_WARNING, filename, line, r,
4035 "Failed to resolve unit specifiers in '%s', ignoring: %m", path);
4036 return 0;
4037 }
4ad49000 4038
2f4d31c1
YW
4039 r = path_simplify_and_warn(resolved, 0, unit, filename, line, lvalue);
4040 if (r < 0)
4041 return 0;
4042
c9f620bf 4043 r = parse_size(p, 1000, &bytes);
4ad49000 4044 if (r < 0 || bytes <= 0) {
c9f620bf 4045 log_syntax(unit, LOG_ERR, filename, line, r, "Invalid Block IO Bandwidth '%s', ignoring.", p);
4ad49000
LP
4046 return 0;
4047 }
4048
979d0311 4049 LIST_FOREACH(device_bandwidths, t, c->blockio_device_bandwidths) {
c9f620bf 4050 if (path_equal(resolved, t->path)) {
979d0311
TH
4051 b = t;
4052 break;
4053 }
4054 }
4ad49000 4055
979d0311
TH
4056 if (!t) {
4057 b = new0(CGroupBlockIODeviceBandwidth, 1);
4058 if (!b)
4059 return log_oom();
4060
c9f620bf 4061 b->path = TAKE_PTR(resolved);
979d0311
TH
4062 b->rbps = CGROUP_LIMIT_MAX;
4063 b->wbps = CGROUP_LIMIT_MAX;
4064
4065 LIST_PREPEND(device_bandwidths, c->blockio_device_bandwidths, b);
4066 }
4ad49000 4067
979d0311
TH
4068 if (read)
4069 b->rbps = bytes;
4070 else
4071 b->wbps = bytes;
4ad49000
LP
4072
4073 return 0;
4074}
4075
d420282b
LP
4076int config_parse_job_mode_isolate(
4077 const char *unit,
4078 const char *filename,
4079 unsigned line,
4080 const char *section,
4081 unsigned section_line,
4082 const char *lvalue,
4083 int ltype,
4084 const char *rvalue,
4085 void *data,
4086 void *userdata) {
4087
4088 JobMode *m = data;
4089 int r;
4090
4091 assert(filename);
4092 assert(lvalue);
4093 assert(rvalue);
4094
4095 r = parse_boolean(rvalue);
4096 if (r < 0) {
12ca818f 4097 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse boolean, ignoring: %s", rvalue);
d420282b
LP
4098 return 0;
4099 }
4100
8ab39347
YW
4101 log_notice("%s is deprecated. Please use OnFailureJobMode= instead", lvalue);
4102
d420282b
LP
4103 *m = r ? JOB_ISOLATE : JOB_REPLACE;
4104 return 0;
4105}
4106
3536f49e 4107int config_parse_exec_directories(
e66cf1a3
LP
4108 const char *unit,
4109 const char *filename,
4110 unsigned line,
4111 const char *section,
4112 unsigned section_line,
4113 const char *lvalue,
4114 int ltype,
4115 const char *rvalue,
4116 void *data,
4117 void *userdata) {
4118
a2a5291b 4119 char***rt = data;
47538b76 4120 const Unit *u = userdata;
035fe294 4121 const char *p;
e66cf1a3
LP
4122 int r;
4123
4124 assert(filename);
4125 assert(lvalue);
4126 assert(rvalue);
4127 assert(data);
4128
4129 if (isempty(rvalue)) {
4130 /* Empty assignment resets the list */
6796073e 4131 *rt = strv_free(*rt);
e66cf1a3
LP
4132 return 0;
4133 }
4134
035fe294
ZJS
4135 for (p = rvalue;;) {
4136 _cleanup_free_ char *word = NULL, *k = NULL;
e66cf1a3 4137
4ec85141 4138 r = extract_first_word(&p, &word, NULL, EXTRACT_UNQUOTE);
035fe294 4139 if (r == -ENOMEM)
e66cf1a3 4140 return log_oom();
035fe294
ZJS
4141 if (r < 0) {
4142 log_syntax(unit, LOG_WARNING, filename, line, r,
4143 "Invalid syntax, ignoring: %s", rvalue);
4144 return 0;
4145 }
091e9efe
LP
4146 if (r == 0)
4147 return 0;
e66cf1a3 4148
18913df9 4149 r = unit_full_printf(u, word, &k);
9b5864d9 4150 if (r < 0) {
035fe294 4151 log_syntax(unit, LOG_ERR, filename, line, r,
063c4b1a 4152 "Failed to resolve unit specifiers in \"%s\", ignoring: %m", word);
9b5864d9
MG
4153 continue;
4154 }
4155
2f4d31c1
YW
4156 r = path_simplify_and_warn(k, PATH_CHECK_RELATIVE, unit, filename, line, lvalue);
4157 if (r < 0)
e8865688 4158 continue;
e8865688
LP
4159
4160 if (path_startswith(k, "private")) {
4161 log_syntax(unit, LOG_ERR, filename, line, 0,
4605de11 4162 "%s= path can't be 'private', ignoring assignment: %s", lvalue, word);
e66cf1a3
LP
4163 continue;
4164 }
4165
035fe294 4166 r = strv_push(rt, k);
e66cf1a3
LP
4167 if (r < 0)
4168 return log_oom();
035fe294 4169 k = NULL;
e66cf1a3 4170 }
e66cf1a3
LP
4171}
4172
3af00fb8
LP
4173int config_parse_set_status(
4174 const char *unit,
4175 const char *filename,
4176 unsigned line,
4177 const char *section,
4178 unsigned section_line,
4179 const char *lvalue,
4180 int ltype,
4181 const char *rvalue,
4182 void *data,
4183 void *userdata) {
4184
3af00fb8 4185 size_t l;
a2a5291b 4186 const char *word, *state;
3af00fb8
LP
4187 int r;
4188 ExitStatusSet *status_set = data;
4189
4190 assert(filename);
4191 assert(lvalue);
4192 assert(rvalue);
4193 assert(data);
4194
3e2d435b 4195 /* Empty assignment resets the list */
3af00fb8 4196 if (isempty(rvalue)) {
3e2d435b 4197 exit_status_set_free(status_set);
3af00fb8
LP
4198 return 0;
4199 }
4200
a2a5291b 4201 FOREACH_WORD(word, l, rvalue, state) {
3af00fb8 4202 _cleanup_free_ char *temp;
23d5dd16 4203 Bitmap *bitmap;
3af00fb8 4204
a2a5291b 4205 temp = strndup(word, l);
3af00fb8
LP
4206 if (!temp)
4207 return log_oom();
4208
2e2ed880
ZJS
4209 /* We need to call exit_status_from_string() first, because we want
4210 * to parse numbers as exit statuses, not signals. */
3af00fb8 4211
2e2ed880
ZJS
4212 r = exit_status_from_string(temp);
4213 if (r >= 0) {
4214 assert(r >= 0 && r < 256);
4215 bitmap = &status_set->status;
3af00fb8 4216 } else {
2e2ed880
ZJS
4217 r = signal_from_string(temp);
4218
4219 if (r <= 0) {
4220 log_syntax(unit, LOG_ERR, filename, line, 0,
4221 "Failed to parse value, ignoring: %s", word);
1e2fd62d 4222 continue;
3af00fb8 4223 }
2e2ed880 4224 bitmap = &status_set->signal;
3af00fb8 4225 }
1e2fd62d 4226
2e2ed880 4227 r = bitmap_set(bitmap, r);
063c4b1a 4228 if (r < 0)
2e2ed880 4229 return log_error_errno(r, "Failed to set signal or status %s: %m", word);
3af00fb8 4230 }
b2fadec6 4231 if (!isempty(state))
12ca818f 4232 log_syntax(unit, LOG_ERR, filename, line, 0, "Trailing garbage, ignoring.");
3af00fb8
LP
4233
4234 return 0;
4235}
4236
94828d2d
LP
4237int config_parse_namespace_path_strv(
4238 const char *unit,
4239 const char *filename,
4240 unsigned line,
4241 const char *section,
4242 unsigned section_line,
4243 const char *lvalue,
4244 int ltype,
4245 const char *rvalue,
4246 void *data,
4247 void *userdata) {
4248
47538b76 4249 const Unit *u = userdata;
a2a5291b 4250 char*** sv = data;
063c4b1a 4251 const char *p = rvalue;
94828d2d
LP
4252 int r;
4253
4254 assert(filename);
4255 assert(lvalue);
4256 assert(rvalue);
4257 assert(data);
4258
4259 if (isempty(rvalue)) {
4260 /* Empty assignment resets the list */
6796073e 4261 *sv = strv_free(*sv);
94828d2d
LP
4262 return 0;
4263 }
4264
727f76d7 4265 for (;;) {
7b07e993 4266 _cleanup_free_ char *word = NULL, *resolved = NULL, *joined = NULL;
20b7a007
LP
4267 const char *w;
4268 bool ignore_enoent = false, shall_prefix = false;
94828d2d 4269
4ec85141 4270 r = extract_first_word(&p, &word, NULL, EXTRACT_UNQUOTE);
0293a7a8
EV
4271 if (r == 0)
4272 break;
4273 if (r == -ENOMEM)
4274 return log_oom();
727f76d7 4275 if (r < 0) {
7b07e993 4276 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to extract first word, ignoring: %s", rvalue);
727f76d7
EV
4277 return 0;
4278 }
94828d2d 4279
20b7a007
LP
4280 w = word;
4281 if (startswith(w, "-")) {
4282 ignore_enoent = true;
4283 w++;
4284 }
4285 if (startswith(w, "+")) {
4286 shall_prefix = true;
4287 w++;
4288 }
7b07e993 4289
20b7a007 4290 r = unit_full_printf(u, w, &resolved);
7b07e993 4291 if (r < 0) {
063c4b1a 4292 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in %s: %m", w);
94828d2d
LP
4293 continue;
4294 }
4295
2f4d31c1
YW
4296 r = path_simplify_and_warn(resolved, PATH_CHECK_ABSOLUTE, unit, filename, line, lvalue);
4297 if (r < 0)
7b07e993 4298 continue;
94828d2d 4299
20b7a007
LP
4300 joined = strjoin(ignore_enoent ? "-" : "",
4301 shall_prefix ? "+" : "",
4302 resolved);
7b07e993
LP
4303
4304 r = strv_push(sv, joined);
94828d2d
LP
4305 if (r < 0)
4306 return log_oom();
4307
7b07e993 4308 joined = NULL;
94828d2d
LP
4309 }
4310
4311 return 0;
4312}
4313
2abd4e38
YW
4314int config_parse_temporary_filesystems(
4315 const char *unit,
4316 const char *filename,
4317 unsigned line,
4318 const char *section,
4319 unsigned section_line,
4320 const char *lvalue,
4321 int ltype,
4322 const char *rvalue,
4323 void *data,
4324 void *userdata) {
4325
47538b76 4326 const Unit *u = userdata;
2abd4e38 4327 ExecContext *c = data;
063c4b1a 4328 const char *p = rvalue;
2abd4e38
YW
4329 int r;
4330
4331 assert(filename);
4332 assert(lvalue);
4333 assert(rvalue);
4334 assert(data);
4335
4336 if (isempty(rvalue)) {
4337 /* Empty assignment resets the list */
4338 temporary_filesystem_free_many(c->temporary_filesystems, c->n_temporary_filesystems);
4339 c->temporary_filesystems = NULL;
4340 c->n_temporary_filesystems = 0;
4341 return 0;
4342 }
4343
2abd4e38
YW
4344 for (;;) {
4345 _cleanup_free_ char *word = NULL, *path = NULL, *resolved = NULL;
4346 const char *w;
4347
4ec85141 4348 r = extract_first_word(&p, &word, NULL, EXTRACT_UNQUOTE);
2abd4e38 4349 if (r == 0)
063c4b1a 4350 return 0;
2abd4e38
YW
4351 if (r == -ENOMEM)
4352 return log_oom();
4353 if (r < 0) {
4354 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to extract first word, ignoring: %s", rvalue);
4355 return 0;
4356 }
4357
4358 w = word;
4359 r = extract_first_word(&w, &path, ":", EXTRACT_DONT_COALESCE_SEPARATORS);
063c4b1a
YW
4360 if (r == -ENOMEM)
4361 return log_oom();
4362 if (r < 0) {
4363 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to extract first word, ignoring: %s", word);
4364 continue;
4365 }
4366 if (r == 0) {
4367 log_syntax(unit, LOG_ERR, filename, line, 0, "Invalid syntax, ignoring: %s", word);
4368 continue;
4369 }
2abd4e38
YW
4370
4371 r = unit_full_printf(u, path, &resolved);
4372 if (r < 0) {
063c4b1a 4373 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in %s, ignoring: %m", path);
2abd4e38
YW
4374 continue;
4375 }
4376
2f4d31c1
YW
4377 r = path_simplify_and_warn(resolved, PATH_CHECK_ABSOLUTE, unit, filename, line, lvalue);
4378 if (r < 0)
2abd4e38 4379 continue;
2abd4e38 4380
a26fec24 4381 r = temporary_filesystem_add(&c->temporary_filesystems, &c->n_temporary_filesystems, resolved, w);
6302d1ea 4382 if (r < 0)
2abd4e38 4383 return log_oom();
2abd4e38 4384 }
2abd4e38
YW
4385}
4386
d2d6c096
LP
4387int config_parse_bind_paths(
4388 const char *unit,
4389 const char *filename,
4390 unsigned line,
4391 const char *section,
4392 unsigned section_line,
4393 const char *lvalue,
4394 int ltype,
4395 const char *rvalue,
4396 void *data,
4397 void *userdata) {
4398
4399 ExecContext *c = data;
47538b76 4400 const Unit *u = userdata;
d2d6c096
LP
4401 const char *p;
4402 int r;
4403
4404 assert(filename);
4405 assert(lvalue);
4406 assert(rvalue);
4407 assert(data);
4408
4409 if (isempty(rvalue)) {
4410 /* Empty assignment resets the list */
4411 bind_mount_free_many(c->bind_mounts, c->n_bind_mounts);
4412 c->bind_mounts = NULL;
4413 c->n_bind_mounts = 0;
4414 return 0;
4415 }
4416
4417 p = rvalue;
4418 for (;;) {
4419 _cleanup_free_ char *source = NULL, *destination = NULL;
42d43f21 4420 _cleanup_free_ char *sresolved = NULL, *dresolved = NULL;
d2d6c096
LP
4421 char *s = NULL, *d = NULL;
4422 bool rbind = true, ignore_enoent = false;
4423
4ec85141 4424 r = extract_first_word(&p, &source, ":" WHITESPACE, EXTRACT_UNQUOTE|EXTRACT_DONT_COALESCE_SEPARATORS);
d2d6c096
LP
4425 if (r == 0)
4426 break;
4427 if (r == -ENOMEM)
4428 return log_oom();
4429 if (r < 0) {
2f4d31c1 4430 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse %s, ignoring: %s", lvalue, rvalue);
d2d6c096
LP
4431 return 0;
4432 }
4433
42d43f21
DC
4434 r = unit_full_printf(u, source, &sresolved);
4435 if (r < 0) {
4436 log_syntax(unit, LOG_ERR, filename, line, r,
063c4b1a 4437 "Failed to resolved unit specifiers in \"%s\", ignoring: %m", source);
2f4d31c1 4438 continue;
42d43f21
DC
4439 }
4440
4441 s = sresolved;
d2d6c096
LP
4442 if (s[0] == '-') {
4443 ignore_enoent = true;
4444 s++;
4445 }
4446
2f4d31c1
YW
4447 r = path_simplify_and_warn(s, PATH_CHECK_ABSOLUTE, unit, filename, line, lvalue);
4448 if (r < 0)
4449 continue;
d2d6c096
LP
4450
4451 /* Optionally, the destination is specified. */
4452 if (p && p[-1] == ':') {
4ec85141 4453 r = extract_first_word(&p, &destination, ":" WHITESPACE, EXTRACT_UNQUOTE|EXTRACT_DONT_COALESCE_SEPARATORS);
d2d6c096
LP
4454 if (r == -ENOMEM)
4455 return log_oom();
4456 if (r < 0) {
2f4d31c1 4457 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse %s, ignoring: %s", lvalue, rvalue);
d2d6c096
LP
4458 return 0;
4459 }
4460 if (r == 0) {
2f4d31c1
YW
4461 log_syntax(unit, LOG_ERR, filename, line, 0, "Missing argument after ':', ignoring: %s", s);
4462 continue;
d2d6c096
LP
4463 }
4464
42d43f21
DC
4465 r = unit_full_printf(u, destination, &dresolved);
4466 if (r < 0) {
4467 log_syntax(unit, LOG_ERR, filename, line, r,
4468 "Failed to resolved specifiers in \"%s\", ignoring: %m", destination);
2f4d31c1 4469 continue;
42d43f21
DC
4470 }
4471
2f4d31c1
YW
4472 r = path_simplify_and_warn(dresolved, PATH_CHECK_ABSOLUTE, unit, filename, line, lvalue);
4473 if (r < 0)
4474 continue;
d2d6c096 4475
2f4d31c1 4476 d = dresolved;
d2d6c096
LP
4477
4478 /* Optionally, there's also a short option string specified */
4479 if (p && p[-1] == ':') {
4480 _cleanup_free_ char *options = NULL;
4481
4ec85141 4482 r = extract_first_word(&p, &options, NULL, EXTRACT_UNQUOTE);
d2d6c096
LP
4483 if (r == -ENOMEM)
4484 return log_oom();
4485 if (r < 0) {
4486 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse %s: %s", lvalue, rvalue);
4487 return 0;
4488 }
4489
4490 if (isempty(options) || streq(options, "rbind"))
4491 rbind = true;
4492 else if (streq(options, "norbind"))
4493 rbind = false;
4494 else {
4495 log_syntax(unit, LOG_ERR, filename, line, 0, "Invalid option string, ignoring setting: %s", options);
2f4d31c1 4496 continue;
d2d6c096
LP
4497 }
4498 }
4499 } else
4500 d = s;
4501
4502 r = bind_mount_add(&c->bind_mounts, &c->n_bind_mounts,
4503 &(BindMount) {
4504 .source = s,
4505 .destination = d,
4506 .read_only = !!strstr(lvalue, "ReadOnly"),
4507 .recursive = rbind,
4508 .ignore_enoent = ignore_enoent,
4509 });
4510 if (r < 0)
4511 return log_oom();
4512 }
4513
4514 return 0;
4515}
4516
eae51da3
LP
4517int config_parse_job_timeout_sec(
4518 const char* unit,
4519 const char *filename,
4520 unsigned line,
4521 const char *section,
4522 unsigned section_line,
4523 const char *lvalue,
4524 int ltype,
4525 const char *rvalue,
4526 void *data,
4527 void *userdata) {
4528
4529 Unit *u = data;
4530 usec_t usec;
4531 int r;
4532
4533 assert(filename);
4534 assert(lvalue);
4535 assert(rvalue);
4536 assert(u);
4537
4538 r = parse_sec_fix_0(rvalue, &usec);
4539 if (r < 0) {
4540 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse JobTimeoutSec= parameter, ignoring: %s", rvalue);
4541 return 0;
4542 }
4543
4544 /* If the user explicitly changed JobTimeoutSec= also change JobRunningTimeoutSec=, for compatibility with old
c05f3c8f 4545 * versions. If JobRunningTimeoutSec= was explicitly set, avoid this however as whatever the user picked should
eae51da3
LP
4546 * count. */
4547
4548 if (!u->job_running_timeout_set)
4549 u->job_running_timeout = usec;
4550
4551 u->job_timeout = usec;
4552
4553 return 0;
4554}
4555
4556int config_parse_job_running_timeout_sec(
4557 const char* unit,
4558 const char *filename,
4559 unsigned line,
4560 const char *section,
4561 unsigned section_line,
4562 const char *lvalue,
4563 int ltype,
4564 const char *rvalue,
4565 void *data,
4566 void *userdata) {
4567
4568 Unit *u = data;
4569 usec_t usec;
4570 int r;
4571
4572 assert(filename);
4573 assert(lvalue);
4574 assert(rvalue);
4575 assert(u);
4576
4577 r = parse_sec_fix_0(rvalue, &usec);
4578 if (r < 0) {
4579 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse JobRunningTimeoutSec= parameter, ignoring: %s", rvalue);
4580 return 0;
4581 }
4582
4583 u->job_running_timeout = usec;
4584 u->job_running_timeout_set = true;
4585
4586 return 0;
4587}
4588
54fcb619
ZJS
4589int config_parse_emergency_action(
4590 const char* unit,
4591 const char *filename,
4592 unsigned line,
4593 const char *section,
4594 unsigned section_line,
4595 const char *lvalue,
4596 int ltype,
4597 const char *rvalue,
4598 void *data,
4599 void *userdata) {
4600
4601 Manager *m = NULL;
4602 EmergencyAction *x = data;
4603 int r;
4604
4605 assert(filename);
4606 assert(lvalue);
4607 assert(rvalue);
4608 assert(data);
4609
4610 if (unit)
4611 m = ((Unit*) userdata)->manager;
4612 else
4613 m = data;
4614
4615 r = parse_emergency_action(rvalue, MANAGER_IS_SYSTEM(m), x);
4616 if (r < 0) {
469f76f1
ZJS
4617 if (r == -EOPNOTSUPP && MANAGER_IS_USER(m)) {
4618 /* Compat mode: remove for systemd 241. */
4619
4620 log_syntax(unit, LOG_INFO, filename, line, r,
4621 "%s= in user mode specified as \"%s\", using \"exit-force\" instead.",
4622 lvalue, rvalue);
4623 *x = EMERGENCY_ACTION_EXIT_FORCE;
4624 return 0;
4625 }
4626
54fcb619
ZJS
4627 if (r == -EOPNOTSUPP)
4628 log_syntax(unit, LOG_ERR, filename, line, r,
4629 "%s= specified as %s mode action, ignoring: %s",
4630 lvalue, MANAGER_IS_SYSTEM(m) ? "user" : "system", rvalue);
4631 else
4632 log_syntax(unit, LOG_ERR, filename, line, r,
4633 "Failed to parse %s=, ignoring: %s", lvalue, rvalue);
4634 return 0;
4635 }
4636
4637 return 0;
4638}
4639
a9353a5c
LP
4640int config_parse_pid_file(
4641 const char *unit,
4642 const char *filename,
4643 unsigned line,
4644 const char *section,
4645 unsigned section_line,
4646 const char *lvalue,
4647 int ltype,
4648 const char *rvalue,
4649 void *data,
4650 void *userdata) {
4651
4652 _cleanup_free_ char *k = NULL, *n = NULL;
47538b76 4653 const Unit *u = userdata;
a9353a5c 4654 char **s = data;
a9353a5c
LP
4655 int r;
4656
4657 assert(filename);
4658 assert(lvalue);
4659 assert(rvalue);
4660 assert(u);
4661
b8055c05
YW
4662 if (isempty(rvalue)) {
4663 /* An empty assignment removes already set value. */
4664 *s = mfree(*s);
4665 return 0;
4666 }
4667
a9353a5c
LP
4668 r = unit_full_printf(u, rvalue, &k);
4669 if (r < 0) {
4670 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s', ignoring: %m", rvalue);
4671 return 0;
4672 }
4673
4674 /* If this is a relative path make it absolute by prefixing the /run */
4675 n = path_make_absolute(k, u->manager->prefix[EXEC_DIRECTORY_RUNTIME]);
4676 if (!n)
4677 return log_oom();
4678
4679 /* Check that the result is a sensible path */
4680 r = path_simplify_and_warn(n, PATH_CHECK_ABSOLUTE, unit, filename, line, lvalue);
4681 if (r < 0)
4682 return r;
4683
4a66b5c9
LP
4684 r = patch_var_run(unit, filename, line, lvalue, &n);
4685 if (r < 0)
4686 return r;
a9353a5c 4687
4a66b5c9 4688 free_and_replace(*s, n);
a9353a5c
LP
4689 return 0;
4690}
4691
7af67e9a
LP
4692int config_parse_exit_status(
4693 const char *unit,
4694 const char *filename,
4695 unsigned line,
4696 const char *section,
4697 unsigned section_line,
4698 const char *lvalue,
4699 int ltype,
4700 const char *rvalue,
4701 void *data,
4702 void *userdata) {
4703
4704 int *exit_status = data, r;
4705 uint8_t u;
4706
4707 assert(filename);
4708 assert(lvalue);
4709 assert(rvalue);
4710 assert(exit_status);
4711
4712 if (isempty(rvalue)) {
4713 *exit_status = -1;
4714 return 0;
4715 }
4716
4717 r = safe_atou8(rvalue, &u);
4718 if (r < 0) {
4719 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse exit status '%s', ignoring: %m", rvalue);
4720 return 0;
4721 }
4722
4723 *exit_status = u;
4724 return 0;
4725}
4726
c72703e2
CD
4727int config_parse_disable_controllers(
4728 const char *unit,
4729 const char *filename,
4730 unsigned line,
4731 const char *section,
4732 unsigned section_line,
4733 const char *lvalue,
4734 int ltype,
4735 const char *rvalue,
4736 void *data,
4737 void *userdata) {
4738
4739 int r;
4740 CGroupContext *c = data;
4741 CGroupMask disabled_mask;
4742
4743 /* 1. If empty, make all controllers eligible for use again.
4744 * 2. If non-empty, merge all listed controllers, space separated. */
4745
4746 if (isempty(rvalue)) {
4747 c->disable_controllers = 0;
4748 return 0;
4749 }
4750
4751 r = cg_mask_from_string(rvalue, &disabled_mask);
4752 if (r < 0 || disabled_mask <= 0) {
4753 log_syntax(unit, LOG_ERR, filename, line, r, "Invalid cgroup string: %s, ignoring", rvalue);
4754 return 0;
4755 }
4756
4757 c->disable_controllers |= disabled_mask;
4758
4759 return 0;
4760}
4761
fab34748
KL
4762int config_parse_ip_filter_bpf_progs(
4763 const char *unit,
4764 const char *filename,
4765 unsigned line,
4766 const char *section,
4767 unsigned section_line,
4768 const char *lvalue,
4769 int ltype,
4770 const char *rvalue,
4771 void *data,
4772 void *userdata) {
4773
4774 _cleanup_free_ char *resolved = NULL;
47538b76 4775 const Unit *u = userdata;
fab34748
KL
4776 char ***paths = data;
4777 int r;
4778
4779 assert(filename);
4780 assert(lvalue);
4781 assert(rvalue);
4782 assert(paths);
4783
4784 if (isempty(rvalue)) {
4785 *paths = strv_free(*paths);
4786 return 0;
4787 }
4788
4789 r = unit_full_printf(u, rvalue, &resolved);
4790 if (r < 0) {
4791 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to resolve unit specifiers in '%s', ignoring: %m", rvalue);
4792 return 0;
4793 }
4794
4795 r = path_simplify_and_warn(resolved, PATH_CHECK_ABSOLUTE, unit, filename, line, lvalue);
4796 if (r < 0)
4797 return 0;
4798
4799 if (strv_contains(*paths, resolved))
4800 return 0;
4801
4802 r = strv_extend(paths, resolved);
4803 if (r < 0)
4804 return log_oom();
4805
4806 r = bpf_firewall_supported();
4807 if (r < 0)
4808 return r;
4809 if (r != BPF_FIREWALL_SUPPORTED_WITH_MULTI) {
4810 static bool warned = false;
4811
4812 log_full(warned ? LOG_DEBUG : LOG_WARNING,
4813 "File %s:%u configures an IP firewall with BPF programs (%s=%s), but the local system does not support BPF/cgroup based firewalling with multiple filters.\n"
4814 "Starting this unit will fail! (This warning is only shown for the first loaded unit using IP firewalling.)", filename, line, lvalue, rvalue);
4815
4816 warned = true;
4817 }
4818
4819 return 0;
4820}
4821
23a177ef
LP
4822static int merge_by_names(Unit **u, Set *names, const char *id) {
4823 char *k;
4824 int r;
4825
4826 assert(u);
4827 assert(*u);
23a177ef 4828
e8630e69 4829 /* Let's try to add in all names that are aliases of this unit */
23a177ef 4830 while ((k = set_steal_first(names))) {
e8630e69 4831 _cleanup_free_ _unused_ char *free_k = k;
23a177ef 4832
e8630e69 4833 /* First try to merge in the other name into our unit */
9946996c
LP
4834 r = unit_merge_by_name(*u, k);
4835 if (r < 0) {
23a177ef
LP
4836 Unit *other;
4837
e8630e69
ZJS
4838 /* Hmm, we couldn't merge the other unit into ours? Then let's try it the other way
4839 * round. */
036643a2 4840
e8630e69
ZJS
4841 other = manager_get_unit((*u)->manager, k);
4842 if (!other)
4843 return r; /* return previous failure */
036643a2 4844
e8630e69
ZJS
4845 r = unit_merge(other, *u);
4846 if (r < 0)
a837f088 4847 return r;
fe51822e 4848
e8630e69
ZJS
4849 *u = other;
4850 return merge_by_names(u, names, NULL);
036643a2 4851 }
034c6ed7 4852
e8630e69
ZJS
4853 if (streq_ptr(id, k))
4854 unit_choose_id(*u, id);
1b64d026
LP
4855 }
4856
e48614c4 4857 return 0;
0301abf4
LP
4858}
4859
e537352b 4860int unit_load_fragment(Unit *u) {
e8630e69
ZJS
4861 const char *fragment;
4862 _cleanup_set_free_free_ Set *names = NULL;
23a177ef 4863 int r;
0301abf4
LP
4864
4865 assert(u);
ac155bb8
MS
4866 assert(u->load_state == UNIT_STUB);
4867 assert(u->id);
23a177ef 4868
3f5e8115
LP
4869 if (u->transient) {
4870 u->load_state = UNIT_LOADED;
4871 return 0;
4872 }
4873
91e0ee5f
ZJS
4874 /* Possibly rebuild the fragment map to catch new units */
4875 r = unit_file_build_name_map(&u->manager->lookup_paths,
4876 &u->manager->unit_cache_mtime,
4877 &u->manager->unit_id_map,
4878 &u->manager->unit_name_map,
4879 &u->manager->unit_path_cache);
9946996c 4880 if (r < 0)
14140908 4881 return log_error_errno(r, "Failed to rebuild name map: %m");
91e0ee5f 4882
e8630e69
ZJS
4883 r = unit_file_find_fragment(u->manager->unit_id_map,
4884 u->manager->unit_name_map,
4885 u->id,
4886 &fragment,
4887 &names);
4888 if (r < 0 && r != -ENOENT)
294d81f1
LP
4889 return r;
4890
e8630e69
ZJS
4891 if (fragment) {
4892 /* Open the file, check if this is a mask, otherwise read. */
4893 _cleanup_fclose_ FILE *f = NULL;
c9e06956 4894 struct stat st;
0301abf4 4895
e8630e69
ZJS
4896 /* Try to open the file name. A symlink is OK, for example for linked files or masks. We
4897 * expect that all symlinks within the lookup paths have been already resolved, but we don't
4898 * verify this here. */
4899 f = fopen(fragment, "re");
4900 if (!f)
4901 return log_unit_notice_errno(u, errno, "Failed to open %s: %m", fragment);
6ccb1b44 4902
e8630e69
ZJS
4903 if (fstat(fileno(f), &st) < 0)
4904 return -errno;
294d81f1 4905
e8630e69 4906 r = free_and_strdup(&u->fragment_path, fragment);
7410616c
LP
4907 if (r < 0)
4908 return r;
294d81f1 4909
e8630e69 4910 if (null_or_empty(&st)) {
88414eed
LP
4911 /* Unit file is masked */
4912
4913 u->load_state = u->perpetual ? UNIT_LOADED : UNIT_MASKED; /* don't allow perpetual units to ever be masked */
e8630e69
ZJS
4914 u->fragment_mtime = 0;
4915 } else {
4916 u->load_state = UNIT_LOADED;
4917 u->fragment_mtime = timespec_load(&st.st_mtim);
4918
4919 /* Now, parse the file contents */
4920 r = config_parse(u->id, fragment, f,
4921 UNIT_VTABLE(u)->sections,
4922 config_item_perf_lookup, load_fragment_gperf_lookup,
7ade8982 4923 0,
4f9ff96a
LP
4924 u,
4925 NULL);
bb28e684 4926 if (r == -ENOEXEC)
e8630e69
ZJS
4927 log_unit_notice_errno(u, r, "Unit configuration has fatal error, unit will not be started.");
4928 if (r < 0)
4929 return r;
bb28e684 4930 }
e8630e69 4931 }
890f434c 4932
e8630e69
ZJS
4933 /* We do the merge dance here because for some unit types, the unit might have aliases which are not
4934 * declared in the file system. In particular, this is true (and frequent) for device and swap units.
4935 */
4936 Unit *merged;
4937 const char *id = u->id;
4938 _cleanup_free_ char *free_id = NULL;
294d81f1 4939
e8630e69
ZJS
4940 if (fragment) {
4941 id = basename(fragment);
4942 if (unit_name_is_valid(id, UNIT_NAME_TEMPLATE)) {
4943 assert(u->instance); /* If we're not trying to use a template for non-instanced unit,
4944 * this must be set. */
890f434c 4945
e8630e69
ZJS
4946 r = unit_name_replace_instance(id, u->instance, &free_id);
4947 if (r < 0)
4948 return log_debug_errno(r, "Failed to build id (%s + %s): %m", id, u->instance);
4949 id = free_id;
abc08d4d 4950 }
071830ff
LP
4951 }
4952
e8630e69
ZJS
4953 merged = u;
4954 r = merge_by_names(&merged, names, id);
4955 if (r < 0)
4956 return r;
4957
4958 if (merged != u)
4959 u->load_state = UNIT_MERGED;
4960
23a177ef 4961 return 0;
3efd4195 4962}
e537352b
LP
4963
4964void unit_dump_config_items(FILE *f) {
f975e971
LP
4965 static const struct {
4966 const ConfigParserCallback callback;
4967 const char *rvalue;
4968 } table[] = {
17df7223 4969 { config_parse_warn_compat, "NOTSUPPORTED" },
f975e971
LP
4970 { config_parse_int, "INTEGER" },
4971 { config_parse_unsigned, "UNSIGNED" },
5556b5fe 4972 { config_parse_iec_size, "SIZE" },
59f448cf 4973 { config_parse_iec_uint64, "SIZE" },
50299121 4974 { config_parse_si_uint64, "SIZE" },
f975e971
LP
4975 { config_parse_bool, "BOOLEAN" },
4976 { config_parse_string, "STRING" },
4977 { config_parse_path, "PATH" },
4978 { config_parse_unit_path_printf, "PATH" },
4979 { config_parse_strv, "STRING [...]" },
4980 { config_parse_exec_nice, "NICE" },
4981 { config_parse_exec_oom_score_adjust, "OOMSCOREADJUST" },
4982 { config_parse_exec_io_class, "IOCLASS" },
4983 { config_parse_exec_io_priority, "IOPRIORITY" },
4984 { config_parse_exec_cpu_sched_policy, "CPUSCHEDPOLICY" },
4985 { config_parse_exec_cpu_sched_prio, "CPUSCHEDPRIO" },
4986 { config_parse_exec_cpu_affinity, "CPUAFFINITY" },
4987 { config_parse_mode, "MODE" },
4988 { config_parse_unit_env_file, "FILE" },
52c239d7
LB
4989 { config_parse_exec_output, "OUTPUT" },
4990 { config_parse_exec_input, "INPUT" },
ca37242e
LP
4991 { config_parse_log_facility, "FACILITY" },
4992 { config_parse_log_level, "LEVEL" },
f975e971 4993 { config_parse_exec_secure_bits, "SECUREBITS" },
a103496c 4994 { config_parse_capability_set, "BOUNDINGSET" },
4f424df7 4995 { config_parse_rlimit, "LIMIT" },
f975e971 4996 { config_parse_unit_deps, "UNIT [...]" },
f975e971
LP
4997 { config_parse_exec, "PATH [ARGUMENT [...]]" },
4998 { config_parse_service_type, "SERVICETYPE" },
4999 { config_parse_service_restart, "SERVICERESTART" },
bf760801 5000 { config_parse_service_timeout_failure_mode, "TIMEOUTMODE" },
f975e971 5001 { config_parse_kill_mode, "KILLMODE" },
f757855e 5002 { config_parse_signal, "SIGNAL" },
f975e971
LP
5003 { config_parse_socket_listen, "SOCKET [...]" },
5004 { config_parse_socket_bind, "SOCKETBIND" },
5005 { config_parse_socket_bindtodevice, "NETWORKINTERFACE" },
7f602784 5006 { config_parse_sec, "SECONDS" },
d88a251b 5007 { config_parse_nsec, "NANOSECONDS" },
94828d2d 5008 { config_parse_namespace_path_strv, "PATH [...]" },
d2d6c096 5009 { config_parse_bind_paths, "PATH[:PATH[:OPTIONS]] [...]" },
7c8fa05c 5010 { config_parse_unit_requires_mounts_for, "PATH [...]" },
f975e971
LP
5011 { config_parse_exec_mount_flags, "MOUNTFLAG [...]" },
5012 { config_parse_unit_string_printf, "STRING" },
3ecaa09b 5013 { config_parse_trigger_unit, "UNIT" },
f975e971 5014 { config_parse_timer, "TIMER" },
f975e971 5015 { config_parse_path_spec, "PATH" },
f975e971
LP
5016 { config_parse_notify_access, "ACCESS" },
5017 { config_parse_ip_tos, "TOS" },
5018 { config_parse_unit_condition_path, "CONDITION" },
5019 { config_parse_unit_condition_string, "CONDITION" },
5020 { config_parse_unit_condition_null, "CONDITION" },
a016b922 5021 { config_parse_unit_slice, "SLICE" },
7f0386f6
LP
5022 { config_parse_documentation, "URL" },
5023 { config_parse_service_timeout, "SECONDS" },
87a47f99 5024 { config_parse_emergency_action, "ACTION" },
7f0386f6
LP
5025 { config_parse_set_status, "STATUS" },
5026 { config_parse_service_sockets, "SOCKETS" },
7f0386f6 5027 { config_parse_environ, "ENVIRON" },
349cc4a5 5028#if HAVE_SECCOMP
17df7223 5029 { config_parse_syscall_filter, "SYSCALLS" },
6a6751fe 5030 { config_parse_syscall_archs, "ARCHS" },
17df7223 5031 { config_parse_syscall_errno, "ERRNO" },
4298d0b5 5032 { config_parse_address_families, "FAMILIES" },
add00535 5033 { config_parse_restrict_namespaces, "NAMESPACES" },
c0467cf3 5034#endif
7f0386f6 5035 { config_parse_cpu_shares, "SHARES" },
984faf29 5036 { config_parse_cg_weight, "WEIGHT" },
7f0386f6
LP
5037 { config_parse_memory_limit, "LIMIT" },
5038 { config_parse_device_allow, "DEVICE" },
5039 { config_parse_device_policy, "POLICY" },
13c31542 5040 { config_parse_io_limit, "LIMIT" },
13c31542 5041 { config_parse_io_device_weight, "DEVICEWEIGHT" },
6ae4283c 5042 { config_parse_io_device_latency, "DEVICELATENCY" },
7f0386f6
LP
5043 { config_parse_blockio_bandwidth, "BANDWIDTH" },
5044 { config_parse_blockio_weight, "WEIGHT" },
5045 { config_parse_blockio_device_weight, "DEVICEWEIGHT" },
5046 { config_parse_long, "LONG" },
5047 { config_parse_socket_service, "SERVICE" },
349cc4a5 5048#if HAVE_SELINUX
6a6751fe
LP
5049 { config_parse_exec_selinux_context, "LABEL" },
5050#endif
5051 { config_parse_job_mode, "MODE" },
5052 { config_parse_job_mode_isolate, "BOOLEAN" },
4298d0b5 5053 { config_parse_personality, "PERSONALITY" },
f975e971
LP
5054 };
5055
5056 const char *prev = NULL;
5057 const char *i;
5058
5059 assert(f);
e537352b 5060
f975e971
LP
5061 NULSTR_FOREACH(i, load_fragment_gperf_nulstr) {
5062 const char *rvalue = "OTHER", *lvalue;
313b7856 5063 const ConfigPerfItem *p;
f975e971
LP
5064 size_t prefix_len;
5065 const char *dot;
313b7856 5066 unsigned j;
f975e971
LP
5067
5068 assert_se(p = load_fragment_gperf_lookup(i, strlen(i)));
5069
313b7856
LP
5070 /* Hide legacy settings */
5071 if (p->parse == config_parse_warn_compat &&
5072 p->ltype == DISABLED_LEGACY)
5073 continue;
5074
5075 for (j = 0; j < ELEMENTSOF(table); j++)
5076 if (p->parse == table[j].callback) {
5077 rvalue = table[j].rvalue;
5078 break;
5079 }
5080
f975e971
LP
5081 dot = strchr(i, '.');
5082 lvalue = dot ? dot + 1 : i;
5083 prefix_len = dot-i;
5084
5085 if (dot)
641906e9 5086 if (!prev || !strneq(prev, i, prefix_len+1)) {
f975e971
LP
5087 if (prev)
5088 fputc('\n', f);
5089
5090 fprintf(f, "[%.*s]\n", (int) prefix_len, i);
5091 }
5092
f975e971
LP
5093 fprintf(f, "%s=%s\n", lvalue, rvalue);
5094 prev = i;
5095 }
e537352b 5096}
a07a7324
FS
5097
5098int config_parse_cpu_affinity2(
5099 const char *unit,
5100 const char *filename,
5101 unsigned line,
5102 const char *section,
5103 unsigned section_line,
5104 const char *lvalue,
5105 int ltype,
5106 const char *rvalue,
5107 void *data,
5108 void *userdata) {
5109
5110 CPUSet *affinity = data;
5111
5112 assert(affinity);
5113
5114 (void) parse_cpu_set_extend(rvalue, affinity, true, unit, filename, line, lvalue);
5115
5116 return 0;
5117}
5118
5119int config_parse_show_status(
5120 const char* unit,
5121 const char *filename,
5122 unsigned line,
5123 const char *section,
5124 unsigned section_line,
5125 const char *lvalue,
5126 int ltype,
5127 const char *rvalue,
5128 void *data,
5129 void *userdata) {
5130
5131 int k;
5132 ShowStatus *b = data;
5133
5134 assert(filename);
5135 assert(lvalue);
5136 assert(rvalue);
5137 assert(data);
5138
5139 k = parse_show_status(rvalue, b);
5140 if (k < 0) {
5141 log_syntax(unit, LOG_ERR, filename, line, k, "Failed to parse show status setting, ignoring: %s", rvalue);
5142 return 0;
5143 }
5144
5145 return 0;
5146}
5147
5148int config_parse_output_restricted(
5149 const char* unit,
5150 const char *filename,
5151 unsigned line,
5152 const char *section,
5153 unsigned section_line,
5154 const char *lvalue,
5155 int ltype,
5156 const char *rvalue,
5157 void *data,
5158 void *userdata) {
5159
5160 ExecOutput t, *eo = data;
f3dc6af2 5161 bool obsolete = false;
a07a7324
FS
5162
5163 assert(filename);
5164 assert(lvalue);
5165 assert(rvalue);
5166 assert(data);
5167
f3dc6af2
LP
5168 if (streq(rvalue, "syslog")) {
5169 t = EXEC_OUTPUT_JOURNAL;
5170 obsolete = true;
5171 } else if (streq(rvalue, "syslog+console")) {
5172 t = EXEC_OUTPUT_JOURNAL_AND_CONSOLE;
5173 obsolete = true;
5174 } else {
5175 t = exec_output_from_string(rvalue);
5176 if (t < 0) {
5177 log_syntax(unit, LOG_ERR, filename, line, 0, "Failed to parse output type, ignoring: %s", rvalue);
5178 return 0;
5179 }
a07a7324 5180
f3dc6af2
LP
5181 if (IN_SET(t, EXEC_OUTPUT_SOCKET, EXEC_OUTPUT_NAMED_FD, EXEC_OUTPUT_FILE, EXEC_OUTPUT_FILE_APPEND)) {
5182 log_syntax(unit, LOG_ERR, filename, line, 0, "Standard output types socket, fd:, file:, append: are not supported as defaults, ignoring: %s", rvalue);
5183 return 0;
5184 }
a07a7324
FS
5185 }
5186
f3dc6af2
LP
5187 if (obsolete)
5188 log_syntax(unit, LOG_NOTICE, filename, line, 0,
5189 "Standard output type %s is obsolete, automatically updating to %s. Please update your configuration.",
5190 rvalue, exec_output_to_string(t));
5191
a07a7324
FS
5192 *eo = t;
5193 return 0;
5194}
5195
5196int config_parse_crash_chvt(
5197 const char* unit,
5198 const char *filename,
5199 unsigned line,
5200 const char *section,
5201 unsigned section_line,
5202 const char *lvalue,
5203 int ltype,
5204 const char *rvalue,
5205 void *data,
5206 void *userdata) {
5207
5208 int r;
5209
5210 assert(filename);
5211 assert(lvalue);
5212 assert(rvalue);
5213 assert(data);
5214
5215 r = parse_crash_chvt(rvalue, data);
5216 if (r < 0) {
5217 log_syntax(unit, LOG_ERR, filename, line, r, "Failed to parse CrashChangeVT= setting, ignoring: %s", rvalue);
5218 return 0;
5219 }
5220
5221 return 0;
5222}
eb34a981
LP
5223
5224int config_parse_swap_priority(
5225 const char *unit,
5226 const char *filename,
5227 unsigned line,
5228 const char *section,
5229 unsigned section_line,
5230 const char *lvalue,
5231 int ltype,
5232 const char *rvalue,
5233 void *data,
5234 void *userdata) {
5235
5236 Swap *s = userdata;
5237 int r, priority;
5238
5239 assert(s);
5240 assert(filename);
5241 assert(lvalue);
5242 assert(rvalue);
5243 assert(data);
5244
5245 if (isempty(rvalue)) {
5246 s->parameters_fragment.priority = -1;
5247 s->parameters_fragment.priority_set = false;
5248 return 0;
5249 }
5250
5251 r = safe_atoi(rvalue, &priority);
5252 if (r < 0) {
929fed02 5253 log_syntax(unit, LOG_ERR, filename, line, r, "Invalid swap priority '%s', ignoring.", rvalue);
eb34a981
LP
5254 return 0;
5255 }
5256
5257 if (priority < -1) {
5258 log_syntax(unit, LOG_ERR, filename, line, 0, "Sorry, swap priorities smaller than -1 may only be assigned by the kernel itself, ignoring: %s", rvalue);
5259 return 0;
5260 }
5261
5262 if (priority > 32767) {
5263 log_syntax(unit, LOG_ERR, filename, line, 0, "Swap priority out of range, ignoring: %s", rvalue);
5264 return 0;
5265 }
5266
5267 s->parameters_fragment.priority = priority;
5268 s->parameters_fragment.priority_set = true;
5269 return 0;
5270}