]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/core/dbus-unit.c
Merge pull request #13600 from keszybz/ratelimit
[thirdparty/systemd.git] / src / core / dbus-unit.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2
3 #include "sd-bus.h"
4
5 #include "alloc-util.h"
6 #include "bpf-firewall.h"
7 #include "bus-common-errors.h"
8 #include "cgroup-util.h"
9 #include "condition.h"
10 #include "dbus-job.h"
11 #include "dbus-unit.h"
12 #include "dbus-util.h"
13 #include "dbus.h"
14 #include "fd-util.h"
15 #include "install.h"
16 #include "locale-util.h"
17 #include "log.h"
18 #include "path-util.h"
19 #include "process-util.h"
20 #include "selinux-access.h"
21 #include "signal-util.h"
22 #include "special.h"
23 #include "string-table.h"
24 #include "string-util.h"
25 #include "strv.h"
26 #include "user-util.h"
27 #include "web-util.h"
28
29 static bool unit_can_start_refuse_manual(Unit *u) {
30 return unit_can_start(u) && !u->refuse_manual_start;
31 }
32
33 static bool unit_can_stop_refuse_manual(Unit *u) {
34 return unit_can_stop(u) && !u->refuse_manual_stop;
35 }
36
37 static bool unit_can_isolate_refuse_manual(Unit *u) {
38 return unit_can_isolate(u) && !u->refuse_manual_start;
39 }
40
41 static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_collect_mode, collect_mode, CollectMode);
42 static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_load_state, unit_load_state, UnitLoadState);
43 static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_job_mode, job_mode, JobMode);
44 static BUS_DEFINE_PROPERTY_GET_ENUM(property_get_emergency_action, emergency_action, EmergencyAction);
45 static BUS_DEFINE_PROPERTY_GET(property_get_description, "s", Unit, unit_description);
46 static BUS_DEFINE_PROPERTY_GET2(property_get_active_state, "s", Unit, unit_active_state, unit_active_state_to_string);
47 static BUS_DEFINE_PROPERTY_GET(property_get_sub_state, "s", Unit, unit_sub_state_to_string);
48 static BUS_DEFINE_PROPERTY_GET2(property_get_unit_file_state, "s", Unit, unit_get_unit_file_state, unit_file_state_to_string);
49 static BUS_DEFINE_PROPERTY_GET(property_get_can_reload, "b", Unit, unit_can_reload);
50 static BUS_DEFINE_PROPERTY_GET(property_get_can_start, "b", Unit, unit_can_start_refuse_manual);
51 static BUS_DEFINE_PROPERTY_GET(property_get_can_stop, "b", Unit, unit_can_stop_refuse_manual);
52 static BUS_DEFINE_PROPERTY_GET(property_get_can_isolate, "b", Unit, unit_can_isolate_refuse_manual);
53 static BUS_DEFINE_PROPERTY_GET(property_get_need_daemon_reload, "b", Unit, unit_need_daemon_reload);
54 static BUS_DEFINE_PROPERTY_GET_GLOBAL(property_get_empty_strv, "as", 0);
55
56 static int property_get_can_clean(
57 sd_bus *bus,
58 const char *path,
59 const char *interface,
60 const char *property,
61 sd_bus_message *reply,
62 void *userdata,
63 sd_bus_error *error) {
64
65 Unit *u = userdata;
66 ExecCleanMask mask;
67 int r;
68
69 assert(bus);
70 assert(reply);
71
72 r = unit_can_clean(u, &mask);
73 if (r < 0)
74 return r;
75
76 r = sd_bus_message_open_container(reply, 'a', "s");
77 if (r < 0)
78 return r;
79
80 for (ExecDirectoryType t = 0; t < _EXEC_DIRECTORY_TYPE_MAX; t++) {
81 if (!FLAGS_SET(mask, 1U << t))
82 continue;
83
84 r = sd_bus_message_append(reply, "s", exec_resource_type_to_string(t));
85 if (r < 0)
86 return r;
87 }
88
89 return sd_bus_message_close_container(reply);
90 }
91
92 static int property_get_names(
93 sd_bus *bus,
94 const char *path,
95 const char *interface,
96 const char *property,
97 sd_bus_message *reply,
98 void *userdata,
99 sd_bus_error *error) {
100
101 Set **s = userdata;
102 Iterator i;
103 const char *t;
104 int r;
105
106 assert(bus);
107 assert(reply);
108 assert(s);
109
110 r = sd_bus_message_open_container(reply, 'a', "s");
111 if (r < 0)
112 return r;
113
114 SET_FOREACH(t, *s, i) {
115 r = sd_bus_message_append(reply, "s", t);
116 if (r < 0)
117 return r;
118 }
119
120 return sd_bus_message_close_container(reply);
121 }
122
123 static int property_get_following(
124 sd_bus *bus,
125 const char *path,
126 const char *interface,
127 const char *property,
128 sd_bus_message *reply,
129 void *userdata,
130 sd_bus_error *error) {
131
132 Unit *u = userdata, *f;
133
134 assert(bus);
135 assert(reply);
136 assert(u);
137
138 f = unit_following(u);
139 return sd_bus_message_append(reply, "s", f ? f->id : NULL);
140 }
141
142 static int property_get_dependencies(
143 sd_bus *bus,
144 const char *path,
145 const char *interface,
146 const char *property,
147 sd_bus_message *reply,
148 void *userdata,
149 sd_bus_error *error) {
150
151 Hashmap **h = userdata;
152 Iterator j;
153 Unit *u;
154 void *v;
155 int r;
156
157 assert(bus);
158 assert(reply);
159 assert(h);
160
161 r = sd_bus_message_open_container(reply, 'a', "s");
162 if (r < 0)
163 return r;
164
165 HASHMAP_FOREACH_KEY(v, u, *h, j) {
166 r = sd_bus_message_append(reply, "s", u->id);
167 if (r < 0)
168 return r;
169 }
170
171 return sd_bus_message_close_container(reply);
172 }
173
174 static int property_get_requires_mounts_for(
175 sd_bus *bus,
176 const char *path,
177 const char *interface,
178 const char *property,
179 sd_bus_message *reply,
180 void *userdata,
181 sd_bus_error *error) {
182
183 Hashmap **h = userdata;
184 const char *p;
185 Iterator j;
186 void *v;
187 int r;
188
189 assert(bus);
190 assert(reply);
191 assert(h);
192
193 r = sd_bus_message_open_container(reply, 'a', "s");
194 if (r < 0)
195 return r;
196
197 HASHMAP_FOREACH_KEY(v, p, *h, j) {
198 r = sd_bus_message_append(reply, "s", p);
199 if (r < 0)
200 return r;
201 }
202
203 return sd_bus_message_close_container(reply);
204 }
205
206 static int property_get_unit_file_preset(
207 sd_bus *bus,
208 const char *path,
209 const char *interface,
210 const char *property,
211 sd_bus_message *reply,
212 void *userdata,
213 sd_bus_error *error) {
214
215 Unit *u = userdata;
216 int r;
217
218 assert(bus);
219 assert(reply);
220 assert(u);
221
222 r = unit_get_unit_file_preset(u);
223
224 return sd_bus_message_append(reply, "s",
225 r < 0 ? NULL:
226 r > 0 ? "enabled" : "disabled");
227 }
228
229 static int property_get_job(
230 sd_bus *bus,
231 const char *path,
232 const char *interface,
233 const char *property,
234 sd_bus_message *reply,
235 void *userdata,
236 sd_bus_error *error) {
237
238 _cleanup_free_ char *p = NULL;
239 Job **j = userdata;
240
241 assert(bus);
242 assert(reply);
243 assert(j);
244
245 if (!*j)
246 return sd_bus_message_append(reply, "(uo)", 0, "/");
247
248 p = job_dbus_path(*j);
249 if (!p)
250 return -ENOMEM;
251
252 return sd_bus_message_append(reply, "(uo)", (*j)->id, p);
253 }
254
255 static int property_get_conditions(
256 sd_bus *bus,
257 const char *path,
258 const char *interface,
259 const char *property,
260 sd_bus_message *reply,
261 void *userdata,
262 sd_bus_error *error) {
263
264 const char *(*to_string)(ConditionType type) = NULL;
265 Condition **list = userdata, *c;
266 int r;
267
268 assert(bus);
269 assert(reply);
270 assert(list);
271
272 to_string = streq(property, "Asserts") ? assert_type_to_string : condition_type_to_string;
273
274 r = sd_bus_message_open_container(reply, 'a', "(sbbsi)");
275 if (r < 0)
276 return r;
277
278 LIST_FOREACH(conditions, c, *list) {
279 int tristate;
280
281 tristate =
282 c->result == CONDITION_UNTESTED ? 0 :
283 c->result == CONDITION_SUCCEEDED ? 1 : -1;
284
285 r = sd_bus_message_append(reply, "(sbbsi)",
286 to_string(c->type),
287 c->trigger, c->negate,
288 c->parameter, tristate);
289 if (r < 0)
290 return r;
291
292 }
293
294 return sd_bus_message_close_container(reply);
295 }
296
297 static int property_get_load_error(
298 sd_bus *bus,
299 const char *path,
300 const char *interface,
301 const char *property,
302 sd_bus_message *reply,
303 void *userdata,
304 sd_bus_error *error) {
305
306 _cleanup_(sd_bus_error_free) sd_bus_error e = SD_BUS_ERROR_NULL;
307 Unit *u = userdata;
308 int r;
309
310 assert(bus);
311 assert(reply);
312 assert(u);
313
314 r = bus_unit_validate_load_state(u, &e);
315 if (r < 0)
316 return sd_bus_message_append(reply, "(ss)", e.name, e.message);
317
318 return sd_bus_message_append(reply, "(ss)", NULL, NULL);
319 }
320
321 static int bus_verify_manage_units_async_full(
322 Unit *u,
323 const char *verb,
324 int capability,
325 const char *polkit_message,
326 bool interactive,
327 sd_bus_message *call,
328 sd_bus_error *error) {
329
330 const char *details[9] = {
331 "unit", u->id,
332 "verb", verb,
333 };
334
335 if (polkit_message) {
336 details[4] = "polkit.message";
337 details[5] = polkit_message;
338 details[6] = "polkit.gettext_domain";
339 details[7] = GETTEXT_PACKAGE;
340 }
341
342 return bus_verify_polkit_async(
343 call,
344 capability,
345 "org.freedesktop.systemd1.manage-units",
346 details,
347 interactive,
348 UID_INVALID,
349 &u->manager->polkit_registry,
350 error);
351 }
352
353 static const char *const polkit_message_for_job[_JOB_TYPE_MAX] = {
354 [JOB_START] = N_("Authentication is required to start '$(unit)'."),
355 [JOB_STOP] = N_("Authentication is required to stop '$(unit)'."),
356 [JOB_RELOAD] = N_("Authentication is required to reload '$(unit)'."),
357 [JOB_RESTART] = N_("Authentication is required to restart '$(unit)'."),
358 [JOB_TRY_RESTART] = N_("Authentication is required to restart '$(unit)'."),
359 };
360
361 int bus_unit_method_start_generic(
362 sd_bus_message *message,
363 Unit *u,
364 JobType job_type,
365 bool reload_if_possible,
366 sd_bus_error *error) {
367
368 const char *smode, *verb;
369 JobMode mode;
370 int r;
371
372 assert(message);
373 assert(u);
374 assert(job_type >= 0 && job_type < _JOB_TYPE_MAX);
375
376 r = mac_selinux_unit_access_check(
377 u, message,
378 job_type_to_access_method(job_type),
379 error);
380 if (r < 0)
381 return r;
382
383 r = sd_bus_message_read(message, "s", &smode);
384 if (r < 0)
385 return r;
386
387 mode = job_mode_from_string(smode);
388 if (mode < 0)
389 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Job mode %s invalid", smode);
390
391 if (reload_if_possible)
392 verb = strjoina("reload-or-", job_type_to_string(job_type));
393 else
394 verb = job_type_to_string(job_type);
395
396 r = bus_verify_manage_units_async_full(
397 u,
398 verb,
399 CAP_SYS_ADMIN,
400 polkit_message_for_job[job_type],
401 true,
402 message,
403 error);
404 if (r < 0)
405 return r;
406 if (r == 0)
407 return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
408
409 return bus_unit_queue_job(message, u, job_type, mode,
410 reload_if_possible ? BUS_UNIT_QUEUE_RELOAD_IF_POSSIBLE : 0, error);
411 }
412
413 static int method_start(sd_bus_message *message, void *userdata, sd_bus_error *error) {
414 return bus_unit_method_start_generic(message, userdata, JOB_START, false, error);
415 }
416
417 static int method_stop(sd_bus_message *message, void *userdata, sd_bus_error *error) {
418 return bus_unit_method_start_generic(message, userdata, JOB_STOP, false, error);
419 }
420
421 static int method_reload(sd_bus_message *message, void *userdata, sd_bus_error *error) {
422 return bus_unit_method_start_generic(message, userdata, JOB_RELOAD, false, error);
423 }
424
425 static int method_restart(sd_bus_message *message, void *userdata, sd_bus_error *error) {
426 return bus_unit_method_start_generic(message, userdata, JOB_RESTART, false, error);
427 }
428
429 static int method_try_restart(sd_bus_message *message, void *userdata, sd_bus_error *error) {
430 return bus_unit_method_start_generic(message, userdata, JOB_TRY_RESTART, false, error);
431 }
432
433 static int method_reload_or_restart(sd_bus_message *message, void *userdata, sd_bus_error *error) {
434 return bus_unit_method_start_generic(message, userdata, JOB_RESTART, true, error);
435 }
436
437 static int method_reload_or_try_restart(sd_bus_message *message, void *userdata, sd_bus_error *error) {
438 return bus_unit_method_start_generic(message, userdata, JOB_TRY_RESTART, true, error);
439 }
440
441 int bus_unit_method_enqueue_job(sd_bus_message *message, void *userdata, sd_bus_error *error) {
442 BusUnitQueueFlags flags = BUS_UNIT_QUEUE_VERBOSE_REPLY;
443 const char *jtype, *smode;
444 Unit *u = userdata;
445 JobType type;
446 JobMode mode;
447 int r;
448
449 assert(message);
450 assert(u);
451
452 r = sd_bus_message_read(message, "ss", &jtype, &smode);
453 if (r < 0)
454 return r;
455
456 /* Parse the two magic reload types "reload-or-…" manually */
457 if (streq(jtype, "reload-or-restart")) {
458 type = JOB_RESTART;
459 flags |= BUS_UNIT_QUEUE_RELOAD_IF_POSSIBLE;
460 } else if (streq(jtype, "reload-or-try-restart")) {
461 type = JOB_TRY_RESTART;
462 flags |= BUS_UNIT_QUEUE_RELOAD_IF_POSSIBLE;
463 } else {
464 /* And the rest generically */
465 type = job_type_from_string(jtype);
466 if (type < 0)
467 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Job type %s invalid", jtype);
468 }
469
470 mode = job_mode_from_string(smode);
471 if (mode < 0)
472 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Job mode %s invalid", smode);
473
474 r = mac_selinux_unit_access_check(
475 u, message,
476 job_type_to_access_method(type),
477 error);
478 if (r < 0)
479 return r;
480
481 r = bus_verify_manage_units_async_full(
482 u,
483 jtype,
484 CAP_SYS_ADMIN,
485 polkit_message_for_job[type],
486 true,
487 message,
488 error);
489 if (r < 0)
490 return r;
491 if (r == 0)
492 return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
493
494 return bus_unit_queue_job(message, u, type, mode, flags, error);
495 }
496
497 int bus_unit_method_kill(sd_bus_message *message, void *userdata, sd_bus_error *error) {
498 Unit *u = userdata;
499 const char *swho;
500 int32_t signo;
501 KillWho who;
502 int r;
503
504 assert(message);
505 assert(u);
506
507 r = mac_selinux_unit_access_check(u, message, "stop", error);
508 if (r < 0)
509 return r;
510
511 r = sd_bus_message_read(message, "si", &swho, &signo);
512 if (r < 0)
513 return r;
514
515 if (isempty(swho))
516 who = KILL_ALL;
517 else {
518 who = kill_who_from_string(swho);
519 if (who < 0)
520 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid who argument %s", swho);
521 }
522
523 if (!SIGNAL_VALID(signo))
524 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Signal number out of range.");
525
526 r = bus_verify_manage_units_async_full(
527 u,
528 "kill",
529 CAP_KILL,
530 N_("Authentication is required to send a UNIX signal to the processes of '$(unit)'."),
531 true,
532 message,
533 error);
534 if (r < 0)
535 return r;
536 if (r == 0)
537 return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
538
539 r = unit_kill(u, who, signo, error);
540 if (r < 0)
541 return r;
542
543 return sd_bus_reply_method_return(message, NULL);
544 }
545
546 int bus_unit_method_reset_failed(sd_bus_message *message, void *userdata, sd_bus_error *error) {
547 Unit *u = userdata;
548 int r;
549
550 assert(message);
551 assert(u);
552
553 r = mac_selinux_unit_access_check(u, message, "reload", error);
554 if (r < 0)
555 return r;
556
557 r = bus_verify_manage_units_async_full(
558 u,
559 "reset-failed",
560 CAP_SYS_ADMIN,
561 N_("Authentication is required to reset the \"failed\" state of '$(unit)'."),
562 true,
563 message,
564 error);
565 if (r < 0)
566 return r;
567 if (r == 0)
568 return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
569
570 unit_reset_failed(u);
571
572 return sd_bus_reply_method_return(message, NULL);
573 }
574
575 int bus_unit_method_set_properties(sd_bus_message *message, void *userdata, sd_bus_error *error) {
576 Unit *u = userdata;
577 int runtime, r;
578
579 assert(message);
580 assert(u);
581
582 r = mac_selinux_unit_access_check(u, message, "start", error);
583 if (r < 0)
584 return r;
585
586 r = sd_bus_message_read(message, "b", &runtime);
587 if (r < 0)
588 return r;
589
590 r = bus_verify_manage_units_async_full(
591 u,
592 "set-property",
593 CAP_SYS_ADMIN,
594 N_("Authentication is required to set properties on '$(unit)'."),
595 true,
596 message,
597 error);
598 if (r < 0)
599 return r;
600 if (r == 0)
601 return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
602
603 r = bus_unit_set_properties(u, message, runtime ? UNIT_RUNTIME : UNIT_PERSISTENT, true, error);
604 if (r < 0)
605 return r;
606
607 return sd_bus_reply_method_return(message, NULL);
608 }
609
610 int bus_unit_method_ref(sd_bus_message *message, void *userdata, sd_bus_error *error) {
611 Unit *u = userdata;
612 int r;
613
614 assert(message);
615 assert(u);
616
617 r = mac_selinux_unit_access_check(u, message, "start", error);
618 if (r < 0)
619 return r;
620
621 r = bus_verify_manage_units_async_full(
622 u,
623 "ref",
624 CAP_SYS_ADMIN,
625 NULL,
626 false,
627 message,
628 error);
629 if (r < 0)
630 return r;
631 if (r == 0)
632 return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
633
634 r = bus_unit_track_add_sender(u, message);
635 if (r < 0)
636 return r;
637
638 return sd_bus_reply_method_return(message, NULL);
639 }
640
641 int bus_unit_method_unref(sd_bus_message *message, void *userdata, sd_bus_error *error) {
642 Unit *u = userdata;
643 int r;
644
645 assert(message);
646 assert(u);
647
648 r = bus_unit_track_remove_sender(u, message);
649 if (r == -EUNATCH)
650 return sd_bus_error_setf(error, BUS_ERROR_NOT_REFERENCED, "Unit has not been referenced yet.");
651 if (r < 0)
652 return r;
653
654 return sd_bus_reply_method_return(message, NULL);
655 }
656
657 int bus_unit_method_clean(sd_bus_message *message, void *userdata, sd_bus_error *error) {
658 ExecCleanMask mask = 0;
659 Unit *u = userdata;
660 int r;
661
662 assert(message);
663 assert(u);
664
665 r = mac_selinux_unit_access_check(u, message, "stop", error);
666 if (r < 0)
667 return r;
668
669 r = sd_bus_message_enter_container(message, 'a', "s");
670 if (r < 0)
671 return r;
672
673 for (;;) {
674 const char *i;
675
676 r = sd_bus_message_read(message, "s", &i);
677 if (r < 0)
678 return r;
679 if (r == 0)
680 break;
681
682 if (streq(i, "all"))
683 mask |= EXEC_CLEAN_ALL;
684 else {
685 ExecDirectoryType t;
686
687 t = exec_resource_type_from_string(i);
688 if (t < 0)
689 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid resource type: %s", i);
690
691 mask |= 1U << t;
692 }
693 }
694
695 r = sd_bus_message_exit_container(message);
696 if (r < 0)
697 return r;
698
699 r = bus_verify_manage_units_async_full(
700 u,
701 "clean",
702 CAP_DAC_OVERRIDE,
703 N_("Authentication is required to delete files and directories associated with '$(unit)'."),
704 true,
705 message,
706 error);
707 if (r < 0)
708 return r;
709 if (r == 0)
710 return 1; /* No authorization for now, but the async polkit stuff will call us again when it has it */
711
712 r = unit_clean(u, mask);
713 if (r == -EOPNOTSUPP)
714 return sd_bus_error_setf(error, SD_BUS_ERROR_NOT_SUPPORTED, "Unit '%s' does not supporting cleaning.", u->id);
715 if (r == -EUNATCH)
716 return sd_bus_error_setf(error, BUS_ERROR_NOTHING_TO_CLEAN, "No matching resources found.");
717 if (r == -EBUSY)
718 return sd_bus_error_setf(error, BUS_ERROR_UNIT_BUSY, "Unit is not inactive or has pending job.");
719 if (r < 0)
720 return r;
721
722 return sd_bus_reply_method_return(message, NULL);
723 }
724
725 static int property_get_refs(
726 sd_bus *bus,
727 const char *path,
728 const char *interface,
729 const char *property,
730 sd_bus_message *reply,
731 void *userdata,
732 sd_bus_error *error) {
733
734 Unit *u = userdata;
735 const char *i;
736 int r;
737
738 assert(bus);
739 assert(reply);
740
741 r = sd_bus_message_open_container(reply, 'a', "s");
742 if (r < 0)
743 return r;
744
745 for (i = sd_bus_track_first(u->bus_track); i; i = sd_bus_track_next(u->bus_track)) {
746 int c, k;
747
748 c = sd_bus_track_count_name(u->bus_track, i);
749 if (c < 0)
750 return c;
751
752 /* Add the item multiple times if the ref count for each is above 1 */
753 for (k = 0; k < c; k++) {
754 r = sd_bus_message_append(reply, "s", i);
755 if (r < 0)
756 return r;
757 }
758 }
759
760 return sd_bus_message_close_container(reply);
761 }
762
763 const sd_bus_vtable bus_unit_vtable[] = {
764 SD_BUS_VTABLE_START(0),
765
766 SD_BUS_PROPERTY("Id", "s", NULL, offsetof(Unit, id), SD_BUS_VTABLE_PROPERTY_CONST),
767 SD_BUS_PROPERTY("Names", "as", property_get_names, offsetof(Unit, names), SD_BUS_VTABLE_PROPERTY_CONST),
768 SD_BUS_PROPERTY("Following", "s", property_get_following, 0, 0),
769 SD_BUS_PROPERTY("Requires", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_REQUIRES]), SD_BUS_VTABLE_PROPERTY_CONST),
770 SD_BUS_PROPERTY("Requisite", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_REQUISITE]), SD_BUS_VTABLE_PROPERTY_CONST),
771 SD_BUS_PROPERTY("Wants", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_WANTS]), SD_BUS_VTABLE_PROPERTY_CONST),
772 SD_BUS_PROPERTY("BindsTo", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_BINDS_TO]), SD_BUS_VTABLE_PROPERTY_CONST),
773 SD_BUS_PROPERTY("PartOf", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_PART_OF]), SD_BUS_VTABLE_PROPERTY_CONST),
774 SD_BUS_PROPERTY("RequiredBy", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_REQUIRED_BY]), SD_BUS_VTABLE_PROPERTY_CONST),
775 SD_BUS_PROPERTY("RequisiteOf", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_REQUISITE_OF]), SD_BUS_VTABLE_PROPERTY_CONST),
776 SD_BUS_PROPERTY("WantedBy", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_WANTED_BY]), SD_BUS_VTABLE_PROPERTY_CONST),
777 SD_BUS_PROPERTY("BoundBy", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_BOUND_BY]), SD_BUS_VTABLE_PROPERTY_CONST),
778 SD_BUS_PROPERTY("ConsistsOf", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_CONSISTS_OF]), SD_BUS_VTABLE_PROPERTY_CONST),
779 SD_BUS_PROPERTY("Conflicts", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_CONFLICTS]), SD_BUS_VTABLE_PROPERTY_CONST),
780 SD_BUS_PROPERTY("ConflictedBy", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_CONFLICTED_BY]), SD_BUS_VTABLE_PROPERTY_CONST),
781 SD_BUS_PROPERTY("Before", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_BEFORE]), SD_BUS_VTABLE_PROPERTY_CONST),
782 SD_BUS_PROPERTY("After", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_AFTER]), SD_BUS_VTABLE_PROPERTY_CONST),
783 SD_BUS_PROPERTY("OnFailure", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_ON_FAILURE]), SD_BUS_VTABLE_PROPERTY_CONST),
784 SD_BUS_PROPERTY("Triggers", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_TRIGGERS]), SD_BUS_VTABLE_PROPERTY_CONST),
785 SD_BUS_PROPERTY("TriggeredBy", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_TRIGGERED_BY]), SD_BUS_VTABLE_PROPERTY_CONST),
786 SD_BUS_PROPERTY("PropagatesReloadTo", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_PROPAGATES_RELOAD_TO]), SD_BUS_VTABLE_PROPERTY_CONST),
787 SD_BUS_PROPERTY("ReloadPropagatedFrom", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_RELOAD_PROPAGATED_FROM]), SD_BUS_VTABLE_PROPERTY_CONST),
788 SD_BUS_PROPERTY("JoinsNamespaceOf", "as", property_get_dependencies, offsetof(Unit, dependencies[UNIT_JOINS_NAMESPACE_OF]), SD_BUS_VTABLE_PROPERTY_CONST),
789 SD_BUS_PROPERTY("RequiresMountsFor", "as", property_get_requires_mounts_for, offsetof(Unit, requires_mounts_for), SD_BUS_VTABLE_PROPERTY_CONST),
790 SD_BUS_PROPERTY("Documentation", "as", NULL, offsetof(Unit, documentation), SD_BUS_VTABLE_PROPERTY_CONST),
791 SD_BUS_PROPERTY("Description", "s", property_get_description, 0, SD_BUS_VTABLE_PROPERTY_CONST),
792 SD_BUS_PROPERTY("LoadState", "s", property_get_load_state, offsetof(Unit, load_state), SD_BUS_VTABLE_PROPERTY_CONST),
793 SD_BUS_PROPERTY("ActiveState", "s", property_get_active_state, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
794 SD_BUS_PROPERTY("SubState", "s", property_get_sub_state, 0, SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
795 SD_BUS_PROPERTY("FragmentPath", "s", NULL, offsetof(Unit, fragment_path), SD_BUS_VTABLE_PROPERTY_CONST),
796 SD_BUS_PROPERTY("SourcePath", "s", NULL, offsetof(Unit, source_path), SD_BUS_VTABLE_PROPERTY_CONST),
797 SD_BUS_PROPERTY("DropInPaths", "as", NULL, offsetof(Unit, dropin_paths), SD_BUS_VTABLE_PROPERTY_CONST),
798 SD_BUS_PROPERTY("UnitFileState", "s", property_get_unit_file_state, 0, 0),
799 SD_BUS_PROPERTY("UnitFilePreset", "s", property_get_unit_file_preset, 0, 0),
800 BUS_PROPERTY_DUAL_TIMESTAMP("StateChangeTimestamp", offsetof(Unit, state_change_timestamp), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
801 BUS_PROPERTY_DUAL_TIMESTAMP("InactiveExitTimestamp", offsetof(Unit, inactive_exit_timestamp), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
802 BUS_PROPERTY_DUAL_TIMESTAMP("ActiveEnterTimestamp", offsetof(Unit, active_enter_timestamp), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
803 BUS_PROPERTY_DUAL_TIMESTAMP("ActiveExitTimestamp", offsetof(Unit, active_exit_timestamp), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
804 BUS_PROPERTY_DUAL_TIMESTAMP("InactiveEnterTimestamp", offsetof(Unit, inactive_enter_timestamp), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
805 SD_BUS_PROPERTY("CanStart", "b", property_get_can_start, 0, SD_BUS_VTABLE_PROPERTY_CONST),
806 SD_BUS_PROPERTY("CanStop", "b", property_get_can_stop, 0, SD_BUS_VTABLE_PROPERTY_CONST),
807 SD_BUS_PROPERTY("CanReload", "b", property_get_can_reload, 0, SD_BUS_VTABLE_PROPERTY_CONST),
808 SD_BUS_PROPERTY("CanIsolate", "b", property_get_can_isolate, 0, SD_BUS_VTABLE_PROPERTY_CONST),
809 SD_BUS_PROPERTY("CanClean", "as", property_get_can_clean, 0, SD_BUS_VTABLE_PROPERTY_CONST),
810 SD_BUS_PROPERTY("Job", "(uo)", property_get_job, offsetof(Unit, job), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
811 SD_BUS_PROPERTY("StopWhenUnneeded", "b", bus_property_get_bool, offsetof(Unit, stop_when_unneeded), SD_BUS_VTABLE_PROPERTY_CONST),
812 SD_BUS_PROPERTY("RefuseManualStart", "b", bus_property_get_bool, offsetof(Unit, refuse_manual_start), SD_BUS_VTABLE_PROPERTY_CONST),
813 SD_BUS_PROPERTY("RefuseManualStop", "b", bus_property_get_bool, offsetof(Unit, refuse_manual_stop), SD_BUS_VTABLE_PROPERTY_CONST),
814 SD_BUS_PROPERTY("AllowIsolate", "b", bus_property_get_bool, offsetof(Unit, allow_isolate), SD_BUS_VTABLE_PROPERTY_CONST),
815 SD_BUS_PROPERTY("DefaultDependencies", "b", bus_property_get_bool, offsetof(Unit, default_dependencies), SD_BUS_VTABLE_PROPERTY_CONST),
816 SD_BUS_PROPERTY("OnFailureJobMode", "s", property_get_job_mode, offsetof(Unit, on_failure_job_mode), SD_BUS_VTABLE_PROPERTY_CONST),
817 SD_BUS_PROPERTY("IgnoreOnIsolate", "b", bus_property_get_bool, offsetof(Unit, ignore_on_isolate), SD_BUS_VTABLE_PROPERTY_CONST),
818 SD_BUS_PROPERTY("NeedDaemonReload", "b", property_get_need_daemon_reload, 0, SD_BUS_VTABLE_PROPERTY_CONST),
819 SD_BUS_PROPERTY("JobTimeoutUSec", "t", bus_property_get_usec, offsetof(Unit, job_timeout), SD_BUS_VTABLE_PROPERTY_CONST),
820 SD_BUS_PROPERTY("JobRunningTimeoutUSec", "t", bus_property_get_usec, offsetof(Unit, job_running_timeout), SD_BUS_VTABLE_PROPERTY_CONST),
821 SD_BUS_PROPERTY("JobTimeoutAction", "s", property_get_emergency_action, offsetof(Unit, job_timeout_action), SD_BUS_VTABLE_PROPERTY_CONST),
822 SD_BUS_PROPERTY("JobTimeoutRebootArgument", "s", NULL, offsetof(Unit, job_timeout_reboot_arg), SD_BUS_VTABLE_PROPERTY_CONST),
823 SD_BUS_PROPERTY("ConditionResult", "b", bus_property_get_bool, offsetof(Unit, condition_result), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
824 SD_BUS_PROPERTY("AssertResult", "b", bus_property_get_bool, offsetof(Unit, assert_result), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
825 BUS_PROPERTY_DUAL_TIMESTAMP("ConditionTimestamp", offsetof(Unit, condition_timestamp), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
826 BUS_PROPERTY_DUAL_TIMESTAMP("AssertTimestamp", offsetof(Unit, assert_timestamp), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
827 SD_BUS_PROPERTY("Conditions", "a(sbbsi)", property_get_conditions, offsetof(Unit, conditions), SD_BUS_VTABLE_PROPERTY_EMITS_INVALIDATION),
828 SD_BUS_PROPERTY("Asserts", "a(sbbsi)", property_get_conditions, offsetof(Unit, asserts), SD_BUS_VTABLE_PROPERTY_EMITS_INVALIDATION),
829 SD_BUS_PROPERTY("LoadError", "(ss)", property_get_load_error, 0, SD_BUS_VTABLE_PROPERTY_CONST),
830 SD_BUS_PROPERTY("Transient", "b", bus_property_get_bool, offsetof(Unit, transient), SD_BUS_VTABLE_PROPERTY_CONST),
831 SD_BUS_PROPERTY("Perpetual", "b", bus_property_get_bool, offsetof(Unit, perpetual), SD_BUS_VTABLE_PROPERTY_CONST),
832 SD_BUS_PROPERTY("StartLimitIntervalUSec", "t", bus_property_get_usec, offsetof(Unit, start_ratelimit.interval), SD_BUS_VTABLE_PROPERTY_CONST),
833 SD_BUS_PROPERTY("StartLimitBurst", "u", bus_property_get_unsigned, offsetof(Unit, start_ratelimit.burst), SD_BUS_VTABLE_PROPERTY_CONST),
834 SD_BUS_PROPERTY("StartLimitAction", "s", property_get_emergency_action, offsetof(Unit, start_limit_action), SD_BUS_VTABLE_PROPERTY_CONST),
835 SD_BUS_PROPERTY("FailureAction", "s", property_get_emergency_action, offsetof(Unit, failure_action), SD_BUS_VTABLE_PROPERTY_CONST),
836 SD_BUS_PROPERTY("FailureActionExitStatus", "i", bus_property_get_int, offsetof(Unit, failure_action_exit_status), SD_BUS_VTABLE_PROPERTY_CONST),
837 SD_BUS_PROPERTY("SuccessAction", "s", property_get_emergency_action, offsetof(Unit, success_action), SD_BUS_VTABLE_PROPERTY_CONST),
838 SD_BUS_PROPERTY("SuccessActionExitStatus", "i", bus_property_get_int, offsetof(Unit, success_action_exit_status), SD_BUS_VTABLE_PROPERTY_CONST),
839 SD_BUS_PROPERTY("RebootArgument", "s", NULL, offsetof(Unit, reboot_arg), SD_BUS_VTABLE_PROPERTY_CONST),
840 SD_BUS_PROPERTY("InvocationID", "ay", bus_property_get_id128, offsetof(Unit, invocation_id), SD_BUS_VTABLE_PROPERTY_EMITS_CHANGE),
841 SD_BUS_PROPERTY("CollectMode", "s", property_get_collect_mode, offsetof(Unit, collect_mode), SD_BUS_VTABLE_PROPERTY_CONST),
842 SD_BUS_PROPERTY("Refs", "as", property_get_refs, 0, 0),
843
844 SD_BUS_METHOD("Start", "s", "o", method_start, SD_BUS_VTABLE_UNPRIVILEGED),
845 SD_BUS_METHOD("Stop", "s", "o", method_stop, SD_BUS_VTABLE_UNPRIVILEGED),
846 SD_BUS_METHOD("Reload", "s", "o", method_reload, SD_BUS_VTABLE_UNPRIVILEGED),
847 SD_BUS_METHOD("Restart", "s", "o", method_restart, SD_BUS_VTABLE_UNPRIVILEGED),
848 SD_BUS_METHOD("TryRestart", "s", "o", method_try_restart, SD_BUS_VTABLE_UNPRIVILEGED),
849 SD_BUS_METHOD("ReloadOrRestart", "s", "o", method_reload_or_restart, SD_BUS_VTABLE_UNPRIVILEGED),
850 SD_BUS_METHOD("ReloadOrTryRestart", "s", "o", method_reload_or_try_restart, SD_BUS_VTABLE_UNPRIVILEGED),
851 SD_BUS_METHOD("EnqueueJob", "ss", "uososa(uosos)", bus_unit_method_enqueue_job, SD_BUS_VTABLE_UNPRIVILEGED),
852 SD_BUS_METHOD("Kill", "si", NULL, bus_unit_method_kill, SD_BUS_VTABLE_UNPRIVILEGED),
853 SD_BUS_METHOD("ResetFailed", NULL, NULL, bus_unit_method_reset_failed, SD_BUS_VTABLE_UNPRIVILEGED),
854 SD_BUS_METHOD("SetProperties", "ba(sv)", NULL, bus_unit_method_set_properties, SD_BUS_VTABLE_UNPRIVILEGED),
855 SD_BUS_METHOD("Ref", NULL, NULL, bus_unit_method_ref, SD_BUS_VTABLE_UNPRIVILEGED),
856 SD_BUS_METHOD("Unref", NULL, NULL, bus_unit_method_unref, SD_BUS_VTABLE_UNPRIVILEGED),
857 SD_BUS_METHOD("Clean", "as", NULL, bus_unit_method_clean, SD_BUS_VTABLE_UNPRIVILEGED),
858
859 /* For dependency types we don't support anymore always return an empty array */
860 SD_BUS_PROPERTY("RequiresOverridable", "as", property_get_empty_strv, 0, SD_BUS_VTABLE_HIDDEN),
861 SD_BUS_PROPERTY("RequisiteOverridable", "as", property_get_empty_strv, 0, SD_BUS_VTABLE_HIDDEN),
862 SD_BUS_PROPERTY("RequiredByOverridable", "as", property_get_empty_strv, 0, SD_BUS_VTABLE_HIDDEN),
863 SD_BUS_PROPERTY("RequisiteOfOverridable", "as", property_get_empty_strv, 0, SD_BUS_VTABLE_HIDDEN),
864 /* Obsolete alias names */
865 SD_BUS_PROPERTY("StartLimitInterval", "t", bus_property_get_usec, offsetof(Unit, start_ratelimit.interval), SD_BUS_VTABLE_PROPERTY_CONST|SD_BUS_VTABLE_HIDDEN),
866 SD_BUS_PROPERTY("StartLimitIntervalSec", "t", bus_property_get_usec, offsetof(Unit, start_ratelimit.interval), SD_BUS_VTABLE_PROPERTY_CONST|SD_BUS_VTABLE_HIDDEN),
867 SD_BUS_VTABLE_END
868 };
869
870 static int property_get_slice(
871 sd_bus *bus,
872 const char *path,
873 const char *interface,
874 const char *property,
875 sd_bus_message *reply,
876 void *userdata,
877 sd_bus_error *error) {
878
879 Unit *u = userdata;
880
881 assert(bus);
882 assert(reply);
883 assert(u);
884
885 return sd_bus_message_append(reply, "s", unit_slice_name(u));
886 }
887
888 static int property_get_current_memory(
889 sd_bus *bus,
890 const char *path,
891 const char *interface,
892 const char *property,
893 sd_bus_message *reply,
894 void *userdata,
895 sd_bus_error *error) {
896
897 uint64_t sz = (uint64_t) -1;
898 Unit *u = userdata;
899 int r;
900
901 assert(bus);
902 assert(reply);
903 assert(u);
904
905 r = unit_get_memory_current(u, &sz);
906 if (r < 0 && r != -ENODATA)
907 log_unit_warning_errno(u, r, "Failed to get memory.usage_in_bytes attribute: %m");
908
909 return sd_bus_message_append(reply, "t", sz);
910 }
911
912 static int property_get_current_tasks(
913 sd_bus *bus,
914 const char *path,
915 const char *interface,
916 const char *property,
917 sd_bus_message *reply,
918 void *userdata,
919 sd_bus_error *error) {
920
921 uint64_t cn = (uint64_t) -1;
922 Unit *u = userdata;
923 int r;
924
925 assert(bus);
926 assert(reply);
927 assert(u);
928
929 r = unit_get_tasks_current(u, &cn);
930 if (r < 0 && r != -ENODATA)
931 log_unit_warning_errno(u, r, "Failed to get pids.current attribute: %m");
932
933 return sd_bus_message_append(reply, "t", cn);
934 }
935
936 static int property_get_cpu_usage(
937 sd_bus *bus,
938 const char *path,
939 const char *interface,
940 const char *property,
941 sd_bus_message *reply,
942 void *userdata,
943 sd_bus_error *error) {
944
945 nsec_t ns = (nsec_t) -1;
946 Unit *u = userdata;
947 int r;
948
949 assert(bus);
950 assert(reply);
951 assert(u);
952
953 r = unit_get_cpu_usage(u, &ns);
954 if (r < 0 && r != -ENODATA)
955 log_unit_warning_errno(u, r, "Failed to get cpuacct.usage attribute: %m");
956
957 return sd_bus_message_append(reply, "t", ns);
958 }
959
960 static int property_get_cgroup(
961 sd_bus *bus,
962 const char *path,
963 const char *interface,
964 const char *property,
965 sd_bus_message *reply,
966 void *userdata,
967 sd_bus_error *error) {
968
969 Unit *u = userdata;
970 const char *t = NULL;
971
972 assert(bus);
973 assert(reply);
974 assert(u);
975
976 /* Three cases: a) u->cgroup_path is NULL, in which case the
977 * unit has no control group, which we report as the empty
978 * string. b) u->cgroup_path is the empty string, which
979 * indicates the root cgroup, which we report as "/". c) all
980 * other cases we report as-is. */
981
982 if (u->cgroup_path)
983 t = empty_to_root(u->cgroup_path);
984
985 return sd_bus_message_append(reply, "s", t);
986 }
987
988 static int append_process(sd_bus_message *reply, const char *p, pid_t pid, Set *pids) {
989 _cleanup_free_ char *buf = NULL, *cmdline = NULL;
990 int r;
991
992 assert(reply);
993 assert(pid > 0);
994
995 r = set_put(pids, PID_TO_PTR(pid));
996 if (IN_SET(r, 0, -EEXIST))
997 return 0;
998 if (r < 0)
999 return r;
1000
1001 if (!p) {
1002 r = cg_pid_get_path(SYSTEMD_CGROUP_CONTROLLER, pid, &buf);
1003 if (r == -ESRCH)
1004 return 0;
1005 if (r < 0)
1006 return r;
1007
1008 p = buf;
1009 }
1010
1011 (void) get_process_cmdline(pid, SIZE_MAX, PROCESS_CMDLINE_COMM_FALLBACK, &cmdline);
1012
1013 return sd_bus_message_append(reply,
1014 "(sus)",
1015 p,
1016 (uint32_t) pid,
1017 cmdline);
1018 }
1019
1020 static int append_cgroup(sd_bus_message *reply, const char *p, Set *pids) {
1021 _cleanup_closedir_ DIR *d = NULL;
1022 _cleanup_fclose_ FILE *f = NULL;
1023 int r;
1024
1025 assert(reply);
1026 assert(p);
1027
1028 r = cg_enumerate_processes(SYSTEMD_CGROUP_CONTROLLER, p, &f);
1029 if (r == -ENOENT)
1030 return 0;
1031 if (r < 0)
1032 return r;
1033
1034 for (;;) {
1035 pid_t pid;
1036
1037 r = cg_read_pid(f, &pid);
1038 if (r < 0)
1039 return r;
1040 if (r == 0)
1041 break;
1042
1043 if (is_kernel_thread(pid) > 0)
1044 continue;
1045
1046 r = append_process(reply, p, pid, pids);
1047 if (r < 0)
1048 return r;
1049 }
1050
1051 r = cg_enumerate_subgroups(SYSTEMD_CGROUP_CONTROLLER, p, &d);
1052 if (r == -ENOENT)
1053 return 0;
1054 if (r < 0)
1055 return r;
1056
1057 for (;;) {
1058 _cleanup_free_ char *g = NULL, *j = NULL;
1059
1060 r = cg_read_subgroup(d, &g);
1061 if (r < 0)
1062 return r;
1063 if (r == 0)
1064 break;
1065
1066 j = path_join(empty_to_root(p), g);
1067 if (!j)
1068 return -ENOMEM;
1069
1070 r = append_cgroup(reply, j, pids);
1071 if (r < 0)
1072 return r;
1073 }
1074
1075 return 0;
1076 }
1077
1078 int bus_unit_method_get_processes(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1079 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1080 _cleanup_set_free_ Set *pids = NULL;
1081 Unit *u = userdata;
1082 pid_t pid;
1083 int r;
1084
1085 assert(message);
1086
1087 r = mac_selinux_unit_access_check(u, message, "status", error);
1088 if (r < 0)
1089 return r;
1090
1091 pids = set_new(NULL);
1092 if (!pids)
1093 return -ENOMEM;
1094
1095 r = sd_bus_message_new_method_return(message, &reply);
1096 if (r < 0)
1097 return r;
1098
1099 r = sd_bus_message_open_container(reply, 'a', "(sus)");
1100 if (r < 0)
1101 return r;
1102
1103 if (u->cgroup_path) {
1104 r = append_cgroup(reply, u->cgroup_path, pids);
1105 if (r < 0)
1106 return r;
1107 }
1108
1109 /* The main and control pids might live outside of the cgroup, hence fetch them separately */
1110 pid = unit_main_pid(u);
1111 if (pid > 0) {
1112 r = append_process(reply, NULL, pid, pids);
1113 if (r < 0)
1114 return r;
1115 }
1116
1117 pid = unit_control_pid(u);
1118 if (pid > 0) {
1119 r = append_process(reply, NULL, pid, pids);
1120 if (r < 0)
1121 return r;
1122 }
1123
1124 r = sd_bus_message_close_container(reply);
1125 if (r < 0)
1126 return r;
1127
1128 return sd_bus_send(NULL, reply, NULL);
1129 }
1130
1131 static int property_get_ip_counter(
1132 sd_bus *bus,
1133 const char *path,
1134 const char *interface,
1135 const char *property,
1136 sd_bus_message *reply,
1137 void *userdata,
1138 sd_bus_error *error) {
1139
1140 static const char *const table[_CGROUP_IP_ACCOUNTING_METRIC_MAX] = {
1141 [CGROUP_IP_INGRESS_BYTES] = "IPIngressBytes",
1142 [CGROUP_IP_EGRESS_BYTES] = "IPEgressBytes",
1143 [CGROUP_IP_INGRESS_PACKETS] = "IPIngressPackets",
1144 [CGROUP_IP_EGRESS_PACKETS] = "IPEgressPackets",
1145 };
1146
1147 uint64_t value = UINT64_MAX;
1148 Unit *u = userdata;
1149 ssize_t metric;
1150
1151 assert(bus);
1152 assert(reply);
1153 assert(property);
1154 assert(u);
1155
1156 assert_se((metric = string_table_lookup(table, ELEMENTSOF(table), property)) >= 0);
1157 (void) unit_get_ip_accounting(u, metric, &value);
1158 return sd_bus_message_append(reply, "t", value);
1159 }
1160
1161 static int property_get_io_counter(
1162 sd_bus *bus,
1163 const char *path,
1164 const char *interface,
1165 const char *property,
1166 sd_bus_message *reply,
1167 void *userdata,
1168 sd_bus_error *error) {
1169
1170 static const char *const table[_CGROUP_IO_ACCOUNTING_METRIC_MAX] = {
1171 [CGROUP_IO_READ_BYTES] = "IOReadBytes",
1172 [CGROUP_IO_WRITE_BYTES] = "IOWriteBytes",
1173 [CGROUP_IO_READ_OPERATIONS] = "IOReadOperations",
1174 [CGROUP_IO_WRITE_OPERATIONS] = "IOWriteOperations",
1175 };
1176
1177 uint64_t value = UINT64_MAX;
1178 Unit *u = userdata;
1179 ssize_t metric;
1180
1181 assert(bus);
1182 assert(reply);
1183 assert(property);
1184 assert(u);
1185
1186 assert_se((metric = string_table_lookup(table, ELEMENTSOF(table), property)) >= 0);
1187 (void) unit_get_io_accounting(u, metric, false, &value);
1188 return sd_bus_message_append(reply, "t", value);
1189 }
1190
1191 int bus_unit_method_attach_processes(sd_bus_message *message, void *userdata, sd_bus_error *error) {
1192
1193 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
1194 _cleanup_set_free_ Set *pids = NULL;
1195 Unit *u = userdata;
1196 const char *path;
1197 int r;
1198
1199 assert(message);
1200
1201 /* This migrates the processes with the specified PIDs into the cgroup of this unit, optionally below a
1202 * specified cgroup path. Obviously this only works for units that actually maintain a cgroup
1203 * representation. If a process is already in the cgroup no operation is executed – in this case the specified
1204 * subcgroup path has no effect! */
1205
1206 r = mac_selinux_unit_access_check(u, message, "start", error);
1207 if (r < 0)
1208 return r;
1209
1210 r = sd_bus_message_read(message, "s", &path);
1211 if (r < 0)
1212 return r;
1213
1214 path = empty_to_null(path);
1215 if (path) {
1216 if (!path_is_absolute(path))
1217 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Control group path is not absolute: %s", path);
1218
1219 if (!path_is_normalized(path))
1220 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Control group path is not normalized: %s", path);
1221 }
1222
1223 if (!unit_cgroup_delegate(u))
1224 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Process migration not available on non-delegated units.");
1225
1226 if (UNIT_IS_INACTIVE_OR_FAILED(unit_active_state(u)))
1227 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Unit is not active, refusing.");
1228
1229 r = sd_bus_query_sender_creds(message, SD_BUS_CREDS_EUID|SD_BUS_CREDS_PID, &creds);
1230 if (r < 0)
1231 return r;
1232
1233 r = sd_bus_message_enter_container(message, 'a', "u");
1234 if (r < 0)
1235 return r;
1236 for (;;) {
1237 uid_t process_uid, sender_uid;
1238 uint32_t upid;
1239 pid_t pid;
1240
1241 r = sd_bus_message_read(message, "u", &upid);
1242 if (r < 0)
1243 return r;
1244 if (r == 0)
1245 break;
1246
1247 if (upid == 0) {
1248 r = sd_bus_creds_get_pid(creds, &pid);
1249 if (r < 0)
1250 return r;
1251 } else
1252 pid = (uid_t) upid;
1253
1254 /* Filter out duplicates */
1255 if (set_contains(pids, PID_TO_PTR(pid)))
1256 continue;
1257
1258 /* Check if this process is suitable for attaching to this unit */
1259 r = unit_pid_attachable(u, pid, error);
1260 if (r < 0)
1261 return r;
1262
1263 /* Let's query the sender's UID, so that we can make our security decisions */
1264 r = sd_bus_creds_get_euid(creds, &sender_uid);
1265 if (r < 0)
1266 return r;
1267
1268 /* Let's validate security: if the sender is root, then all is OK. If the sender is any other unit,
1269 * then the process' UID and the target unit's UID have to match the sender's UID */
1270 if (sender_uid != 0 && sender_uid != getuid()) {
1271 r = get_process_uid(pid, &process_uid);
1272 if (r < 0)
1273 return sd_bus_error_set_errnof(error, r, "Failed to retrieve process UID: %m");
1274
1275 if (process_uid != sender_uid)
1276 return sd_bus_error_setf(error, SD_BUS_ERROR_ACCESS_DENIED, "Process " PID_FMT " not owned by client's UID. Refusing.", pid);
1277 if (process_uid != u->ref_uid)
1278 return sd_bus_error_setf(error, SD_BUS_ERROR_ACCESS_DENIED, "Process " PID_FMT " not owned by target unit's UID. Refusing.", pid);
1279 }
1280
1281 if (!pids) {
1282 pids = set_new(NULL);
1283 if (!pids)
1284 return -ENOMEM;
1285 }
1286
1287 r = set_put(pids, PID_TO_PTR(pid));
1288 if (r < 0)
1289 return r;
1290 }
1291
1292 r = sd_bus_message_exit_container(message);
1293 if (r < 0)
1294 return r;
1295
1296 r = unit_attach_pids_to_cgroup(u, pids, path);
1297 if (r < 0)
1298 return sd_bus_error_set_errnof(error, r, "Failed to attach processes to control group: %m");
1299
1300 return sd_bus_reply_method_return(message, NULL);
1301 }
1302
1303 const sd_bus_vtable bus_unit_cgroup_vtable[] = {
1304 SD_BUS_VTABLE_START(0),
1305 SD_BUS_PROPERTY("Slice", "s", property_get_slice, 0, 0),
1306 SD_BUS_PROPERTY("ControlGroup", "s", property_get_cgroup, 0, 0),
1307 SD_BUS_PROPERTY("MemoryCurrent", "t", property_get_current_memory, 0, 0),
1308 SD_BUS_PROPERTY("CPUUsageNSec", "t", property_get_cpu_usage, 0, 0),
1309 SD_BUS_PROPERTY("TasksCurrent", "t", property_get_current_tasks, 0, 0),
1310 SD_BUS_PROPERTY("IPIngressBytes", "t", property_get_ip_counter, 0, 0),
1311 SD_BUS_PROPERTY("IPIngressPackets", "t", property_get_ip_counter, 0, 0),
1312 SD_BUS_PROPERTY("IPEgressBytes", "t", property_get_ip_counter, 0, 0),
1313 SD_BUS_PROPERTY("IPEgressPackets", "t", property_get_ip_counter, 0, 0),
1314 SD_BUS_PROPERTY("IOReadBytes", "t", property_get_io_counter, 0, 0),
1315 SD_BUS_PROPERTY("IOReadOperations", "t", property_get_io_counter, 0, 0),
1316 SD_BUS_PROPERTY("IOWriteBytes", "t", property_get_io_counter, 0, 0),
1317 SD_BUS_PROPERTY("IOWriteOperations", "t", property_get_io_counter, 0, 0),
1318 SD_BUS_METHOD("GetProcesses", NULL, "a(sus)", bus_unit_method_get_processes, SD_BUS_VTABLE_UNPRIVILEGED),
1319 SD_BUS_METHOD("AttachProcesses", "sau", NULL, bus_unit_method_attach_processes, SD_BUS_VTABLE_UNPRIVILEGED),
1320 SD_BUS_VTABLE_END
1321 };
1322
1323 static int send_new_signal(sd_bus *bus, void *userdata) {
1324 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
1325 _cleanup_free_ char *p = NULL;
1326 Unit *u = userdata;
1327 int r;
1328
1329 assert(bus);
1330 assert(u);
1331
1332 p = unit_dbus_path(u);
1333 if (!p)
1334 return -ENOMEM;
1335
1336 r = sd_bus_message_new_signal(
1337 bus,
1338 &m,
1339 "/org/freedesktop/systemd1",
1340 "org.freedesktop.systemd1.Manager",
1341 "UnitNew");
1342 if (r < 0)
1343 return r;
1344
1345 r = sd_bus_message_append(m, "so", u->id, p);
1346 if (r < 0)
1347 return r;
1348
1349 return sd_bus_send(bus, m, NULL);
1350 }
1351
1352 static int send_changed_signal(sd_bus *bus, void *userdata) {
1353 _cleanup_free_ char *p = NULL;
1354 Unit *u = userdata;
1355 int r;
1356
1357 assert(bus);
1358 assert(u);
1359
1360 p = unit_dbus_path(u);
1361 if (!p)
1362 return -ENOMEM;
1363
1364 /* Send a properties changed signal. First for the specific
1365 * type, then for the generic unit. The clients may rely on
1366 * this order to get atomic behavior if needed. */
1367
1368 r = sd_bus_emit_properties_changed_strv(
1369 bus, p,
1370 unit_dbus_interface_from_type(u->type),
1371 NULL);
1372 if (r < 0)
1373 return r;
1374
1375 return sd_bus_emit_properties_changed_strv(
1376 bus, p,
1377 "org.freedesktop.systemd1.Unit",
1378 NULL);
1379 }
1380
1381 void bus_unit_send_change_signal(Unit *u) {
1382 int r;
1383 assert(u);
1384
1385 if (u->in_dbus_queue) {
1386 LIST_REMOVE(dbus_queue, u->manager->dbus_unit_queue, u);
1387 u->in_dbus_queue = false;
1388 }
1389
1390 if (!u->id)
1391 return;
1392
1393 r = bus_foreach_bus(u->manager, u->bus_track, u->sent_dbus_new_signal ? send_changed_signal : send_new_signal, u);
1394 if (r < 0)
1395 log_unit_debug_errno(u, r, "Failed to send unit change signal for %s: %m", u->id);
1396
1397 u->sent_dbus_new_signal = true;
1398 }
1399
1400 void bus_unit_send_pending_change_signal(Unit *u, bool including_new) {
1401
1402 /* Sends out any pending change signals, but only if they really are pending. This call is used when we are
1403 * about to change state in order to force out a PropertiesChanged signal beforehand if there was one pending
1404 * so that clients can follow the full state transition */
1405
1406 if (!u->in_dbus_queue) /* If not enqueued, don't bother */
1407 return;
1408
1409 if (!u->sent_dbus_new_signal && !including_new) /* If the unit was never announced, don't bother, it's fine if
1410 * the unit appears in the new state right-away (except if the
1411 * caller explicitly asked us to send it anyway) */
1412 return;
1413
1414 if (MANAGER_IS_RELOADING(u->manager)) /* Don't generate unnecessary PropertiesChanged signals for the same unit
1415 * when we are reloading. */
1416 return;
1417
1418 bus_unit_send_change_signal(u);
1419 }
1420
1421 static int send_removed_signal(sd_bus *bus, void *userdata) {
1422 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
1423 _cleanup_free_ char *p = NULL;
1424 Unit *u = userdata;
1425 int r;
1426
1427 assert(bus);
1428 assert(u);
1429
1430 p = unit_dbus_path(u);
1431 if (!p)
1432 return -ENOMEM;
1433
1434 r = sd_bus_message_new_signal(
1435 bus,
1436 &m,
1437 "/org/freedesktop/systemd1",
1438 "org.freedesktop.systemd1.Manager",
1439 "UnitRemoved");
1440 if (r < 0)
1441 return r;
1442
1443 r = sd_bus_message_append(m, "so", u->id, p);
1444 if (r < 0)
1445 return r;
1446
1447 return sd_bus_send(bus, m, NULL);
1448 }
1449
1450 void bus_unit_send_removed_signal(Unit *u) {
1451 int r;
1452 assert(u);
1453
1454 if (!u->sent_dbus_new_signal || u->in_dbus_queue)
1455 bus_unit_send_change_signal(u);
1456
1457 if (!u->id)
1458 return;
1459
1460 r = bus_foreach_bus(u->manager, u->bus_track, send_removed_signal, u);
1461 if (r < 0)
1462 log_unit_debug_errno(u, r, "Failed to send unit remove signal for %s: %m", u->id);
1463 }
1464
1465 int bus_unit_queue_job(
1466 sd_bus_message *message,
1467 Unit *u,
1468 JobType type,
1469 JobMode mode,
1470 BusUnitQueueFlags flags,
1471 sd_bus_error *error) {
1472
1473 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1474 _cleanup_free_ char *job_path = NULL, *unit_path = NULL;
1475 _cleanup_(set_freep) Set *affected = NULL;
1476 Iterator i;
1477 Job *j, *a;
1478 int r;
1479
1480 assert(message);
1481 assert(u);
1482 assert(type >= 0 && type < _JOB_TYPE_MAX);
1483 assert(mode >= 0 && mode < _JOB_MODE_MAX);
1484
1485 r = mac_selinux_unit_access_check(
1486 u, message,
1487 job_type_to_access_method(type),
1488 error);
1489 if (r < 0)
1490 return r;
1491
1492 if (FLAGS_SET(flags, BUS_UNIT_QUEUE_RELOAD_IF_POSSIBLE) && unit_can_reload(u)) {
1493 if (type == JOB_RESTART)
1494 type = JOB_RELOAD_OR_START;
1495 else if (type == JOB_TRY_RESTART)
1496 type = JOB_TRY_RELOAD;
1497 }
1498
1499 if (type == JOB_STOP &&
1500 IN_SET(u->load_state, UNIT_NOT_FOUND, UNIT_ERROR, UNIT_BAD_SETTING) &&
1501 unit_active_state(u) == UNIT_INACTIVE)
1502 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_UNIT, "Unit %s not loaded.", u->id);
1503
1504 if ((type == JOB_START && u->refuse_manual_start) ||
1505 (type == JOB_STOP && u->refuse_manual_stop) ||
1506 (IN_SET(type, JOB_RESTART, JOB_TRY_RESTART) && (u->refuse_manual_start || u->refuse_manual_stop)) ||
1507 (type == JOB_RELOAD_OR_START && job_type_collapse(type, u) == JOB_START && u->refuse_manual_start))
1508 return sd_bus_error_setf(error, BUS_ERROR_ONLY_BY_DEPENDENCY, "Operation refused, unit %s may be requested by dependency only (it is configured to refuse manual start/stop).", u->id);
1509
1510 if (FLAGS_SET(flags, BUS_UNIT_QUEUE_VERBOSE_REPLY)) {
1511 affected = set_new(NULL);
1512 if (!affected)
1513 return -ENOMEM;
1514 }
1515
1516 r = manager_add_job(u->manager, type, u, mode, affected, error, &j);
1517 if (r < 0)
1518 return r;
1519
1520 r = bus_job_track_sender(j, message);
1521 if (r < 0)
1522 return r;
1523
1524 /* Before we send the method reply, force out the announcement JobNew for this job */
1525 bus_job_send_pending_change_signal(j, true);
1526
1527 job_path = job_dbus_path(j);
1528 if (!job_path)
1529 return -ENOMEM;
1530
1531 /* The classic response is just a job object path */
1532 if (!FLAGS_SET(flags, BUS_UNIT_QUEUE_VERBOSE_REPLY))
1533 return sd_bus_reply_method_return(message, "o", job_path);
1534
1535 /* In verbose mode respond with the anchor job plus everything that has been affected */
1536 r = sd_bus_message_new_method_return(message, &reply);
1537 if (r < 0)
1538 return r;
1539
1540 unit_path = unit_dbus_path(j->unit);
1541 if (!unit_path)
1542 return -ENOMEM;
1543
1544 r = sd_bus_message_append(reply, "uosos",
1545 j->id, job_path,
1546 j->unit->id, unit_path,
1547 job_type_to_string(j->type));
1548 if (r < 0)
1549 return r;
1550
1551 r = sd_bus_message_open_container(reply, 'a', "(uosos)");
1552 if (r < 0)
1553 return r;
1554
1555 SET_FOREACH(a, affected, i) {
1556
1557 if (a->id == j->id)
1558 continue;
1559
1560 /* Free paths from previous iteration */
1561 job_path = mfree(job_path);
1562 unit_path = mfree(unit_path);
1563
1564 job_path = job_dbus_path(a);
1565 if (!job_path)
1566 return -ENOMEM;
1567
1568 unit_path = unit_dbus_path(a->unit);
1569 if (!unit_path)
1570 return -ENOMEM;
1571
1572 r = sd_bus_message_append(reply, "(uosos)",
1573 a->id, job_path,
1574 a->unit->id, unit_path,
1575 job_type_to_string(a->type));
1576 if (r < 0)
1577 return r;
1578 }
1579
1580 r = sd_bus_message_close_container(reply);
1581 if (r < 0)
1582 return r;
1583
1584 return sd_bus_send(NULL, reply, NULL);
1585 }
1586
1587 static int bus_unit_set_live_property(
1588 Unit *u,
1589 const char *name,
1590 sd_bus_message *message,
1591 UnitWriteFlags flags,
1592 sd_bus_error *error) {
1593
1594 int r;
1595
1596 assert(u);
1597 assert(name);
1598 assert(message);
1599
1600 /* Handles setting properties both "live" (i.e. at any time during runtime), and during creation (for transient
1601 * units that are being created). */
1602
1603 if (streq(name, "Description")) {
1604 const char *d;
1605
1606 r = sd_bus_message_read(message, "s", &d);
1607 if (r < 0)
1608 return r;
1609
1610 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1611 r = unit_set_description(u, d);
1612 if (r < 0)
1613 return r;
1614
1615 unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name, "Description=%s", d);
1616 }
1617
1618 return 1;
1619 }
1620
1621 return 0;
1622 }
1623
1624 static int bus_set_transient_emergency_action(
1625 Unit *u,
1626 const char *name,
1627 EmergencyAction *p,
1628 sd_bus_message *message,
1629 UnitWriteFlags flags,
1630 sd_bus_error *error) {
1631
1632 const char *s;
1633 EmergencyAction v;
1634 int r;
1635 bool system;
1636
1637 assert(p);
1638
1639 r = sd_bus_message_read(message, "s", &s);
1640 if (r < 0)
1641 return r;
1642
1643 system = MANAGER_IS_SYSTEM(u->manager);
1644 r = parse_emergency_action(s, system, &v);
1645 if (r < 0)
1646 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS,
1647 r == -EOPNOTSUPP ? "%s setting invalid for manager type: %s"
1648 : "Invalid %s setting: %s",
1649 name, s);
1650
1651 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1652 *p = v;
1653 unit_write_settingf(u, flags, name,
1654 "%s=%s", name, s);
1655 }
1656
1657 return 1;
1658 }
1659
1660 static int bus_set_transient_exit_status(
1661 Unit *u,
1662 const char *name,
1663 int *p,
1664 sd_bus_message *message,
1665 UnitWriteFlags flags,
1666 sd_bus_error *error) {
1667
1668 int32_t k;
1669 int r;
1670
1671 assert(p);
1672
1673 r = sd_bus_message_read(message, "i", &k);
1674 if (r < 0)
1675 return r;
1676
1677 if (k > 255)
1678 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Exit status must be in range 0…255 or negative.");
1679
1680 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1681 *p = k < 0 ? -1 : k;
1682
1683 if (k < 0)
1684 unit_write_settingf(u, flags, name, "%s=", name);
1685 else
1686 unit_write_settingf(u, flags, name, "%s=%i", name, k);
1687 }
1688
1689 return 1;
1690 }
1691
1692 static BUS_DEFINE_SET_TRANSIENT_PARSE(collect_mode, CollectMode, collect_mode_from_string);
1693 static BUS_DEFINE_SET_TRANSIENT_PARSE(job_mode, JobMode, job_mode_from_string);
1694
1695 static int bus_set_transient_conditions(
1696 Unit *u,
1697 const char *name,
1698 Condition **list,
1699 bool is_condition,
1700 sd_bus_message *message,
1701 UnitWriteFlags flags,
1702 sd_bus_error *error) {
1703
1704 const char *type_name, *param;
1705 int trigger, negate, r;
1706 bool empty = true;
1707
1708 assert(list);
1709
1710 r = sd_bus_message_enter_container(message, 'a', "(sbbs)");
1711 if (r < 0)
1712 return r;
1713
1714 while ((r = sd_bus_message_read(message, "(sbbs)", &type_name, &trigger, &negate, &param)) > 0) {
1715 ConditionType t;
1716
1717 t = is_condition ? condition_type_from_string(type_name) : assert_type_from_string(type_name);
1718 if (t < 0)
1719 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid condition type: %s", type_name);
1720
1721 if (t != CONDITION_NULL) {
1722 if (isempty(param))
1723 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Condition parameter in %s is empty", type_name);
1724
1725 if (condition_takes_path(t) && !path_is_absolute(param))
1726 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Path in condition %s is not absolute: %s", type_name, param);
1727 } else
1728 param = NULL;
1729
1730 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1731 Condition *c;
1732
1733 c = condition_new(t, param, trigger, negate);
1734 if (!c)
1735 return -ENOMEM;
1736
1737 LIST_PREPEND(conditions, *list, c);
1738
1739 if (t != CONDITION_NULL)
1740 unit_write_settingf(u, flags|UNIT_ESCAPE_SPECIFIERS, name,
1741 "%s=%s%s%s", type_name,
1742 trigger ? "|" : "", negate ? "!" : "", param);
1743 else
1744 unit_write_settingf(u, flags, name,
1745 "%s=%s%s", type_name,
1746 trigger ? "|" : "", yes_no(!negate));
1747 }
1748
1749 empty = false;
1750 }
1751 if (r < 0)
1752 return r;
1753
1754 r = sd_bus_message_exit_container(message);
1755 if (r < 0)
1756 return r;
1757
1758 if (!UNIT_WRITE_FLAGS_NOOP(flags) && empty) {
1759 *list = condition_free_list(*list);
1760 unit_write_settingf(u, flags, name, "%sNull=", is_condition ? "Condition" : "Assert");
1761 }
1762
1763 return 1;
1764 }
1765
1766 static int bus_unit_set_transient_property(
1767 Unit *u,
1768 const char *name,
1769 sd_bus_message *message,
1770 UnitWriteFlags flags,
1771 sd_bus_error *error) {
1772
1773 UnitDependency d = _UNIT_DEPENDENCY_INVALID;
1774 int r;
1775
1776 assert(u);
1777 assert(name);
1778 assert(message);
1779
1780 /* Handles settings when transient units are created. This settings cannot be altered anymore after the unit
1781 * has been created. */
1782
1783 if (streq(name, "SourcePath"))
1784 return bus_set_transient_path(u, name, &u->source_path, message, flags, error);
1785
1786 if (streq(name, "StopWhenUnneeded"))
1787 return bus_set_transient_bool(u, name, &u->stop_when_unneeded, message, flags, error);
1788
1789 if (streq(name, "RefuseManualStart"))
1790 return bus_set_transient_bool(u, name, &u->refuse_manual_start, message, flags, error);
1791
1792 if (streq(name, "RefuseManualStop"))
1793 return bus_set_transient_bool(u, name, &u->refuse_manual_stop, message, flags, error);
1794
1795 if (streq(name, "AllowIsolate"))
1796 return bus_set_transient_bool(u, name, &u->allow_isolate, message, flags, error);
1797
1798 if (streq(name, "DefaultDependencies"))
1799 return bus_set_transient_bool(u, name, &u->default_dependencies, message, flags, error);
1800
1801 if (streq(name, "OnFailureJobMode"))
1802 return bus_set_transient_job_mode(u, name, &u->on_failure_job_mode, message, flags, error);
1803
1804 if (streq(name, "IgnoreOnIsolate"))
1805 return bus_set_transient_bool(u, name, &u->ignore_on_isolate, message, flags, error);
1806
1807 if (streq(name, "JobTimeoutUSec")) {
1808 r = bus_set_transient_usec_fix_0(u, name, &u->job_timeout, message, flags, error);
1809 if (r >= 0 && !UNIT_WRITE_FLAGS_NOOP(flags) && !u->job_running_timeout_set)
1810 u->job_running_timeout = u->job_timeout;
1811 }
1812
1813 if (streq(name, "JobRunningTimeoutUSec")) {
1814 r = bus_set_transient_usec_fix_0(u, name, &u->job_running_timeout, message, flags, error);
1815 if (r >= 0 && !UNIT_WRITE_FLAGS_NOOP(flags))
1816 u->job_running_timeout_set = true;
1817
1818 return r;
1819 }
1820
1821 if (streq(name, "JobTimeoutAction"))
1822 return bus_set_transient_emergency_action(u, name, &u->job_timeout_action, message, flags, error);
1823
1824 if (streq(name, "JobTimeoutRebootArgument"))
1825 return bus_set_transient_string(u, name, &u->job_timeout_reboot_arg, message, flags, error);
1826
1827 if (streq(name, "StartLimitIntervalUSec"))
1828 return bus_set_transient_usec(u, name, &u->start_ratelimit.interval, message, flags, error);
1829
1830 if (streq(name, "StartLimitBurst"))
1831 return bus_set_transient_unsigned(u, name, &u->start_ratelimit.burst, message, flags, error);
1832
1833 if (streq(name, "StartLimitAction"))
1834 return bus_set_transient_emergency_action(u, name, &u->start_limit_action, message, flags, error);
1835
1836 if (streq(name, "FailureAction"))
1837 return bus_set_transient_emergency_action(u, name, &u->failure_action, message, flags, error);
1838
1839 if (streq(name, "SuccessAction"))
1840 return bus_set_transient_emergency_action(u, name, &u->success_action, message, flags, error);
1841
1842 if (streq(name, "FailureActionExitStatus"))
1843 return bus_set_transient_exit_status(u, name, &u->failure_action_exit_status, message, flags, error);
1844
1845 if (streq(name, "SuccessActionExitStatus"))
1846 return bus_set_transient_exit_status(u, name, &u->success_action_exit_status, message, flags, error);
1847
1848 if (streq(name, "RebootArgument"))
1849 return bus_set_transient_string(u, name, &u->reboot_arg, message, flags, error);
1850
1851 if (streq(name, "CollectMode"))
1852 return bus_set_transient_collect_mode(u, name, &u->collect_mode, message, flags, error);
1853
1854 if (streq(name, "Conditions"))
1855 return bus_set_transient_conditions(u, name, &u->conditions, true, message, flags, error);
1856
1857 if (streq(name, "Asserts"))
1858 return bus_set_transient_conditions(u, name, &u->asserts, false, message, flags, error);
1859
1860 if (streq(name, "Documentation")) {
1861 _cleanup_strv_free_ char **l = NULL;
1862 char **p;
1863
1864 r = sd_bus_message_read_strv(message, &l);
1865 if (r < 0)
1866 return r;
1867
1868 STRV_FOREACH(p, l) {
1869 if (!documentation_url_is_valid(*p))
1870 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid URL in %s: %s", name, *p);
1871 }
1872
1873 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1874 if (strv_isempty(l)) {
1875 u->documentation = strv_free(u->documentation);
1876 unit_write_settingf(u, flags, name, "%s=", name);
1877 } else {
1878 strv_extend_strv(&u->documentation, l, false);
1879
1880 STRV_FOREACH(p, l)
1881 unit_write_settingf(u, flags, name, "%s=%s", name, *p);
1882 }
1883 }
1884
1885 return 1;
1886
1887 } else if (streq(name, "Slice")) {
1888 Unit *slice;
1889 const char *s;
1890
1891 if (!UNIT_HAS_CGROUP_CONTEXT(u))
1892 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "The slice property is only available for units with control groups.");
1893 if (u->type == UNIT_SLICE)
1894 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Slice may not be set for slice units.");
1895 if (unit_has_name(u, SPECIAL_INIT_SCOPE))
1896 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Cannot set slice for init.scope");
1897
1898 r = sd_bus_message_read(message, "s", &s);
1899 if (r < 0)
1900 return r;
1901
1902 if (!unit_name_is_valid(s, UNIT_NAME_PLAIN))
1903 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid unit name '%s'", s);
1904
1905 /* Note that we do not dispatch the load queue here yet, as we don't want our own transient unit to be
1906 * loaded while we are still setting it up. Or in other words, we use manager_load_unit_prepare()
1907 * instead of manager_load_unit() on purpose, here. */
1908 r = manager_load_unit_prepare(u->manager, s, NULL, error, &slice);
1909 if (r < 0)
1910 return r;
1911
1912 if (slice->type != UNIT_SLICE)
1913 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Unit name '%s' is not a slice", s);
1914
1915 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1916 r = unit_set_slice(u, slice);
1917 if (r < 0)
1918 return r;
1919
1920 unit_write_settingf(u, flags|UNIT_PRIVATE, name, "Slice=%s", s);
1921 }
1922
1923 return 1;
1924
1925 } else if (streq(name, "RequiresMountsFor")) {
1926 _cleanup_strv_free_ char **l = NULL;
1927 char **p;
1928
1929 r = sd_bus_message_read_strv(message, &l);
1930 if (r < 0)
1931 return r;
1932
1933 STRV_FOREACH(p, l) {
1934 path_simplify(*p, true);
1935
1936 if (!path_is_absolute(*p))
1937 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Path specified in %s is not absolute: %s", name, *p);
1938
1939 if (!path_is_valid(*p))
1940 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Path specified in %s has invalid length: %s", name, *p);
1941
1942 if (!path_is_normalized(*p))
1943 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Path specified in %s is not normalized: %s", name, *p);
1944
1945 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1946 r = unit_require_mounts_for(u, *p, UNIT_DEPENDENCY_FILE);
1947 if (r < 0)
1948 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Failed to add required mount \"%s\": %m", *p);
1949
1950 unit_write_settingf(u, flags, name, "%s=%s", name, *p);
1951 }
1952 }
1953
1954 return 1;
1955 }
1956
1957 if (streq(name, "RequiresOverridable"))
1958 d = UNIT_REQUIRES; /* redirect for obsolete unit dependency type */
1959 else if (streq(name, "RequisiteOverridable"))
1960 d = UNIT_REQUISITE; /* same here */
1961 else
1962 d = unit_dependency_from_string(name);
1963
1964 if (d >= 0) {
1965 const char *other;
1966
1967 r = sd_bus_message_enter_container(message, 'a', "s");
1968 if (r < 0)
1969 return r;
1970
1971 while ((r = sd_bus_message_read(message, "s", &other)) > 0) {
1972 if (!unit_name_is_valid(other, UNIT_NAME_PLAIN|UNIT_NAME_INSTANCE))
1973 return sd_bus_error_setf(error, SD_BUS_ERROR_INVALID_ARGS, "Invalid unit name %s", other);
1974
1975 if (!UNIT_WRITE_FLAGS_NOOP(flags)) {
1976 _cleanup_free_ char *label = NULL;
1977
1978 r = unit_add_dependency_by_name(u, d, other, true, UNIT_DEPENDENCY_FILE);
1979 if (r < 0)
1980 return r;
1981
1982 label = strjoin(name, "-", other);
1983 if (!label)
1984 return -ENOMEM;
1985
1986 unit_write_settingf(u, flags, label, "%s=%s", unit_dependency_to_string(d), other);
1987 }
1988
1989 }
1990 if (r < 0)
1991 return r;
1992
1993 r = sd_bus_message_exit_container(message);
1994 if (r < 0)
1995 return r;
1996
1997 return 1;
1998
1999 } else if (streq(name, "AddRef")) {
2000
2001 int b;
2002
2003 /* Why is this called "AddRef" rather than just "Ref", or "Reference"? There's already a "Ref()" method
2004 * on the Unit interface, and it's probably not a good idea to expose a property and a method on the
2005 * same interface (well, strictly speaking AddRef isn't exposed as full property, we just read it for
2006 * transient units, but still). And "References" and "ReferencedBy" is already used as unit reference
2007 * dependency type, hence let's not confuse things with that.
2008 *
2009 * Note that we don't actually add the reference to the bus track. We do that only after the setup of
2010 * the transient unit is complete, so that setting this property multiple times in the same transient
2011 * unit creation call doesn't count as individual references. */
2012
2013 r = sd_bus_message_read(message, "b", &b);
2014 if (r < 0)
2015 return r;
2016
2017 if (!UNIT_WRITE_FLAGS_NOOP(flags))
2018 u->bus_track_add = b;
2019
2020 return 1;
2021 }
2022
2023 return 0;
2024 }
2025
2026 int bus_unit_set_properties(
2027 Unit *u,
2028 sd_bus_message *message,
2029 UnitWriteFlags flags,
2030 bool commit,
2031 sd_bus_error *error) {
2032
2033 bool for_real = false;
2034 unsigned n = 0;
2035 int r;
2036
2037 assert(u);
2038 assert(message);
2039
2040 /* We iterate through the array twice. First run we just check
2041 * if all passed data is valid, second run actually applies
2042 * it. This is to implement transaction-like behaviour without
2043 * actually providing full transactions. */
2044
2045 r = sd_bus_message_enter_container(message, 'a', "(sv)");
2046 if (r < 0)
2047 return r;
2048
2049 for (;;) {
2050 const char *name;
2051 UnitWriteFlags f;
2052
2053 r = sd_bus_message_enter_container(message, 'r', "sv");
2054 if (r < 0)
2055 return r;
2056 if (r == 0) {
2057 if (for_real || UNIT_WRITE_FLAGS_NOOP(flags))
2058 break;
2059
2060 /* Reached EOF. Let's try again, and this time for realz... */
2061 r = sd_bus_message_rewind(message, false);
2062 if (r < 0)
2063 return r;
2064
2065 for_real = true;
2066 continue;
2067 }
2068
2069 r = sd_bus_message_read(message, "s", &name);
2070 if (r < 0)
2071 return r;
2072
2073 if (!UNIT_VTABLE(u)->bus_set_property)
2074 return sd_bus_error_setf(error, SD_BUS_ERROR_PROPERTY_READ_ONLY, "Objects of this type do not support setting properties.");
2075
2076 r = sd_bus_message_enter_container(message, 'v', NULL);
2077 if (r < 0)
2078 return r;
2079
2080 /* If not for real, then mask out the two target flags */
2081 f = for_real ? flags : (flags & ~(UNIT_RUNTIME|UNIT_PERSISTENT));
2082
2083 r = UNIT_VTABLE(u)->bus_set_property(u, name, message, f, error);
2084 if (r == 0 && u->transient && u->load_state == UNIT_STUB)
2085 r = bus_unit_set_transient_property(u, name, message, f, error);
2086 if (r == 0)
2087 r = bus_unit_set_live_property(u, name, message, f, error);
2088 if (r < 0)
2089 return r;
2090
2091 if (r == 0)
2092 return sd_bus_error_setf(error, SD_BUS_ERROR_PROPERTY_READ_ONLY, "Cannot set property %s, or unknown property.", name);
2093
2094 r = sd_bus_message_exit_container(message);
2095 if (r < 0)
2096 return r;
2097
2098 r = sd_bus_message_exit_container(message);
2099 if (r < 0)
2100 return r;
2101
2102 n += for_real;
2103 }
2104
2105 r = sd_bus_message_exit_container(message);
2106 if (r < 0)
2107 return r;
2108
2109 if (commit && n > 0 && UNIT_VTABLE(u)->bus_commit_properties)
2110 UNIT_VTABLE(u)->bus_commit_properties(u);
2111
2112 return n;
2113 }
2114
2115 int bus_unit_validate_load_state(Unit *u, sd_bus_error *error) {
2116 assert(u);
2117
2118 /* Generates a pretty error if a unit isn't properly loaded. */
2119
2120 switch (u->load_state) {
2121
2122 case UNIT_LOADED:
2123 return 0;
2124
2125 case UNIT_NOT_FOUND:
2126 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_UNIT, "Unit %s not found.", u->id);
2127
2128 case UNIT_BAD_SETTING:
2129 return sd_bus_error_setf(error, BUS_ERROR_BAD_UNIT_SETTING, "Unit %s has a bad unit file setting.", u->id);
2130
2131 case UNIT_ERROR: /* Only show .load_error in UNIT_ERROR state */
2132 return sd_bus_error_set_errnof(error, u->load_error, "Unit %s failed to load properly: %m.", u->id);
2133
2134 case UNIT_MASKED:
2135 return sd_bus_error_setf(error, BUS_ERROR_UNIT_MASKED, "Unit %s is masked.", u->id);
2136
2137 case UNIT_STUB:
2138 case UNIT_MERGED:
2139 default:
2140 return sd_bus_error_setf(error, BUS_ERROR_NO_SUCH_UNIT, "Unexpected load state of unit %s", u->id);
2141 }
2142 }
2143
2144 static int bus_unit_track_handler(sd_bus_track *t, void *userdata) {
2145 Unit *u = userdata;
2146
2147 assert(t);
2148 assert(u);
2149
2150 u->bus_track = sd_bus_track_unref(u->bus_track); /* make sure we aren't called again */
2151
2152 /* If the client that tracks us disappeared, then there's reason to believe that the cgroup is empty now too,
2153 * let's see */
2154 unit_add_to_cgroup_empty_queue(u);
2155
2156 /* Also add the unit to the GC queue, after all if the client left it might be time to GC this unit */
2157 unit_add_to_gc_queue(u);
2158
2159 return 0;
2160 }
2161
2162 static int bus_unit_allocate_bus_track(Unit *u) {
2163 int r;
2164
2165 assert(u);
2166
2167 if (u->bus_track)
2168 return 0;
2169
2170 r = sd_bus_track_new(u->manager->api_bus, &u->bus_track, bus_unit_track_handler, u);
2171 if (r < 0)
2172 return r;
2173
2174 r = sd_bus_track_set_recursive(u->bus_track, true);
2175 if (r < 0) {
2176 u->bus_track = sd_bus_track_unref(u->bus_track);
2177 return r;
2178 }
2179
2180 return 0;
2181 }
2182
2183 int bus_unit_track_add_name(Unit *u, const char *name) {
2184 int r;
2185
2186 assert(u);
2187
2188 r = bus_unit_allocate_bus_track(u);
2189 if (r < 0)
2190 return r;
2191
2192 return sd_bus_track_add_name(u->bus_track, name);
2193 }
2194
2195 int bus_unit_track_add_sender(Unit *u, sd_bus_message *m) {
2196 int r;
2197
2198 assert(u);
2199
2200 r = bus_unit_allocate_bus_track(u);
2201 if (r < 0)
2202 return r;
2203
2204 return sd_bus_track_add_sender(u->bus_track, m);
2205 }
2206
2207 int bus_unit_track_remove_sender(Unit *u, sd_bus_message *m) {
2208 assert(u);
2209
2210 /* If we haven't allocated the bus track object yet, then there's definitely no reference taken yet, return an
2211 * error */
2212 if (!u->bus_track)
2213 return -EUNATCH;
2214
2215 return sd_bus_track_remove_sender(u->bus_track, m);
2216 }