]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/bus-util.c
tree-wide: whenever we allocate a new bus object, close it before dropping final ref
[thirdparty/systemd.git] / src / shared / bus-util.c
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
40ca29a1 2
a8fbdf54
TA
3#include <errno.h>
4#include <fcntl.h>
5#include <inttypes.h>
6#include <stdio.h>
7#include <stdlib.h>
8#include <string.h>
9#include <sys/ioctl.h>
10#include <sys/resource.h>
0c842e0a 11#include <sys/socket.h>
a8fbdf54 12#include <unistd.h>
0c842e0a 13
a8fbdf54 14#include "sd-bus-protocol.h"
4f5dd394 15#include "sd-bus.h"
ebd011d9
LP
16#include "sd-daemon.h"
17#include "sd-event.h"
a8fbdf54 18#include "sd-id128.h"
d53d9474 19
b5efdb8a 20#include "alloc-util.h"
d53d9474
LP
21#include "bus-internal.h"
22#include "bus-label.h"
23#include "bus-message.h"
3ffd4af2 24#include "bus-util.h"
52610b02 25#include "cap-list.h"
21771f33 26#include "cgroup-util.h"
40ca29a1 27#include "def.h"
4f5dd394 28#include "escape.h"
3ffd4af2 29#include "fd-util.h"
2bba9a57 30#include "missing.h"
049af8ad 31#include "mountpoint-util.h"
73186d53 32#include "nsflags.h"
6bedfcbb 33#include "parse-util.h"
ee104e11 34#include "proc-cmdline.h"
78f22b97 35#include "rlimit-util.h"
15a5e950 36#include "stdio-util.h"
d53d9474 37#include "strv.h"
ee104e11 38#include "user-util.h"
40ca29a1 39
19070062 40static int name_owner_change_callback(sd_bus_message *m, void *userdata, sd_bus_error *ret_error) {
40ca29a1
LP
41 sd_event *e = userdata;
42
40ca29a1
LP
43 assert(m);
44 assert(e);
45
19070062 46 sd_bus_close(sd_bus_message_get_bus(m));
6203e07a 47 sd_event_exit(e, 0);
b27adf35 48
40ca29a1
LP
49 return 1;
50}
51
6203e07a 52int bus_async_unregister_and_exit(sd_event *e, sd_bus *bus, const char *name) {
75152a4d 53 const char *match;
11846aa7 54 const char *unique;
40ca29a1
LP
55 int r;
56
57 assert(e);
58 assert(bus);
59 assert(name);
60
6203e07a
LP
61 /* We unregister the name here and then wait for the
62 * NameOwnerChanged signal for this event to arrive before we
63 * quit. We do this in order to make sure that any queued
64 * requests are still processed before we really exit. */
65
11846aa7 66 r = sd_bus_get_unique_name(bus, &unique);
40ca29a1
LP
67 if (r < 0)
68 return r;
69
75152a4d
LP
70 match = strjoina(
71 "sender='org.freedesktop.DBus',"
72 "type='signal',"
73 "interface='org.freedesktop.DBus',"
74 "member='NameOwnerChanged',"
75 "path='/org/freedesktop/DBus',"
76 "arg0='", name, "',",
77 "arg1='", unique, "',",
78 "arg2=''");
79
80 r = sd_bus_add_match_async(bus, NULL, match, name_owner_change_callback, NULL, e);
40ca29a1
LP
81 if (r < 0)
82 return r;
83
75152a4d 84 r = sd_bus_release_name_async(bus, NULL, name, NULL, NULL);
40ca29a1
LP
85 if (r < 0)
86 return r;
87
40ca29a1
LP
88 return 0;
89}
90
37224a5f
LP
91int bus_event_loop_with_idle(
92 sd_event *e,
93 sd_bus *bus,
94 const char *name,
95 usec_t timeout,
96 check_idle_t check_idle,
97 void *userdata) {
40ca29a1 98 bool exiting = false;
6203e07a 99 int r, code;
40ca29a1
LP
100
101 assert(e);
102 assert(bus);
103 assert(name);
104
105 for (;;) {
37224a5f
LP
106 bool idle;
107
40ca29a1
LP
108 r = sd_event_get_state(e);
109 if (r < 0)
110 return r;
40ca29a1
LP
111 if (r == SD_EVENT_FINISHED)
112 break;
113
37224a5f
LP
114 if (check_idle)
115 idle = check_idle(userdata);
116 else
117 idle = true;
118
119 r = sd_event_run(e, exiting || !idle ? (uint64_t) -1 : timeout);
40ca29a1
LP
120 if (r < 0)
121 return r;
122
a8ba6cd1 123 if (r == 0 && !exiting && idle) {
b27adf35
LP
124
125 r = sd_bus_try_close(bus);
126 if (r == -EBUSY)
127 continue;
128
430e21c2
LP
129 /* Fallback for dbus1 connections: we
130 * unregister the name and wait for the
131 * response to come through for it */
15411c0c 132 if (r == -EOPNOTSUPP) {
430e21c2
LP
133
134 /* Inform the service manager that we
135 * are going down, so that it will
136 * queue all further start requests,
137 * instead of assuming we are already
138 * running. */
139 sd_notify(false, "STOPPING=1");
b27adf35
LP
140
141 r = bus_async_unregister_and_exit(e, bus, name);
142 if (r < 0)
143 return r;
144
145 exiting = true;
146 continue;
147 }
148
40ca29a1
LP
149 if (r < 0)
150 return r;
151
b27adf35
LP
152 sd_event_exit(e, 0);
153 break;
40ca29a1
LP
154 }
155 }
156
6203e07a
LP
157 r = sd_event_get_exit_code(e, &code);
158 if (r < 0)
159 return r;
160
161 return code;
40ca29a1
LP
162}
163
5fd38859 164int bus_name_has_owner(sd_bus *c, const char *name, sd_bus_error *error) {
4afd3348 165 _cleanup_(sd_bus_message_unrefp) sd_bus_message *rep = NULL;
5fd38859
DH
166 int r, has_owner = 0;
167
168 assert(c);
169 assert(name);
170
171 r = sd_bus_call_method(c,
172 "org.freedesktop.DBus",
173 "/org/freedesktop/dbus",
174 "org.freedesktop.DBus",
175 "NameHasOwner",
176 error,
177 &rep,
178 "s",
179 name);
180 if (r < 0)
181 return r;
182
183 r = sd_bus_message_read_basic(rep, 'b', &has_owner);
184 if (r < 0)
185 return sd_bus_error_set_errno(error, r);
186
187 return has_owner;
188}
189
c529695e 190static int check_good_user(sd_bus_message *m, uid_t good_user) {
4afd3348 191 _cleanup_(sd_bus_creds_unrefp) sd_bus_creds *creds = NULL;
c529695e
LP
192 uid_t sender_uid;
193 int r;
194
195 assert(m);
196
197 if (good_user == UID_INVALID)
198 return 0;
199
200 r = sd_bus_query_sender_creds(m, SD_BUS_CREDS_EUID, &creds);
201 if (r < 0)
202 return r;
203
0f514420
LP
204 /* Don't trust augmented credentials for authorization */
205 assert_return((sd_bus_creds_get_augmented_mask(creds) & SD_BUS_CREDS_EUID) == 0, -EPERM);
206
c529695e
LP
207 r = sd_bus_creds_get_euid(creds, &sender_uid);
208 if (r < 0)
209 return r;
210
211 return sender_uid == good_user;
212}
213
ceb24229 214int bus_test_polkit(
f3885791 215 sd_bus_message *call,
def9a7aa 216 int capability,
40ca29a1 217 const char *action,
403ed0e5 218 const char **details,
c529695e 219 uid_t good_user,
40ca29a1
LP
220 bool *_challenge,
221 sd_bus_error *e) {
222
40ca29a1
LP
223 int r;
224
f3885791 225 assert(call);
40ca29a1
LP
226 assert(action);
227
ceb24229
LP
228 /* Tests non-interactively! */
229
c529695e
LP
230 r = check_good_user(call, good_user);
231 if (r != 0)
232 return r;
233
f3885791 234 r = sd_bus_query_sender_privilege(call, capability);
5b12334d
LP
235 if (r < 0)
236 return r;
f3885791 237 else if (r > 0)
40ca29a1 238 return 1;
349cc4a5 239#if ENABLE_POLKIT
40ca29a1 240 else {
4afd3348
LP
241 _cleanup_(sd_bus_message_unrefp) sd_bus_message *request = NULL;
242 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
ceb24229 243 int authorized = false, challenge = false;
403ed0e5 244 const char *sender, **k, **v;
5b12334d 245
f3885791 246 sender = sd_bus_message_get_sender(call);
5b12334d
LP
247 if (!sender)
248 return -EBADMSG;
40ca29a1 249
403ed0e5 250 r = sd_bus_message_new_method_call(
f3885791 251 call->bus,
403ed0e5 252 &request,
40ca29a1
LP
253 "org.freedesktop.PolicyKit1",
254 "/org/freedesktop/PolicyKit1/Authority",
255 "org.freedesktop.PolicyKit1.Authority",
403ed0e5
MC
256 "CheckAuthorization");
257 if (r < 0)
258 return r;
259
260 r = sd_bus_message_append(
261 request,
262 "(sa{sv})s",
40ca29a1 263 "system-bus-name", 1, "name", "s", sender,
403ed0e5
MC
264 action);
265 if (r < 0)
266 return r;
267
268 r = sd_bus_message_open_container(request, 'a', "{ss}");
269 if (r < 0)
270 return r;
40ca29a1 271
403ed0e5
MC
272 STRV_FOREACH_PAIR(k, v, details) {
273 r = sd_bus_message_append(request, "{ss}", *k, *v);
274 if (r < 0)
275 return r;
276 }
277
278 r = sd_bus_message_close_container(request);
279 if (r < 0)
280 return r;
281
282 r = sd_bus_message_append(request, "us", 0, NULL);
283 if (r < 0)
284 return r;
285
286 r = sd_bus_call(call->bus, request, 0, e, &reply);
40ca29a1
LP
287 if (r < 0) {
288 /* Treat no PK available as access denied */
289 if (sd_bus_error_has_name(e, SD_BUS_ERROR_SERVICE_UNKNOWN)) {
290 sd_bus_error_free(e);
291 return -EACCES;
292 }
293
294 return r;
295 }
296
313333b4 297 r = sd_bus_message_enter_container(reply, 'r', "bba{ss}");
2b49a470
TA
298 if (r < 0)
299 return r;
300
301 r = sd_bus_message_read(reply, "bb", &authorized, &challenge);
302 if (r < 0)
303 return r;
40ca29a1
LP
304
305 if (authorized)
306 return 1;
307
308 if (_challenge) {
309 *_challenge = challenge;
310 return 0;
311 }
312 }
313#endif
314
315 return -EACCES;
316}
317
349cc4a5 318#if ENABLE_POLKIT
40ca29a1
LP
319
320typedef struct AsyncPolkitQuery {
321 sd_bus_message *request, *reply;
322 sd_bus_message_handler_t callback;
323 void *userdata;
19befb2d 324 sd_bus_slot *slot;
ebcf1f97 325 Hashmap *registry;
40ca29a1
LP
326} AsyncPolkitQuery;
327
19befb2d 328static void async_polkit_query_free(AsyncPolkitQuery *q) {
ebcf1f97
LP
329
330 if (!q)
331 return;
332
19befb2d 333 sd_bus_slot_unref(q->slot);
ebcf1f97
LP
334
335 if (q->registry && q->request)
336 hashmap_remove(q->registry, q->request);
337
338 sd_bus_message_unref(q->request);
339 sd_bus_message_unref(q->reply);
340
341 free(q);
342}
343
19070062 344static int async_polkit_callback(sd_bus_message *reply, void *userdata, sd_bus_error *error) {
4afd3348 345 _cleanup_(sd_bus_error_free) sd_bus_error error_buffer = SD_BUS_ERROR_NULL;
ebcf1f97 346 AsyncPolkitQuery *q = userdata;
40ca29a1
LP
347 int r;
348
40ca29a1
LP
349 assert(reply);
350 assert(q);
351
19befb2d 352 q->slot = sd_bus_slot_unref(q->slot);
40ca29a1 353 q->reply = sd_bus_message_ref(reply);
40ca29a1 354
ebcf1f97
LP
355 r = sd_bus_message_rewind(q->request, true);
356 if (r < 0) {
357 r = sd_bus_reply_method_errno(q->request, r, NULL);
358 goto finish;
359 }
40ca29a1 360
19070062 361 r = q->callback(q->request, q->userdata, &error_buffer);
ebcf1f97 362 r = bus_maybe_reply_error(q->request, r, &error_buffer);
40ca29a1 363
ebcf1f97 364finish:
19befb2d
LP
365 async_polkit_query_free(q);
366
ebcf1f97 367 return r;
40ca29a1
LP
368}
369
370#endif
371
372int bus_verify_polkit_async(
f3885791 373 sd_bus_message *call,
def9a7aa 374 int capability,
40ca29a1 375 const char *action,
403ed0e5 376 const char **details,
40ca29a1 377 bool interactive,
c529695e 378 uid_t good_user,
f3885791
LP
379 Hashmap **registry,
380 sd_bus_error *error) {
40ca29a1 381
349cc4a5 382#if ENABLE_POLKIT
4afd3348 383 _cleanup_(sd_bus_message_unrefp) sd_bus_message *pk = NULL;
40ca29a1 384 AsyncPolkitQuery *q;
403ed0e5 385 const char *sender, **k, **v;
f3885791
LP
386 sd_bus_message_handler_t callback;
387 void *userdata;
b911eb15 388 int c;
5b12334d 389#endif
40ca29a1
LP
390 int r;
391
f3885791 392 assert(call);
40ca29a1 393 assert(action);
f3885791 394 assert(registry);
40ca29a1 395
c529695e
LP
396 r = check_good_user(call, good_user);
397 if (r != 0)
398 return r;
399
349cc4a5 400#if ENABLE_POLKIT
f3885791 401 q = hashmap_get(*registry, call);
40ca29a1 402 if (q) {
102d8f81 403 int authorized, challenge;
40ca29a1
LP
404
405 /* This is the second invocation of this function, and
406 * there's already a response from polkit, let's
407 * process it */
408 assert(q->reply);
409
410 if (sd_bus_message_is_method_error(q->reply, NULL)) {
411 const sd_bus_error *e;
412
ebcf1f97 413 /* Copy error from polkit reply */
40ca29a1
LP
414 e = sd_bus_message_get_error(q->reply);
415 sd_bus_error_copy(error, e);
40ca29a1 416
ebcf1f97
LP
417 /* Treat no PK available as access denied */
418 if (sd_bus_error_has_name(e, SD_BUS_ERROR_SERVICE_UNKNOWN))
419 return -EACCES;
420
5958d089 421 return -sd_bus_error_get_errno(e);
40ca29a1
LP
422 }
423
424 r = sd_bus_message_enter_container(q->reply, 'r', "bba{ss}");
425 if (r >= 0)
426 r = sd_bus_message_read(q->reply, "bb", &authorized, &challenge);
427
40ca29a1
LP
428 if (r < 0)
429 return r;
430
431 if (authorized)
432 return 1;
433
f2288cc6
LP
434 if (challenge)
435 return sd_bus_error_set(error, SD_BUS_ERROR_INTERACTIVE_AUTHORIZATION_REQUIRED, "Interactive authentication required.");
436
40ca29a1
LP
437 return -EACCES;
438 }
439#endif
440
f3885791 441 r = sd_bus_query_sender_privilege(call, capability);
5b12334d
LP
442 if (r < 0)
443 return r;
f3885791 444 else if (r > 0)
40ca29a1 445 return 1;
5b12334d 446
349cc4a5 447#if ENABLE_POLKIT
f3885791
LP
448 if (sd_bus_get_current_message(call->bus) != call)
449 return -EINVAL;
450
451 callback = sd_bus_get_current_handler(call->bus);
452 if (!callback)
453 return -EINVAL;
454
455 userdata = sd_bus_get_current_userdata(call->bus);
456
457 sender = sd_bus_message_get_sender(call);
5b12334d
LP
458 if (!sender)
459 return -EBADMSG;
40ca29a1 460
b911eb15
LP
461 c = sd_bus_message_get_allow_interactive_authorization(call);
462 if (c < 0)
463 return c;
464 if (c > 0)
465 interactive = true;
466
d5099efc 467 r = hashmap_ensure_allocated(registry, NULL);
40ca29a1
LP
468 if (r < 0)
469 return r;
470
471 r = sd_bus_message_new_method_call(
f3885791 472 call->bus,
151b9b96 473 &pk,
40ca29a1
LP
474 "org.freedesktop.PolicyKit1",
475 "/org/freedesktop/PolicyKit1/Authority",
476 "org.freedesktop.PolicyKit1.Authority",
151b9b96 477 "CheckAuthorization");
40ca29a1
LP
478 if (r < 0)
479 return r;
480
481 r = sd_bus_message_append(
482 pk,
403ed0e5 483 "(sa{sv})s",
40ca29a1 484 "system-bus-name", 1, "name", "s", sender,
403ed0e5
MC
485 action);
486 if (r < 0)
487 return r;
488
489 r = sd_bus_message_open_container(pk, 'a', "{ss}");
490 if (r < 0)
491 return r;
492
493 STRV_FOREACH_PAIR(k, v, details) {
494 r = sd_bus_message_append(pk, "{ss}", *k, *v);
495 if (r < 0)
496 return r;
497 }
498
499 r = sd_bus_message_close_container(pk);
500 if (r < 0)
501 return r;
502
031651a5 503 r = sd_bus_message_append(pk, "us", interactive, NULL);
40ca29a1
LP
504 if (r < 0)
505 return r;
506
507 q = new0(AsyncPolkitQuery, 1);
508 if (!q)
509 return -ENOMEM;
510
f3885791 511 q->request = sd_bus_message_ref(call);
40ca29a1
LP
512 q->callback = callback;
513 q->userdata = userdata;
514
f3885791 515 r = hashmap_put(*registry, call, q);
40ca29a1 516 if (r < 0) {
19befb2d 517 async_polkit_query_free(q);
40ca29a1
LP
518 return r;
519 }
520
ebcf1f97
LP
521 q->registry = *registry;
522
f3885791 523 r = sd_bus_call_async(call->bus, &q->slot, pk, async_polkit_callback, q, 0);
ebcf1f97 524 if (r < 0) {
19befb2d 525 async_polkit_query_free(q);
40ca29a1 526 return r;
ebcf1f97 527 }
40ca29a1
LP
528
529 return 0;
530#endif
531
532 return -EACCES;
533}
534
36e34057 535void bus_verify_polkit_async_registry_free(Hashmap *registry) {
349cc4a5 536#if ENABLE_POLKIT
224b0e7a 537 hashmap_free_with_destructor(registry, async_polkit_query_free);
40ca29a1
LP
538#endif
539}
0c842e0a 540
718db961 541int bus_check_peercred(sd_bus *c) {
0c842e0a 542 struct ucred ucred;
3e641e36 543 int fd, r;
0c842e0a
TG
544
545 assert(c);
546
547 fd = sd_bus_get_fd(c);
0f8bd8de
LP
548 if (fd < 0)
549 return fd;
0c842e0a 550
3e641e36
LP
551 r = getpeercred(fd, &ucred);
552 if (r < 0)
553 return r;
0c842e0a
TG
554
555 if (ucred.uid != 0 && ucred.uid != geteuid())
556 return -EPERM;
557
558 return 1;
559}
560
266f3e26 561int bus_connect_system_systemd(sd_bus **_bus) {
b1a4981a 562 _cleanup_(sd_bus_close_unrefp) sd_bus *bus = NULL;
0c842e0a 563 int r;
0c842e0a
TG
564
565 assert(_bus);
566
0f8bd8de 567 if (geteuid() != 0)
266f3e26 568 return sd_bus_default_system(_bus);
a1da8583 569
a132bef0
ZJS
570 /* If we are root then let's talk directly to the system
571 * instance, instead of going via the bus */
a6aa8912
LP
572
573 r = sd_bus_new(&bus);
0f8bd8de
LP
574 if (r < 0)
575 return r;
a1da8583 576
a6aa8912
LP
577 r = sd_bus_set_address(bus, "unix:path=/run/systemd/private");
578 if (r < 0)
579 return r;
580
581 r = sd_bus_start(bus);
582 if (r < 0)
266f3e26 583 return sd_bus_default_system(_bus);
a6aa8912 584
0f8bd8de 585 r = bus_check_peercred(bus);
a1da8583
TG
586 if (r < 0)
587 return r;
588
1cc6c93a 589 *_bus = TAKE_PTR(bus);
0f8bd8de 590
a1da8583
TG
591 return 0;
592}
593
266f3e26 594int bus_connect_user_systemd(sd_bus **_bus) {
b1a4981a 595 _cleanup_(sd_bus_close_unrefp) sd_bus *bus = NULL;
a6aa8912 596 _cleanup_free_ char *ee = NULL;
41dd15e4
LP
597 const char *e;
598 int r;
599
41dd15e4
LP
600 assert(_bus);
601
602 e = secure_getenv("XDG_RUNTIME_DIR");
537220d9 603 if (!e)
266f3e26 604 return sd_bus_default_user(_bus);
537220d9 605
a6aa8912
LP
606 ee = bus_address_escape(e);
607 if (!ee)
537220d9 608 return -ENOMEM;
41dd15e4
LP
609
610 r = sd_bus_new(&bus);
611 if (r < 0)
612 return r;
613
605405c6 614 bus->address = strjoin("unix:path=", ee, "/systemd/private");
a6aa8912
LP
615 if (!bus->address)
616 return -ENOMEM;
41dd15e4
LP
617
618 r = sd_bus_start(bus);
619 if (r < 0)
266f3e26 620 return sd_bus_default_user(_bus);
41dd15e4
LP
621
622 r = bus_check_peercred(bus);
623 if (r < 0)
624 return r;
625
1cc6c93a 626 *_bus = TAKE_PTR(bus);
41dd15e4
LP
627
628 return 0;
629}
630
eda19357
YW
631int bus_print_property_value(const char *name, const char *expected_value, bool only_value, const char *fmt, ...) {
632 va_list ap;
633 int r;
634
635 assert(name);
636 assert(fmt);
637
638 if (expected_value) {
639 _cleanup_free_ char *s = NULL;
640
641 va_start(ap, fmt);
642 r = vasprintf(&s, fmt, ap);
643 va_end(ap);
644 if (r < 0)
645 return -ENOMEM;
646
647 if (streq_ptr(expected_value, s)) {
648 if (only_value)
649 puts(s);
650 else
651 printf("%s=%s\n", name, s);
652 }
653
654 return 0;
655 }
656
657 if (!only_value)
658 printf("%s=", name);
659 va_start(ap, fmt);
660 vprintf(fmt, ap);
661 va_end(ap);
662 puts("");
663
664 return 0;
665}
666
667static int bus_print_property(const char *name, const char *expected_value, sd_bus_message *m, bool value, bool all) {
a1da8583
TG
668 char type;
669 const char *contents;
9f6eb1cd 670 int r;
a1da8583
TG
671
672 assert(name);
07636114 673 assert(m);
a1da8583 674
07636114 675 r = sd_bus_message_peek_type(m, &type, &contents);
9f6eb1cd
KS
676 if (r < 0)
677 return r;
a1da8583
TG
678
679 switch (type) {
680
681 case SD_BUS_TYPE_STRING: {
682 const char *s;
9f6eb1cd 683
07636114 684 r = sd_bus_message_read_basic(m, type, &s);
9f6eb1cd
KS
685 if (r < 0)
686 return r;
a1da8583 687
5993d46a
ZJS
688 if (all || !isempty(s)) {
689 bool good;
690
691 /* This property has a single value, so we need to take
692 * care not to print a new line, everything else is OK. */
693 good = !strchr(s, '\n');
eda19357 694 bus_print_property_value(name, expected_value, value, "%s", good ? s : "[unprintable]");
5993d46a 695 }
a1da8583
TG
696
697 return 1;
698 }
699
700 case SD_BUS_TYPE_BOOLEAN: {
c2fa048c 701 int b;
a1da8583 702
07636114 703 r = sd_bus_message_read_basic(m, type, &b);
9f6eb1cd
KS
704 if (r < 0)
705 return r;
706
eda19357
YW
707 if (expected_value && parse_boolean(expected_value) != b)
708 return 1;
a1da8583 709
eda19357 710 bus_print_property_value(name, NULL, value, "%s", yes_no(b));
a1da8583
TG
711 return 1;
712 }
713
714 case SD_BUS_TYPE_UINT64: {
715 uint64_t u;
716
07636114 717 r = sd_bus_message_read_basic(m, type, &u);
9f6eb1cd
KS
718 if (r < 0)
719 return r;
a1da8583
TG
720
721 /* Yes, heuristics! But we can change this check
722 * should it turn out to not be sufficient */
723
ead0adb1
YW
724 if (endswith(name, "Timestamp") ||
725 STR_IN_SET(name, "NextElapseUSecRealtime", "LastTriggerUSec", "TimeUSec", "RTCTimeUSec")) {
4d9685be
ZJS
726 char timestamp[FORMAT_TIMESTAMP_MAX];
727 const char *t;
a1da8583
TG
728
729 t = format_timestamp(timestamp, sizeof(timestamp), u);
730 if (t || all)
eda19357 731 bus_print_property_value(name, expected_value, value, "%s", strempty(t));
a1da8583
TG
732
733 } else if (strstr(name, "USec")) {
734 char timespan[FORMAT_TIMESPAN_MAX];
735
eda19357
YW
736 (void) format_timespan(timespan, sizeof(timespan), u, 0);
737 bus_print_property_value(name, expected_value, value, "%s", timespan);
738
73186d53
DH
739 } else if (streq(name, "RestrictNamespaces")) {
740 _cleanup_free_ char *s = NULL;
ae978b9f 741 const char *result;
73186d53
DH
742
743 if ((u & NAMESPACE_FLAGS_ALL) == 0)
744 result = "yes";
745 else if ((u & NAMESPACE_FLAGS_ALL) == NAMESPACE_FLAGS_ALL)
746 result = "no";
747 else {
86c2a9f1 748 r = namespace_flags_to_string(u, &s);
73186d53
DH
749 if (r < 0)
750 return r;
751
752 result = s;
753 }
754
eda19357 755 bus_print_property_value(name, expected_value, value, "%s", result);
21771f33
YW
756
757 } else if (streq(name, "MountFlags")) {
ae978b9f 758 const char *result;
21771f33
YW
759
760 result = mount_propagation_flags_to_string(u);
761 if (!result)
762 return -EINVAL;
763
eda19357 764 bus_print_property_value(name, expected_value, value, "%s", result);
21771f33 765
52610b02
YW
766 } else if (STR_IN_SET(name, "CapabilityBoundingSet", "AmbientCapabilities")) {
767 _cleanup_free_ char *s = NULL;
768
769 r = capability_set_to_string_alloc(u, &s);
770 if (r < 0)
771 return r;
772
eda19357 773 bus_print_property_value(name, expected_value, value, "%s", s);
52610b02 774
21771f33
YW
775 } else if ((STR_IN_SET(name, "CPUWeight", "StartupCPUWeight", "IOWeight", "StartupIOWeight") && u == CGROUP_WEIGHT_INVALID) ||
776 (STR_IN_SET(name, "CPUShares", "StartupCPUShares") && u == CGROUP_CPU_SHARES_INVALID) ||
777 (STR_IN_SET(name, "BlockIOWeight", "StartupBlockIOWeight") && u == CGROUP_BLKIO_WEIGHT_INVALID) ||
778 (STR_IN_SET(name, "MemoryCurrent", "TasksCurrent") && u == (uint64_t) -1) ||
779 (endswith(name, "NSec") && u == (uint64_t) -1))
780
eda19357 781 bus_print_property_value(name, expected_value, value, "%s", "[not set]");
21771f33
YW
782
783 else if ((STR_IN_SET(name, "MemoryLow", "MemoryHigh", "MemoryMax", "MemorySwapMax", "MemoryLimit") && u == CGROUP_LIMIT_MAX) ||
784 (STR_IN_SET(name, "TasksMax", "DefaultTasksMax") && u == (uint64_t) -1) ||
785 (startswith(name, "Limit") && u == (uint64_t) -1) ||
786 (startswith(name, "DefaultLimit") && u == (uint64_t) -1))
787
eda19357 788 bus_print_property_value(name, expected_value, value, "%s", "infinity");
21771f33 789 else
eda19357 790 bus_print_property_value(name, expected_value, value, "%"PRIu64, u);
a1da8583
TG
791
792 return 1;
793 }
794
d7161865
DM
795 case SD_BUS_TYPE_INT64: {
796 int64_t i;
797
07636114 798 r = sd_bus_message_read_basic(m, type, &i);
d7161865
DM
799 if (r < 0)
800 return r;
801
eda19357 802 bus_print_property_value(name, expected_value, value, "%"PRIi64, i);
d7161865
DM
803 return 1;
804 }
805
a1da8583
TG
806 case SD_BUS_TYPE_UINT32: {
807 uint32_t u;
808
07636114 809 r = sd_bus_message_read_basic(m, type, &u);
9f6eb1cd
KS
810 if (r < 0)
811 return r;
a1da8583
TG
812
813 if (strstr(name, "UMask") || strstr(name, "Mode"))
eda19357
YW
814 bus_print_property_value(name, expected_value, value, "%04o", u);
815
c533658a
ZJS
816 else if (streq(name, "UID")) {
817 if (u == UID_INVALID)
eda19357 818 bus_print_property_value(name, expected_value, value, "%s", "[not set]");
c533658a 819 else
eda19357 820 bus_print_property_value(name, expected_value, value, "%"PRIu32, u);
c533658a
ZJS
821 } else if (streq(name, "GID")) {
822 if (u == GID_INVALID)
eda19357 823 bus_print_property_value(name, expected_value, value, "%s", "[not set]");
c533658a 824 else
eda19357 825 bus_print_property_value(name, expected_value, value, "%"PRIu32, u);
c533658a 826 } else
eda19357 827 bus_print_property_value(name, expected_value, value, "%"PRIu32, u);
a1da8583
TG
828
829 return 1;
830 }
831
832 case SD_BUS_TYPE_INT32: {
833 int32_t i;
834
07636114 835 r = sd_bus_message_read_basic(m, type, &i);
9f6eb1cd
KS
836 if (r < 0)
837 return r;
a1da8583 838
eda19357 839 bus_print_property_value(name, expected_value, value, "%"PRIi32, i);
a1da8583
TG
840 return 1;
841 }
842
843 case SD_BUS_TYPE_DOUBLE: {
844 double d;
845
07636114 846 r = sd_bus_message_read_basic(m, type, &d);
9f6eb1cd
KS
847 if (r < 0)
848 return r;
a1da8583 849
eda19357 850 bus_print_property_value(name, expected_value, value, "%g", d);
a1da8583
TG
851 return 1;
852 }
853
854 case SD_BUS_TYPE_ARRAY:
a1da8583 855 if (streq(contents, "s")) {
261afec5
MAP
856 bool first = true;
857 const char *str;
a1da8583 858
07636114 859 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, contents);
9f6eb1cd
KS
860 if (r < 0)
861 return r;
862
07636114 863 while ((r = sd_bus_message_read_basic(m, SD_BUS_TYPE_STRING, &str)) > 0) {
5993d46a
ZJS
864 bool good;
865
4f9a9105 866 if (first && !value)
261afec5
MAP
867 printf("%s=", name);
868
ed88a900 869 /* This property has multiple space-separated values, so
ead6bd25 870 * neither spaces nor newlines can be allowed in a value. */
5993d46a
ZJS
871 good = str[strcspn(str, " \n")] == '\0';
872
873 printf("%s%s", first ? "" : " ", good ? str : "[unprintable]");
261afec5
MAP
874
875 first = false;
876 }
9f6eb1cd
KS
877 if (r < 0)
878 return r;
a1da8583 879
4f9a9105 880 if (first && all && !value)
a1da8583 881 printf("%s=", name);
261afec5 882 if (!first || all)
a1da8583 883 puts("");
a1da8583 884
07636114 885 r = sd_bus_message_exit_container(m);
9f6eb1cd
KS
886 if (r < 0)
887 return r;
a1da8583
TG
888
889 return 1;
890
891 } else if (streq(contents, "y")) {
892 const uint8_t *u;
893 size_t n;
894
07636114 895 r = sd_bus_message_read_array(m, SD_BUS_TYPE_BYTE, (const void**) &u, &n);
9f6eb1cd
KS
896 if (r < 0)
897 return r;
898
a1da8583 899 if (all || n > 0) {
14cb109d 900 unsigned i;
a1da8583 901
4f9a9105
ZJS
902 if (!value)
903 printf("%s=", name);
a1da8583
TG
904
905 for (i = 0; i < n; i++)
906 printf("%02x", u[i]);
907
908 puts("");
909 }
910
911 return 1;
912
913 } else if (streq(contents, "u")) {
914 uint32_t *u;
915 size_t n;
916
07636114 917 r = sd_bus_message_read_array(m, SD_BUS_TYPE_UINT32, (const void**) &u, &n);
9f6eb1cd
KS
918 if (r < 0)
919 return r;
920
a1da8583 921 if (all || n > 0) {
14cb109d 922 unsigned i;
a1da8583 923
4f9a9105
ZJS
924 if (!value)
925 printf("%s=", name);
a1da8583
TG
926
927 for (i = 0; i < n; i++)
928 printf("%08x", u[i]);
929
930 puts("");
931 }
932
933 return 1;
934 }
935
936 break;
937 }
938
939 return 0;
940}
d21ed1ea 941
07636114
YW
942int bus_message_print_all_properties(
943 sd_bus_message *m,
944 bus_message_print_t func,
945 char **filter,
946 bool value,
947 bool all,
948 Set **found_properties) {
ffc06c35 949
07636114 950 int r;
9f6eb1cd 951
07636114 952 assert(m);
ffc06c35 953
07636114 954 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "{sv}");
ffc06c35
KS
955 if (r < 0)
956 return r;
957
07636114 958 while ((r = sd_bus_message_enter_container(m, SD_BUS_TYPE_DICT_ENTRY, "sv")) > 0) {
eda19357
YW
959 _cleanup_free_ char *name_with_equal = NULL;
960 const char *name, *contents, *expected_value = NULL;
ffc06c35 961
07636114 962 r = sd_bus_message_read_basic(m, SD_BUS_TYPE_STRING, &name);
ffc06c35
KS
963 if (r < 0)
964 return r;
965
07636114
YW
966 if (found_properties) {
967 r = set_ensure_allocated(found_properties, &string_hash_ops);
968 if (r < 0)
969 return log_oom();
970
971 r = set_put(*found_properties, name);
0ceff906 972 if (r < 0 && r != -EEXIST)
07636114
YW
973 return log_oom();
974 }
975
eda19357
YW
976 name_with_equal = strappend(name, "=");
977 if (!name_with_equal)
978 return log_oom();
979
980 if (!filter || strv_find(filter, name) ||
981 (expected_value = strv_find_startswith(filter, name_with_equal))) {
07636114 982 r = sd_bus_message_peek_type(m, NULL, &contents);
9f6eb1cd
KS
983 if (r < 0)
984 return r;
985
07636114 986 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_VARIANT, contents);
9f6eb1cd
KS
987 if (r < 0)
988 return r;
ffc06c35 989
07636114 990 if (func)
eda19357 991 r = func(name, expected_value, m, value, all);
07636114 992 if (!func || r == 0)
eda19357 993 r = bus_print_property(name, expected_value, m, value, all);
9f6eb1cd
KS
994 if (r < 0)
995 return r;
27e72d6b 996 if (r == 0) {
eda19357 997 if (all && !expected_value)
27e72d6b
SP
998 printf("%s=[unprintable]\n", name);
999 /* skip what we didn't read */
07636114 1000 r = sd_bus_message_skip(m, contents);
27e72d6b
SP
1001 if (r < 0)
1002 return r;
1003 }
9f6eb1cd 1004
07636114 1005 r = sd_bus_message_exit_container(m);
9f6eb1cd
KS
1006 if (r < 0)
1007 return r;
1008 } else {
07636114 1009 r = sd_bus_message_skip(m, "v");
9f6eb1cd
KS
1010 if (r < 0)
1011 return r;
1012 }
1013
07636114 1014 r = sd_bus_message_exit_container(m);
ffc06c35
KS
1015 if (r < 0)
1016 return r;
9f6eb1cd
KS
1017 }
1018 if (r < 0)
1019 return r;
ffc06c35 1020
07636114 1021 r = sd_bus_message_exit_container(m);
9f6eb1cd
KS
1022 if (r < 0)
1023 return r;
ffc06c35 1024
9f6eb1cd
KS
1025 return 0;
1026}
ffc06c35 1027
07636114
YW
1028int bus_print_all_properties(
1029 sd_bus *bus,
1030 const char *dest,
1031 const char *path,
1032 bus_message_print_t func,
1033 char **filter,
1034 bool value,
1035 bool all,
1036 Set **found_properties) {
1037
1038 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1039 _cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
1040 int r;
1041
1042 assert(bus);
1043 assert(path);
1044
1045 r = sd_bus_call_method(bus,
1046 dest,
1047 path,
1048 "org.freedesktop.DBus.Properties",
1049 "GetAll",
1050 &error,
1051 &reply,
1052 "s", "");
1053 if (r < 0)
1054 return r;
1055
1056 return bus_message_print_all_properties(reply, func, filter, value, all, found_properties);
1057}
1058
9f6eb1cd
KS
1059int bus_map_id128(sd_bus *bus, const char *member, sd_bus_message *m, sd_bus_error *error, void *userdata) {
1060 sd_id128_t *p = userdata;
1061 const void *v;
1062 size_t n;
1063 int r;
ffc06c35 1064
9f6eb1cd
KS
1065 r = sd_bus_message_read_array(m, SD_BUS_TYPE_BYTE, &v, &n);
1066 if (r < 0)
1067 return r;
ffc06c35 1068
9f6eb1cd
KS
1069 if (n == 0)
1070 *p = SD_ID128_NULL;
1071 else if (n == 16)
1072 memcpy((*p).bytes, v, n);
1073 else
1074 return -EINVAL;
ffc06c35 1075
9f6eb1cd
KS
1076 return 0;
1077}
ffc06c35 1078
a7e4861c 1079static int map_basic(sd_bus *bus, const char *member, sd_bus_message *m, unsigned flags, sd_bus_error *error, void *userdata) {
9f6eb1cd
KS
1080 char type;
1081 int r;
ffc06c35 1082
9f6eb1cd
KS
1083 r = sd_bus_message_peek_type(m, &type, NULL);
1084 if (r < 0)
1085 return r;
ffc06c35 1086
9f6eb1cd 1087 switch (type) {
8b3b6f58 1088
9f6eb1cd 1089 case SD_BUS_TYPE_STRING: {
f37f8a61 1090 const char **p = userdata;
8b3b6f58 1091 const char *s;
ffc06c35 1092
9f6eb1cd
KS
1093 r = sd_bus_message_read_basic(m, type, &s);
1094 if (r < 0)
8b3b6f58 1095 return r;
ffc06c35 1096
9f6eb1cd 1097 if (isempty(s))
0b83b8a4 1098 s = NULL;
ffc06c35 1099
a7e4861c 1100 if (flags & BUS_MAP_STRDUP)
f37f8a61
YW
1101 return free_and_strdup((char **) userdata, s);
1102
1103 *p = s;
1104 return 0;
9f6eb1cd 1105 }
ffc06c35 1106
9f6eb1cd 1107 case SD_BUS_TYPE_ARRAY: {
7d6884b6
TA
1108 _cleanup_strv_free_ char **l = NULL;
1109 char ***p = userdata;
ffc06c35 1110
9f6eb1cd
KS
1111 r = bus_message_read_strv_extend(m, &l);
1112 if (r < 0)
8b3b6f58 1113 return r;
ffc06c35 1114
130d3d22 1115 return strv_free_and_replace(*p, l);
9f6eb1cd 1116 }
ffc06c35 1117
9f6eb1cd 1118 case SD_BUS_TYPE_BOOLEAN: {
a7e4861c 1119 int b;
ffc06c35 1120
9f6eb1cd
KS
1121 r = sd_bus_message_read_basic(m, type, &b);
1122 if (r < 0)
8b3b6f58 1123 return r;
ffc06c35 1124
a7e4861c 1125 if (flags & BUS_MAP_BOOLEAN_AS_BOOL)
5d904a6a 1126 *(bool*) userdata = b;
a7e4861c 1127 else
5d904a6a 1128 *(int*) userdata = b;
a7e4861c 1129
8b3b6f58 1130 return 0;
9f6eb1cd 1131 }
ffc06c35 1132
bdf97b8a 1133 case SD_BUS_TYPE_INT32:
9f6eb1cd 1134 case SD_BUS_TYPE_UINT32: {
bdf97b8a 1135 uint32_t u, *p = userdata;
9f6eb1cd
KS
1136
1137 r = sd_bus_message_read_basic(m, type, &u);
1138 if (r < 0)
8b3b6f58 1139 return r;
ffc06c35 1140
9f6eb1cd 1141 *p = u;
8b3b6f58 1142 return 0;
9f6eb1cd
KS
1143 }
1144
bdf97b8a 1145 case SD_BUS_TYPE_INT64:
9f6eb1cd 1146 case SD_BUS_TYPE_UINT64: {
bdf97b8a 1147 uint64_t t, *p = userdata;
9f6eb1cd
KS
1148
1149 r = sd_bus_message_read_basic(m, type, &t);
1150 if (r < 0)
8b3b6f58 1151 return r;
ffc06c35 1152
9f6eb1cd 1153 *p = t;
8b3b6f58 1154 return 0;
9f6eb1cd
KS
1155 }
1156
52e045f9 1157 case SD_BUS_TYPE_DOUBLE: {
8b3b6f58 1158 double d, *p = userdata;
52e045f9
SS
1159
1160 r = sd_bus_message_read_basic(m, type, &d);
1161 if (r < 0)
8b3b6f58 1162 return r;
52e045f9
SS
1163
1164 *p = d;
8b3b6f58
LP
1165 return 0;
1166 }}
52e045f9 1167
8b3b6f58 1168 return -EOPNOTSUPP;
9f6eb1cd
KS
1169}
1170
fe506d56
LP
1171int bus_message_map_all_properties(
1172 sd_bus_message *m,
1173 const struct bus_properties_map *map,
a7e4861c 1174 unsigned flags,
f9e0eefc 1175 sd_bus_error *error,
fe506d56
LP
1176 void *userdata) {
1177
9f6eb1cd
KS
1178 int r;
1179
aae2b488 1180 assert(m);
9f6eb1cd
KS
1181 assert(map);
1182
9f6eb1cd
KS
1183 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_ARRAY, "{sv}");
1184 if (r < 0)
1185 return r;
1186
1187 while ((r = sd_bus_message_enter_container(m, SD_BUS_TYPE_DICT_ENTRY, "sv")) > 0) {
1188 const struct bus_properties_map *prop;
1189 const char *member;
1190 const char *contents;
1191 void *v;
1192 unsigned i;
1193
1194 r = sd_bus_message_read_basic(m, SD_BUS_TYPE_STRING, &member);
ffc06c35
KS
1195 if (r < 0)
1196 return r;
1197
9f6eb1cd
KS
1198 for (i = 0, prop = NULL; map[i].member; i++)
1199 if (streq(map[i].member, member)) {
1200 prop = &map[i];
1201 break;
1202 }
1203
1204 if (prop) {
1205 r = sd_bus_message_peek_type(m, NULL, &contents);
1206 if (r < 0)
1207 return r;
1208
1209 r = sd_bus_message_enter_container(m, SD_BUS_TYPE_VARIANT, contents);
1210 if (r < 0)
1211 return r;
1212
1213 v = (uint8_t *)userdata + prop->offset;
27e72d6b 1214 if (map[i].set)
f9e0eefc 1215 r = prop->set(sd_bus_message_get_bus(m), member, m, error, v);
9f6eb1cd 1216 else
a7e4861c 1217 r = map_basic(sd_bus_message_get_bus(m), member, m, flags, error, v);
2b49a470
TA
1218 if (r < 0)
1219 return r;
9f6eb1cd
KS
1220
1221 r = sd_bus_message_exit_container(m);
1222 if (r < 0)
1223 return r;
1224 } else {
1225 r = sd_bus_message_skip(m, "v");
1226 if (r < 0)
6c1508b8 1227 return r;
9f6eb1cd
KS
1228 }
1229
ffc06c35
KS
1230 r = sd_bus_message_exit_container(m);
1231 if (r < 0)
1232 return r;
1233 }
fe506d56
LP
1234 if (r < 0)
1235 return r;
ffc06c35 1236
aae2b488
DH
1237 return sd_bus_message_exit_container(m);
1238}
1239
fe506d56
LP
1240int bus_map_all_properties(
1241 sd_bus *bus,
1242 const char *destination,
1243 const char *path,
1244 const struct bus_properties_map *map,
a7e4861c 1245 unsigned flags,
f9e0eefc 1246 sd_bus_error *error,
f37f8a61 1247 sd_bus_message **reply,
fe506d56
LP
1248 void *userdata) {
1249
4afd3348 1250 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
aae2b488
DH
1251 int r;
1252
1253 assert(bus);
1254 assert(destination);
1255 assert(path);
1256 assert(map);
a7e4861c 1257 assert(reply || (flags & BUS_MAP_STRDUP));
aae2b488
DH
1258
1259 r = sd_bus_call_method(
1260 bus,
1261 destination,
1262 path,
1263 "org.freedesktop.DBus.Properties",
1264 "GetAll",
f9e0eefc 1265 error,
aae2b488
DH
1266 &m,
1267 "s", "");
1268 if (r < 0)
1269 return r;
1270
a7e4861c 1271 r = bus_message_map_all_properties(m, map, flags, error, userdata);
f37f8a61
YW
1272 if (r < 0)
1273 return r;
1274
1275 if (reply)
1276 *reply = sd_bus_message_ref(m);
1277
1278 return r;
ffc06c35
KS
1279}
1280
38303498 1281int bus_connect_transport(BusTransport transport, const char *host, bool user, sd_bus **ret) {
b1a4981a 1282 _cleanup_(sd_bus_close_unrefp) sd_bus *bus = NULL;
d21ed1ea
LP
1283 int r;
1284
1285 assert(transport >= 0);
1286 assert(transport < _BUS_TRANSPORT_MAX);
38303498 1287 assert(ret);
d21ed1ea
LP
1288
1289 assert_return((transport == BUS_TRANSPORT_LOCAL) == !host, -EINVAL);
15411c0c 1290 assert_return(transport == BUS_TRANSPORT_LOCAL || !user, -EOPNOTSUPP);
d21ed1ea
LP
1291
1292 switch (transport) {
1293
1294 case BUS_TRANSPORT_LOCAL:
1295 if (user)
38303498 1296 r = sd_bus_default_user(&bus);
fb507898
YW
1297 else {
1298 if (sd_booted() <= 0) {
1299 /* Print a friendly message when the local system is actually not running systemd as PID 1. */
1300 log_error("System has not been booted with systemd as init system (PID 1). Can't operate.");
d21ed1ea 1301
fb507898
YW
1302 return -EHOSTDOWN;
1303 }
1304 r = sd_bus_default_system(&bus);
1305 }
d21ed1ea
LP
1306 break;
1307
1308 case BUS_TRANSPORT_REMOTE:
38303498 1309 r = sd_bus_open_system_remote(&bus, host);
41dd15e4
LP
1310 break;
1311
de33fc62 1312 case BUS_TRANSPORT_MACHINE:
38303498 1313 r = sd_bus_open_system_machine(&bus, host);
41dd15e4
LP
1314 break;
1315
1316 default:
1317 assert_not_reached("Hmm, unknown transport type.");
1318 }
38303498
LP
1319 if (r < 0)
1320 return r;
41dd15e4 1321
38303498
LP
1322 r = sd_bus_set_exit_on_disconnect(bus, true);
1323 if (r < 0)
1324 return r;
1325
1cc6c93a 1326 *ret = TAKE_PTR(bus);
38303498
LP
1327
1328 return 0;
41dd15e4
LP
1329}
1330
266f3e26 1331int bus_connect_transport_systemd(BusTransport transport, const char *host, bool user, sd_bus **bus) {
41dd15e4
LP
1332 int r;
1333
1334 assert(transport >= 0);
1335 assert(transport < _BUS_TRANSPORT_MAX);
1336 assert(bus);
1337
1338 assert_return((transport == BUS_TRANSPORT_LOCAL) == !host, -EINVAL);
15411c0c 1339 assert_return(transport == BUS_TRANSPORT_LOCAL || !user, -EOPNOTSUPP);
41dd15e4
LP
1340
1341 switch (transport) {
1342
1343 case BUS_TRANSPORT_LOCAL:
1344 if (user)
266f3e26 1345 r = bus_connect_user_systemd(bus);
fb507898 1346 else {
baaa35ad 1347 if (sd_booted() <= 0)
fb507898 1348 /* Print a friendly message when the local system is actually not running systemd as PID 1. */
baaa35ad
ZJS
1349 return log_error_errno(SYNTHETIC_ERRNO(EHOSTDOWN),
1350 "System has not been booted with systemd as init system (PID 1). Can't operate.");
fb507898
YW
1351 r = bus_connect_system_systemd(bus);
1352 }
41dd15e4
LP
1353 break;
1354
1355 case BUS_TRANSPORT_REMOTE:
3db729cb 1356 r = sd_bus_open_system_remote(bus, host);
d21ed1ea
LP
1357 break;
1358
de33fc62
LP
1359 case BUS_TRANSPORT_MACHINE:
1360 r = sd_bus_open_system_machine(bus, host);
d21ed1ea
LP
1361 break;
1362
1363 default:
1364 assert_not_reached("Hmm, unknown transport type.");
1365 }
1366
1367 return r;
1368}
e6504030
LP
1369
1370int bus_property_get_bool(
1371 sd_bus *bus,
1372 const char *path,
1373 const char *interface,
1374 const char *property,
1375 sd_bus_message *reply,
ebcf1f97
LP
1376 void *userdata,
1377 sd_bus_error *error) {
e6504030
LP
1378
1379 int b = *(bool*) userdata;
1380
1381 return sd_bus_message_append_basic(reply, 'b', &b);
1382}
1383
43ce15ac
JK
1384int bus_property_set_bool(
1385 sd_bus *bus,
1386 const char *path,
1387 const char *interface,
1388 const char *property,
1389 sd_bus_message *value,
1390 void *userdata,
1391 sd_bus_error *error) {
1392
1393 int b, r;
1394
1395 r = sd_bus_message_read(value, "b", &b);
1396 if (r < 0)
1397 return r;
1398
5d904a6a 1399 *(bool*) userdata = b;
43ce15ac
JK
1400 return 0;
1401}
1402
766c94ad
LP
1403int bus_property_get_id128(
1404 sd_bus *bus,
1405 const char *path,
1406 const char *interface,
1407 const char *property,
1408 sd_bus_message *reply,
1409 void *userdata,
1410 sd_bus_error *error) {
1411
1412 sd_id128_t *id = userdata;
1413
1414 if (sd_id128_is_null(*id)) /* Add an empty array if the ID is zero */
1415 return sd_bus_message_append(reply, "ay", 0);
1416 else
4b58153d 1417 return sd_bus_message_append_array(reply, 'y', id->bytes, 16);
766c94ad
LP
1418}
1419
718db961
LP
1420#if __SIZEOF_SIZE_T__ != 8
1421int bus_property_get_size(
e6504030
LP
1422 sd_bus *bus,
1423 const char *path,
1424 const char *interface,
1425 const char *property,
1426 sd_bus_message *reply,
ebcf1f97
LP
1427 void *userdata,
1428 sd_bus_error *error) {
e6504030 1429
718db961 1430 uint64_t sz = *(size_t*) userdata;
e6504030 1431
718db961 1432 return sd_bus_message_append_basic(reply, 't', &sz);
e6504030 1433}
718db961
LP
1434#endif
1435
1436#if __SIZEOF_LONG__ != 8
1437int bus_property_get_long(
1438 sd_bus *bus,
1439 const char *path,
1440 const char *interface,
1441 const char *property,
1442 sd_bus_message *reply,
ebcf1f97
LP
1443 void *userdata,
1444 sd_bus_error *error) {
718db961
LP
1445
1446 int64_t l = *(long*) userdata;
1447
1448 return sd_bus_message_append_basic(reply, 'x', &l);
1449}
1450
1451int bus_property_get_ulong(
1452 sd_bus *bus,
1453 const char *path,
1454 const char *interface,
1455 const char *property,
1456 sd_bus_message *reply,
ebcf1f97
LP
1457 void *userdata,
1458 sd_bus_error *error) {
718db961
LP
1459
1460 uint64_t ul = *(unsigned long*) userdata;
1461
1462 return sd_bus_message_append_basic(reply, 't', &ul);
1463}
1464#endif
5b30bef8
LP
1465
1466int bus_log_parse_error(int r) {
23bbb0de 1467 return log_error_errno(r, "Failed to parse bus message: %m");
5b30bef8 1468}
f459b602
MAP
1469
1470int bus_log_create_error(int r) {
23bbb0de 1471 return log_error_errno(r, "Failed to create bus message: %m");
f459b602
MAP
1472}
1473
98a4c30b
DH
1474/**
1475 * bus_path_encode_unique() - encode unique object path
1476 * @b: bus connection or NULL
1477 * @prefix: object path prefix
1478 * @sender_id: unique-name of client, or NULL
1479 * @external_id: external ID to be chosen by client, or NULL
1480 * @ret_path: storage for encoded object path pointer
1481 *
1482 * Whenever we provide a bus API that allows clients to create and manage
1483 * server-side objects, we need to provide a unique name for these objects. If
1484 * we let the server choose the name, we suffer from a race condition: If a
1485 * client creates an object asynchronously, it cannot destroy that object until
1486 * it received the method reply. It cannot know the name of the new object,
1487 * thus, it cannot destroy it. Furthermore, it enforces a round-trip.
1488 *
1489 * Therefore, many APIs allow the client to choose the unique name for newly
1490 * created objects. There're two problems to solve, though:
1491 * 1) Object names are usually defined via dbus object paths, which are
1492 * usually globally namespaced. Therefore, multiple clients must be able
1493 * to choose unique object names without interference.
1494 * 2) If multiple libraries share the same bus connection, they must be
1495 * able to choose unique object names without interference.
1496 * The first problem is solved easily by prefixing a name with the
1497 * unique-bus-name of a connection. The server side must enforce this and
1498 * reject any other name. The second problem is solved by providing unique
1499 * suffixes from within sd-bus.
1500 *
1501 * This helper allows clients to create unique object-paths. It uses the
1502 * template '/prefix/sender_id/external_id' and returns the new path in
1503 * @ret_path (must be freed by the caller).
1504 * If @sender_id is NULL, the unique-name of @b is used. If @external_id is
1505 * NULL, this function allocates a unique suffix via @b (by requesting a new
1506 * cookie). If both @sender_id and @external_id are given, @b can be passed as
1507 * NULL.
1508 *
1509 * Returns: 0 on success, negative error code on failure.
1510 */
1511int bus_path_encode_unique(sd_bus *b, const char *prefix, const char *sender_id, const char *external_id, char **ret_path) {
1512 _cleanup_free_ char *sender_label = NULL, *external_label = NULL;
1513 char external_buf[DECIMAL_STR_MAX(uint64_t)], *p;
1514 int r;
1515
1516 assert_return(b || (sender_id && external_id), -EINVAL);
1517 assert_return(object_path_is_valid(prefix), -EINVAL);
1518 assert_return(ret_path, -EINVAL);
1519
1520 if (!sender_id) {
1521 r = sd_bus_get_unique_name(b, &sender_id);
1522 if (r < 0)
1523 return r;
1524 }
1525
1526 if (!external_id) {
1527 xsprintf(external_buf, "%"PRIu64, ++b->cookie);
1528 external_id = external_buf;
1529 }
1530
1531 sender_label = bus_label_escape(sender_id);
1532 if (!sender_label)
1533 return -ENOMEM;
1534
1535 external_label = bus_label_escape(external_id);
1536 if (!external_label)
1537 return -ENOMEM;
1538
605405c6 1539 p = strjoin(prefix, "/", sender_label, "/", external_label);
98a4c30b
DH
1540 if (!p)
1541 return -ENOMEM;
1542
1543 *ret_path = p;
1544 return 0;
1545}
1546
1547/**
1548 * bus_path_decode_unique() - decode unique object path
1549 * @path: object path to decode
1550 * @prefix: object path prefix
1551 * @ret_sender: output parameter for sender-id label
1552 * @ret_external: output parameter for external-id label
1553 *
1554 * This does the reverse of bus_path_encode_unique() (see its description for
1555 * details). Both trailing labels, sender-id and external-id, are unescaped and
1556 * returned in the given output parameters (the caller must free them).
1557 *
1558 * Note that this function returns 0 if the path does not match the template
1559 * (see bus_path_encode_unique()), 1 if it matched.
1560 *
1561 * Returns: Negative error code on failure, 0 if the given object path does not
1562 * match the template (return parameters are set to NULL), 1 if it was
1563 * parsed successfully (return parameters contain allocated labels).
1564 */
1565int bus_path_decode_unique(const char *path, const char *prefix, char **ret_sender, char **ret_external) {
1566 const char *p, *q;
1567 char *sender, *external;
1568
1569 assert(object_path_is_valid(path));
1570 assert(object_path_is_valid(prefix));
1571 assert(ret_sender);
1572 assert(ret_external);
1573
1574 p = object_path_startswith(path, prefix);
1575 if (!p) {
1576 *ret_sender = NULL;
1577 *ret_external = NULL;
1578 return 0;
1579 }
1580
1581 q = strchr(p, '/');
1582 if (!q) {
1583 *ret_sender = NULL;
1584 *ret_external = NULL;
1585 return 0;
1586 }
1587
1588 sender = bus_label_unescape_n(p, q - p);
1589 external = bus_label_unescape(q + 1);
1590 if (!sender || !external) {
1591 free(sender);
1592 free(external);
1593 return -ENOMEM;
1594 }
1595
1596 *ret_sender = sender;
1597 *ret_external = external;
1598 return 1;
1599}
057171ef 1600
c9d031c3
EV
1601int bus_property_get_rlimit(
1602 sd_bus *bus,
1603 const char *path,
1604 const char *interface,
1605 const char *property,
1606 sd_bus_message *reply,
1607 void *userdata,
1608 sd_bus_error *error) {
1609
6550c24c 1610 const char *is_soft;
c9d031c3
EV
1611 struct rlimit *rl;
1612 uint64_t u;
1613 rlim_t x;
1614
1615 assert(bus);
1616 assert(reply);
1617 assert(userdata);
1618
147f6858 1619 is_soft = endswith(property, "Soft");
6550c24c 1620
c9d031c3
EV
1621 rl = *(struct rlimit**) userdata;
1622 if (rl)
147f6858 1623 x = is_soft ? rl->rlim_cur : rl->rlim_max;
c9d031c3
EV
1624 else {
1625 struct rlimit buf = {};
6550c24c 1626 const char *s, *p;
c9d031c3 1627 int z;
147f6858 1628
6550c24c 1629 /* Chop off "Soft" suffix */
147f6858 1630 s = is_soft ? strndupa(property, is_soft - property) : property;
c9d031c3 1631
6550c24c
LP
1632 /* Skip over any prefix, such as "Default" */
1633 assert_se(p = strstr(s, "Limit"));
1634
1635 z = rlimit_from_string(p + 5);
c9d031c3
EV
1636 assert(z >= 0);
1637
6550c24c 1638 (void) getrlimit(z, &buf);
147f6858 1639 x = is_soft ? buf.rlim_cur : buf.rlim_max;
c9d031c3
EV
1640 }
1641
6550c24c
LP
1642 /* rlim_t might have different sizes, let's map RLIMIT_INFINITY to (uint64_t) -1, so that it is the same on all
1643 * archs */
c9d031c3
EV
1644 u = x == RLIM_INFINITY ? (uint64_t) -1 : (uint64_t) x;
1645
1646 return sd_bus_message_append(reply, "t", u);
1647}
984794ba
LP
1648
1649int bus_track_add_name_many(sd_bus_track *t, char **l) {
1650 int r = 0;
1651 char **i;
1652
1653 assert(t);
1654
1655 /* Continues adding after failure, and returns the first failure. */
1656
1657 STRV_FOREACH(i, l) {
1658 int k;
1659
1660 k = sd_bus_track_add_name(t, *i);
1661 if (k < 0 && r >= 0)
1662 r = k;
1663 }
1664
1665 return r;
1666}
d7afd945 1667
0ddf50ff 1668int bus_open_system_watch_bind_with_description(sd_bus **ret, const char *description) {
b1a4981a 1669 _cleanup_(sd_bus_close_unrefp) sd_bus *bus = NULL;
d7afd945
LP
1670 const char *e;
1671 int r;
1672
1673 assert(ret);
1674
1675 /* Match like sd_bus_open_system(), but with the "watch_bind" feature and the Connected() signal turned on. */
1676
1677 r = sd_bus_new(&bus);
1678 if (r < 0)
1679 return r;
1680
0ddf50ff
YW
1681 if (description) {
1682 r = sd_bus_set_description(bus, description);
1683 if (r < 0)
1684 return r;
1685 }
1686
d7afd945
LP
1687 e = secure_getenv("DBUS_SYSTEM_BUS_ADDRESS");
1688 if (!e)
1689 e = DEFAULT_SYSTEM_BUS_ADDRESS;
1690
1691 r = sd_bus_set_address(bus, e);
1692 if (r < 0)
1693 return r;
1694
1695 r = sd_bus_set_bus_client(bus, true);
1696 if (r < 0)
1697 return r;
1698
1699 r = sd_bus_set_trusted(bus, true);
1700 if (r < 0)
1701 return r;
1702
1703 r = sd_bus_negotiate_creds(bus, true, SD_BUS_CREDS_UID|SD_BUS_CREDS_EUID|SD_BUS_CREDS_EFFECTIVE_CAPS);
1704 if (r < 0)
1705 return r;
1706
1707 r = sd_bus_set_watch_bind(bus, true);
1708 if (r < 0)
1709 return r;
1710
1711 r = sd_bus_set_connected_signal(bus, true);
1712 if (r < 0)
1713 return r;
1714
1715 r = sd_bus_start(bus);
1716 if (r < 0)
1717 return r;
1718
1cc6c93a 1719 *ret = TAKE_PTR(bus);
d7afd945
LP
1720
1721 return 0;
1722}
906cb2eb 1723
19017acb
LP
1724int bus_reply_pair_array(sd_bus_message *m, char **l) {
1725 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
1726 char **k, **v;
1727 int r;
1728
1729 assert(m);
1730
1731 /* Reply to the specified message with a message containing a dictionary put together from the specified
1732 * strv */
1733
1734 r = sd_bus_message_new_method_return(m, &reply);
1735 if (r < 0)
1736 return r;
1737
1738 r = sd_bus_message_open_container(reply, 'a', "{ss}");
1739 if (r < 0)
1740 return r;
1741
1742 STRV_FOREACH_PAIR(k, v, l) {
1743 r = sd_bus_message_append(reply, "{ss}", *k, *v);
1744 if (r < 0)
1745 return r;
1746 }
1747
1748 r = sd_bus_message_close_container(reply);
1749 if (r < 0)
1750 return r;
1751
1752 return sd_bus_send(NULL, reply, NULL);
1753}