]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/dbus-execute.c
tree-wide: use set_ensure_put()
[thirdparty/systemd.git] / src / core / dbus-execute.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include <sys/mount.h>
4 #include <sys/prctl.h>
5
6 #if HAVE_SECCOMP
7 #include <seccomp.h>
8 #endif
9
10 #include "af-list.h"
11 #include "alloc-util.h"
12 #include "bus-util.h"
13 #include "cap-list.h"
14 #include "capability-util.h"
15 #include "cpu-set-util.h"
16 #include "dbus-execute.h"
17 #include "dbus-util.h"
18 #include "env-util.h"
19 #include "errno-list.h"
20 #include "escape.h"
21 #include "execute.h"
22 #include "fd-util.h"
23 #include "fileio.h"
24 #include "hexdecoct.h"
25 #include "io-util.h"
26 #include "ioprio.h"
27 #include "journal-util.h"
28 #include "mountpoint-util.h"
29 #include "namespace.h"
30 #include "parse-util.h"
31 #include "path-util.h"
32 #include "process-util.h"
33 #include "rlimit-util.h"
34 #if HAVE_SECCOMP
35 #include "seccomp-util.h"
36 #endif
37 #include "securebits-util.h"
38 #include "specifier.h"
39 #include "strv.h"
40 #include "syslog-util.h"
41 #include "unit-printf.h"
42 #include "user-util.h"
43 #include "utf8.h"
44
45 BUS_DEFINE_PROPERTY_GET_ENUM(bus_property_get_exec_output, exec_output, ExecOutput);
46 static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_exec_input, exec_input, ExecInput);
47 static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_exec_utmp_mode, exec_utmp_mode, ExecUtmpMode);
48 static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_exec_preserve_mode, exec_preserve_mode, ExecPreserveMode);
49 static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_exec_keyring_mode, exec_keyring_mode, ExecKeyringMode);
50 static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_protect_home, protect_home, ProtectHome);
51 static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_protect_system, protect_system, ProtectSystem);
52 static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_personality, personality, unsigned long);
53 static BUS_DEFINE_PROPERTY_GET(property_get_ioprio, "i", ExecContext, exec_context_get_effective_ioprio);
54 static BUS_DEFINE_PROPERTY_GET2(property_get_ioprio_class, "i", ExecContext, exec_context_get_effective_ioprio, IOPRIO_PRIO_CLASS);
55 static BUS_DEFINE_PROPERTY_GET2(property_get_ioprio_priority, "i", ExecContext, exec_context_get_effective_ioprio, IOPRIO_PRIO_DATA);
56 static BUS_DEFINE_PROPERTY_GET_GLOBAL(property_get_empty_string, "s", NULL);
57 static BUS_DEFINE_PROPERTY_GET_REF(property_get_syslog_level, "i", int, LOG_PRI);
58 static BUS_DEFINE_PROPERTY_GET_REF(property_get_syslog_facility, "i", int, LOG_FAC);
59 static BUS_DEFINE_PROPERTY_GET(property_get_cpu_affinity_from_numa, "b", ExecContext, exec_context_get_cpu_affinity_from_numa);
60
61 static int property_get_environment_files(
62 sd_bus *bus,
63 const char *path,
64 const char *interface,
65 const char *property,
66 sd_bus_message *reply,
67 void *userdata,
68 sd_bus_error *error) {
69
70 ExecContext *c = userdata;
71 char **j;
72 int r;
73
74 assert(bus);
75 assert(reply);
76 assert(c);
77
78 r = sd_bus_message_open_container(reply, 'a', "(sb)");
79 if (r < 0)
80 return r;
81
82 STRV_FOREACH(j, c->environment_files) {
83 const char *fn = *j;
84
85 r = sd_bus_message_append(reply, "(sb)", fn[0] == '-' ? fn + 1 : fn, fn[0] == '-');
86 if (r < 0)
87 return r;
88 }
89
90 return sd_bus_message_close_container(reply);
91 }
92
93 static int property_get_oom_score_adjust(
94 sd_bus *bus,
95 const char *path,
96 const char *interface,
97 const char *property,
98 sd_bus_message *reply,
99 void *userdata,
100 sd_bus_error *error) {
101
102 ExecContext *c = userdata;
103 int32_t n;
104 int r;
105
106 assert(bus);
107 assert(reply);
108 assert(c);
109
110 if (c->oom_score_adjust_set)
111 n = c->oom_score_adjust;
112 else {
113 _cleanup_free_ char *t = NULL;
114
115 n = 0;
116 r = read_one_line_file("/proc/self/oom_score_adj", &t);
117 if (r < 0)
118 log_debug_errno(r, "Failed to read /proc/self/oom_score_adj, ignoring: %m");
119 else {
120 r = safe_atoi32(t, &n);
121 if (r < 0)
122 log_debug_errno(r, "Failed to parse \"%s\" from /proc/self/oom_score_adj, ignoring: %m", t);
123 }
124 }
125
126 return sd_bus_message_append(reply, "i", n);
127 }
128
129 static int property_get_coredump_filter(
130 sd_bus *bus,
131 const char *path,
132 const char *interface,
133 const char *property,
134 sd_bus_message *reply,
135 void *userdata,
136 sd_bus_error *error) {
137
138 ExecContext *c = userdata;
139 uint64_t n;
140 int r;
141
142 assert(bus);
143 assert(reply);
144 assert(c);
145
146 if (c->coredump_filter_set)
147 n = c->coredump_filter;
148 else {
149 _cleanup_free_ char *t = NULL;
150
151 n = COREDUMP_FILTER_MASK_DEFAULT;
152 r = read_one_line_file("/proc/self/coredump_filter", &t);
153 if (r < 0)
154 log_debug_errno(r, "Failed to read /proc/self/coredump_filter, ignoring: %m");
155 else {
156 r = safe_atoux64(t, &n);
157 if (r < 0)
158 log_debug_errno(r, "Failed to parse \"%s\" from /proc/self/coredump_filter, ignoring: %m", t);
159 }
160 }
161
162 return sd_bus_message_append(reply, "t", n);
163 }
164
165 static int property_get_nice(
166 sd_bus *bus,
167 const char *path,
168 const char *interface,
169 const char *property,
170 sd_bus_message *reply,
171 void *userdata,
172 sd_bus_error *error) {
173
174 ExecContext *c = userdata;
175 int32_t n;
176
177 assert(bus);
178 assert(reply);
179 assert(c);
180
181 if (c->nice_set)
182 n = c->nice;
183 else {
184 errno = 0;
185 n = getpriority(PRIO_PROCESS, 0);
186 if (errno > 0)
187 n = 0;
188 }
189
190 return sd_bus_message_append(reply, "i", n);
191 }
192
193 static int property_get_cpu_sched_policy(
194 sd_bus *bus,
195 const char *path,
196 const char *interface,
197 const char *property,
198 sd_bus_message *reply,
199 void *userdata,
200 sd_bus_error *error) {
201
202 ExecContext *c = userdata;
203 int32_t n;
204
205 assert(bus);
206 assert(reply);
207 assert(c);
208
209 if (c->cpu_sched_set)
210 n = c->cpu_sched_policy;
211 else {
212 n = sched_getscheduler(0);
213 if (n < 0)
214 n = SCHED_OTHER;
215 }
216
217 return sd_bus_message_append(reply, "i", n);
218 }
219
220 static int property_get_cpu_sched_priority(
221 sd_bus *bus,
222 const char *path,
223 const char *interface,
224 const char *property,
225 sd_bus_message *reply,
226 void *userdata,
227 sd_bus_error *error) {
228
229 ExecContext *c = userdata;
230 int32_t n;
231
232 assert(bus);
233 assert(reply);
234 assert(c);
235
236 if (c->cpu_sched_set)
237 n = c->cpu_sched_priority;
238 else {
239 struct sched_param p = {};
240
241 if (sched_getparam(0, &p) >= 0)
242 n = p.sched_priority;
243 else
244 n = 0;
245 }
246
247 return sd_bus_message_append(reply, "i", n);
248 }
249
250 static int property_get_cpu_affinity(
251 sd_bus *bus,
252 const char *path,
253 const char *interface,
254 const char *property,
255 sd_bus_message *reply,
256 void *userdata,
257 sd_bus_error *error) {
258
259 ExecContext *c = userdata;
260 _cleanup_(cpu_set_reset) CPUSet s = {};
261 _cleanup_free_ uint8_t *array = NULL;
262 size_t allocated;
263
264 assert(bus);
265 assert(reply);
266 assert(c);
267
268 if (c->cpu_affinity_from_numa) {
269 int r;
270
271 r = numa_to_cpu_set(&c->numa_policy, &s);
272 if (r < 0)
273 return r;
274 }
275
276 (void) cpu_set_to_dbus(c->cpu_affinity_from_numa ? &s : &c->cpu_set, &array, &allocated);
277
278 return sd_bus_message_append_array(reply, 'y', array, allocated);
279 }
280
281 static int property_get_numa_mask(
282 sd_bus *bus,
283 const char *path,
284 const char *interface,
285 const char *property,
286 sd_bus_message *reply,
287 void *userdata,
288 sd_bus_error *error) {
289
290 ExecContext *c = userdata;
291 _cleanup_free_ uint8_t *array = NULL;
292 size_t allocated;
293
294 assert(bus);
295 assert(reply);
296 assert(c);
297
298 (void) cpu_set_to_dbus(&c->numa_policy.nodes, &array, &allocated);
299
300 return sd_bus_message_append_array(reply, 'y', array, allocated);
301 }
302
303 static int property_get_numa_policy(
304 sd_bus *bus,
305 const char *path,
306 const char *interface,
307 const char *property,
308 sd_bus_message *reply,
309 void *userdata,
310 sd_bus_error *error) {
311 ExecContext *c = userdata;
312 int32_t policy;
313
314 assert(bus);
315 assert(reply);
316 assert(c);
317
318 policy = numa_policy_get_type(&c->numa_policy);
319
320 return sd_bus_message_append_basic(reply, 'i', &policy);
321 }
322
323 static int property_get_timer_slack_nsec(
324 sd_bus *bus,
325 const char *path,
326 const char *interface,
327 const char *property,
328 sd_bus_message *reply,
329 void *userdata,
330 sd_bus_error *error) {
331
332 ExecContext *c = userdata;
333 uint64_t u;
334
335 assert(bus);
336 assert(reply);
337 assert(c);
338
339 if (c->timer_slack_nsec != NSEC_INFINITY)
340 u = (uint64_t) c->timer_slack_nsec;
341 else
342 u = (uint64_t) prctl(PR_GET_TIMERSLACK);
343
344 return sd_bus_message_append(reply, "t", u);
345 }
346
347 static int property_get_syscall_filter(
348 sd_bus *bus,
349 const char *path,
350 const char *interface,
351 const char *property,
352 sd_bus_message *reply,
353 void *userdata,
354 sd_bus_error *error) {
355
356 ExecContext *c = userdata;
357 _cleanup_strv_free_ char **l = NULL;
358 int r;
359
360 #if HAVE_SECCOMP
361 Iterator i;
362 void *id, *val;
363 #endif
364
365 assert(bus);
366 assert(reply);
367 assert(c);
368
369 r = sd_bus_message_open_container(reply, 'r', "bas");
370 if (r < 0)
371 return r;
372
373 r = sd_bus_message_append(reply, "b", c->syscall_whitelist);
374 if (r < 0)
375 return r;
376
377 #if HAVE_SECCOMP
378 HASHMAP_FOREACH_KEY(val, id, c->syscall_filter, i) {
379 _cleanup_free_ char *name = NULL;
380 const char *e = NULL;
381 char *s;
382 int num = PTR_TO_INT(val);
383
384 name = seccomp_syscall_resolve_num_arch(SCMP_ARCH_NATIVE, PTR_TO_INT(id) - 1);
385 if (!name)
386 continue;
387
388 if (num >= 0) {
389 e = errno_to_name(num);
390 if (e) {
391 s = strjoin(name, ":", e);
392 if (!s)
393 return -ENOMEM;
394 } else {
395 r = asprintf(&s, "%s:%d", name, num);
396 if (r < 0)
397 return -ENOMEM;
398 }
399 } else
400 s = TAKE_PTR(name);
401
402 r = strv_consume(&l, s);
403 if (r < 0)
404 return r;
405 }
406 #endif
407
408 strv_sort(l);
409
410 r = sd_bus_message_append_strv(reply, l);
411 if (r < 0)
412 return r;
413
414 return sd_bus_message_close_container(reply);
415 }
416
417 static int property_get_syscall_archs(
418 sd_bus *bus,
419 const char *path,
420 const char *interface,
421 const char *property,
422 sd_bus_message *reply,
423 void *userdata,
424 sd_bus_error *error) {
425
426 ExecContext *c = userdata;
427 _cleanup_strv_free_ char **l = NULL;
428 int r;
429
430 #if HAVE_SECCOMP
431 Iterator i;
432 void *id;
433 #endif
434
435 assert(bus);
436 assert(reply);
437 assert(c);
438
439 #if HAVE_SECCOMP
440 SET_FOREACH(id, c->syscall_archs, i) {
441 const char *name;
442
443 name = seccomp_arch_to_string(PTR_TO_UINT32(id) - 1);
444 if (!name)
445 continue;
446
447 r = strv_extend(&l, name);
448 if (r < 0)
449 return -ENOMEM;
450 }
451 #endif
452
453 strv_sort(l);
454
455 r = sd_bus_message_append_strv(reply, l);
456 if (r < 0)
457 return r;
458
459 return 0;
460 }
461
462 static int property_get_selinux_context(
463 sd_bus *bus,
464 const char *path,
465 const char *interface,
466 const char *property,
467 sd_bus_message *reply,
468 void *userdata,
469 sd_bus_error *error) {
470
471 ExecContext *c = userdata;
472
473 assert(bus);
474 assert(reply);
475 assert(c);
476
477 return sd_bus_message_append(reply, "(bs)", c->selinux_context_ignore, c->selinux_context);
478 }
479
480 static int property_get_apparmor_profile(
481 sd_bus *bus,
482 const char *path,
483 const char *interface,
484 const char *property,
485 sd_bus_message *reply,
486 void *userdata,
487 sd_bus_error *error) {
488
489 ExecContext *c = userdata;
490
491 assert(bus);
492 assert(reply);
493 assert(c);
494
495 return sd_bus_message_append(reply, "(bs)", c->apparmor_profile_ignore, c->apparmor_profile);
496 }
497
498 static int property_get_smack_process_label(
499 sd_bus *bus,
500 const char *path,
501 const char *interface,
502 const char *property,
503 sd_bus_message *reply,
504 void *userdata,
505 sd_bus_error *error) {
506
507 ExecContext *c = userdata;
508
509 assert(bus);
510 assert(reply);
511 assert(c);
512
513 return sd_bus_message_append(reply, "(bs)", c->smack_process_label_ignore, c->smack_process_label);
514 }
515
516 static int property_get_address_families(
517 sd_bus *bus,
518 const char *path,
519 const char *interface,
520 const char *property,
521 sd_bus_message *reply,
522 void *userdata,
523 sd_bus_error *error) {
524
525 ExecContext *c = userdata;
526 _cleanup_strv_free_ char **l = NULL;
527 Iterator i;
528 void *af;
529 int r;
530
531 assert(bus);
532 assert(reply);
533 assert(c);
534
535 r = sd_bus_message_open_container(reply, 'r', "bas");
536 if (r < 0)
537 return r;
538
539 r = sd_bus_message_append(reply, "b", c->address_families_whitelist);
540 if (r < 0)
541 return r;
542
543 SET_FOREACH(af, c->address_families, i) {
544 const char *name;
545
546 name = af_to_name(PTR_TO_INT(af));
547 if (!name)
548 continue;
549
550 r = strv_extend(&l, name);
551 if (r < 0)
552 return -ENOMEM;
553 }
554
555 strv_sort(l);
556
557 r = sd_bus_message_append_strv(reply, l);
558 if (r < 0)
559 return r;
560
561 return sd_bus_message_close_container(reply);
562 }
563
564 static int property_get_working_directory(
565 sd_bus *bus,
566 const char *path,
567 const char *interface,
568 const char *property,
569 sd_bus_message *reply,
570 void *userdata,
571 sd_bus_error *error) {
572
573 ExecContext *c = userdata;
574 const char *wd;
575
576 assert(bus);
577 assert(reply);
578 assert(c);
579
580 if (c->working_directory_home)
581 wd = "~";
582 else
583 wd = c->working_directory;
584
585 if (c->working_directory_missing_ok)
586 wd = strjoina("!", wd);
587
588 return sd_bus_message_append(reply, "s", wd);
589 }
590
591 static int property_get_stdio_fdname(
592 sd_bus *bus,
593 const char *path,
594 const char *interface,
595 const char *property,
596 sd_bus_message *reply,
597 void *userdata,
598 sd_bus_error *error) {
599
600 ExecContext *c = userdata;
601 int fileno;
602
603 assert(bus);
604 assert(c);
605 assert(property);
606 assert(reply);
607
608 if (streq(property, "StandardInputFileDescriptorName"))
609 fileno = STDIN_FILENO;
610 else if (streq(property, "StandardOutputFileDescriptorName"))
611 fileno = STDOUT_FILENO;
612 else {
613 assert(streq(property, "StandardErrorFileDescriptorName"));
614 fileno = STDERR_FILENO;
615 }
616
617 return sd_bus_message_append(reply, "s", exec_context_fdname(c, fileno));
618 }
619
620 static int property_get_input_data(
621 sd_bus *bus,
622 const char *path,
623 const char *interface,
624 const char *property,
625 sd_bus_message *reply,
626 void *userdata,
627 sd_bus_error *error) {
628
629 ExecContext *c = userdata;
630
631 assert(bus);
632 assert(c);
633 assert(property);
634 assert(reply);
635
636 return sd_bus_message_append_array(reply, 'y', c->stdin_data, c->stdin_data_size);
637 }
638
639 static int property_get_bind_paths(
640 sd_bus *bus,
641 const char *path,
642 const char *interface,
643 const char *property,
644 sd_bus_message *reply,
645 void *userdata,
646 sd_bus_error *error) {
647
648 ExecContext *c = userdata;
649 unsigned i;
650 bool ro;
651 int r;
652
653 assert(bus);
654 assert(c);
655 assert(property);
656 assert(reply);
657
658 ro = strstr(property, "ReadOnly");
659
660 r = sd_bus_message_open_container(reply, 'a', "(ssbt)");
661 if (r < 0)
662 return r;
663
664 for (i = 0; i < c->n_bind_mounts; i++) {
665
666 if (ro != c->bind_mounts[i].read_only)
667 continue;
668
669 r = sd_bus_message_append(
670 reply, "(ssbt)",
671 c->bind_mounts[i].source,
672 c->bind_mounts[i].destination,
673 c->bind_mounts[i].ignore_enoent,
674 c->bind_mounts[i].recursive ? (uint64_t) MS_REC : (uint64_t) 0);
675 if (r < 0)
676 return r;
677 }
678
679 return sd_bus_message_close_container(reply);
680 }
681
682 static int property_get_temporary_filesystems(
683 sd_bus *bus,
684 const char *path,
685 const char *interface,
686 const char *property,
687 sd_bus_message *reply,
688 void *userdata,
689 sd_bus_error *error) {
690
691 ExecContext *c = userdata;
692 unsigned i;
693 int r;
694
695 assert(bus);
696 assert(c);
697 assert(property);
698 assert(reply);
699
700 r = sd_bus_message_open_container(reply, 'a', "(ss)");
701 if (r < 0)
702 return r;
703
704 for (i = 0; i < c->n_temporary_filesystems; i++) {
705 TemporaryFileSystem *t = c->temporary_filesystems + i;
706
707 r = sd_bus_message_append(
708 reply, "(ss)",
709 t->path,
710 t->options);
711 if (r < 0)
712 return r;
713 }
714
715 return sd_bus_message_close_container(reply);
716 }
717
718 static int property_get_log_extra_fields(
719 sd_bus *bus,
720 const char *path,
721 const char *interface,
722 const char *property,
723 sd_bus_message *reply,
724 void *userdata,
725 sd_bus_error *error) {
726
727 ExecContext *c = userdata;
728 size_t i;
729 int r;
730
731 assert(bus);
732 assert(c);
733 assert(property);
734 assert(reply);
735
736 r = sd_bus_message_open_container(reply, 'a', "ay");
737 if (r < 0)
738 return r;
739
740 for (i = 0; i < c->n_log_extra_fields; i++) {
741 r = sd_bus_message_append_array(reply, 'y', c->log_extra_fields[i].iov_base, c->log_extra_fields[i].iov_len);
742 if (r < 0)
743 return r;
744 }
745
746 return sd_bus_message_close_container(reply);
747 }
748
749 const sd_bus_vtable bus_exec_vtable[] = {
750 SD_BUS_VTABLE_START(0),
751 SD_BUS_PROPERTY("Environment", "as", NULL, offsetof(ExecContext, environment), SD_BUS_VTABLE_PROPERTY_CONST),
752 SD_BUS_PROPERTY("EnvironmentFiles", "a(sb)", property_get_environment_files, 0, SD_BUS_VTABLE_PROPERTY_CONST),
753 SD_BUS_PROPERTY("PassEnvironment", "as", NULL, offsetof(ExecContext, pass_environment), SD_BUS_VTABLE_PROPERTY_CONST),
754 SD_BUS_PROPERTY("UnsetEnvironment", "as", NULL, offsetof(ExecContext, unset_environment), SD_BUS_VTABLE_PROPERTY_CONST),
755 SD_BUS_PROPERTY("UMask", "u", bus_property_get_mode, offsetof(ExecContext, umask), SD_BUS_VTABLE_PROPERTY_CONST),
756 SD_BUS_PROPERTY("LimitCPU", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_CPU]), SD_BUS_VTABLE_PROPERTY_CONST),
757 SD_BUS_PROPERTY("LimitCPUSoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_CPU]), SD_BUS_VTABLE_PROPERTY_CONST),
758 SD_BUS_PROPERTY("LimitFSIZE", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_FSIZE]), SD_BUS_VTABLE_PROPERTY_CONST),
759 SD_BUS_PROPERTY("LimitFSIZESoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_FSIZE]), SD_BUS_VTABLE_PROPERTY_CONST),
760 SD_BUS_PROPERTY("LimitDATA", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_DATA]), SD_BUS_VTABLE_PROPERTY_CONST),
761 SD_BUS_PROPERTY("LimitDATASoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_DATA]), SD_BUS_VTABLE_PROPERTY_CONST),
762 SD_BUS_PROPERTY("LimitSTACK", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_STACK]), SD_BUS_VTABLE_PROPERTY_CONST),
763 SD_BUS_PROPERTY("LimitSTACKSoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_STACK]), SD_BUS_VTABLE_PROPERTY_CONST),
764 SD_BUS_PROPERTY("LimitCORE", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_CORE]), SD_BUS_VTABLE_PROPERTY_CONST),
765 SD_BUS_PROPERTY("LimitCORESoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_CORE]), SD_BUS_VTABLE_PROPERTY_CONST),
766 SD_BUS_PROPERTY("LimitRSS", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_RSS]), SD_BUS_VTABLE_PROPERTY_CONST),
767 SD_BUS_PROPERTY("LimitRSSSoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_RSS]), SD_BUS_VTABLE_PROPERTY_CONST),
768 SD_BUS_PROPERTY("LimitNOFILE", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_NOFILE]), SD_BUS_VTABLE_PROPERTY_CONST),
769 SD_BUS_PROPERTY("LimitNOFILESoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_NOFILE]), SD_BUS_VTABLE_PROPERTY_CONST),
770 SD_BUS_PROPERTY("LimitAS", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_AS]), SD_BUS_VTABLE_PROPERTY_CONST),
771 SD_BUS_PROPERTY("LimitASSoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_AS]), SD_BUS_VTABLE_PROPERTY_CONST),
772 SD_BUS_PROPERTY("LimitNPROC", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_NPROC]), SD_BUS_VTABLE_PROPERTY_CONST),
773 SD_BUS_PROPERTY("LimitNPROCSoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_NPROC]), SD_BUS_VTABLE_PROPERTY_CONST),
774 SD_BUS_PROPERTY("LimitMEMLOCK", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_MEMLOCK]), SD_BUS_VTABLE_PROPERTY_CONST),
775 SD_BUS_PROPERTY("LimitMEMLOCKSoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_MEMLOCK]), SD_BUS_VTABLE_PROPERTY_CONST),
776 SD_BUS_PROPERTY("LimitLOCKS", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_LOCKS]), SD_BUS_VTABLE_PROPERTY_CONST),
777 SD_BUS_PROPERTY("LimitLOCKSSoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_LOCKS]), SD_BUS_VTABLE_PROPERTY_CONST),
778 SD_BUS_PROPERTY("LimitSIGPENDING", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_SIGPENDING]), SD_BUS_VTABLE_PROPERTY_CONST),
779 SD_BUS_PROPERTY("LimitSIGPENDINGSoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_SIGPENDING]), SD_BUS_VTABLE_PROPERTY_CONST),
780 SD_BUS_PROPERTY("LimitMSGQUEUE", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_MSGQUEUE]), SD_BUS_VTABLE_PROPERTY_CONST),
781 SD_BUS_PROPERTY("LimitMSGQUEUESoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_MSGQUEUE]), SD_BUS_VTABLE_PROPERTY_CONST),
782 SD_BUS_PROPERTY("LimitNICE", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_NICE]), SD_BUS_VTABLE_PROPERTY_CONST),
783 SD_BUS_PROPERTY("LimitNICESoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_NICE]), SD_BUS_VTABLE_PROPERTY_CONST),
784 SD_BUS_PROPERTY("LimitRTPRIO", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_RTPRIO]), SD_BUS_VTABLE_PROPERTY_CONST),
785 SD_BUS_PROPERTY("LimitRTPRIOSoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_RTPRIO]), SD_BUS_VTABLE_PROPERTY_CONST),
786 SD_BUS_PROPERTY("LimitRTTIME", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_RTTIME]), SD_BUS_VTABLE_PROPERTY_CONST),
787 SD_BUS_PROPERTY("LimitRTTIMESoft", "t", bus_property_get_rlimit, offsetof(ExecContext, rlimit[RLIMIT_RTTIME]), SD_BUS_VTABLE_PROPERTY_CONST),
788 SD_BUS_PROPERTY("WorkingDirectory", "s", property_get_working_directory, 0, SD_BUS_VTABLE_PROPERTY_CONST),
789 SD_BUS_PROPERTY("RootDirectory", "s", NULL, offsetof(ExecContext, root_directory), SD_BUS_VTABLE_PROPERTY_CONST),
790 SD_BUS_PROPERTY("RootImage", "s", NULL, offsetof(ExecContext, root_image), SD_BUS_VTABLE_PROPERTY_CONST),
791 SD_BUS_PROPERTY("OOMScoreAdjust", "i", property_get_oom_score_adjust, 0, SD_BUS_VTABLE_PROPERTY_CONST),
792 SD_BUS_PROPERTY("CoredumpFilter", "t", property_get_coredump_filter, 0, SD_BUS_VTABLE_PROPERTY_CONST),
793 SD_BUS_PROPERTY("Nice", "i", property_get_nice, 0, SD_BUS_VTABLE_PROPERTY_CONST),
794 SD_BUS_PROPERTY("IOSchedulingClass", "i", property_get_ioprio_class, 0, SD_BUS_VTABLE_PROPERTY_CONST),
795 SD_BUS_PROPERTY("IOSchedulingPriority", "i", property_get_ioprio_priority, 0, SD_BUS_VTABLE_PROPERTY_CONST),
796 SD_BUS_PROPERTY("CPUSchedulingPolicy", "i", property_get_cpu_sched_policy, 0, SD_BUS_VTABLE_PROPERTY_CONST),
797 SD_BUS_PROPERTY("CPUSchedulingPriority", "i", property_get_cpu_sched_priority, 0, SD_BUS_VTABLE_PROPERTY_CONST),
798 SD_BUS_PROPERTY("CPUAffinity", "ay", property_get_cpu_affinity, 0, SD_BUS_VTABLE_PROPERTY_CONST),
799 SD_BUS_PROPERTY("CPUAffinityFromNUMA", "b", property_get_cpu_affinity_from_numa, 0, SD_BUS_VTABLE_PROPERTY_CONST),
800 SD_BUS_PROPERTY("NUMAPolicy", "i", property_get_numa_policy, 0, SD_BUS_VTABLE_PROPERTY_CONST),
801 SD_BUS_PROPERTY("NUMAMask", "ay", property_get_numa_mask, 0, SD_BUS_VTABLE_PROPERTY_CONST),
802 SD_BUS_PROPERTY("TimerSlackNSec", "t", property_get_timer_slack_nsec, 0, SD_BUS_VTABLE_PROPERTY_CONST),
803 SD_BUS_PROPERTY("CPUSchedulingResetOnFork", "b", bus_property_get_bool, offsetof(ExecContext, cpu_sched_reset_on_fork), SD_BUS_VTABLE_PROPERTY_CONST),
804 SD_BUS_PROPERTY("NonBlocking", "b", bus_property_get_bool, offsetof(ExecContext, non_blocking), SD_BUS_VTABLE_PROPERTY_CONST),
805 SD_BUS_PROPERTY("StandardInput", "s", property_get_exec_input, offsetof(ExecContext, std_input), SD_BUS_VTABLE_PROPERTY_CONST),
806 SD_BUS_PROPERTY("StandardInputFileDescriptorName", "s", property_get_stdio_fdname, 0, SD_BUS_VTABLE_PROPERTY_CONST),
807 SD_BUS_PROPERTY("StandardInputData", "ay", property_get_input_data, 0, SD_BUS_VTABLE_PROPERTY_CONST),
808 SD_BUS_PROPERTY("StandardOutput", "s", bus_property_get_exec_output, offsetof(ExecContext, std_output), SD_BUS_VTABLE_PROPERTY_CONST),
809 SD_BUS_PROPERTY("StandardOutputFileDescriptorName", "s", property_get_stdio_fdname, 0, SD_BUS_VTABLE_PROPERTY_CONST),
810 SD_BUS_PROPERTY("StandardError", "s", bus_property_get_exec_output, offsetof(ExecContext, std_error), SD_BUS_VTABLE_PROPERTY_CONST),
811 SD_BUS_PROPERTY("StandardErrorFileDescriptorName", "s", property_get_stdio_fdname, 0, SD_BUS_VTABLE_PROPERTY_CONST),
812 SD_BUS_PROPERTY("TTYPath", "s", NULL, offsetof(ExecContext, tty_path), SD_BUS_VTABLE_PROPERTY_CONST),
813 SD_BUS_PROPERTY("TTYReset", "b", bus_property_get_bool, offsetof(ExecContext, tty_reset), SD_BUS_VTABLE_PROPERTY_CONST),
814 SD_BUS_PROPERTY("TTYVHangup", "b", bus_property_get_bool, offsetof(ExecContext, tty_vhangup), SD_BUS_VTABLE_PROPERTY_CONST),
815 SD_BUS_PROPERTY("TTYVTDisallocate", "b", bus_property_get_bool, offsetof(ExecContext, tty_vt_disallocate), SD_BUS_VTABLE_PROPERTY_CONST),
816 SD_BUS_PROPERTY("SyslogPriority", "i", bus_property_get_int, offsetof(ExecContext, syslog_priority), SD_BUS_VTABLE_PROPERTY_CONST),
817 SD_BUS_PROPERTY("SyslogIdentifier", "s", NULL, offsetof(ExecContext, syslog_identifier), SD_BUS_VTABLE_PROPERTY_CONST),
818 SD_BUS_PROPERTY("SyslogLevelPrefix", "b", bus_property_get_bool, offsetof(ExecContext, syslog_level_prefix), SD_BUS_VTABLE_PROPERTY_CONST),
819 SD_BUS_PROPERTY("SyslogLevel", "i", property_get_syslog_level, offsetof(ExecContext, syslog_priority), SD_BUS_VTABLE_PROPERTY_CONST),
820 SD_BUS_PROPERTY("SyslogFacility", "i", property_get_syslog_facility, offsetof(ExecContext, syslog_priority), SD_BUS_VTABLE_PROPERTY_CONST),
821 SD_BUS_PROPERTY("LogLevelMax", "i", bus_property_get_int, offsetof(ExecContext, log_level_max), SD_BUS_VTABLE_PROPERTY_CONST),
822 SD_BUS_PROPERTY("LogRateLimitIntervalUSec", "t", bus_property_get_usec, offsetof(ExecContext, log_ratelimit_interval_usec), SD_BUS_VTABLE_PROPERTY_CONST),
823 SD_BUS_PROPERTY("LogRateLimitBurst", "u", bus_property_get_unsigned, offsetof(ExecContext, log_ratelimit_burst), SD_BUS_VTABLE_PROPERTY_CONST),
824 SD_BUS_PROPERTY("LogExtraFields", "aay", property_get_log_extra_fields, 0, SD_BUS_VTABLE_PROPERTY_CONST),
825 SD_BUS_PROPERTY("LogNamespace", "s", NULL, offsetof(ExecContext, log_namespace), SD_BUS_VTABLE_PROPERTY_CONST),
826 SD_BUS_PROPERTY("SecureBits", "i", bus_property_get_int, offsetof(ExecContext, secure_bits), SD_BUS_VTABLE_PROPERTY_CONST),
827 SD_BUS_PROPERTY("CapabilityBoundingSet", "t", NULL, offsetof(ExecContext, capability_bounding_set), SD_BUS_VTABLE_PROPERTY_CONST),
828 SD_BUS_PROPERTY("AmbientCapabilities", "t", NULL, offsetof(ExecContext, capability_ambient_set), SD_BUS_VTABLE_PROPERTY_CONST),
829 SD_BUS_PROPERTY("User", "s", NULL, offsetof(ExecContext, user), SD_BUS_VTABLE_PROPERTY_CONST),
830 SD_BUS_PROPERTY("Group", "s", NULL, offsetof(ExecContext, group), SD_BUS_VTABLE_PROPERTY_CONST),
831 SD_BUS_PROPERTY("DynamicUser", "b", bus_property_get_bool, offsetof(ExecContext, dynamic_user), SD_BUS_VTABLE_PROPERTY_CONST),
832 SD_BUS_PROPERTY("RemoveIPC", "b", bus_property_get_bool, offsetof(ExecContext, remove_ipc), SD_BUS_VTABLE_PROPERTY_CONST),
833 SD_BUS_PROPERTY("SupplementaryGroups", "as", NULL, offsetof(ExecContext, supplementary_groups), SD_BUS_VTABLE_PROPERTY_CONST),
834 SD_BUS_PROPERTY("PAMName", "s", NULL, offsetof(ExecContext, pam_name), SD_BUS_VTABLE_PROPERTY_CONST),
835 SD_BUS_PROPERTY("ReadWritePaths", "as", NULL, offsetof(ExecContext, read_write_paths), SD_BUS_VTABLE_PROPERTY_CONST),
836 SD_BUS_PROPERTY("ReadOnlyPaths", "as", NULL, offsetof(ExecContext, read_only_paths), SD_BUS_VTABLE_PROPERTY_CONST),
837 SD_BUS_PROPERTY("InaccessiblePaths", "as", NULL, offsetof(ExecContext, inaccessible_paths), SD_BUS_VTABLE_PROPERTY_CONST),
838 SD_BUS_PROPERTY("MountFlags", "t", bus_property_get_ulong, offsetof(ExecContext, mount_flags), SD_BUS_VTABLE_PROPERTY_CONST),
839 SD_BUS_PROPERTY("PrivateTmp", "b", bus_property_get_bool, offsetof(ExecContext, private_tmp), SD_BUS_VTABLE_PROPERTY_CONST),
840 SD_BUS_PROPERTY("PrivateDevices", "b", bus_property_get_bool, offsetof(ExecContext, private_devices), SD_BUS_VTABLE_PROPERTY_CONST),
841 SD_BUS_PROPERTY("ProtectClock", "b", bus_property_get_bool, offsetof(ExecContext, protect_clock), SD_BUS_VTABLE_PROPERTY_CONST),
842 SD_BUS_PROPERTY("ProtectKernelTunables", "b", bus_property_get_bool, offsetof(ExecContext, protect_kernel_tunables), SD_BUS_VTABLE_PROPERTY_CONST),
843 SD_BUS_PROPERTY("ProtectKernelModules", "b", bus_property_get_bool, offsetof(ExecContext, protect_kernel_modules), SD_BUS_VTABLE_PROPERTY_CONST),
844 SD_BUS_PROPERTY("ProtectKernelLogs", "b", bus_property_get_bool, offsetof(ExecContext, protect_kernel_logs), SD_BUS_VTABLE_PROPERTY_CONST),
845 SD_BUS_PROPERTY("ProtectControlGroups", "b", bus_property_get_bool, offsetof(ExecContext, protect_control_groups), SD_BUS_VTABLE_PROPERTY_CONST),
846 SD_BUS_PROPERTY("PrivateNetwork", "b", bus_property_get_bool, offsetof(ExecContext, private_network), SD_BUS_VTABLE_PROPERTY_CONST),
847 SD_BUS_PROPERTY("PrivateUsers", "b", bus_property_get_bool, offsetof(ExecContext, private_users), SD_BUS_VTABLE_PROPERTY_CONST),
848 SD_BUS_PROPERTY("PrivateMounts", "b", bus_property_get_bool, offsetof(ExecContext, private_mounts), SD_BUS_VTABLE_PROPERTY_CONST),
849 SD_BUS_PROPERTY("ProtectHome", "s", property_get_protect_home, offsetof(ExecContext, protect_home), SD_BUS_VTABLE_PROPERTY_CONST),
850 SD_BUS_PROPERTY("ProtectSystem", "s", property_get_protect_system, offsetof(ExecContext, protect_system), SD_BUS_VTABLE_PROPERTY_CONST),
851 SD_BUS_PROPERTY("SameProcessGroup", "b", bus_property_get_bool, offsetof(ExecContext, same_pgrp), SD_BUS_VTABLE_PROPERTY_CONST),
852 SD_BUS_PROPERTY("UtmpIdentifier", "s", NULL, offsetof(ExecContext, utmp_id), SD_BUS_VTABLE_PROPERTY_CONST),
853 SD_BUS_PROPERTY("UtmpMode", "s", property_get_exec_utmp_mode, offsetof(ExecContext, utmp_mode), SD_BUS_VTABLE_PROPERTY_CONST),
854 SD_BUS_PROPERTY("SELinuxContext", "(bs)", property_get_selinux_context, 0, SD_BUS_VTABLE_PROPERTY_CONST),
855 SD_BUS_PROPERTY("AppArmorProfile", "(bs)", property_get_apparmor_profile, 0, SD_BUS_VTABLE_PROPERTY_CONST),
856 SD_BUS_PROPERTY("SmackProcessLabel", "(bs)", property_get_smack_process_label, 0, SD_BUS_VTABLE_PROPERTY_CONST),
857 SD_BUS_PROPERTY("IgnoreSIGPIPE", "b", bus_property_get_bool, offsetof(ExecContext, ignore_sigpipe), SD_BUS_VTABLE_PROPERTY_CONST),
858 SD_BUS_PROPERTY("NoNewPrivileges", "b", bus_property_get_bool, offsetof(ExecContext, no_new_privileges), SD_BUS_VTABLE_PROPERTY_CONST),
859 SD_BUS_PROPERTY("SystemCallFilter", "(bas)", property_get_syscall_filter, 0, SD_BUS_VTABLE_PROPERTY_CONST),
860 SD_BUS_PROPERTY("SystemCallArchitectures", "as", property_get_syscall_archs, 0, SD_BUS_VTABLE_PROPERTY_CONST),
861 SD_BUS_PROPERTY("SystemCallErrorNumber", "i", bus_property_get_int, offsetof(ExecContext, syscall_errno), SD_BUS_VTABLE_PROPERTY_CONST),
862 SD_BUS_PROPERTY("Personality", "s", property_get_personality, offsetof(ExecContext, personality), SD_BUS_VTABLE_PROPERTY_CONST),
863 SD_BUS_PROPERTY("LockPersonality", "b", bus_property_get_bool, offsetof(ExecContext, lock_personality), SD_BUS_VTABLE_PROPERTY_CONST),
864 SD_BUS_PROPERTY("RestrictAddressFamilies", "(bas)", property_get_address_families, 0, SD_BUS_VTABLE_PROPERTY_CONST),
865 SD_BUS_PROPERTY("RuntimeDirectoryPreserve", "s", property_get_exec_preserve_mode, offsetof(ExecContext, runtime_directory_preserve_mode), SD_BUS_VTABLE_PROPERTY_CONST),
866 SD_BUS_PROPERTY("RuntimeDirectoryMode", "u", bus_property_get_mode, offsetof(ExecContext, directories[EXEC_DIRECTORY_RUNTIME].mode), SD_BUS_VTABLE_PROPERTY_CONST),
867 SD_BUS_PROPERTY("RuntimeDirectory", "as", NULL, offsetof(ExecContext, directories[EXEC_DIRECTORY_RUNTIME].paths), SD_BUS_VTABLE_PROPERTY_CONST),
868 SD_BUS_PROPERTY("StateDirectoryMode", "u", bus_property_get_mode, offsetof(ExecContext, directories[EXEC_DIRECTORY_STATE].mode), SD_BUS_VTABLE_PROPERTY_CONST),
869 SD_BUS_PROPERTY("StateDirectory", "as", NULL, offsetof(ExecContext, directories[EXEC_DIRECTORY_STATE].paths), SD_BUS_VTABLE_PROPERTY_CONST),
870 SD_BUS_PROPERTY("CacheDirectoryMode", "u", bus_property_get_mode, offsetof(ExecContext, directories[EXEC_DIRECTORY_CACHE].mode), SD_BUS_VTABLE_PROPERTY_CONST),
871 SD_BUS_PROPERTY("CacheDirectory", "as", NULL, offsetof(ExecContext, directories[EXEC_DIRECTORY_CACHE].paths), SD_BUS_VTABLE_PROPERTY_CONST),
872 SD_BUS_PROPERTY("LogsDirectoryMode", "u", bus_property_get_mode, offsetof(ExecContext, directories[EXEC_DIRECTORY_LOGS].mode), SD_BUS_VTABLE_PROPERTY_CONST),
873 SD_BUS_PROPERTY("LogsDirectory", "as", NULL, offsetof(ExecContext, directories[EXEC_DIRECTORY_LOGS].paths), SD_BUS_VTABLE_PROPERTY_CONST),
874 SD_BUS_PROPERTY("ConfigurationDirectoryMode", "u", bus_property_get_mode, offsetof(ExecContext, directories[EXEC_DIRECTORY_CONFIGURATION].mode), SD_BUS_VTABLE_PROPERTY_CONST),
875 SD_BUS_PROPERTY("ConfigurationDirectory", "as", NULL, offsetof(ExecContext, directories[EXEC_DIRECTORY_CONFIGURATION].paths), SD_BUS_VTABLE_PROPERTY_CONST),
876 SD_BUS_PROPERTY("TimeoutCleanUSec", "t", bus_property_get_usec, offsetof(ExecContext, timeout_clean_usec), SD_BUS_VTABLE_PROPERTY_CONST),
877 SD_BUS_PROPERTY("MemoryDenyWriteExecute", "b", bus_property_get_bool, offsetof(ExecContext, memory_deny_write_execute), SD_BUS_VTABLE_PROPERTY_CONST),
878 SD_BUS_PROPERTY("RestrictRealtime", "b", bus_property_get_bool, offsetof(ExecContext, restrict_realtime), SD_BUS_VTABLE_PROPERTY_CONST),
879 SD_BUS_PROPERTY("RestrictSUIDSGID", "b", bus_property_get_bool, offsetof(ExecContext, restrict_suid_sgid), SD_BUS_VTABLE_PROPERTY_CONST),
880 SD_BUS_PROPERTY("RestrictNamespaces", "t", bus_property_get_ulong, offsetof(ExecContext, restrict_namespaces), SD_BUS_VTABLE_PROPERTY_CONST),
881 SD_BUS_PROPERTY("BindPaths", "a(ssbt)", property_get_bind_paths, 0, SD_BUS_VTABLE_PROPERTY_CONST),
882 SD_BUS_PROPERTY("BindReadOnlyPaths", "a(ssbt)", property_get_bind_paths, 0, SD_BUS_VTABLE_PROPERTY_CONST),
883 SD_BUS_PROPERTY("TemporaryFileSystem", "a(ss)", property_get_temporary_filesystems, 0, SD_BUS_VTABLE_PROPERTY_CONST),
884 SD_BUS_PROPERTY("MountAPIVFS", "b", bus_property_get_bool, offsetof(ExecContext, mount_apivfs), SD_BUS_VTABLE_PROPERTY_CONST),
885 SD_BUS_PROPERTY("KeyringMode", "s", property_get_exec_keyring_mode, offsetof(ExecContext, keyring_mode), SD_BUS_VTABLE_PROPERTY_CONST),
886 SD_BUS_PROPERTY("ProtectHostname", "b", bus_property_get_bool, offsetof(ExecContext, protect_hostname), SD_BUS_VTABLE_PROPERTY_CONST),
887 SD_BUS_PROPERTY("NetworkNamespacePath", "s", NULL, offsetof(ExecContext, network_namespace_path), SD_BUS_VTABLE_PROPERTY_CONST),
888
889 /* Obsolete/redundant properties: */
890 SD_BUS_PROPERTY("Capabilities", "s", property_get_empty_string, 0, SD_BUS_VTABLE_PROPERTY_CONST|SD_BUS_VTABLE_HIDDEN),
891 SD_BUS_PROPERTY("ReadWriteDirectories", "as", NULL, offsetof(ExecContext, read_write_paths), SD_BUS_VTABLE_PROPERTY_CONST|SD_BUS_VTABLE_HIDDEN),
892 SD_BUS_PROPERTY("ReadOnlyDirectories", "as", NULL, offsetof(ExecContext, read_only_paths), SD_BUS_VTABLE_PROPERTY_CONST|SD_BUS_VTABLE_HIDDEN),
893 SD_BUS_PROPERTY("InaccessibleDirectories", "as", NULL, offsetof(ExecContext, inaccessible_paths), SD_BUS_VTABLE_PROPERTY_CONST|SD_BUS_VTABLE_HIDDEN),
894 SD_BUS_PROPERTY("IOScheduling", "i", property_get_ioprio, 0, SD_BUS_VTABLE_PROPERTY_CONST|SD_BUS_VTABLE_HIDDEN),
895
896 SD_BUS_VTABLE_END
897 };
898
899 static int append_exec_command(sd_bus_message *reply, ExecCommand *c) {
900 int r;
901
902 assert(reply);
903 assert(c);
904
905 if (!c->path)
906 return 0;
907
908 r = sd_bus_message_open_container(reply, 'r', "sasbttttuii");
909 if (r < 0)
910 return r;
911
912 r = sd_bus_message_append(reply, "s", c->path);
913 if (r < 0)
914 return r;
915
916 r = sd_bus_message_append_strv(reply, c->argv);
917 if (r < 0)
918 return r;
919
920 r = sd_bus_message_append(reply, "bttttuii",
921 !!(c->flags & EXEC_COMMAND_IGNORE_FAILURE),
922 c->exec_status.start_timestamp.realtime,
923 c->exec_status.start_timestamp.monotonic,
924 c->exec_status.exit_timestamp.realtime,
925 c->exec_status.exit_timestamp.monotonic,
926 (uint32_t) c->exec_status.pid,
927 (int32_t) c->exec_status.code,
928 (int32_t) c->exec_status.status);
929 if (r < 0)
930 return r;
931
932 return sd_bus_message_close_container(reply);
933 }
934
935 static int append_exec_ex_command(sd_bus_message *reply, ExecCommand *c) {
936 _cleanup_strv_free_ char **ex_opts = NULL;
937 int r;
938
939 assert(reply);
940 assert(c);
941
942 if (!c->path)
943 return 0;
944
945 r = sd_bus_message_open_container(reply, 'r', "sasasttttuii");
946 if (r < 0)
947 return r;
948
949 r = sd_bus_message_append(reply, "s", c->path);
950 if (r < 0)
951 return r;
952
953 r = sd_bus_message_append_strv(reply, c->argv);
954 if (r < 0)
955 return r;
956
957 r = exec_command_flags_to_strv(c->flags, &ex_opts);
958 if (r < 0)
959 return r;
960
961 r = sd_bus_message_append_strv(reply, ex_opts);
962 if (r < 0)
963 return r;
964
965 r = sd_bus_message_append(reply, "ttttuii",
966 c->exec_status.start_timestamp.realtime,
967 c->exec_status.start_timestamp.monotonic,
968 c->exec_status.exit_timestamp.realtime,
969 c->exec_status.exit_timestamp.monotonic,
970 (uint32_t) c->exec_status.pid,
971 (int32_t) c->exec_status.code,
972 (int32_t) c->exec_status.status);
973 if (r < 0)
974 return r;
975
976 return sd_bus_message_close_container(reply);
977 }
978
979 int bus_property_get_exec_command(
980 sd_bus *bus,
981 const char *path,
982 const char *interface,
983 const char *property,
984 sd_bus_message *reply,
985 void *userdata,
986 sd_bus_error *ret_error) {
987
988 ExecCommand *c = (ExecCommand*) userdata;
989 int r;
990
991 assert(bus);
992 assert(reply);
993
994 r = sd_bus_message_open_container(reply, 'a', "(sasbttttuii)");
995 if (r < 0)
996 return r;
997
998 r = append_exec_command(reply, c);
999 if (r < 0)
1000 return r;
1001
1002 return sd_bus_message_close_container(reply);
1003 }
1004
1005 int bus_property_get_exec_command_list(
1006 sd_bus *bus,
1007 const char *path,
1008 const char *interface,
1009 const char *property,
1010 sd_bus_message *reply,
1011 void *userdata,
1012 sd_bus_error *ret_error) {
1013
1014 ExecCommand *c = *(ExecCommand**) userdata;
1015 int r;
1016
1017 assert(bus);
1018 assert(reply);
1019
1020 r = sd_bus_message_open_container(reply, 'a', "(sasbttttuii)");
1021 if (r < 0)
1022 return r;
1023
1024 LIST_FOREACH(command, c, c) {
1025 r = append_exec_command(reply, c);
1026 if (r < 0)
1027 return r;
1028 }
1029
1030 return sd_bus_message_close_container(reply);
1031 }
1032
1033 int bus_property_get_exec_ex_command_list(
1034 sd_bus *bus,
1035 const char *path,
1036 const char *interface,
1037 const char *property,
1038 sd_bus_message *reply,
1039 void *userdata,
1040 sd_bus_error *ret_error) {
1041
1042 ExecCommand *c, *exec_command = *(ExecCommand**) userdata;
1043 int r;
1044
1045 assert(bus);
1046 assert(reply);
1047
1048 r = sd_bus_message_open_container(reply, 'a', "(sasasttttuii)");
1049 if (r < 0)
1050 return r;
1051
1052 LIST_FOREACH(command, c, exec_command) {
1053 r = append_exec_ex_command(reply, c);
1054 if (r < 0)
1055 return r;
1056 }
1057
1058 return sd_bus_message_close_container(reply);
1059 }
1060
1061 static char *exec_command_flags_to_exec_chars(ExecCommandFlags flags) {
1062 return strjoin(FLAGS_SET(flags, EXEC_COMMAND_IGNORE_FAILURE) ? "-" : "",
1063 FLAGS_SET(flags, EXEC_COMMAND_NO_ENV_EXPAND) ? ":" : "",
1064 FLAGS_SET(flags, EXEC_COMMAND_FULLY_PRIVILEGED) ? "+" : "",
1065 FLAGS_SET(flags, EXEC_COMMAND_NO_SETUID) ? "!" : "",
1066 FLAGS_SET(flags, EXEC_COMMAND_AMBIENT_MAGIC) ? "!!" : "");
1067 }
1068
1069 int bus_set_transient_exec_command(
1070 Unit *u,
1071 const char *name,
1072 ExecCommand **exec_command,
1073 sd_bus_message *message,
1074 UnitWriteFlags flags,
1075 sd_bus_error *error) {
1076 bool is_ex_prop = endswith(name, "Ex");
1077 unsigned n = 0;
1078 int r;
1079
1080 r = sd_bus_message_enter_container(message, 'a', is_ex_prop ? "(sasas)" : "(sasb)");
1081 if (r < 0)
1082 return r;
1083
1084 while ((r = sd_bus_message_enter_container(message, 'r', is_ex_prop ? "sasas" : "sasb")) > 0) {
1085 _cleanup_strv_free_ char **argv = NULL, **ex_opts = NULL;
1086 const char *path;
1087 int b;
1088
1089 r = sd_bus_message_read(message, "s", &path);
1090 if (r < 0)
1091 return r;
1092
1093 if (!path_is_absolute(path))
1094 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Path %s is not absolute.", path);
1095
1096 r = sd_bus_message_read_strv(message, &argv);
1097 if (r < 0)
1098 return r;
1099
1100 r = is_ex_prop ? sd_bus_message_read_strv(message, &ex_opts) : sd_bus_message_read(message, "b", &b);
1101 if (r < 0)
1102 return r;
1103
1104 r = sd_bus_message_exit_container(message);
1105 if (r < 0)
1106 return r;
1107
1108 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1109 ExecCommand *c;
1110
1111 c = new0(ExecCommand, 1);
1112 if (!c)
1113 return -ENOMEM;
1114
1115 c->path = strdup(path);
1116 if (!c->path) {
1117 free(c);
1118 return -ENOMEM;
1119 }
1120
1121 c->argv = TAKE_PTR(argv);
1122
1123 if (is_ex_prop) {
1124 r = exec_command_flags_from_strv(ex_opts, &c->flags);
1125 if (r < 0)
1126 return r;
1127 } else
1128 c->flags = b ? EXEC_COMMAND_IGNORE_FAILURE : 0;
1129
1130 path_simplify(c->path, false);
1131 exec_command_append_list(exec_command, c);
1132 }
1133
1134 n++;
1135 }
1136 if (r < 0)
1137 return r;
1138
1139 r = sd_bus_message_exit_container(message);
1140 if (r < 0)
1141 return r;
1142
1143 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1144 _cleanup_free_ char *buf = NULL;
1145 _cleanup_fclose_ FILE *f = NULL;
1146 ExecCommand *c;
1147 size_t size = 0;
1148
1149 if (n == 0)
1150 *exec_command = exec_command_free_list(*exec_command);
1151
1152 f = open_memstream_unlocked(&buf, &size);
1153 if (!f)
1154 return -ENOMEM;
1155
1156 fprintf(f, "%s=\n", name);
1157
1158 LIST_FOREACH(command, c, *exec_command) {
1159 _cleanup_free_ char *a = NULL, *exec_chars = NULL;
1160
1161 exec_chars = exec_command_flags_to_exec_chars(c->flags);
1162 if (!exec_chars)
1163 return -ENOMEM;
1164
1165 a = unit_concat_strv(c->argv, UNIT_ESCAPE_C|UNIT_ESCAPE_SPECIFIERS);
1166 if (!a)
1167 return -ENOMEM;
1168
1169 if (streq_ptr(c->path, c->argv ? c->argv[0] : NULL))
1170 fprintf(f, "%s=%s%s\n", name, exec_chars, a);
1171 else {
1172 _cleanup_free_ char *t = NULL;
1173 const char *p;
1174
1175 p = unit_escape_setting(c->path, UNIT_ESCAPE_C|UNIT_ESCAPE_SPECIFIERS, &t);
1176 if (!p)
1177 return -ENOMEM;
1178
1179 fprintf(f, "%s=%s@%s %s\n", name, exec_chars, p, a);
1180 }
1181 }
1182
1183 r = fflush_and_check(f);
1184 if (r < 0)
1185 return r;
1186
1187 unit_write_setting(u, flags, name, buf);
1188 }
1189
1190 return 1;
1191 }
1192
1193 static int parse_personality(const char *s, unsigned long *p) {
1194 unsigned long v;
1195
1196 assert(p);
1197
1198 v = personality_from_string(s);
1199 if (v == PERSONALITY_INVALID)
1200 return -EINVAL;
1201
1202 *p = v;
1203 return 0;
1204 }
1205
1206 static const char* mount_propagation_flags_to_string_with_check(unsigned long n) {
1207 if (!IN_SET(n, 0, MS_SHARED, MS_PRIVATE, MS_SLAVE))
1208 return NULL;
1209
1210 return mount_propagation_flags_to_string(n);
1211 }
1212
1213 static BUS_DEFINE_SET_TRANSIENT(nsec, "t", uint64_t, nsec_t, NSEC_FMT);
1214 static BUS_DEFINE_SET_TRANSIENT_IS_VALID(log_level, "i", int32_t, int, "%" PRIi32, log_level_is_valid);
1215 #if HAVE_SECCOMP
1216 static BUS_DEFINE_SET_TRANSIENT_IS_VALID(errno, "i", int32_t, int, "%" PRIi32, errno_is_valid);
1217 #endif
1218 static BUS_DEFINE_SET_TRANSIENT_PARSE(std_input, ExecInput, exec_input_from_string);
1219 static BUS_DEFINE_SET_TRANSIENT_PARSE(std_output, ExecOutput, exec_output_from_string);
1220 static BUS_DEFINE_SET_TRANSIENT_PARSE(utmp_mode, ExecUtmpMode, exec_utmp_mode_from_string);
1221 static BUS_DEFINE_SET_TRANSIENT_PARSE(protect_system, ProtectSystem, protect_system_from_string);
1222 static BUS_DEFINE_SET_TRANSIENT_PARSE(protect_home, ProtectHome, protect_home_from_string);
1223 static BUS_DEFINE_SET_TRANSIENT_PARSE(keyring_mode, ExecKeyringMode, exec_keyring_mode_from_string);
1224 static BUS_DEFINE_SET_TRANSIENT_PARSE(preserve_mode, ExecPreserveMode, exec_preserve_mode_from_string);
1225 static BUS_DEFINE_SET_TRANSIENT_PARSE_PTR(personality, unsigned long, parse_personality);
1226 static BUS_DEFINE_SET_TRANSIENT_TO_STRING_ALLOC(secure_bits, "i", int32_t, int, "%" PRIi32, secure_bits_to_string_alloc_with_check);
1227 static BUS_DEFINE_SET_TRANSIENT_TO_STRING_ALLOC(capability, "t", uint64_t, uint64_t, "%" PRIu64, capability_set_to_string_alloc);
1228 static BUS_DEFINE_SET_TRANSIENT_TO_STRING_ALLOC(namespace_flag, "t", uint64_t, unsigned long, "%" PRIu64, namespace_flags_to_string);
1229 static BUS_DEFINE_SET_TRANSIENT_TO_STRING(mount_flags, "t", uint64_t, unsigned long, "%" PRIu64, mount_propagation_flags_to_string_with_check);
1230
1231 int bus_exec_context_set_transient_property(
1232 Unit *u,
1233 ExecContext *c,
1234 const char *name,
1235 sd_bus_message *message,
1236 UnitWriteFlags flags,
1237 sd_bus_error *error) {
1238
1239 const char *suffix;
1240 int r;
1241
1242 assert(u);
1243 assert(c);
1244 assert(name);
1245 assert(message);
1246
1247 flags |= UNIT_PRIVATE;
1248
1249 if (streq(name, "User"))
1250 return bus_set_transient_user_relaxed(u, name, &c->user, message, flags, error);
1251
1252 if (streq(name, "Group"))
1253 return bus_set_transient_user_relaxed(u, name, &c->group, message, flags, error);
1254
1255 if (streq(name, "TTYPath"))
1256 return bus_set_transient_path(u, name, &c->tty_path, message, flags, error);
1257
1258 if (streq(name, "RootImage"))
1259 return bus_set_transient_path(u, name, &c->root_image, message, flags, error);
1260
1261 if (streq(name, "RootDirectory"))
1262 return bus_set_transient_path(u, name, &c->root_directory, message, flags, error);
1263
1264 if (streq(name, "SyslogIdentifier"))
1265 return bus_set_transient_string(u, name, &c->syslog_identifier, message, flags, error);
1266
1267 if (streq(name, "LogLevelMax"))
1268 return bus_set_transient_log_level(u, name, &c->log_level_max, message, flags, error);
1269
1270 if (streq(name, "LogRateLimitIntervalUSec"))
1271 return bus_set_transient_usec(u, name, &c->log_ratelimit_interval_usec, message, flags, error);
1272
1273 if (streq(name, "LogRateLimitBurst"))
1274 return bus_set_transient_unsigned(u, name, &c->log_ratelimit_burst, message, flags, error);
1275
1276 if (streq(name, "Personality"))
1277 return bus_set_transient_personality(u, name, &c->personality, message, flags, error);
1278
1279 if (streq(name, "StandardInput"))
1280 return bus_set_transient_std_input(u, name, &c->std_input, message, flags, error);
1281
1282 if (streq(name, "StandardOutput"))
1283 return bus_set_transient_std_output(u, name, &c->std_output, message, flags, error);
1284
1285 if (streq(name, "StandardError"))
1286 return bus_set_transient_std_output(u, name, &c->std_error, message, flags, error);
1287
1288 if (streq(name, "IgnoreSIGPIPE"))
1289 return bus_set_transient_bool(u, name, &c->ignore_sigpipe, message, flags, error);
1290
1291 if (streq(name, "TTYVHangup"))
1292 return bus_set_transient_bool(u, name, &c->tty_vhangup, message, flags, error);
1293
1294 if (streq(name, "TTYReset"))
1295 return bus_set_transient_bool(u, name, &c->tty_reset, message, flags, error);
1296
1297 if (streq(name, "TTYVTDisallocate"))
1298 return bus_set_transient_bool(u, name, &c->tty_vt_disallocate, message, flags, error);
1299
1300 if (streq(name, "PrivateTmp"))
1301 return bus_set_transient_bool(u, name, &c->private_tmp, message, flags, error);
1302
1303 if (streq(name, "PrivateDevices"))
1304 return bus_set_transient_bool(u, name, &c->private_devices, message, flags, error);
1305
1306 if (streq(name, "PrivateMounts"))
1307 return bus_set_transient_bool(u, name, &c->private_mounts, message, flags, error);
1308
1309 if (streq(name, "PrivateNetwork"))
1310 return bus_set_transient_bool(u, name, &c->private_network, message, flags, error);
1311
1312 if (streq(name, "PrivateUsers"))
1313 return bus_set_transient_bool(u, name, &c->private_users, message, flags, error);
1314
1315 if (streq(name, "NoNewPrivileges"))
1316 return bus_set_transient_bool(u, name, &c->no_new_privileges, message, flags, error);
1317
1318 if (streq(name, "SyslogLevelPrefix"))
1319 return bus_set_transient_bool(u, name, &c->syslog_level_prefix, message, flags, error);
1320
1321 if (streq(name, "MemoryDenyWriteExecute"))
1322 return bus_set_transient_bool(u, name, &c->memory_deny_write_execute, message, flags, error);
1323
1324 if (streq(name, "RestrictRealtime"))
1325 return bus_set_transient_bool(u, name, &c->restrict_realtime, message, flags, error);
1326
1327 if (streq(name, "RestrictSUIDSGID"))
1328 return bus_set_transient_bool(u, name, &c->restrict_suid_sgid, message, flags, error);
1329
1330 if (streq(name, "DynamicUser"))
1331 return bus_set_transient_bool(u, name, &c->dynamic_user, message, flags, error);
1332
1333 if (streq(name, "RemoveIPC"))
1334 return bus_set_transient_bool(u, name, &c->remove_ipc, message, flags, error);
1335
1336 if (streq(name, "ProtectKernelTunables"))
1337 return bus_set_transient_bool(u, name, &c->protect_kernel_tunables, message, flags, error);
1338
1339 if (streq(name, "ProtectKernelModules"))
1340 return bus_set_transient_bool(u, name, &c->protect_kernel_modules, message, flags, error);
1341
1342 if (streq(name, "ProtectKernelLogs"))
1343 return bus_set_transient_bool(u, name, &c->protect_kernel_logs, message, flags, error);
1344
1345 if (streq(name, "ProtectClock"))
1346 return bus_set_transient_bool(u, name, &c->protect_clock, message, flags, error);
1347
1348 if (streq(name, "ProtectControlGroups"))
1349 return bus_set_transient_bool(u, name, &c->protect_control_groups, message, flags, error);
1350
1351 if (streq(name, "MountAPIVFS"))
1352 return bus_set_transient_bool(u, name, &c->mount_apivfs, message, flags, error);
1353
1354 if (streq(name, "CPUSchedulingResetOnFork"))
1355 return bus_set_transient_bool(u, name, &c->cpu_sched_reset_on_fork, message, flags, error);
1356
1357 if (streq(name, "NonBlocking"))
1358 return bus_set_transient_bool(u, name, &c->non_blocking, message, flags, error);
1359
1360 if (streq(name, "LockPersonality"))
1361 return bus_set_transient_bool(u, name, &c->lock_personality, message, flags, error);
1362
1363 if (streq(name, "ProtectHostname"))
1364 return bus_set_transient_bool(u, name, &c->protect_hostname, message, flags, error);
1365
1366 if (streq(name, "UtmpIdentifier"))
1367 return bus_set_transient_string(u, name, &c->utmp_id, message, flags, error);
1368
1369 if (streq(name, "UtmpMode"))
1370 return bus_set_transient_utmp_mode(u, name, &c->utmp_mode, message, flags, error);
1371
1372 if (streq(name, "PAMName"))
1373 return bus_set_transient_string(u, name, &c->pam_name, message, flags, error);
1374
1375 if (streq(name, "TimerSlackNSec"))
1376 return bus_set_transient_nsec(u, name, &c->timer_slack_nsec, message, flags, error);
1377
1378 if (streq(name, "ProtectSystem"))
1379 return bus_set_transient_protect_system(u, name, &c->protect_system, message, flags, error);
1380
1381 if (streq(name, "ProtectHome"))
1382 return bus_set_transient_protect_home(u, name, &c->protect_home, message, flags, error);
1383
1384 if (streq(name, "KeyringMode"))
1385 return bus_set_transient_keyring_mode(u, name, &c->keyring_mode, message, flags, error);
1386
1387 if (streq(name, "RuntimeDirectoryPreserve"))
1388 return bus_set_transient_preserve_mode(u, name, &c->runtime_directory_preserve_mode, message, flags, error);
1389
1390 if (streq(name, "UMask"))
1391 return bus_set_transient_mode_t(u, name, &c->umask, message, flags, error);
1392
1393 if (streq(name, "RuntimeDirectoryMode"))
1394 return bus_set_transient_mode_t(u, name, &c->directories[EXEC_DIRECTORY_RUNTIME].mode, message, flags, error);
1395
1396 if (streq(name, "StateDirectoryMode"))
1397 return bus_set_transient_mode_t(u, name, &c->directories[EXEC_DIRECTORY_STATE].mode, message, flags, error);
1398
1399 if (streq(name, "CacheDirectoryMode"))
1400 return bus_set_transient_mode_t(u, name, &c->directories[EXEC_DIRECTORY_CACHE].mode, message, flags, error);
1401
1402 if (streq(name, "LogsDirectoryMode"))
1403 return bus_set_transient_mode_t(u, name, &c->directories[EXEC_DIRECTORY_LOGS].mode, message, flags, error);
1404
1405 if (streq(name, "ConfigurationDirectoryMode"))
1406 return bus_set_transient_mode_t(u, name, &c->directories[EXEC_DIRECTORY_CONFIGURATION].mode, message, flags, error);
1407
1408 if (streq(name, "SELinuxContext"))
1409 return bus_set_transient_string(u, name, &c->selinux_context, message, flags, error);
1410
1411 if (streq(name, "SecureBits"))
1412 return bus_set_transient_secure_bits(u, name, &c->secure_bits, message, flags, error);
1413
1414 if (streq(name, "CapabilityBoundingSet"))
1415 return bus_set_transient_capability(u, name, &c->capability_bounding_set, message, flags, error);
1416
1417 if (streq(name, "AmbientCapabilities"))
1418 return bus_set_transient_capability(u, name, &c->capability_ambient_set, message, flags, error);
1419
1420 if (streq(name, "RestrictNamespaces"))
1421 return bus_set_transient_namespace_flag(u, name, &c->restrict_namespaces, message, flags, error);
1422
1423 if (streq(name, "MountFlags"))
1424 return bus_set_transient_mount_flags(u, name, &c->mount_flags, message, flags, error);
1425
1426 if (streq(name, "NetworkNamespacePath"))
1427 return bus_set_transient_path(u, name, &c->network_namespace_path, message, flags, error);
1428
1429 if (streq(name, "SupplementaryGroups")) {
1430 _cleanup_strv_free_ char **l = NULL;
1431 char **p;
1432
1433 r = sd_bus_message_read_strv(message, &l);
1434 if (r < 0)
1435 return r;
1436
1437 STRV_FOREACH(p, l)
1438 if (!isempty(*p) && !valid_user_group_name(*p, VALID_USER_ALLOW_NUMERIC|VALID_USER_RELAX|VALID_USER_WARN))
1439 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS,
1440 "Invalid supplementary group names");
1441
1442 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1443 if (strv_isempty(l)) {
1444 c->supplementary_groups = strv_free(c->supplementary_groups);
1445 unit_write_settingf(u, flags, name, "%s=", name);
1446 } else {
1447 _cleanup_free_ char *joined = NULL;
1448
1449 r = strv_extend_strv(&c->supplementary_groups, l, true);
1450 if (r < 0)
1451 return -ENOMEM;
1452
1453 joined = strv_join(c->supplementary_groups, " ");
1454 if (!joined)
1455 return -ENOMEM;
1456
1457 unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name, "%s=%s", name, joined);
1458 }
1459 }
1460
1461 return 1;
1462
1463 } else if (streq(name, "SyslogLevel")) {
1464 int32_t level;
1465
1466 r = sd_bus_message_read(message, "i", &level);
1467 if (r < 0)
1468 return r;
1469
1470 if (!log_level_is_valid(level))
1471 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Log level value out of range");
1472
1473 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1474 c->syslog_priority = (c->syslog_priority & LOG_FACMASK) | level;
1475 unit_write_settingf(u, flags, name, "SyslogLevel=%i", level);
1476 }
1477
1478 return 1;
1479
1480 } else if (streq(name, "SyslogFacility")) {
1481 int32_t facility;
1482
1483 r = sd_bus_message_read(message, "i", &facility);
1484 if (r < 0)
1485 return r;
1486
1487 if (!log_facility_unshifted_is_valid(facility))
1488 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Log facility value out of range");
1489
1490 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1491 c->syslog_priority = (facility << 3) | LOG_PRI(c->syslog_priority);
1492 unit_write_settingf(u, flags, name, "SyslogFacility=%i", facility);
1493 }
1494
1495 return 1;
1496
1497 } else if (streq(name, "LogNamespace")) {
1498 const char *n;
1499
1500 r = sd_bus_message_read(message, "s", &n);
1501 if (r < 0)
1502 return r;
1503
1504 if (!isempty(n) && !log_namespace_name_valid(n))
1505 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Log namespace name not valid");
1506
1507 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1508
1509 if (isempty(n)) {
1510 c->log_namespace = mfree(c->log_namespace);
1511 unit_write_settingf(u, flags, name, "%s=", name);
1512 } else {
1513 r = free_and_strdup(&c->log_namespace, n);
1514 if (r < 0)
1515 return r;
1516
1517 unit_write_settingf(u, flags, name, "%s=%s", name, n);
1518 }
1519 }
1520
1521 return 1;
1522
1523 } else if (streq(name, "LogExtraFields")) {
1524 size_t n = 0;
1525
1526 r = sd_bus_message_enter_container(message, 'a', "ay");
1527 if (r < 0)
1528 return r;
1529
1530 for (;;) {
1531 _cleanup_free_ void *copy = NULL;
1532 struct iovec *t;
1533 const char *eq;
1534 const void *p;
1535 size_t sz;
1536
1537 /* Note that we expect a byte array for each field, instead of a string. That's because on the
1538 * lower-level journal fields can actually contain binary data and are not restricted to text,
1539 * and we should not "lose precision" in our types on the way. That said, I am pretty sure
1540 * actually encoding binary data as unit metadata is not a good idea. Hence we actually refuse
1541 * any actual binary data, and only accept UTF-8. This allows us to eventually lift this
1542 * limitation, should a good, valid usecase arise. */
1543
1544 r = sd_bus_message_read_array(message, 'y', &p, &sz);
1545 if (r < 0)
1546 return r;
1547 if (r == 0)
1548 break;
1549
1550 if (memchr(p, 0, sz))
1551 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Journal field contains zero byte");
1552
1553 eq = memchr(p, '=', sz);
1554 if (!eq)
1555 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Journal field contains no '=' character");
1556 if (!journal_field_valid(p, eq - (const char*) p, false))
1557 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Journal field invalid");
1558
1559 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1560 t = reallocarray(c->log_extra_fields, c->n_log_extra_fields+1, sizeof(struct iovec));
1561 if (!t)
1562 return -ENOMEM;
1563 c->log_extra_fields = t;
1564 }
1565
1566 copy = malloc(sz + 1);
1567 if (!copy)
1568 return -ENOMEM;
1569
1570 memcpy(copy, p, sz);
1571 ((uint8_t*) copy)[sz] = 0;
1572
1573 if (!utf8_is_valid(copy))
1574 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Journal field is not valid UTF-8");
1575
1576 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1577 c->log_extra_fields[c->n_log_extra_fields++] = IOVEC_MAKE(copy, sz);
1578 unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS|UNIT_ESCAPE_C, name, "LogExtraFields=%s", (char*) copy);
1579
1580 copy = NULL;
1581 }
1582
1583 n++;
1584 }
1585
1586 r = sd_bus_message_exit_container(message);
1587 if (r < 0)
1588 return r;
1589
1590 if (!UNIT_WRITE_FLAGS_NOOP(flags) && n == 0) {
1591 exec_context_free_log_extra_fields(c);
1592 unit_write_setting(u, flags, name, "LogExtraFields=");
1593 }
1594
1595 return 1;
1596 }
1597
1598 #if HAVE_SECCOMP
1599
1600 if (streq(name, "SystemCallErrorNumber"))
1601 return bus_set_transient_errno(u, name, &c->syscall_errno, message, flags, error);
1602
1603 if (streq(name, "SystemCallFilter")) {
1604 int whitelist;
1605 _cleanup_strv_free_ char **l = NULL;
1606
1607 r = sd_bus_message_enter_container(message, 'r', "bas");
1608 if (r < 0)
1609 return r;
1610
1611 r = sd_bus_message_read(message, "b", &whitelist);
1612 if (r < 0)
1613 return r;
1614
1615 r = sd_bus_message_read_strv(message, &l);
1616 if (r < 0)
1617 return r;
1618
1619 r = sd_bus_message_exit_container(message);
1620 if (r < 0)
1621 return r;
1622
1623 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1624 _cleanup_free_ char *joined = NULL;
1625 SeccompParseFlags invert_flag = whitelist ? 0 : SECCOMP_PARSE_INVERT;
1626 char **s;
1627
1628 if (strv_isempty(l)) {
1629 c->syscall_whitelist = false;
1630 c->syscall_filter = hashmap_free(c->syscall_filter);
1631
1632 unit_write_settingf(u, flags, name, "SystemCallFilter=");
1633 return 1;
1634 }
1635
1636 if (!c->syscall_filter) {
1637 c->syscall_filter = hashmap_new(NULL);
1638 if (!c->syscall_filter)
1639 return log_oom();
1640
1641 c->syscall_whitelist = whitelist;
1642
1643 if (c->syscall_whitelist) {
1644 r = seccomp_parse_syscall_filter("@default",
1645 -1,
1646 c->syscall_filter,
1647 SECCOMP_PARSE_PERMISSIVE |
1648 SECCOMP_PARSE_WHITELIST | invert_flag,
1649 u->id,
1650 NULL, 0);
1651 if (r < 0)
1652 return r;
1653 }
1654 }
1655
1656 STRV_FOREACH(s, l) {
1657 _cleanup_free_ char *n = NULL;
1658 int e;
1659
1660 r = parse_syscall_and_errno(*s, &n, &e);
1661 if (r < 0)
1662 return r;
1663
1664 r = seccomp_parse_syscall_filter(n,
1665 e,
1666 c->syscall_filter,
1667 SECCOMP_PARSE_LOG | SECCOMP_PARSE_PERMISSIVE |
1668 invert_flag |
1669 (c->syscall_whitelist ? SECCOMP_PARSE_WHITELIST : 0),
1670 u->id,
1671 NULL, 0);
1672 if (r < 0)
1673 return r;
1674 }
1675
1676 joined = strv_join(l, " ");
1677 if (!joined)
1678 return -ENOMEM;
1679
1680 unit_write_settingf(u, flags, name, "SystemCallFilter=%s%s", whitelist ? "" : "~", joined);
1681 }
1682
1683 return 1;
1684
1685 } else if (streq(name, "SystemCallArchitectures")) {
1686 _cleanup_strv_free_ char **l = NULL;
1687
1688 r = sd_bus_message_read_strv(message, &l);
1689 if (r < 0)
1690 return r;
1691
1692 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1693 _cleanup_free_ char *joined = NULL;
1694
1695 if (strv_isempty(l))
1696 c->syscall_archs = set_free(c->syscall_archs);
1697 else {
1698 char **s;
1699
1700 STRV_FOREACH(s, l) {
1701 uint32_t a;
1702
1703 r = seccomp_arch_from_string(*s, &a);
1704 if (r < 0)
1705 return r;
1706
1707 r = set_ensure_put(&c->syscall_archs, NULL, UINT32_TO_PTR(a + 1));
1708 if (r < 0)
1709 return r;
1710 }
1711
1712 }
1713
1714 joined = strv_join(l, " ");
1715 if (!joined)
1716 return -ENOMEM;
1717
1718 unit_write_settingf(u, flags, name, "%s=%s", name, joined);
1719 }
1720
1721 return 1;
1722
1723 } else if (streq(name, "RestrictAddressFamilies")) {
1724 int whitelist;
1725 _cleanup_strv_free_ char **l = NULL;
1726
1727 r = sd_bus_message_enter_container(message, 'r', "bas");
1728 if (r < 0)
1729 return r;
1730
1731 r = sd_bus_message_read(message, "b", &whitelist);
1732 if (r < 0)
1733 return r;
1734
1735 r = sd_bus_message_read_strv(message, &l);
1736 if (r < 0)
1737 return r;
1738
1739 r = sd_bus_message_exit_container(message);
1740 if (r < 0)
1741 return r;
1742
1743 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1744 _cleanup_free_ char *joined = NULL;
1745 char **s;
1746
1747 if (strv_isempty(l)) {
1748 c->address_families_whitelist = false;
1749 c->address_families = set_free(c->address_families);
1750
1751 unit_write_settingf(u, flags, name, "RestrictAddressFamilies=");
1752 return 1;
1753 }
1754
1755 if (!c->address_families) {
1756 c->address_families = set_new(NULL);
1757 if (!c->address_families)
1758 return log_oom();
1759
1760 c->address_families_whitelist = whitelist;
1761 }
1762
1763 STRV_FOREACH(s, l) {
1764 int af;
1765
1766 af = af_from_name(*s);
1767 if (af < 0)
1768 return af;
1769
1770 if (whitelist == c->address_families_whitelist) {
1771 r = set_put(c->address_families, INT_TO_PTR(af));
1772 if (r < 0)
1773 return r;
1774 } else
1775 (void) set_remove(c->address_families, INT_TO_PTR(af));
1776 }
1777
1778 joined = strv_join(l, " ");
1779 if (!joined)
1780 return -ENOMEM;
1781
1782 unit_write_settingf(u, flags, name, "RestrictAddressFamilies=%s%s", whitelist ? "" : "~", joined);
1783 }
1784
1785 return 1;
1786 }
1787 #endif
1788 if (STR_IN_SET(name, "CPUAffinity", "NUMAMask")) {
1789 const void *a;
1790 size_t n;
1791 bool affinity = streq(name, "CPUAffinity");
1792 _cleanup_(cpu_set_reset) CPUSet set = {};
1793
1794 r = sd_bus_message_read_array(message, 'y', &a, &n);
1795 if (r < 0)
1796 return r;
1797
1798 r = cpu_set_from_dbus(a, n, &set);
1799 if (r < 0)
1800 return r;
1801
1802 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1803 if (n == 0) {
1804 cpu_set_reset(affinity ? &c->cpu_set : &c->numa_policy.nodes);
1805 unit_write_settingf(u, flags, name, "%s=", name);
1806 } else {
1807 _cleanup_free_ char *str = NULL;
1808
1809 str = cpu_set_to_string(&set);
1810 if (!str)
1811 return -ENOMEM;
1812
1813 /* We forego any optimizations here, and always create the structure using
1814 * cpu_set_add_all(), because we don't want to care if the existing size we
1815 * got over dbus is appropriate. */
1816 r = cpu_set_add_all(affinity ? &c->cpu_set : &c->numa_policy.nodes, &set);
1817 if (r < 0)
1818 return r;
1819
1820 unit_write_settingf(u, flags, name, "%s=%s", name, str);
1821 }
1822 }
1823
1824 return 1;
1825
1826 } else if (streq(name, "CPUAffinityFromNUMA")) {
1827 int q;
1828
1829 r = sd_bus_message_read_basic(message, 'b', &q);
1830 if (r < 0)
1831 return r;
1832
1833 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1834 c->cpu_affinity_from_numa = q;
1835 unit_write_settingf(u, flags, name, "%s=%s", "CPUAffinity", "numa");
1836 }
1837
1838 return 1;
1839
1840 } else if (streq(name, "NUMAPolicy")) {
1841 int32_t type;
1842
1843 r = sd_bus_message_read(message, "i", &type);
1844 if (r < 0)
1845 return r;
1846
1847 if (!mpol_is_valid(type))
1848 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid NUMAPolicy value: %i", type);
1849
1850 if (!UNIT_WRITE_FLAGS_NOOP(flags))
1851 c->numa_policy.type = type;
1852
1853 return 1;
1854
1855 } else if (streq(name, "Nice")) {
1856 int32_t q;
1857
1858 r = sd_bus_message_read(message, "i", &q);
1859 if (r < 0)
1860 return r;
1861
1862 if (!nice_is_valid(q))
1863 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid Nice value: %i", q);
1864
1865 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1866 c->nice = q;
1867 c->nice_set = true;
1868
1869 unit_write_settingf(u, flags, name, "Nice=%i", q);
1870 }
1871
1872 return 1;
1873
1874 } else if (streq(name, "CPUSchedulingPolicy")) {
1875 int32_t q;
1876
1877 r = sd_bus_message_read(message, "i", &q);
1878 if (r < 0)
1879 return r;
1880
1881 if (!sched_policy_is_valid(q))
1882 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid CPU scheduling policy: %i", q);
1883
1884 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1885 _cleanup_free_ char *s = NULL;
1886
1887 r = sched_policy_to_string_alloc(q, &s);
1888 if (r < 0)
1889 return r;
1890
1891 c->cpu_sched_policy = q;
1892 c->cpu_sched_priority = CLAMP(c->cpu_sched_priority, sched_get_priority_min(q), sched_get_priority_max(q));
1893 c->cpu_sched_set = true;
1894
1895 unit_write_settingf(u, flags, name, "CPUSchedulingPolicy=%s", s);
1896 }
1897
1898 return 1;
1899
1900 } else if (streq(name, "CPUSchedulingPriority")) {
1901 int32_t p, min, max;
1902
1903 r = sd_bus_message_read(message, "i", &p);
1904 if (r < 0)
1905 return r;
1906
1907 min = sched_get_priority_min(c->cpu_sched_policy);
1908 max = sched_get_priority_max(c->cpu_sched_policy);
1909 if (p < min || p > max)
1910 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid CPU scheduling priority: %i", p);
1911
1912 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1913 c->cpu_sched_priority = p;
1914 c->cpu_sched_set = true;
1915
1916 unit_write_settingf(u, flags, name, "CPUSchedulingPriority=%i", p);
1917 }
1918
1919 return 1;
1920
1921 } else if (streq(name, "IOSchedulingClass")) {
1922 int32_t q;
1923
1924 r = sd_bus_message_read(message, "i", &q);
1925 if (r < 0)
1926 return r;
1927
1928 if (!ioprio_class_is_valid(q))
1929 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid IO scheduling class: %i", q);
1930
1931 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1932 _cleanup_free_ char *s = NULL;
1933
1934 r = ioprio_class_to_string_alloc(q, &s);
1935 if (r < 0)
1936 return r;
1937
1938 c->ioprio = IOPRIO_PRIO_VALUE(q, IOPRIO_PRIO_DATA(c->ioprio));
1939 c->ioprio_set = true;
1940
1941 unit_write_settingf(u, flags, name, "IOSchedulingClass=%s", s);
1942 }
1943
1944 return 1;
1945
1946 } else if (streq(name, "IOSchedulingPriority")) {
1947 int32_t p;
1948
1949 r = sd_bus_message_read(message, "i", &p);
1950 if (r < 0)
1951 return r;
1952
1953 if (!ioprio_priority_is_valid(p))
1954 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid IO scheduling priority: %i", p);
1955
1956 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1957 c->ioprio = IOPRIO_PRIO_VALUE(IOPRIO_PRIO_CLASS(c->ioprio), p);
1958 c->ioprio_set = true;
1959
1960 unit_write_settingf(u, flags, name, "IOSchedulingPriority=%i", p);
1961 }
1962
1963 return 1;
1964
1965 } else if (streq(name, "WorkingDirectory")) {
1966 const char *s;
1967 bool missing_ok;
1968
1969 r = sd_bus_message_read(message, "s", &s);
1970 if (r < 0)
1971 return r;
1972
1973 if (s[0] == '-') {
1974 missing_ok = true;
1975 s++;
1976 } else
1977 missing_ok = false;
1978
1979 if (!isempty(s) && !streq(s, "~") && !path_is_absolute(s))
1980 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "WorkingDirectory= expects an absolute path or '~'");
1981
1982 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1983 if (streq(s, "~")) {
1984 c->working_directory = mfree(c->working_directory);
1985 c->working_directory_home = true;
1986 } else {
1987 r = free_and_strdup(&c->working_directory, empty_to_null(s));
1988 if (r < 0)
1989 return r;
1990
1991 c->working_directory_home = false;
1992 }
1993
1994 c->working_directory_missing_ok = missing_ok;
1995 unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name, "WorkingDirectory=%s%s", missing_ok ? "-" : "", s);
1996 }
1997
1998 return 1;
1999
2000 } else if (STR_IN_SET(name,
2001 "StandardInputFileDescriptorName", "StandardOutputFileDescriptorName", "StandardErrorFileDescriptorName")) {
2002 const char *s;
2003
2004 r = sd_bus_message_read(message, "s", &s);
2005 if (r < 0)
2006 return r;
2007
2008 if (!isempty(s) && !fdname_is_valid(s))
2009 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid file descriptor name");
2010
2011 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2012
2013 if (streq(name, "StandardInputFileDescriptorName")) {
2014 r = free_and_strdup(c->stdio_fdname + STDIN_FILENO, empty_to_null(s));
2015 if (r < 0)
2016 return r;
2017
2018 c->std_input = EXEC_INPUT_NAMED_FD;
2019 unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name, "StandardInput=fd:%s", exec_context_fdname(c, STDIN_FILENO));
2020
2021 } else if (streq(name, "StandardOutputFileDescriptorName")) {
2022 r = free_and_strdup(c->stdio_fdname + STDOUT_FILENO, empty_to_null(s));
2023 if (r < 0)
2024 return r;
2025
2026 c->std_output = EXEC_OUTPUT_NAMED_FD;
2027 unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name, "StandardOutput=fd:%s", exec_context_fdname(c, STDOUT_FILENO));
2028
2029 } else {
2030 assert(streq(name, "StandardErrorFileDescriptorName"));
2031
2032 r = free_and_strdup(&c->stdio_fdname[STDERR_FILENO], empty_to_null(s));
2033 if (r < 0)
2034 return r;
2035
2036 c->std_error = EXEC_OUTPUT_NAMED_FD;
2037 unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name, "StandardError=fd:%s", exec_context_fdname(c, STDERR_FILENO));
2038 }
2039 }
2040
2041 return 1;
2042
2043 } else if (STR_IN_SET(name,
2044 "StandardInputFile",
2045 "StandardOutputFile", "StandardOutputFileToAppend",
2046 "StandardErrorFile", "StandardErrorFileToAppend")) {
2047 const char *s;
2048
2049 r = sd_bus_message_read(message, "s", &s);
2050 if (r < 0)
2051 return r;
2052
2053 if (!isempty(s)) {
2054 if (!path_is_absolute(s))
2055 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Path %s is not absolute", s);
2056 if (!path_is_normalized(s))
2057 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Path %s is not normalized", s);
2058 }
2059
2060 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2061
2062 if (streq(name, "StandardInputFile")) {
2063 r = free_and_strdup(&c->stdio_file[STDIN_FILENO], empty_to_null(s));
2064 if (r < 0)
2065 return r;
2066
2067 c->std_input = EXEC_INPUT_FILE;
2068 unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name, "StandardInput=file:%s", s);
2069
2070 } else if (STR_IN_SET(name, "StandardOutputFile", "StandardOutputFileToAppend")) {
2071 r = free_and_strdup(&c->stdio_file[STDOUT_FILENO], empty_to_null(s));
2072 if (r < 0)
2073 return r;
2074
2075 if (streq(name, "StandardOutputFile")) {
2076 c->std_output = EXEC_OUTPUT_FILE;
2077 unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name, "StandardOutput=file:%s", s);
2078 } else {
2079 assert(streq(name, "StandardOutputFileToAppend"));
2080 c->std_output = EXEC_OUTPUT_FILE_APPEND;
2081 unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name, "StandardOutput=append:%s", s);
2082 }
2083 } else {
2084 assert(STR_IN_SET(name, "StandardErrorFile", "StandardErrorFileToAppend"));
2085
2086 r = free_and_strdup(&c->stdio_file[STDERR_FILENO], empty_to_null(s));
2087 if (r < 0)
2088 return r;
2089
2090 if (streq(name, "StandardErrorFile")) {
2091 c->std_error = EXEC_OUTPUT_FILE;
2092 unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name, "StandardError=file:%s", s);
2093 } else {
2094 assert(streq(name, "StandardErrorFileToAppend"));
2095 c->std_error = EXEC_OUTPUT_FILE_APPEND;
2096 unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name, "StandardError=append:%s", s);
2097 }
2098 }
2099 }
2100
2101 return 1;
2102
2103 } else if (streq(name, "StandardInputData")) {
2104 const void *p;
2105 size_t sz;
2106
2107 r = sd_bus_message_read_array(message, 'y', &p, &sz);
2108 if (r < 0)
2109 return r;
2110
2111 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2112 _cleanup_free_ char *encoded = NULL;
2113
2114 if (sz == 0) {
2115 c->stdin_data = mfree(c->stdin_data);
2116 c->stdin_data_size = 0;
2117
2118 unit_write_settingf(u, flags, name, "StandardInputData=");
2119 } else {
2120 void *q;
2121 ssize_t n;
2122
2123 if (c->stdin_data_size + sz < c->stdin_data_size || /* check for overflow */
2124 c->stdin_data_size + sz > EXEC_STDIN_DATA_MAX)
2125 return -E2BIG;
2126
2127 n = base64mem(p, sz, &encoded);
2128 if (n < 0)
2129 return (int) n;
2130
2131 q = realloc(c->stdin_data, c->stdin_data_size + sz);
2132 if (!q)
2133 return -ENOMEM;
2134
2135 memcpy((uint8_t*) q + c->stdin_data_size, p, sz);
2136
2137 c->stdin_data = q;
2138 c->stdin_data_size += sz;
2139
2140 unit_write_settingf(u, flags, name, "StandardInputData=%s", encoded);
2141 }
2142 }
2143
2144 return 1;
2145
2146 } else if (streq(name, "Environment")) {
2147
2148 _cleanup_strv_free_ char **l = NULL;
2149
2150 r = sd_bus_message_read_strv(message, &l);
2151 if (r < 0)
2152 return r;
2153
2154 if (!strv_env_is_valid(l))
2155 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid environment block.");
2156
2157 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2158 if (strv_isempty(l)) {
2159 c->environment = strv_free(c->environment);
2160 unit_write_setting(u, flags, name, "Environment=");
2161 } else {
2162 _cleanup_free_ char *joined = NULL;
2163 char **e;
2164
2165 joined = unit_concat_strv(l, UNIT_ESCAPE_SPECIFIERS|UNIT_ESCAPE_C);
2166 if (!joined)
2167 return -ENOMEM;
2168
2169 e = strv_env_merge(2, c->environment, l);
2170 if (!e)
2171 return -ENOMEM;
2172
2173 strv_free_and_replace(c->environment, e);
2174 unit_write_settingf(u, flags, name, "Environment=%s", joined);
2175 }
2176 }
2177
2178 return 1;
2179
2180 } else if (streq(name, "UnsetEnvironment")) {
2181
2182 _cleanup_strv_free_ char **l = NULL;
2183
2184 r = sd_bus_message_read_strv(message, &l);
2185 if (r < 0)
2186 return r;
2187
2188 if (!strv_env_name_or_assignment_is_valid(l))
2189 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid UnsetEnvironment= list.");
2190
2191 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2192 if (strv_isempty(l)) {
2193 c->unset_environment = strv_free(c->unset_environment);
2194 unit_write_setting(u, flags, name, "UnsetEnvironment=");
2195 } else {
2196 _cleanup_free_ char *joined = NULL;
2197 char **e;
2198
2199 joined = unit_concat_strv(l, UNIT_ESCAPE_SPECIFIERS|UNIT_ESCAPE_C);
2200 if (!joined)
2201 return -ENOMEM;
2202
2203 e = strv_env_merge(2, c->unset_environment, l);
2204 if (!e)
2205 return -ENOMEM;
2206
2207 strv_free_and_replace(c->unset_environment, e);
2208 unit_write_settingf(u, flags, name, "UnsetEnvironment=%s", joined);
2209 }
2210 }
2211
2212 return 1;
2213
2214 } else if (streq(name, "OOMScoreAdjust")) {
2215 int oa;
2216
2217 r = sd_bus_message_read(message, "i", &oa);
2218 if (r < 0)
2219 return r;
2220
2221 if (!oom_score_adjust_is_valid(oa))
2222 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "OOM score adjust value out of range");
2223
2224 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2225 c->oom_score_adjust = oa;
2226 c->oom_score_adjust_set = true;
2227 unit_write_settingf(u, flags, name, "OOMScoreAdjust=%i", oa);
2228 }
2229
2230 return 1;
2231
2232 } else if (streq(name, "CoredumpFilter")) {
2233 uint64_t f;
2234
2235 r = sd_bus_message_read(message, "t", &f);
2236 if (r < 0)
2237 return r;
2238
2239 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2240 c->coredump_filter = f;
2241 c->coredump_filter_set = true;
2242 unit_write_settingf(u, flags, name, "CoredumpFilter=0x%"PRIx64, f);
2243 }
2244
2245 return 1;
2246
2247 } else if (streq(name, "EnvironmentFiles")) {
2248
2249 _cleanup_free_ char *joined = NULL;
2250 _cleanup_fclose_ FILE *f = NULL;
2251 _cleanup_strv_free_ char **l = NULL;
2252 size_t size = 0;
2253 char **i;
2254
2255 r = sd_bus_message_enter_container(message, 'a', "(sb)");
2256 if (r < 0)
2257 return r;
2258
2259 f = open_memstream_unlocked(&joined, &size);
2260 if (!f)
2261 return -ENOMEM;
2262
2263 fputs("EnvironmentFile=\n", f);
2264
2265 STRV_FOREACH(i, c->environment_files) {
2266 _cleanup_free_ char *q = NULL;
2267
2268 q = specifier_escape(*i);
2269 if (!q)
2270 return -ENOMEM;
2271
2272 fprintf(f, "EnvironmentFile=%s\n", q);
2273 }
2274
2275 while ((r = sd_bus_message_enter_container(message, 'r', "sb")) > 0) {
2276 const char *path;
2277 int b;
2278
2279 r = sd_bus_message_read(message, "sb", &path, &b);
2280 if (r < 0)
2281 return r;
2282
2283 r = sd_bus_message_exit_container(message);
2284 if (r < 0)
2285 return r;
2286
2287 if (!path_is_absolute(path))
2288 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Path %s is not absolute.", path);
2289
2290 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2291 _cleanup_free_ char *q = NULL, *buf = NULL;
2292
2293 buf = strjoin(b ? "-" : "", path);
2294 if (!buf)
2295 return -ENOMEM;
2296
2297 q = specifier_escape(buf);
2298 if (!q)
2299 return -ENOMEM;
2300
2301 fprintf(f, "EnvironmentFile=%s\n", q);
2302
2303 r = strv_consume(&l, TAKE_PTR(buf));
2304 if (r < 0)
2305 return r;
2306 }
2307 }
2308 if (r < 0)
2309 return r;
2310
2311 r = sd_bus_message_exit_container(message);
2312 if (r < 0)
2313 return r;
2314
2315 r = fflush_and_check(f);
2316 if (r < 0)
2317 return r;
2318
2319 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2320 if (strv_isempty(l)) {
2321 c->environment_files = strv_free(c->environment_files);
2322 unit_write_setting(u, flags, name, "EnvironmentFile=");
2323 } else {
2324 r = strv_extend_strv(&c->environment_files, l, true);
2325 if (r < 0)
2326 return r;
2327
2328 unit_write_setting(u, flags, name, joined);
2329 }
2330 }
2331
2332 return 1;
2333
2334 } else if (streq(name, "PassEnvironment")) {
2335
2336 _cleanup_strv_free_ char **l = NULL;
2337
2338 r = sd_bus_message_read_strv(message, &l);
2339 if (r < 0)
2340 return r;
2341
2342 if (!strv_env_name_is_valid(l))
2343 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid PassEnvironment= block.");
2344
2345 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2346 if (strv_isempty(l)) {
2347 c->pass_environment = strv_free(c->pass_environment);
2348 unit_write_setting(u, flags, name, "PassEnvironment=");
2349 } else {
2350 _cleanup_free_ char *joined = NULL;
2351
2352 r = strv_extend_strv(&c->pass_environment, l, true);
2353 if (r < 0)
2354 return r;
2355
2356 /* We write just the new settings out to file, with unresolved specifiers. */
2357 joined = unit_concat_strv(l, UNIT_ESCAPE_SPECIFIERS);
2358 if (!joined)
2359 return -ENOMEM;
2360
2361 unit_write_settingf(u, flags, name, "PassEnvironment=%s", joined);
2362 }
2363 }
2364
2365 return 1;
2366
2367 } else if (STR_IN_SET(name, "ReadWriteDirectories", "ReadOnlyDirectories", "InaccessibleDirectories",
2368 "ReadWritePaths", "ReadOnlyPaths", "InaccessiblePaths")) {
2369 _cleanup_strv_free_ char **l = NULL;
2370 char ***dirs;
2371 char **p;
2372
2373 r = sd_bus_message_read_strv(message, &l);
2374 if (r < 0)
2375 return r;
2376
2377 STRV_FOREACH(p, l) {
2378 char *i = *p;
2379 size_t offset;
2380
2381 offset = i[0] == '-';
2382 offset += i[offset] == '+';
2383 if (!path_is_absolute(i + offset))
2384 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid %s", name);
2385
2386 path_simplify(i + offset, false);
2387 }
2388
2389 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2390 if (STR_IN_SET(name, "ReadWriteDirectories", "ReadWritePaths"))
2391 dirs = &c->read_write_paths;
2392 else if (STR_IN_SET(name, "ReadOnlyDirectories", "ReadOnlyPaths"))
2393 dirs = &c->read_only_paths;
2394 else /* "InaccessiblePaths" */
2395 dirs = &c->inaccessible_paths;
2396
2397 if (strv_isempty(l)) {
2398 *dirs = strv_free(*dirs);
2399 unit_write_settingf(u, flags, name, "%s=", name);
2400 } else {
2401 _cleanup_free_ char *joined = NULL;
2402
2403 joined = unit_concat_strv(l, UNIT_ESCAPE_SPECIFIERS);
2404 if (!joined)
2405 return -ENOMEM;
2406
2407 r = strv_extend_strv(dirs, l, true);
2408 if (r < 0)
2409 return -ENOMEM;
2410
2411 unit_write_settingf(u, flags, name, "%s=%s", name, joined);
2412 }
2413 }
2414
2415 return 1;
2416
2417 } else if (STR_IN_SET(name, "RuntimeDirectory", "StateDirectory", "CacheDirectory", "LogsDirectory", "ConfigurationDirectory")) {
2418 _cleanup_strv_free_ char **l = NULL;
2419 char **p;
2420
2421 r = sd_bus_message_read_strv(message, &l);
2422 if (r < 0)
2423 return r;
2424
2425 STRV_FOREACH(p, l) {
2426 if (!path_is_normalized(*p))
2427 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "%s= path is not normalized: %s", name, *p);
2428
2429 if (path_is_absolute(*p))
2430 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "%s= path is absolute: %s", name, *p);
2431
2432 if (path_startswith(*p, "private"))
2433 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "%s= path can't be 'private': %s", name, *p);
2434 }
2435
2436 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2437 ExecDirectoryType i;
2438 ExecDirectory *d;
2439
2440 assert_se((i = exec_directory_type_from_string(name)) >= 0);
2441 d = c->directories + i;
2442
2443 if (strv_isempty(l)) {
2444 d->paths = strv_free(d->paths);
2445 unit_write_settingf(u, flags, name, "%s=", name);
2446 } else {
2447 _cleanup_free_ char *joined = NULL;
2448
2449 r = strv_extend_strv(&d->paths, l, true);
2450 if (r < 0)
2451 return r;
2452
2453 joined = unit_concat_strv(l, UNIT_ESCAPE_SPECIFIERS);
2454 if (!joined)
2455 return -ENOMEM;
2456
2457 unit_write_settingf(u, flags, name, "%s=%s", name, joined);
2458 }
2459 }
2460
2461 return 1;
2462
2463 } else if (STR_IN_SET(name, "AppArmorProfile", "SmackProcessLabel")) {
2464 int ignore;
2465 const char *s;
2466
2467 r = sd_bus_message_read(message, "(bs)", &ignore, &s);
2468 if (r < 0)
2469 return r;
2470
2471 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2472 char **p;
2473 bool *b;
2474
2475 if (streq(name, "AppArmorProfile")) {
2476 p = &c->apparmor_profile;
2477 b = &c->apparmor_profile_ignore;
2478 } else { /* "SmackProcessLabel" */
2479 p = &c->smack_process_label;
2480 b = &c->smack_process_label_ignore;
2481 }
2482
2483 if (isempty(s)) {
2484 *p = mfree(*p);
2485 *b = false;
2486 } else {
2487 if (free_and_strdup(p, s) < 0)
2488 return -ENOMEM;
2489 *b = ignore;
2490 }
2491
2492 unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name, "%s=%s%s", name, ignore ? "-" : "", strempty(s));
2493 }
2494
2495 return 1;
2496
2497 } else if (STR_IN_SET(name, "BindPaths", "BindReadOnlyPaths")) {
2498 char *source, *destination;
2499 int ignore_enoent;
2500 uint64_t mount_flags;
2501 bool empty = true;
2502
2503 r = sd_bus_message_enter_container(message, 'a', "(ssbt)");
2504 if (r < 0)
2505 return r;
2506
2507 while ((r = sd_bus_message_read(message, "(ssbt)", &source, &destination, &ignore_enoent, &mount_flags)) > 0) {
2508
2509 if (!path_is_absolute(source))
2510 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Source path %s is not absolute.", source);
2511 if (!path_is_absolute(destination))
2512 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Destination path %s is not absolute.", destination);
2513 if (!IN_SET(mount_flags, 0, MS_REC))
2514 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Unknown mount flags.");
2515
2516 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2517 r = bind_mount_add(&c->bind_mounts, &c->n_bind_mounts,
2518 &(BindMount) {
2519 .source = source,
2520 .destination = destination,
2521 .read_only = !!strstr(name, "ReadOnly"),
2522 .recursive = !!(mount_flags & MS_REC),
2523 .ignore_enoent = ignore_enoent,
2524 });
2525 if (r < 0)
2526 return r;
2527
2528 unit_write_settingf(
2529 u, flags|UNIT_ESCAPE_SPECIFIERS, name,
2530 "%s=%s%s:%s:%s",
2531 name,
2532 ignore_enoent ? "-" : "",
2533 source,
2534 destination,
2535 (mount_flags & MS_REC) ? "rbind" : "norbind");
2536 }
2537
2538 empty = false;
2539 }
2540 if (r < 0)
2541 return r;
2542
2543 r = sd_bus_message_exit_container(message);
2544 if (r < 0)
2545 return r;
2546
2547 if (empty) {
2548 bind_mount_free_many(c->bind_mounts, c->n_bind_mounts);
2549 c->bind_mounts = NULL;
2550 c->n_bind_mounts = 0;
2551
2552 unit_write_settingf(u, flags, name, "%s=", name);
2553 }
2554
2555 return 1;
2556
2557 } else if (streq(name, "TemporaryFileSystem")) {
2558 const char *path, *options;
2559 bool empty = true;
2560
2561 r = sd_bus_message_enter_container(message, 'a', "(ss)");
2562 if (r < 0)
2563 return r;
2564
2565 while ((r = sd_bus_message_read(message, "(ss)", &path, &options)) > 0) {
2566
2567 if (!path_is_absolute(path))
2568 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Mount point %s is not absolute.", path);
2569
2570 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2571 r = temporary_filesystem_add(&c->temporary_filesystems, &c->n_temporary_filesystems, path, options);
2572 if (r < 0)
2573 return r;
2574
2575 unit_write_settingf(
2576 u, flags|UNIT_ESCAPE_SPECIFIERS, name,
2577 "%s=%s:%s",
2578 name,
2579 path,
2580 options);
2581 }
2582
2583 empty = false;
2584 }
2585 if (r < 0)
2586 return r;
2587
2588 r = sd_bus_message_exit_container(message);
2589 if (r < 0)
2590 return r;
2591
2592 if (empty) {
2593 temporary_filesystem_free_many(c->temporary_filesystems, c->n_temporary_filesystems);
2594 c->temporary_filesystems = NULL;
2595 c->n_temporary_filesystems = 0;
2596
2597 unit_write_settingf(u, flags, name, "%s=", name);
2598 }
2599
2600 return 1;
2601
2602 } else if ((suffix = startswith(name, "Limit"))) {
2603 const char *soft = NULL;
2604 int ri;
2605
2606 ri = rlimit_from_string(suffix);
2607 if (ri < 0) {
2608 soft = endswith(suffix, "Soft");
2609 if (soft) {
2610 const char *n;
2611
2612 n = strndupa(suffix, soft - suffix);
2613 ri = rlimit_from_string(n);
2614 if (ri >= 0)
2615 name = strjoina("Limit", n);
2616 }
2617 }
2618
2619 if (ri >= 0) {
2620 uint64_t rl;
2621 rlim_t x;
2622
2623 r = sd_bus_message_read(message, "t", &rl);
2624 if (r < 0)
2625 return r;
2626
2627 if (rl == (uint64_t) -1)
2628 x = RLIM_INFINITY;
2629 else {
2630 x = (rlim_t) rl;
2631
2632 if ((uint64_t) x != rl)
2633 return -ERANGE;
2634 }
2635
2636 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
2637 _cleanup_free_ char *f = NULL;
2638 struct rlimit nl;
2639
2640 if (c->rlimit[ri]) {
2641 nl = *c->rlimit[ri];
2642
2643 if (soft)
2644 nl.rlim_cur = x;
2645 else
2646 nl.rlim_max = x;
2647 } else
2648 /* When the resource limit is not initialized yet, then assign the value to both fields */
2649 nl = (struct rlimit) {
2650 .rlim_cur = x,
2651 .rlim_max = x,
2652 };
2653
2654 r = rlimit_format(&nl, &f);
2655 if (r < 0)
2656 return r;
2657
2658 if (c->rlimit[ri])
2659 *c->rlimit[ri] = nl;
2660 else {
2661 c->rlimit[ri] = newdup(struct rlimit, &nl, 1);
2662 if (!c->rlimit[ri])
2663 return -ENOMEM;
2664 }
2665
2666 unit_write_settingf(u, flags, name, "%s=%s", name, f);
2667 }
2668
2669 return 1;
2670 }
2671
2672 }
2673
2674 return 0;
2675 }