]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libsystemd/sd-bus/sd-bus.c
sd-bus: Add sd_bus_reply()
[thirdparty/systemd.git] / src / libsystemd / sd-bus / sd-bus.c
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2
3 #include <endian.h>
4 #include <netdb.h>
5 #include <poll.h>
6 #include <pthread.h>
7 #include <signal.h>
8 #include <stdlib.h>
9 #include <sys/mman.h>
10 #include <sys/stat.h>
11 #include <sys/wait.h>
12 #include <unistd.h>
13
14 #include "sd-bus.h"
15
16 #include "alloc-util.h"
17 #include "bus-container.h"
18 #include "bus-control.h"
19 #include "bus-internal.h"
20 #include "bus-kernel.h"
21 #include "bus-label.h"
22 #include "bus-message.h"
23 #include "bus-objects.h"
24 #include "bus-protocol.h"
25 #include "bus-slot.h"
26 #include "bus-socket.h"
27 #include "bus-track.h"
28 #include "bus-type.h"
29 #include "cgroup-util.h"
30 #include "def.h"
31 #include "errno-util.h"
32 #include "fd-util.h"
33 #include "hexdecoct.h"
34 #include "hostname-util.h"
35 #include "macro.h"
36 #include "memory-util.h"
37 #include "missing_syscall.h"
38 #include "parse-util.h"
39 #include "path-util.h"
40 #include "process-util.h"
41 #include "string-util.h"
42 #include "strv.h"
43 #include "user-util.h"
44
45 #define log_debug_bus_message(m) \
46 do { \
47 sd_bus_message *_mm = (m); \
48 log_debug("Got message type=%s sender=%s destination=%s path=%s interface=%s member=%s cookie=%" PRIu64 " reply_cookie=%" PRIu64 " signature=%s error-name=%s error-message=%s", \
49 bus_message_type_to_string(_mm->header->type), \
50 strna(sd_bus_message_get_sender(_mm)), \
51 strna(sd_bus_message_get_destination(_mm)), \
52 strna(sd_bus_message_get_path(_mm)), \
53 strna(sd_bus_message_get_interface(_mm)), \
54 strna(sd_bus_message_get_member(_mm)), \
55 BUS_MESSAGE_COOKIE(_mm), \
56 _mm->reply_cookie, \
57 strna(_mm->root_container.signature), \
58 strna(_mm->error.name), \
59 strna(_mm->error.message)); \
60 } while (false)
61
62 static int bus_poll(sd_bus *bus, bool need_more, uint64_t timeout_usec);
63 static void bus_detach_io_events(sd_bus *b);
64 static void bus_detach_inotify_event(sd_bus *b);
65
66 static thread_local sd_bus *default_system_bus = NULL;
67 static thread_local sd_bus *default_user_bus = NULL;
68 static thread_local sd_bus *default_starter_bus = NULL;
69
70 static sd_bus **bus_choose_default(int (**bus_open)(sd_bus **)) {
71 const char *e;
72
73 /* Let's try our best to reuse another cached connection. If
74 * the starter bus type is set, connect via our normal
75 * connection logic, ignoring $DBUS_STARTER_ADDRESS, so that
76 * we can share the connection with the user/system default
77 * bus. */
78
79 e = secure_getenv("DBUS_STARTER_BUS_TYPE");
80 if (e) {
81 if (streq(e, "system")) {
82 if (bus_open)
83 *bus_open = sd_bus_open_system;
84 return &default_system_bus;
85 } else if (STR_IN_SET(e, "user", "session")) {
86 if (bus_open)
87 *bus_open = sd_bus_open_user;
88 return &default_user_bus;
89 }
90 }
91
92 /* No type is specified, so we have not other option than to
93 * use the starter address if it is set. */
94 e = secure_getenv("DBUS_STARTER_ADDRESS");
95 if (e) {
96 if (bus_open)
97 *bus_open = sd_bus_open;
98 return &default_starter_bus;
99 }
100
101 /* Finally, if nothing is set use the cached connection for
102 * the right scope */
103
104 if (cg_pid_get_owner_uid(0, NULL) >= 0) {
105 if (bus_open)
106 *bus_open = sd_bus_open_user;
107 return &default_user_bus;
108 } else {
109 if (bus_open)
110 *bus_open = sd_bus_open_system;
111 return &default_system_bus;
112 }
113 }
114
115 sd_bus *bus_resolve(sd_bus *bus) {
116 switch ((uintptr_t) bus) {
117 case (uintptr_t) SD_BUS_DEFAULT:
118 return *(bus_choose_default(NULL));
119 case (uintptr_t) SD_BUS_DEFAULT_USER:
120 return default_user_bus;
121 case (uintptr_t) SD_BUS_DEFAULT_SYSTEM:
122 return default_system_bus;
123 default:
124 return bus;
125 }
126 }
127
128 void bus_close_io_fds(sd_bus *b) {
129 assert(b);
130
131 bus_detach_io_events(b);
132
133 if (b->input_fd != b->output_fd)
134 safe_close(b->output_fd);
135 b->output_fd = b->input_fd = safe_close(b->input_fd);
136 }
137
138 void bus_close_inotify_fd(sd_bus *b) {
139 assert(b);
140
141 bus_detach_inotify_event(b);
142
143 b->inotify_fd = safe_close(b->inotify_fd);
144 b->inotify_watches = mfree(b->inotify_watches);
145 b->n_inotify_watches = 0;
146 }
147
148 static void bus_reset_queues(sd_bus *b) {
149 assert(b);
150
151 while (b->rqueue_size > 0)
152 bus_message_unref_queued(b->rqueue[--b->rqueue_size], b);
153
154 b->rqueue = mfree(b->rqueue);
155 b->rqueue_allocated = 0;
156
157 while (b->wqueue_size > 0)
158 bus_message_unref_queued(b->wqueue[--b->wqueue_size], b);
159
160 b->wqueue = mfree(b->wqueue);
161 b->wqueue_allocated = 0;
162 }
163
164 static sd_bus* bus_free(sd_bus *b) {
165 sd_bus_slot *s;
166
167 assert(b);
168 assert(!b->track_queue);
169 assert(!b->tracks);
170
171 b->state = BUS_CLOSED;
172
173 sd_bus_detach_event(b);
174
175 while ((s = b->slots)) {
176 /* At this point only floating slots can still be
177 * around, because the non-floating ones keep a
178 * reference to the bus, and we thus couldn't be
179 * destructing right now... We forcibly disconnect the
180 * slots here, so that they still can be referenced by
181 * apps, but are dead. */
182
183 assert(s->floating);
184 bus_slot_disconnect(s, true);
185 }
186
187 if (b->default_bus_ptr)
188 *b->default_bus_ptr = NULL;
189
190 bus_close_io_fds(b);
191 bus_close_inotify_fd(b);
192
193 free(b->label);
194 free(b->groups);
195 free(b->rbuffer);
196 free(b->unique_name);
197 free(b->auth_buffer);
198 free(b->address);
199 free(b->machine);
200 free(b->description);
201 free(b->patch_sender);
202
203 free(b->exec_path);
204 strv_free(b->exec_argv);
205
206 close_many(b->fds, b->n_fds);
207 free(b->fds);
208
209 bus_reset_queues(b);
210
211 ordered_hashmap_free_free(b->reply_callbacks);
212 prioq_free(b->reply_callbacks_prioq);
213
214 assert(b->match_callbacks.type == BUS_MATCH_ROOT);
215 bus_match_free(&b->match_callbacks);
216
217 hashmap_free_free(b->vtable_methods);
218 hashmap_free_free(b->vtable_properties);
219
220 assert(hashmap_isempty(b->nodes));
221 hashmap_free(b->nodes);
222
223 bus_flush_memfd(b);
224
225 assert_se(pthread_mutex_destroy(&b->memfd_cache_mutex) == 0);
226
227 return mfree(b);
228 }
229
230 DEFINE_TRIVIAL_CLEANUP_FUNC(sd_bus*, bus_free);
231
232 _public_ int sd_bus_new(sd_bus **ret) {
233 _cleanup_free_ sd_bus *b = NULL;
234
235 assert_return(ret, -EINVAL);
236
237 b = new(sd_bus, 1);
238 if (!b)
239 return -ENOMEM;
240
241 *b = (sd_bus) {
242 .n_ref = 1,
243 .input_fd = -1,
244 .output_fd = -1,
245 .inotify_fd = -1,
246 .message_version = 1,
247 .creds_mask = SD_BUS_CREDS_WELL_KNOWN_NAMES|SD_BUS_CREDS_UNIQUE_NAME,
248 .accept_fd = true,
249 .original_pid = getpid_cached(),
250 .n_groups = (size_t) -1,
251 .close_on_exit = true,
252 };
253
254 /* We guarantee that wqueue always has space for at least one entry */
255 if (!GREEDY_REALLOC(b->wqueue, b->wqueue_allocated, 1))
256 return -ENOMEM;
257
258 assert_se(pthread_mutex_init(&b->memfd_cache_mutex, NULL) == 0);
259
260 *ret = TAKE_PTR(b);
261 return 0;
262 }
263
264 _public_ int sd_bus_set_address(sd_bus *bus, const char *address) {
265 assert_return(bus, -EINVAL);
266 assert_return(bus = bus_resolve(bus), -ENOPKG);
267 assert_return(bus->state == BUS_UNSET, -EPERM);
268 assert_return(address, -EINVAL);
269 assert_return(!bus_pid_changed(bus), -ECHILD);
270
271 return free_and_strdup(&bus->address, address);
272 }
273
274 _public_ int sd_bus_set_fd(sd_bus *bus, int input_fd, int output_fd) {
275 assert_return(bus, -EINVAL);
276 assert_return(bus = bus_resolve(bus), -ENOPKG);
277 assert_return(bus->state == BUS_UNSET, -EPERM);
278 assert_return(input_fd >= 0, -EBADF);
279 assert_return(output_fd >= 0, -EBADF);
280 assert_return(!bus_pid_changed(bus), -ECHILD);
281
282 bus->input_fd = input_fd;
283 bus->output_fd = output_fd;
284 return 0;
285 }
286
287 _public_ int sd_bus_set_exec(sd_bus *bus, const char *path, char *const *argv) {
288 _cleanup_strv_free_ char **a = NULL;
289 int r;
290
291 assert_return(bus, -EINVAL);
292 assert_return(bus = bus_resolve(bus), -ENOPKG);
293 assert_return(bus->state == BUS_UNSET, -EPERM);
294 assert_return(path, -EINVAL);
295 assert_return(!strv_isempty(argv), -EINVAL);
296 assert_return(!bus_pid_changed(bus), -ECHILD);
297
298 a = strv_copy(argv);
299 if (!a)
300 return -ENOMEM;
301
302 r = free_and_strdup(&bus->exec_path, path);
303 if (r < 0)
304 return r;
305
306 return strv_free_and_replace(bus->exec_argv, a);
307 }
308
309 _public_ int sd_bus_set_bus_client(sd_bus *bus, int b) {
310 assert_return(bus, -EINVAL);
311 assert_return(bus = bus_resolve(bus), -ENOPKG);
312 assert_return(bus->state == BUS_UNSET, -EPERM);
313 assert_return(!bus->patch_sender, -EPERM);
314 assert_return(!bus_pid_changed(bus), -ECHILD);
315
316 bus->bus_client = !!b;
317 return 0;
318 }
319
320 _public_ int sd_bus_set_monitor(sd_bus *bus, int b) {
321 assert_return(bus, -EINVAL);
322 assert_return(bus = bus_resolve(bus), -ENOPKG);
323 assert_return(bus->state == BUS_UNSET, -EPERM);
324 assert_return(!bus_pid_changed(bus), -ECHILD);
325
326 bus->is_monitor = !!b;
327 return 0;
328 }
329
330 _public_ int sd_bus_negotiate_fds(sd_bus *bus, int b) {
331 assert_return(bus, -EINVAL);
332 assert_return(bus = bus_resolve(bus), -ENOPKG);
333 assert_return(bus->state == BUS_UNSET, -EPERM);
334 assert_return(!bus_pid_changed(bus), -ECHILD);
335
336 bus->accept_fd = !!b;
337 return 0;
338 }
339
340 _public_ int sd_bus_negotiate_timestamp(sd_bus *bus, int b) {
341 assert_return(bus, -EINVAL);
342 assert_return(bus = bus_resolve(bus), -ENOPKG);
343 assert_return(!IN_SET(bus->state, BUS_CLOSING, BUS_CLOSED), -EPERM);
344 assert_return(!bus_pid_changed(bus), -ECHILD);
345
346 /* This is not actually supported by any of our transports these days, but we do honour it for synthetic
347 * replies, and maybe one day classic D-Bus learns this too */
348 bus->attach_timestamp = !!b;
349
350 return 0;
351 }
352
353 _public_ int sd_bus_negotiate_creds(sd_bus *bus, int b, uint64_t mask) {
354 assert_return(bus, -EINVAL);
355 assert_return(bus = bus_resolve(bus), -ENOPKG);
356 assert_return(mask <= _SD_BUS_CREDS_ALL, -EINVAL);
357 assert_return(!IN_SET(bus->state, BUS_CLOSING, BUS_CLOSED), -EPERM);
358 assert_return(!bus_pid_changed(bus), -ECHILD);
359
360 SET_FLAG(bus->creds_mask, mask, b);
361
362 /* The well knowns we need unconditionally, so that matches can work */
363 bus->creds_mask |= SD_BUS_CREDS_WELL_KNOWN_NAMES|SD_BUS_CREDS_UNIQUE_NAME;
364
365 return 0;
366 }
367
368 _public_ int sd_bus_set_server(sd_bus *bus, int b, sd_id128_t server_id) {
369 assert_return(bus, -EINVAL);
370 assert_return(bus = bus_resolve(bus), -ENOPKG);
371 assert_return(b || sd_id128_equal(server_id, SD_ID128_NULL), -EINVAL);
372 assert_return(bus->state == BUS_UNSET, -EPERM);
373 assert_return(!bus_pid_changed(bus), -ECHILD);
374
375 bus->is_server = !!b;
376 bus->server_id = server_id;
377 return 0;
378 }
379
380 _public_ int sd_bus_set_anonymous(sd_bus *bus, int b) {
381 assert_return(bus, -EINVAL);
382 assert_return(bus = bus_resolve(bus), -ENOPKG);
383 assert_return(bus->state == BUS_UNSET, -EPERM);
384 assert_return(!bus_pid_changed(bus), -ECHILD);
385
386 bus->anonymous_auth = !!b;
387 return 0;
388 }
389
390 _public_ int sd_bus_set_trusted(sd_bus *bus, int b) {
391 assert_return(bus, -EINVAL);
392 assert_return(bus = bus_resolve(bus), -ENOPKG);
393 assert_return(bus->state == BUS_UNSET, -EPERM);
394 assert_return(!bus_pid_changed(bus), -ECHILD);
395
396 bus->trusted = !!b;
397 return 0;
398 }
399
400 _public_ int sd_bus_set_description(sd_bus *bus, const char *description) {
401 assert_return(bus, -EINVAL);
402 assert_return(bus = bus_resolve(bus), -ENOPKG);
403 assert_return(bus->state == BUS_UNSET, -EPERM);
404 assert_return(!bus_pid_changed(bus), -ECHILD);
405
406 return free_and_strdup(&bus->description, description);
407 }
408
409 _public_ int sd_bus_set_allow_interactive_authorization(sd_bus *bus, int b) {
410 assert_return(bus, -EINVAL);
411 assert_return(bus = bus_resolve(bus), -ENOPKG);
412 assert_return(!bus_pid_changed(bus), -ECHILD);
413
414 bus->allow_interactive_authorization = !!b;
415 return 0;
416 }
417
418 _public_ int sd_bus_get_allow_interactive_authorization(sd_bus *bus) {
419 assert_return(bus, -EINVAL);
420 assert_return(bus = bus_resolve(bus), -ENOPKG);
421 assert_return(!bus_pid_changed(bus), -ECHILD);
422
423 return bus->allow_interactive_authorization;
424 }
425
426 _public_ int sd_bus_set_watch_bind(sd_bus *bus, int b) {
427 assert_return(bus, -EINVAL);
428 assert_return(bus = bus_resolve(bus), -ENOPKG);
429 assert_return(bus->state == BUS_UNSET, -EPERM);
430 assert_return(!bus_pid_changed(bus), -ECHILD);
431
432 bus->watch_bind = !!b;
433 return 0;
434 }
435
436 _public_ int sd_bus_get_watch_bind(sd_bus *bus) {
437 assert_return(bus, -EINVAL);
438 assert_return(bus = bus_resolve(bus), -ENOPKG);
439 assert_return(!bus_pid_changed(bus), -ECHILD);
440
441 return bus->watch_bind;
442 }
443
444 _public_ int sd_bus_set_connected_signal(sd_bus *bus, int b) {
445 assert_return(bus, -EINVAL);
446 assert_return(bus = bus_resolve(bus), -ENOPKG);
447 assert_return(bus->state == BUS_UNSET, -EPERM);
448 assert_return(!bus_pid_changed(bus), -ECHILD);
449
450 bus->connected_signal = !!b;
451 return 0;
452 }
453
454 _public_ int sd_bus_get_connected_signal(sd_bus *bus) {
455 assert_return(bus, -EINVAL);
456 assert_return(bus = bus_resolve(bus), -ENOPKG);
457 assert_return(!bus_pid_changed(bus), -ECHILD);
458
459 return bus->connected_signal;
460 }
461
462 static int synthesize_connected_signal(sd_bus *bus) {
463 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
464 int r;
465
466 assert(bus);
467
468 /* If enabled, synthesizes a local "Connected" signal mirroring the local "Disconnected" signal. This is called
469 * whenever we fully established a connection, i.e. after the authorization phase, and after receiving the
470 * Hello() reply. Or in other words, whenever we enter BUS_RUNNING state.
471 *
472 * This is useful so that clients can start doing stuff whenever the connection is fully established in a way
473 * that works independently from whether we connected to a full bus or just a direct connection. */
474
475 if (!bus->connected_signal)
476 return 0;
477
478 r = sd_bus_message_new_signal(
479 bus,
480 &m,
481 "/org/freedesktop/DBus/Local",
482 "org.freedesktop.DBus.Local",
483 "Connected");
484 if (r < 0)
485 return r;
486
487 bus_message_set_sender_local(bus, m);
488 m->read_counter = ++bus->read_counter;
489
490 r = bus_seal_synthetic_message(bus, m);
491 if (r < 0)
492 return r;
493
494 r = bus_rqueue_make_room(bus);
495 if (r < 0)
496 return r;
497
498 /* Insert at the very front */
499 memmove(bus->rqueue + 1, bus->rqueue, sizeof(sd_bus_message*) * bus->rqueue_size);
500 bus->rqueue[0] = bus_message_ref_queued(m, bus);
501 bus->rqueue_size++;
502
503 return 0;
504 }
505
506 void bus_set_state(sd_bus *bus, enum bus_state state) {
507 static const char * const table[_BUS_STATE_MAX] = {
508 [BUS_UNSET] = "UNSET",
509 [BUS_WATCH_BIND] = "WATCH_BIND",
510 [BUS_OPENING] = "OPENING",
511 [BUS_AUTHENTICATING] = "AUTHENTICATING",
512 [BUS_HELLO] = "HELLO",
513 [BUS_RUNNING] = "RUNNING",
514 [BUS_CLOSING] = "CLOSING",
515 [BUS_CLOSED] = "CLOSED",
516 };
517
518 assert(bus);
519 assert(state < _BUS_STATE_MAX);
520
521 if (state == bus->state)
522 return;
523
524 log_debug("Bus %s: changing state %s → %s", strna(bus->description), table[bus->state], table[state]);
525 bus->state = state;
526 }
527
528 static int hello_callback(sd_bus_message *reply, void *userdata, sd_bus_error *error) {
529 const char *s;
530 sd_bus *bus;
531 int r;
532
533 assert(reply);
534 bus = reply->bus;
535 assert(bus);
536 assert(IN_SET(bus->state, BUS_HELLO, BUS_CLOSING));
537
538 r = sd_bus_message_get_errno(reply);
539 if (r > 0) {
540 r = -r;
541 goto fail;
542 }
543
544 r = sd_bus_message_read(reply, "s", &s);
545 if (r < 0)
546 goto fail;
547
548 if (!service_name_is_valid(s) || s[0] != ':') {
549 r = -EBADMSG;
550 goto fail;
551 }
552
553 r = free_and_strdup(&bus->unique_name, s);
554 if (r < 0)
555 goto fail;
556
557 if (bus->state == BUS_HELLO) {
558 bus_set_state(bus, BUS_RUNNING);
559
560 r = synthesize_connected_signal(bus);
561 if (r < 0)
562 goto fail;
563 }
564
565 return 1;
566
567 fail:
568 /* When Hello() failed, let's propagate this in two ways: first we return the error immediately here,
569 * which is the propagated up towards the event loop. Let's also invalidate the connection, so that
570 * if the user then calls back into us again we won't wait any longer. */
571
572 bus_set_state(bus, BUS_CLOSING);
573 return r;
574 }
575
576 static int bus_send_hello(sd_bus *bus) {
577 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
578 int r;
579
580 assert(bus);
581
582 if (!bus->bus_client)
583 return 0;
584
585 r = sd_bus_message_new_method_call(
586 bus,
587 &m,
588 "org.freedesktop.DBus",
589 "/org/freedesktop/DBus",
590 "org.freedesktop.DBus",
591 "Hello");
592 if (r < 0)
593 return r;
594
595 return sd_bus_call_async(bus, NULL, m, hello_callback, NULL, 0);
596 }
597
598 int bus_start_running(sd_bus *bus) {
599 struct reply_callback *c;
600 usec_t n;
601 int r;
602
603 assert(bus);
604 assert(bus->state < BUS_HELLO);
605
606 /* We start all method call timeouts when we enter BUS_HELLO or BUS_RUNNING mode. At this point let's convert
607 * all relative to absolute timestamps. Note that we do not reshuffle the reply callback priority queue since
608 * adding a fixed value to all entries should not alter the internal order. */
609
610 n = now(CLOCK_MONOTONIC);
611 ORDERED_HASHMAP_FOREACH(c, bus->reply_callbacks) {
612 if (c->timeout_usec == 0)
613 continue;
614
615 c->timeout_usec = usec_add(n, c->timeout_usec);
616 }
617
618 if (bus->bus_client) {
619 bus_set_state(bus, BUS_HELLO);
620 return 1;
621 }
622
623 bus_set_state(bus, BUS_RUNNING);
624
625 r = synthesize_connected_signal(bus);
626 if (r < 0)
627 return r;
628
629 return 1;
630 }
631
632 static int parse_address_key(const char **p, const char *key, char **value) {
633 size_t l, n = 0, allocated = 0;
634 _cleanup_free_ char *r = NULL;
635 const char *a;
636
637 assert(p);
638 assert(*p);
639 assert(value);
640
641 if (key) {
642 l = strlen(key);
643 if (strncmp(*p, key, l) != 0)
644 return 0;
645
646 if ((*p)[l] != '=')
647 return 0;
648
649 if (*value)
650 return -EINVAL;
651
652 a = *p + l + 1;
653 } else
654 a = *p;
655
656 while (!IN_SET(*a, ';', ',', 0)) {
657 char c;
658
659 if (*a == '%') {
660 int x, y;
661
662 x = unhexchar(a[1]);
663 if (x < 0)
664 return x;
665
666 y = unhexchar(a[2]);
667 if (y < 0)
668 return y;
669
670 c = (char) ((x << 4) | y);
671 a += 3;
672 } else {
673 c = *a;
674 a++;
675 }
676
677 if (!GREEDY_REALLOC(r, allocated, n + 2))
678 return -ENOMEM;
679
680 r[n++] = c;
681 }
682
683 if (!r) {
684 r = strdup("");
685 if (!r)
686 return -ENOMEM;
687 } else
688 r[n] = 0;
689
690 if (*a == ',')
691 a++;
692
693 *p = a;
694
695 free_and_replace(*value, r);
696
697 return 1;
698 }
699
700 static void skip_address_key(const char **p) {
701 assert(p);
702 assert(*p);
703
704 *p += strcspn(*p, ",");
705
706 if (**p == ',')
707 (*p)++;
708 }
709
710 static int parse_unix_address(sd_bus *b, const char **p, char **guid) {
711 _cleanup_free_ char *path = NULL, *abstract = NULL;
712 size_t l;
713 int r;
714
715 assert(b);
716 assert(p);
717 assert(*p);
718 assert(guid);
719
720 while (!IN_SET(**p, 0, ';')) {
721 r = parse_address_key(p, "guid", guid);
722 if (r < 0)
723 return r;
724 else if (r > 0)
725 continue;
726
727 r = parse_address_key(p, "path", &path);
728 if (r < 0)
729 return r;
730 else if (r > 0)
731 continue;
732
733 r = parse_address_key(p, "abstract", &abstract);
734 if (r < 0)
735 return r;
736 else if (r > 0)
737 continue;
738
739 skip_address_key(p);
740 }
741
742 if (!path && !abstract)
743 return -EINVAL;
744
745 if (path && abstract)
746 return -EINVAL;
747
748 if (path) {
749 l = strlen(path);
750 if (l >= sizeof(b->sockaddr.un.sun_path)) /* We insist on NUL termination */
751 return -E2BIG;
752
753 b->sockaddr.un = (struct sockaddr_un) {
754 .sun_family = AF_UNIX,
755 };
756
757 memcpy(b->sockaddr.un.sun_path, path, l);
758 b->sockaddr_size = offsetof(struct sockaddr_un, sun_path) + l + 1;
759
760 } else {
761 assert(abstract);
762
763 l = strlen(abstract);
764 if (l >= sizeof(b->sockaddr.un.sun_path) - 1) /* We insist on NUL termination */
765 return -E2BIG;
766
767 b->sockaddr.un = (struct sockaddr_un) {
768 .sun_family = AF_UNIX,
769 };
770
771 memcpy(b->sockaddr.un.sun_path+1, abstract, l);
772 b->sockaddr_size = offsetof(struct sockaddr_un, sun_path) + 1 + l;
773 }
774
775 b->is_local = true;
776
777 return 0;
778 }
779
780 static int parse_tcp_address(sd_bus *b, const char **p, char **guid) {
781 _cleanup_free_ char *host = NULL, *port = NULL, *family = NULL;
782 int r;
783 struct addrinfo *result, hints = {
784 .ai_socktype = SOCK_STREAM,
785 };
786
787 assert(b);
788 assert(p);
789 assert(*p);
790 assert(guid);
791
792 while (!IN_SET(**p, 0, ';')) {
793 r = parse_address_key(p, "guid", guid);
794 if (r < 0)
795 return r;
796 else if (r > 0)
797 continue;
798
799 r = parse_address_key(p, "host", &host);
800 if (r < 0)
801 return r;
802 else if (r > 0)
803 continue;
804
805 r = parse_address_key(p, "port", &port);
806 if (r < 0)
807 return r;
808 else if (r > 0)
809 continue;
810
811 r = parse_address_key(p, "family", &family);
812 if (r < 0)
813 return r;
814 else if (r > 0)
815 continue;
816
817 skip_address_key(p);
818 }
819
820 if (!host || !port)
821 return -EINVAL;
822
823 if (family) {
824 if (streq(family, "ipv4"))
825 hints.ai_family = AF_INET;
826 else if (streq(family, "ipv6"))
827 hints.ai_family = AF_INET6;
828 else
829 return -EINVAL;
830 }
831
832 r = getaddrinfo(host, port, &hints, &result);
833 if (r == EAI_SYSTEM)
834 return -errno;
835 else if (r != 0)
836 return -EADDRNOTAVAIL;
837
838 memcpy(&b->sockaddr, result->ai_addr, result->ai_addrlen);
839 b->sockaddr_size = result->ai_addrlen;
840
841 freeaddrinfo(result);
842
843 b->is_local = false;
844
845 return 0;
846 }
847
848 static int parse_exec_address(sd_bus *b, const char **p, char **guid) {
849 char *path = NULL;
850 unsigned n_argv = 0, j;
851 char **argv = NULL;
852 size_t allocated = 0;
853 int r;
854
855 assert(b);
856 assert(p);
857 assert(*p);
858 assert(guid);
859
860 while (!IN_SET(**p, 0, ';')) {
861 r = parse_address_key(p, "guid", guid);
862 if (r < 0)
863 goto fail;
864 else if (r > 0)
865 continue;
866
867 r = parse_address_key(p, "path", &path);
868 if (r < 0)
869 goto fail;
870 else if (r > 0)
871 continue;
872
873 if (startswith(*p, "argv")) {
874 unsigned ul;
875
876 errno = 0;
877 ul = strtoul(*p + 4, (char**) p, 10);
878 if (errno > 0 || **p != '=' || ul > 256) {
879 r = -EINVAL;
880 goto fail;
881 }
882
883 (*p)++;
884
885 if (ul >= n_argv) {
886 if (!GREEDY_REALLOC0(argv, allocated, ul + 2)) {
887 r = -ENOMEM;
888 goto fail;
889 }
890
891 n_argv = ul + 1;
892 }
893
894 r = parse_address_key(p, NULL, argv + ul);
895 if (r < 0)
896 goto fail;
897
898 continue;
899 }
900
901 skip_address_key(p);
902 }
903
904 if (!path) {
905 r = -EINVAL;
906 goto fail;
907 }
908
909 /* Make sure there are no holes in the array, with the
910 * exception of argv[0] */
911 for (j = 1; j < n_argv; j++)
912 if (!argv[j]) {
913 r = -EINVAL;
914 goto fail;
915 }
916
917 if (argv && argv[0] == NULL) {
918 argv[0] = strdup(path);
919 if (!argv[0]) {
920 r = -ENOMEM;
921 goto fail;
922 }
923 }
924
925 b->exec_path = path;
926 b->exec_argv = argv;
927
928 b->is_local = false;
929
930 return 0;
931
932 fail:
933 for (j = 0; j < n_argv; j++)
934 free(argv[j]);
935
936 free(argv);
937 free(path);
938 return r;
939 }
940
941 static int parse_container_unix_address(sd_bus *b, const char **p, char **guid) {
942 _cleanup_free_ char *machine = NULL, *pid = NULL;
943 int r;
944
945 assert(b);
946 assert(p);
947 assert(*p);
948 assert(guid);
949
950 while (!IN_SET(**p, 0, ';')) {
951 r = parse_address_key(p, "guid", guid);
952 if (r < 0)
953 return r;
954 else if (r > 0)
955 continue;
956
957 r = parse_address_key(p, "machine", &machine);
958 if (r < 0)
959 return r;
960 else if (r > 0)
961 continue;
962
963 r = parse_address_key(p, "pid", &pid);
964 if (r < 0)
965 return r;
966 else if (r > 0)
967 continue;
968
969 skip_address_key(p);
970 }
971
972 if (!machine == !pid)
973 return -EINVAL;
974
975 if (machine) {
976 if (!hostname_is_valid(machine, VALID_HOSTNAME_DOT_HOST))
977 return -EINVAL;
978
979 free_and_replace(b->machine, machine);
980 } else
981 b->machine = mfree(b->machine);
982
983 if (pid) {
984 r = parse_pid(pid, &b->nspid);
985 if (r < 0)
986 return r;
987 } else
988 b->nspid = 0;
989
990 b->sockaddr.un = (struct sockaddr_un) {
991 .sun_family = AF_UNIX,
992 /* Note that we use the old /var/run prefix here, to increase compatibility with really old containers */
993 .sun_path = "/var/run/dbus/system_bus_socket",
994 };
995 b->sockaddr_size = SOCKADDR_UN_LEN(b->sockaddr.un);
996 b->is_local = false;
997
998 return 0;
999 }
1000
1001 static void bus_reset_parsed_address(sd_bus *b) {
1002 assert(b);
1003
1004 zero(b->sockaddr);
1005 b->sockaddr_size = 0;
1006 b->exec_argv = strv_free(b->exec_argv);
1007 b->exec_path = mfree(b->exec_path);
1008 b->server_id = SD_ID128_NULL;
1009 b->machine = mfree(b->machine);
1010 b->nspid = 0;
1011 }
1012
1013 static int bus_parse_next_address(sd_bus *b) {
1014 _cleanup_free_ char *guid = NULL;
1015 const char *a;
1016 int r;
1017
1018 assert(b);
1019
1020 if (!b->address)
1021 return 0;
1022 if (b->address[b->address_index] == 0)
1023 return 0;
1024
1025 bus_reset_parsed_address(b);
1026
1027 a = b->address + b->address_index;
1028
1029 while (*a != 0) {
1030
1031 if (*a == ';') {
1032 a++;
1033 continue;
1034 }
1035
1036 if (startswith(a, "unix:")) {
1037 a += 5;
1038
1039 r = parse_unix_address(b, &a, &guid);
1040 if (r < 0)
1041 return r;
1042 break;
1043
1044 } else if (startswith(a, "tcp:")) {
1045
1046 a += 4;
1047 r = parse_tcp_address(b, &a, &guid);
1048 if (r < 0)
1049 return r;
1050
1051 break;
1052
1053 } else if (startswith(a, "unixexec:")) {
1054
1055 a += 9;
1056 r = parse_exec_address(b, &a, &guid);
1057 if (r < 0)
1058 return r;
1059
1060 break;
1061
1062 } else if (startswith(a, "x-machine-unix:")) {
1063
1064 a += 15;
1065 r = parse_container_unix_address(b, &a, &guid);
1066 if (r < 0)
1067 return r;
1068
1069 break;
1070 }
1071
1072 a = strchr(a, ';');
1073 if (!a)
1074 return 0;
1075 }
1076
1077 if (guid) {
1078 r = sd_id128_from_string(guid, &b->server_id);
1079 if (r < 0)
1080 return r;
1081 }
1082
1083 b->address_index = a - b->address;
1084 return 1;
1085 }
1086
1087 static void bus_kill_exec(sd_bus *bus) {
1088 if (pid_is_valid(bus->busexec_pid) > 0) {
1089 sigterm_wait(bus->busexec_pid);
1090 bus->busexec_pid = 0;
1091 }
1092 }
1093
1094 static int bus_start_address(sd_bus *b) {
1095 int r;
1096
1097 assert(b);
1098
1099 for (;;) {
1100 bus_close_io_fds(b);
1101 bus_close_inotify_fd(b);
1102
1103 bus_kill_exec(b);
1104
1105 /* If you provide multiple different bus-addresses, we
1106 * try all of them in order and use the first one that
1107 * succeeds. */
1108
1109 if (b->exec_path)
1110 r = bus_socket_exec(b);
1111 else if ((b->nspid > 0 || b->machine) && b->sockaddr.sa.sa_family != AF_UNSPEC)
1112 r = bus_container_connect_socket(b);
1113 else if (b->sockaddr.sa.sa_family != AF_UNSPEC)
1114 r = bus_socket_connect(b);
1115 else
1116 goto next;
1117
1118 if (r >= 0) {
1119 int q;
1120
1121 q = bus_attach_io_events(b);
1122 if (q < 0)
1123 return q;
1124
1125 q = bus_attach_inotify_event(b);
1126 if (q < 0)
1127 return q;
1128
1129 return r;
1130 }
1131
1132 b->last_connect_error = -r;
1133
1134 next:
1135 r = bus_parse_next_address(b);
1136 if (r < 0)
1137 return r;
1138 if (r == 0)
1139 return b->last_connect_error > 0 ? -b->last_connect_error : -ECONNREFUSED;
1140 }
1141 }
1142
1143 int bus_next_address(sd_bus *b) {
1144 assert(b);
1145
1146 bus_reset_parsed_address(b);
1147 return bus_start_address(b);
1148 }
1149
1150 static int bus_start_fd(sd_bus *b) {
1151 struct stat st;
1152 int r;
1153
1154 assert(b);
1155 assert(b->input_fd >= 0);
1156 assert(b->output_fd >= 0);
1157
1158 if (DEBUG_LOGGING) {
1159 _cleanup_free_ char *pi = NULL, *po = NULL;
1160 (void) fd_get_path(b->input_fd, &pi);
1161 (void) fd_get_path(b->output_fd, &po);
1162 log_debug("sd-bus: starting bus%s%s on fds %d/%d (%s, %s)...",
1163 b->description ? " " : "", strempty(b->description),
1164 b->input_fd, b->output_fd,
1165 pi ?: "???", po ?: "???");
1166 }
1167
1168 r = fd_nonblock(b->input_fd, true);
1169 if (r < 0)
1170 return r;
1171
1172 r = fd_cloexec(b->input_fd, true);
1173 if (r < 0)
1174 return r;
1175
1176 if (b->input_fd != b->output_fd) {
1177 r = fd_nonblock(b->output_fd, true);
1178 if (r < 0)
1179 return r;
1180
1181 r = fd_cloexec(b->output_fd, true);
1182 if (r < 0)
1183 return r;
1184 }
1185
1186 if (fstat(b->input_fd, &st) < 0)
1187 return -errno;
1188
1189 return bus_socket_take_fd(b);
1190 }
1191
1192 _public_ int sd_bus_start(sd_bus *bus) {
1193 int r;
1194
1195 assert_return(bus, -EINVAL);
1196 assert_return(bus = bus_resolve(bus), -ENOPKG);
1197 assert_return(bus->state == BUS_UNSET, -EPERM);
1198 assert_return(!bus_pid_changed(bus), -ECHILD);
1199
1200 bus_set_state(bus, BUS_OPENING);
1201
1202 if (bus->is_server && bus->bus_client)
1203 return -EINVAL;
1204
1205 if (bus->input_fd >= 0)
1206 r = bus_start_fd(bus);
1207 else if (bus->address || bus->sockaddr.sa.sa_family != AF_UNSPEC || bus->exec_path || bus->machine)
1208 r = bus_start_address(bus);
1209 else
1210 return -EINVAL;
1211
1212 if (r < 0) {
1213 sd_bus_close(bus);
1214 return r;
1215 }
1216
1217 return bus_send_hello(bus);
1218 }
1219
1220 _public_ int sd_bus_open_with_description(sd_bus **ret, const char *description) {
1221 const char *e;
1222 _cleanup_(bus_freep) sd_bus *b = NULL;
1223 int r;
1224
1225 assert_return(ret, -EINVAL);
1226
1227 /* Let's connect to the starter bus if it is set, and
1228 * otherwise to the bus that is appropriate for the scope
1229 * we are running in */
1230
1231 e = secure_getenv("DBUS_STARTER_BUS_TYPE");
1232 if (e) {
1233 if (streq(e, "system"))
1234 return sd_bus_open_system_with_description(ret, description);
1235 else if (STR_IN_SET(e, "session", "user"))
1236 return sd_bus_open_user_with_description(ret, description);
1237 }
1238
1239 e = secure_getenv("DBUS_STARTER_ADDRESS");
1240 if (!e) {
1241 if (cg_pid_get_owner_uid(0, NULL) >= 0)
1242 return sd_bus_open_user_with_description(ret, description);
1243 else
1244 return sd_bus_open_system_with_description(ret, description);
1245 }
1246
1247 r = sd_bus_new(&b);
1248 if (r < 0)
1249 return r;
1250
1251 r = sd_bus_set_address(b, e);
1252 if (r < 0)
1253 return r;
1254
1255 b->bus_client = true;
1256
1257 /* We don't know whether the bus is trusted or not, so better
1258 * be safe, and authenticate everything */
1259 b->trusted = false;
1260 b->is_local = false;
1261 b->creds_mask |= SD_BUS_CREDS_UID | SD_BUS_CREDS_EUID | SD_BUS_CREDS_EFFECTIVE_CAPS;
1262
1263 r = sd_bus_start(b);
1264 if (r < 0)
1265 return r;
1266
1267 *ret = TAKE_PTR(b);
1268 return 0;
1269 }
1270
1271 _public_ int sd_bus_open(sd_bus **ret) {
1272 return sd_bus_open_with_description(ret, NULL);
1273 }
1274
1275 int bus_set_address_system(sd_bus *b) {
1276 const char *e;
1277 int r;
1278
1279 assert(b);
1280
1281 e = secure_getenv("DBUS_SYSTEM_BUS_ADDRESS");
1282
1283 r = sd_bus_set_address(b, e ?: DEFAULT_SYSTEM_BUS_ADDRESS);
1284 if (r >= 0)
1285 b->is_system = true;
1286 return r;
1287 }
1288
1289 _public_ int sd_bus_open_system_with_description(sd_bus **ret, const char *description) {
1290 _cleanup_(bus_freep) sd_bus *b = NULL;
1291 int r;
1292
1293 assert_return(ret, -EINVAL);
1294
1295 r = sd_bus_new(&b);
1296 if (r < 0)
1297 return r;
1298
1299 if (description) {
1300 r = sd_bus_set_description(b, description);
1301 if (r < 0)
1302 return r;
1303 }
1304
1305 r = bus_set_address_system(b);
1306 if (r < 0)
1307 return r;
1308
1309 b->bus_client = true;
1310
1311 /* Let's do per-method access control on the system bus. We
1312 * need the caller's UID and capability set for that. */
1313 b->trusted = false;
1314 b->creds_mask |= SD_BUS_CREDS_UID | SD_BUS_CREDS_EUID | SD_BUS_CREDS_EFFECTIVE_CAPS;
1315 b->is_local = true;
1316
1317 r = sd_bus_start(b);
1318 if (r < 0)
1319 return r;
1320
1321 *ret = TAKE_PTR(b);
1322 return 0;
1323 }
1324
1325 _public_ int sd_bus_open_system(sd_bus **ret) {
1326 return sd_bus_open_system_with_description(ret, NULL);
1327 }
1328
1329 int bus_set_address_user(sd_bus *b) {
1330 const char *a;
1331 _cleanup_free_ char *_a = NULL;
1332 int r;
1333
1334 assert(b);
1335
1336 a = secure_getenv("DBUS_SESSION_BUS_ADDRESS");
1337 if (!a) {
1338 const char *e;
1339 _cleanup_free_ char *ee = NULL;
1340
1341 e = secure_getenv("XDG_RUNTIME_DIR");
1342 if (!e)
1343 return log_debug_errno(SYNTHETIC_ERRNO(ENOMEDIUM),
1344 "sd-bus: $XDG_RUNTIME_DIR not set, cannot connect to user bus.");
1345
1346 ee = bus_address_escape(e);
1347 if (!ee)
1348 return -ENOMEM;
1349
1350 if (asprintf(&_a, DEFAULT_USER_BUS_ADDRESS_FMT, ee) < 0)
1351 return -ENOMEM;
1352 a = _a;
1353 }
1354
1355 r = sd_bus_set_address(b, a);
1356 if (r >= 0)
1357 b->is_user = true;
1358 return r;
1359 }
1360
1361 _public_ int sd_bus_open_user_with_description(sd_bus **ret, const char *description) {
1362 _cleanup_(bus_freep) sd_bus *b = NULL;
1363 int r;
1364
1365 assert_return(ret, -EINVAL);
1366
1367 r = sd_bus_new(&b);
1368 if (r < 0)
1369 return r;
1370
1371 if (description) {
1372 r = sd_bus_set_description(b, description);
1373 if (r < 0)
1374 return r;
1375 }
1376
1377 r = bus_set_address_user(b);
1378 if (r < 0)
1379 return r;
1380
1381 b->bus_client = true;
1382
1383 /* We don't do any per-method access control on the user bus. */
1384 b->trusted = true;
1385 b->is_local = true;
1386
1387 r = sd_bus_start(b);
1388 if (r < 0)
1389 return r;
1390
1391 *ret = TAKE_PTR(b);
1392 return 0;
1393 }
1394
1395 _public_ int sd_bus_open_user(sd_bus **ret) {
1396 return sd_bus_open_user_with_description(ret, NULL);
1397 }
1398
1399 int bus_set_address_system_remote(sd_bus *b, const char *host) {
1400 _cleanup_free_ char *e = NULL;
1401 char *m = NULL, *c = NULL, *a, *rbracket = NULL, *p = NULL;
1402
1403 assert(b);
1404 assert(host);
1405
1406 /* Skip ":"s in ipv6 addresses */
1407 if (*host == '[') {
1408 char *t;
1409
1410 rbracket = strchr(host, ']');
1411 if (!rbracket)
1412 return -EINVAL;
1413 t = strndupa(host + 1, rbracket - host - 1);
1414 e = bus_address_escape(t);
1415 if (!e)
1416 return -ENOMEM;
1417 } else if ((a = strchr(host, '@'))) {
1418 if (*(a + 1) == '[') {
1419 _cleanup_free_ char *t = NULL;
1420
1421 rbracket = strchr(a + 1, ']');
1422 if (!rbracket)
1423 return -EINVAL;
1424 t = new0(char, strlen(host));
1425 if (!t)
1426 return -ENOMEM;
1427 strncat(t, host, a - host + 1);
1428 strncat(t, a + 2, rbracket - a - 2);
1429 e = bus_address_escape(t);
1430 if (!e)
1431 return -ENOMEM;
1432 } else if (*(a + 1) == '\0' || strchr(a + 1, '@'))
1433 return -EINVAL;
1434 }
1435
1436 /* Let's see if a port was given */
1437 m = strchr(rbracket ? rbracket + 1 : host, ':');
1438 if (m) {
1439 char *t;
1440 bool got_forward_slash = false;
1441
1442 p = m + 1;
1443
1444 t = strchr(p, '/');
1445 if (t) {
1446 p = strndupa(p, t - p);
1447 got_forward_slash = true;
1448 }
1449
1450 if (!in_charset(p, "0123456789") || *p == '\0') {
1451 if (!hostname_is_valid(p, 0) || got_forward_slash)
1452 return -EINVAL;
1453
1454 m = TAKE_PTR(p);
1455 goto interpret_port_as_machine_old_syntax;
1456 }
1457 }
1458
1459 /* Let's see if a machine was given */
1460 m = strchr(rbracket ? rbracket + 1 : host, '/');
1461 if (m) {
1462 m++;
1463 interpret_port_as_machine_old_syntax:
1464 /* Let's make sure this is not a port of some kind,
1465 * and is a valid machine name. */
1466 if (!in_charset(m, "0123456789") && hostname_is_valid(m, 0))
1467 c = strjoina(",argv", p ? "7" : "5", "=--machine=", m);
1468 }
1469
1470 if (!e) {
1471 char *t;
1472
1473 t = strndupa(host, strcspn(host, ":/"));
1474
1475 e = bus_address_escape(t);
1476 if (!e)
1477 return -ENOMEM;
1478 }
1479
1480 a = strjoin("unixexec:path=ssh,argv1=-xT", p ? ",argv2=-p,argv3=" : "", strempty(p),
1481 ",argv", p ? "4" : "2", "=--,argv", p ? "5" : "3", "=", e,
1482 ",argv", p ? "6" : "4", "=systemd-stdio-bridge", c);
1483 if (!a)
1484 return -ENOMEM;
1485
1486 return free_and_replace(b->address, a);
1487 }
1488
1489 _public_ int sd_bus_open_system_remote(sd_bus **ret, const char *host) {
1490 _cleanup_(bus_freep) sd_bus *b = NULL;
1491 int r;
1492
1493 assert_return(host, -EINVAL);
1494 assert_return(ret, -EINVAL);
1495
1496 r = sd_bus_new(&b);
1497 if (r < 0)
1498 return r;
1499
1500 r = bus_set_address_system_remote(b, host);
1501 if (r < 0)
1502 return r;
1503
1504 b->bus_client = true;
1505 b->trusted = false;
1506 b->is_system = true;
1507 b->is_local = false;
1508
1509 r = sd_bus_start(b);
1510 if (r < 0)
1511 return r;
1512
1513 *ret = TAKE_PTR(b);
1514 return 0;
1515 }
1516
1517 int bus_set_address_machine(sd_bus *b, bool user, const char *machine) {
1518 _cleanup_free_ char *a = NULL;
1519 const char *rhs;
1520
1521 assert(b);
1522 assert(machine);
1523
1524 rhs = strchr(machine, '@');
1525 if (rhs || user) {
1526 _cleanup_free_ char *u = NULL, *eu = NULL, *erhs = NULL;
1527
1528 /* If there's an "@" in the container specification, we'll connect as a user specified at its
1529 * left hand side, which is useful in combination with user=true. This isn't as trivial as it
1530 * might sound: it's not sufficient to enter the container and connect to some socket there,
1531 * since the --user socket path depends on $XDG_RUNTIME_DIR which is set via PAM. Thus, to be
1532 * able to connect, we need to have a PAM session. Our way out? We use systemd-run to get
1533 * into the container and acquire a PAM session there, and then invoke systemd-stdio-bridge
1534 * in it, which propagates the bus transport to us.*/
1535
1536 if (rhs) {
1537 if (rhs > machine)
1538 u = strndup(machine, rhs - machine);
1539 else
1540 u = getusername_malloc(); /* Empty user name, let's use the local one */
1541 if (!u)
1542 return -ENOMEM;
1543
1544 eu = bus_address_escape(u);
1545 if (!eu)
1546 return -ENOMEM;
1547
1548 rhs++;
1549 } else {
1550 /* No "@" specified but we shall connect to the user instance? Then assume root (and
1551 * not a user named identically to the calling one). This means:
1552 *
1553 * --machine=foobar --user → connect to user bus of root user in container "foobar"
1554 * --machine=@foobar --user → connect to user bus of user named like the calling user in container "foobar"
1555 *
1556 * Why? so that behaviour for "--machine=foobar --system" is roughly similar to
1557 * "--machine=foobar --user": both times we unconditionally connect as root user
1558 * regardless what the calling user is. */
1559
1560 rhs = machine;
1561 }
1562
1563 if (!isempty(rhs)) {
1564 erhs = bus_address_escape(rhs);
1565 if (!erhs)
1566 return -ENOMEM;
1567 }
1568
1569 /* systemd-run -M… -PGq --wait -pUser=… -pPAMName=login systemd-stdio-bridge */
1570
1571 a = strjoin("unixexec:path=systemd-run,"
1572 "argv1=-M", erhs ?: ".host", ","
1573 "argv2=-PGq,"
1574 "argv3=--wait,"
1575 "argv4=-pUser%3d", eu ?: "root", ",",
1576 "argv5=-pPAMName%3dlogin,"
1577 "argv6=systemd-stdio-bridge");
1578 if (!a)
1579 return -ENOMEM;
1580
1581 if (user) {
1582 char *k;
1583
1584 /* Ideally we'd use the "--user" switch to systemd-stdio-bridge here, but it's only
1585 * available in recent systemd versions. Using the "-p" switch with the explicit path
1586 * is a working alternative, and is compatible with older versions, hence that's what
1587 * we use here. */
1588
1589 k = strjoin(a, ",argv7=-punix:path%3d%24%7bXDG_RUNTIME_DIR%7d/bus");
1590 if (!k)
1591 return -ENOMEM;
1592
1593 free_and_replace(a, k);
1594 }
1595 } else {
1596 _cleanup_free_ char *e = NULL;
1597
1598 /* Just a container name, we can go the simple way, and just join the container, and connect
1599 * to the well-known path of the system bus there. */
1600
1601 e = bus_address_escape(machine);
1602 if (!e)
1603 return -ENOMEM;
1604
1605 a = strjoin("x-machine-unix:machine=", e);
1606 if (!a)
1607 return -ENOMEM;
1608 }
1609
1610 return free_and_replace(b->address, a);
1611 }
1612
1613 static int user_and_machine_valid(const char *user_and_machine) {
1614 const char *h;
1615
1616 /* Checks if a container specification in the form "user@container" or just "container" is valid.
1617 *
1618 * If the "@" syntax is used we'll allow either the "user" or the "container" part to be omitted, but
1619 * not both. */
1620
1621 h = strchr(user_and_machine, '@');
1622 if (!h)
1623 h = user_and_machine;
1624 else {
1625 _cleanup_free_ char *user = NULL;
1626
1627 user = strndup(user_and_machine, h - user_and_machine);
1628 if (!user)
1629 return -ENOMEM;
1630
1631 if (!isempty(user) && !valid_user_group_name(user, VALID_USER_RELAX))
1632 return false;
1633
1634 h++;
1635
1636 if (isempty(h))
1637 return !isempty(user);
1638 }
1639
1640 return hostname_is_valid(h, VALID_HOSTNAME_DOT_HOST);
1641 }
1642
1643 static int user_and_machine_equivalent(const char *user_and_machine) {
1644 _cleanup_free_ char *un = NULL;
1645 const char *f;
1646
1647 /* Returns true if the specified user+machine name are actually equivalent to our own identity and
1648 * our own host. If so we can shortcut things. Why bother? Because that way we don't have to fork
1649 * off short-lived worker processes that are then unavailable for authentication and logging in the
1650 * peer. Moreover joining a namespace requires privileges. If we are in the right namespace anyway,
1651 * we can avoid permission problems thus. */
1652
1653 assert(user_and_machine);
1654
1655 /* Omitting the user name means that we shall use the same user name as we run as locally, which
1656 * means we'll end up on the same host, let's shortcut */
1657 if (streq(user_and_machine, "@.host"))
1658 return true;
1659
1660 /* Otherwise, if we are root, then we can also allow the ".host" syntax, as that's the user this
1661 * would connect to. */
1662 if (geteuid() == 0 && STR_IN_SET(user_and_machine, ".host", "root@.host"))
1663 return true;
1664
1665 /* Otherwise, we have to figure our user name, and compare things with that. */
1666 un = getusername_malloc();
1667 if (!un)
1668 return -ENOMEM;
1669
1670 f = startswith(user_and_machine, un);
1671 if (!f)
1672 return false;
1673
1674 return STR_IN_SET(f, "@", "@.host");
1675 }
1676
1677 _public_ int sd_bus_open_system_machine(sd_bus **ret, const char *user_and_machine) {
1678 _cleanup_(bus_freep) sd_bus *b = NULL;
1679 int r;
1680
1681 assert_return(user_and_machine, -EINVAL);
1682 assert_return(ret, -EINVAL);
1683
1684 if (user_and_machine_equivalent(user_and_machine))
1685 return sd_bus_open_system(ret);
1686
1687 r = user_and_machine_valid(user_and_machine);
1688 if (r < 0)
1689 return r;
1690
1691 assert_return(r > 0, -EINVAL);
1692
1693 r = sd_bus_new(&b);
1694 if (r < 0)
1695 return r;
1696
1697 r = bus_set_address_machine(b, false, user_and_machine);
1698 if (r < 0)
1699 return r;
1700
1701 b->bus_client = true;
1702 b->is_system = true;
1703
1704 r = sd_bus_start(b);
1705 if (r < 0)
1706 return r;
1707
1708 *ret = TAKE_PTR(b);
1709 return 0;
1710 }
1711
1712 _public_ int sd_bus_open_user_machine(sd_bus **ret, const char *user_and_machine) {
1713 _cleanup_(bus_freep) sd_bus *b = NULL;
1714 int r;
1715
1716 assert_return(user_and_machine, -EINVAL);
1717 assert_return(ret, -EINVAL);
1718
1719 /* Shortcut things if we'd end up on this host and as the same user. */
1720 if (user_and_machine_equivalent(user_and_machine))
1721 return sd_bus_open_user(ret);
1722
1723 r = user_and_machine_valid(user_and_machine);
1724 if (r < 0)
1725 return r;
1726
1727 assert_return(r > 0, -EINVAL);
1728
1729 r = sd_bus_new(&b);
1730 if (r < 0)
1731 return r;
1732
1733 r = bus_set_address_machine(b, true, user_and_machine);
1734 if (r < 0)
1735 return r;
1736
1737 b->bus_client = true;
1738 b->trusted = true;
1739
1740 r = sd_bus_start(b);
1741 if (r < 0)
1742 return r;
1743
1744 *ret = TAKE_PTR(b);
1745 return 0;
1746 }
1747
1748 _public_ void sd_bus_close(sd_bus *bus) {
1749 if (!bus)
1750 return;
1751 if (bus->state == BUS_CLOSED)
1752 return;
1753 if (bus_pid_changed(bus))
1754 return;
1755
1756 /* Don't leave ssh hanging around */
1757 bus_kill_exec(bus);
1758
1759 bus_set_state(bus, BUS_CLOSED);
1760
1761 sd_bus_detach_event(bus);
1762
1763 /* Drop all queued messages so that they drop references to
1764 * the bus object and the bus may be freed */
1765 bus_reset_queues(bus);
1766
1767 bus_close_io_fds(bus);
1768 bus_close_inotify_fd(bus);
1769 }
1770
1771 _public_ sd_bus *sd_bus_close_unref(sd_bus *bus) {
1772 if (!bus)
1773 return NULL;
1774
1775 sd_bus_close(bus);
1776
1777 return sd_bus_unref(bus);
1778 }
1779
1780 _public_ sd_bus* sd_bus_flush_close_unref(sd_bus *bus) {
1781 if (!bus)
1782 return NULL;
1783
1784 /* Have to do this before flush() to prevent hang */
1785 bus_kill_exec(bus);
1786 sd_bus_flush(bus);
1787
1788 return sd_bus_close_unref(bus);
1789 }
1790
1791 void bus_enter_closing(sd_bus *bus) {
1792 assert(bus);
1793
1794 if (!IN_SET(bus->state, BUS_WATCH_BIND, BUS_OPENING, BUS_AUTHENTICATING, BUS_HELLO, BUS_RUNNING))
1795 return;
1796
1797 bus_set_state(bus, BUS_CLOSING);
1798 }
1799
1800 DEFINE_PUBLIC_TRIVIAL_REF_UNREF_FUNC(sd_bus, sd_bus, bus_free);
1801
1802 _public_ int sd_bus_is_open(sd_bus *bus) {
1803 assert_return(bus, -EINVAL);
1804 assert_return(bus = bus_resolve(bus), -ENOPKG);
1805 assert_return(!bus_pid_changed(bus), -ECHILD);
1806
1807 return BUS_IS_OPEN(bus->state);
1808 }
1809
1810 _public_ int sd_bus_is_ready(sd_bus *bus) {
1811 assert_return(bus, -EINVAL);
1812 assert_return(bus = bus_resolve(bus), -ENOPKG);
1813 assert_return(!bus_pid_changed(bus), -ECHILD);
1814
1815 return bus->state == BUS_RUNNING;
1816 }
1817
1818 _public_ int sd_bus_can_send(sd_bus *bus, char type) {
1819 int r;
1820
1821 assert_return(bus, -EINVAL);
1822 assert_return(bus = bus_resolve(bus), -ENOPKG);
1823 assert_return(bus->state != BUS_UNSET, -ENOTCONN);
1824 assert_return(!bus_pid_changed(bus), -ECHILD);
1825
1826 if (bus->is_monitor)
1827 return 0;
1828
1829 if (type == SD_BUS_TYPE_UNIX_FD) {
1830 if (!bus->accept_fd)
1831 return 0;
1832
1833 r = bus_ensure_running(bus);
1834 if (r < 0)
1835 return r;
1836
1837 return bus->can_fds;
1838 }
1839
1840 return bus_type_is_valid(type);
1841 }
1842
1843 _public_ int sd_bus_get_bus_id(sd_bus *bus, sd_id128_t *id) {
1844 int r;
1845
1846 assert_return(bus, -EINVAL);
1847 assert_return(bus = bus_resolve(bus), -ENOPKG);
1848 assert_return(id, -EINVAL);
1849 assert_return(!bus_pid_changed(bus), -ECHILD);
1850
1851 r = bus_ensure_running(bus);
1852 if (r < 0)
1853 return r;
1854
1855 *id = bus->server_id;
1856 return 0;
1857 }
1858
1859 #define COOKIE_CYCLED (UINT32_C(1) << 31)
1860
1861 static uint64_t cookie_inc(uint64_t cookie) {
1862
1863 /* Stay within the 32bit range, since classic D-Bus can't deal with more */
1864 if (cookie >= UINT32_MAX)
1865 return COOKIE_CYCLED; /* Don't go back to zero, but use the highest bit for checking
1866 * whether we are looping. */
1867
1868 return cookie + 1;
1869 }
1870
1871 static int next_cookie(sd_bus *b) {
1872 uint64_t new_cookie;
1873
1874 assert(b);
1875
1876 new_cookie = cookie_inc(b->cookie);
1877
1878 /* Small optimization: don't bother with checking for cookie reuse until we overran cookiespace at
1879 * least once, but then do it thorougly. */
1880 if (FLAGS_SET(new_cookie, COOKIE_CYCLED)) {
1881 uint32_t i;
1882
1883 /* Check if the cookie is currently in use. If so, pick the next one */
1884 for (i = 0; i < COOKIE_CYCLED; i++) {
1885 if (!ordered_hashmap_contains(b->reply_callbacks, &new_cookie))
1886 goto good;
1887
1888 new_cookie = cookie_inc(new_cookie);
1889 }
1890
1891 /* Can't fulfill request */
1892 return -EBUSY;
1893 }
1894
1895 good:
1896 b->cookie = new_cookie;
1897 return 0;
1898 }
1899
1900 static int bus_seal_message(sd_bus *b, sd_bus_message *m, usec_t timeout) {
1901 int r;
1902
1903 assert(b);
1904 assert(m);
1905
1906 if (m->sealed) {
1907 /* If we copy the same message to multiple
1908 * destinations, avoid using the same cookie
1909 * numbers. */
1910 b->cookie = MAX(b->cookie, BUS_MESSAGE_COOKIE(m));
1911 return 0;
1912 }
1913
1914 if (timeout == 0) {
1915 r = sd_bus_get_method_call_timeout(b, &timeout);
1916 if (r < 0)
1917 return r;
1918 }
1919
1920 if (!m->sender && b->patch_sender) {
1921 r = sd_bus_message_set_sender(m, b->patch_sender);
1922 if (r < 0)
1923 return r;
1924 }
1925
1926 r = next_cookie(b);
1927 if (r < 0)
1928 return r;
1929
1930 return sd_bus_message_seal(m, b->cookie, timeout);
1931 }
1932
1933 static int bus_remarshal_message(sd_bus *b, sd_bus_message **m) {
1934 bool remarshal = false;
1935
1936 assert(b);
1937
1938 /* wrong packet version */
1939 if (b->message_version != 0 && b->message_version != (*m)->header->version)
1940 remarshal = true;
1941
1942 /* wrong packet endianness */
1943 if (b->message_endian != 0 && b->message_endian != (*m)->header->endian)
1944 remarshal = true;
1945
1946 return remarshal ? bus_message_remarshal(b, m) : 0;
1947 }
1948
1949 int bus_seal_synthetic_message(sd_bus *b, sd_bus_message *m) {
1950 assert(b);
1951 assert(m);
1952
1953 /* Fake some timestamps, if they were requested, and not
1954 * already initialized */
1955 if (b->attach_timestamp) {
1956 if (m->realtime <= 0)
1957 m->realtime = now(CLOCK_REALTIME);
1958
1959 if (m->monotonic <= 0)
1960 m->monotonic = now(CLOCK_MONOTONIC);
1961 }
1962
1963 /* The bus specification says the serial number cannot be 0,
1964 * hence let's fill something in for synthetic messages. Since
1965 * synthetic messages might have a fake sender and we don't
1966 * want to interfere with the real sender's serial numbers we
1967 * pick a fixed, artificial one. We use (uint32_t) -1 rather
1968 * than (uint64_t) -1 since dbus1 only had 32bit identifiers,
1969 * even though kdbus can do 64bit. */
1970 return sd_bus_message_seal(m, 0xFFFFFFFFULL, 0);
1971 }
1972
1973 static int bus_write_message(sd_bus *bus, sd_bus_message *m, size_t *idx) {
1974 int r;
1975
1976 assert(bus);
1977 assert(m);
1978
1979 r = bus_socket_write_message(bus, m, idx);
1980 if (r <= 0)
1981 return r;
1982
1983 if (*idx >= BUS_MESSAGE_SIZE(m))
1984 log_debug("Sent message type=%s sender=%s destination=%s path=%s interface=%s member=%s cookie=%" PRIu64 " reply_cookie=%" PRIu64 " signature=%s error-name=%s error-message=%s",
1985 bus_message_type_to_string(m->header->type),
1986 strna(sd_bus_message_get_sender(m)),
1987 strna(sd_bus_message_get_destination(m)),
1988 strna(sd_bus_message_get_path(m)),
1989 strna(sd_bus_message_get_interface(m)),
1990 strna(sd_bus_message_get_member(m)),
1991 BUS_MESSAGE_COOKIE(m),
1992 m->reply_cookie,
1993 strna(m->root_container.signature),
1994 strna(m->error.name),
1995 strna(m->error.message));
1996
1997 return r;
1998 }
1999
2000 static int dispatch_wqueue(sd_bus *bus) {
2001 int r, ret = 0;
2002
2003 assert(bus);
2004 assert(IN_SET(bus->state, BUS_RUNNING, BUS_HELLO));
2005
2006 while (bus->wqueue_size > 0) {
2007
2008 r = bus_write_message(bus, bus->wqueue[0], &bus->windex);
2009 if (r < 0)
2010 return r;
2011 else if (r == 0)
2012 /* Didn't do anything this time */
2013 return ret;
2014 else if (bus->windex >= BUS_MESSAGE_SIZE(bus->wqueue[0])) {
2015 /* Fully written. Let's drop the entry from
2016 * the queue.
2017 *
2018 * This isn't particularly optimized, but
2019 * well, this is supposed to be our worst-case
2020 * buffer only, and the socket buffer is
2021 * supposed to be our primary buffer, and if
2022 * it got full, then all bets are off
2023 * anyway. */
2024
2025 bus->wqueue_size--;
2026 bus_message_unref_queued(bus->wqueue[0], bus);
2027 memmove(bus->wqueue, bus->wqueue + 1, sizeof(sd_bus_message*) * bus->wqueue_size);
2028 bus->windex = 0;
2029
2030 ret = 1;
2031 }
2032 }
2033
2034 return ret;
2035 }
2036
2037 static int bus_read_message(sd_bus *bus) {
2038 assert(bus);
2039
2040 return bus_socket_read_message(bus);
2041 }
2042
2043 int bus_rqueue_make_room(sd_bus *bus) {
2044 assert(bus);
2045
2046 if (bus->rqueue_size >= BUS_RQUEUE_MAX)
2047 return -ENOBUFS;
2048
2049 if (!GREEDY_REALLOC(bus->rqueue, bus->rqueue_allocated, bus->rqueue_size + 1))
2050 return -ENOMEM;
2051
2052 return 0;
2053 }
2054
2055 static void rqueue_drop_one(sd_bus *bus, size_t i) {
2056 assert(bus);
2057 assert(i < bus->rqueue_size);
2058
2059 bus_message_unref_queued(bus->rqueue[i], bus);
2060 memmove(bus->rqueue + i, bus->rqueue + i + 1, sizeof(sd_bus_message*) * (bus->rqueue_size - i - 1));
2061 bus->rqueue_size--;
2062 }
2063
2064 static int dispatch_rqueue(sd_bus *bus, sd_bus_message **m) {
2065 int r, ret = 0;
2066
2067 assert(bus);
2068 assert(m);
2069 assert(IN_SET(bus->state, BUS_RUNNING, BUS_HELLO));
2070
2071 for (;;) {
2072 if (bus->rqueue_size > 0) {
2073 /* Dispatch a queued message */
2074 *m = sd_bus_message_ref(bus->rqueue[0]);
2075 rqueue_drop_one(bus, 0);
2076 return 1;
2077 }
2078
2079 /* Try to read a new message */
2080 r = bus_read_message(bus);
2081 if (r < 0)
2082 return r;
2083 if (r == 0) {
2084 *m = NULL;
2085 return ret;
2086 }
2087
2088 ret = 1;
2089 }
2090 }
2091
2092 _public_ int sd_bus_send(sd_bus *bus, sd_bus_message *_m, uint64_t *cookie) {
2093 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = sd_bus_message_ref(_m);
2094 int r;
2095
2096 assert_return(m, -EINVAL);
2097
2098 if (bus)
2099 assert_return(bus = bus_resolve(bus), -ENOPKG);
2100 else
2101 assert_return(bus = m->bus, -ENOTCONN);
2102 assert_return(!bus_pid_changed(bus), -ECHILD);
2103
2104 if (!BUS_IS_OPEN(bus->state))
2105 return -ENOTCONN;
2106
2107 if (m->n_fds > 0) {
2108 r = sd_bus_can_send(bus, SD_BUS_TYPE_UNIX_FD);
2109 if (r < 0)
2110 return r;
2111 if (r == 0)
2112 return -EOPNOTSUPP;
2113 }
2114
2115 /* If the cookie number isn't kept, then we know that no reply
2116 * is expected */
2117 if (!cookie && !m->sealed)
2118 m->header->flags |= BUS_MESSAGE_NO_REPLY_EXPECTED;
2119
2120 r = bus_seal_message(bus, m, 0);
2121 if (r < 0)
2122 return r;
2123
2124 /* Remarshall if we have to. This will possibly unref the
2125 * message and place a replacement in m */
2126 r = bus_remarshal_message(bus, &m);
2127 if (r < 0)
2128 return r;
2129
2130 /* If this is a reply and no reply was requested, then let's
2131 * suppress this, if we can */
2132 if (m->dont_send)
2133 goto finish;
2134
2135 if (IN_SET(bus->state, BUS_RUNNING, BUS_HELLO) && bus->wqueue_size <= 0) {
2136 size_t idx = 0;
2137
2138 r = bus_write_message(bus, m, &idx);
2139 if (r < 0) {
2140 if (ERRNO_IS_DISCONNECT(r)) {
2141 bus_enter_closing(bus);
2142 return -ECONNRESET;
2143 }
2144
2145 return r;
2146 }
2147
2148 if (idx < BUS_MESSAGE_SIZE(m)) {
2149 /* Wasn't fully written. So let's remember how
2150 * much was written. Note that the first entry
2151 * of the wqueue array is always allocated so
2152 * that we always can remember how much was
2153 * written. */
2154 bus->wqueue[0] = bus_message_ref_queued(m, bus);
2155 bus->wqueue_size = 1;
2156 bus->windex = idx;
2157 }
2158
2159 } else {
2160 /* Just append it to the queue. */
2161
2162 if (bus->wqueue_size >= BUS_WQUEUE_MAX)
2163 return -ENOBUFS;
2164
2165 if (!GREEDY_REALLOC(bus->wqueue, bus->wqueue_allocated, bus->wqueue_size + 1))
2166 return -ENOMEM;
2167
2168 bus->wqueue[bus->wqueue_size++] = bus_message_ref_queued(m, bus);
2169 }
2170
2171 finish:
2172 if (cookie)
2173 *cookie = BUS_MESSAGE_COOKIE(m);
2174
2175 return 1;
2176 }
2177
2178 _public_ int sd_bus_send_to(sd_bus *bus, sd_bus_message *m, const char *destination, uint64_t *cookie) {
2179 int r;
2180
2181 assert_return(m, -EINVAL);
2182
2183 if (bus)
2184 assert_return(bus = bus_resolve(bus), -ENOPKG);
2185 else
2186 assert_return(bus = m->bus, -ENOTCONN);
2187 assert_return(!bus_pid_changed(bus), -ECHILD);
2188
2189 if (!BUS_IS_OPEN(bus->state))
2190 return -ENOTCONN;
2191
2192 if (!streq_ptr(m->destination, destination)) {
2193
2194 if (!destination)
2195 return -EEXIST;
2196
2197 r = sd_bus_message_set_destination(m, destination);
2198 if (r < 0)
2199 return r;
2200 }
2201
2202 return sd_bus_send(bus, m, cookie);
2203 }
2204
2205 static usec_t calc_elapse(sd_bus *bus, uint64_t usec) {
2206 assert(bus);
2207
2208 if (usec == (uint64_t) -1)
2209 return 0;
2210
2211 /* We start all timeouts the instant we enter BUS_HELLO/BUS_RUNNING state, so that the don't run in parallel
2212 * with any connection setup states. Hence, if a method callback is started earlier than that we just store the
2213 * relative timestamp, and afterwards the absolute one. */
2214
2215 if (IN_SET(bus->state, BUS_WATCH_BIND, BUS_OPENING, BUS_AUTHENTICATING))
2216 return usec;
2217 else
2218 return now(CLOCK_MONOTONIC) + usec;
2219 }
2220
2221 static int timeout_compare(const void *a, const void *b) {
2222 const struct reply_callback *x = a, *y = b;
2223
2224 if (x->timeout_usec != 0 && y->timeout_usec == 0)
2225 return -1;
2226
2227 if (x->timeout_usec == 0 && y->timeout_usec != 0)
2228 return 1;
2229
2230 return CMP(x->timeout_usec, y->timeout_usec);
2231 }
2232
2233 _public_ int sd_bus_call_async(
2234 sd_bus *bus,
2235 sd_bus_slot **slot,
2236 sd_bus_message *_m,
2237 sd_bus_message_handler_t callback,
2238 void *userdata,
2239 uint64_t usec) {
2240
2241 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = sd_bus_message_ref(_m);
2242 _cleanup_(sd_bus_slot_unrefp) sd_bus_slot *s = NULL;
2243 int r;
2244
2245 assert_return(m, -EINVAL);
2246 assert_return(m->header->type == SD_BUS_MESSAGE_METHOD_CALL, -EINVAL);
2247 assert_return(!m->sealed || (!!callback == !(m->header->flags & BUS_MESSAGE_NO_REPLY_EXPECTED)), -EINVAL);
2248
2249 if (bus)
2250 assert_return(bus = bus_resolve(bus), -ENOPKG);
2251 else
2252 assert_return(bus = m->bus, -ENOTCONN);
2253 assert_return(!bus_pid_changed(bus), -ECHILD);
2254
2255 if (!BUS_IS_OPEN(bus->state))
2256 return -ENOTCONN;
2257
2258 /* If no callback is specified and there's no interest in a slot, then there's no reason to ask for a reply */
2259 if (!callback && !slot && !m->sealed)
2260 m->header->flags |= BUS_MESSAGE_NO_REPLY_EXPECTED;
2261
2262 r = ordered_hashmap_ensure_allocated(&bus->reply_callbacks, &uint64_hash_ops);
2263 if (r < 0)
2264 return r;
2265
2266 r = prioq_ensure_allocated(&bus->reply_callbacks_prioq, timeout_compare);
2267 if (r < 0)
2268 return r;
2269
2270 r = bus_seal_message(bus, m, usec);
2271 if (r < 0)
2272 return r;
2273
2274 r = bus_remarshal_message(bus, &m);
2275 if (r < 0)
2276 return r;
2277
2278 if (slot || callback) {
2279 s = bus_slot_allocate(bus, !slot, BUS_REPLY_CALLBACK, sizeof(struct reply_callback), userdata);
2280 if (!s)
2281 return -ENOMEM;
2282
2283 s->reply_callback.callback = callback;
2284
2285 s->reply_callback.cookie = BUS_MESSAGE_COOKIE(m);
2286 r = ordered_hashmap_put(bus->reply_callbacks, &s->reply_callback.cookie, &s->reply_callback);
2287 if (r < 0) {
2288 s->reply_callback.cookie = 0;
2289 return r;
2290 }
2291
2292 s->reply_callback.timeout_usec = calc_elapse(bus, m->timeout);
2293 if (s->reply_callback.timeout_usec != 0) {
2294 r = prioq_put(bus->reply_callbacks_prioq, &s->reply_callback, &s->reply_callback.prioq_idx);
2295 if (r < 0) {
2296 s->reply_callback.timeout_usec = 0;
2297 return r;
2298 }
2299 }
2300 }
2301
2302 r = sd_bus_send(bus, m, s ? &s->reply_callback.cookie : NULL);
2303 if (r < 0)
2304 return r;
2305
2306 if (slot)
2307 *slot = s;
2308 s = NULL;
2309
2310 return r;
2311 }
2312
2313 int bus_ensure_running(sd_bus *bus) {
2314 int r;
2315
2316 assert(bus);
2317
2318 if (bus->state == BUS_RUNNING)
2319 return 1;
2320
2321 for (;;) {
2322 if (IN_SET(bus->state, BUS_UNSET, BUS_CLOSED, BUS_CLOSING))
2323 return -ENOTCONN;
2324
2325 r = sd_bus_process(bus, NULL);
2326 if (r < 0)
2327 return r;
2328 if (bus->state == BUS_RUNNING)
2329 return 1;
2330 if (r > 0)
2331 continue;
2332
2333 r = sd_bus_wait(bus, (uint64_t) -1);
2334 if (r < 0)
2335 return r;
2336 }
2337 }
2338
2339 _public_ int sd_bus_call(
2340 sd_bus *bus,
2341 sd_bus_message *_m,
2342 uint64_t usec,
2343 sd_bus_error *error,
2344 sd_bus_message **reply) {
2345
2346 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = sd_bus_message_ref(_m);
2347 usec_t timeout;
2348 uint64_t cookie;
2349 size_t i;
2350 int r;
2351
2352 bus_assert_return(m, -EINVAL, error);
2353 bus_assert_return(m->header->type == SD_BUS_MESSAGE_METHOD_CALL, -EINVAL, error);
2354 bus_assert_return(!(m->header->flags & BUS_MESSAGE_NO_REPLY_EXPECTED), -EINVAL, error);
2355 bus_assert_return(!bus_error_is_dirty(error), -EINVAL, error);
2356
2357 if (bus)
2358 assert_return(bus = bus_resolve(bus), -ENOPKG);
2359 else
2360 assert_return(bus = m->bus, -ENOTCONN);
2361 bus_assert_return(!bus_pid_changed(bus), -ECHILD, error);
2362
2363 if (!BUS_IS_OPEN(bus->state)) {
2364 r = -ENOTCONN;
2365 goto fail;
2366 }
2367
2368 r = bus_ensure_running(bus);
2369 if (r < 0)
2370 goto fail;
2371
2372 i = bus->rqueue_size;
2373
2374 r = bus_seal_message(bus, m, usec);
2375 if (r < 0)
2376 goto fail;
2377
2378 r = bus_remarshal_message(bus, &m);
2379 if (r < 0)
2380 goto fail;
2381
2382 r = sd_bus_send(bus, m, &cookie);
2383 if (r < 0)
2384 goto fail;
2385
2386 timeout = calc_elapse(bus, m->timeout);
2387
2388 for (;;) {
2389 usec_t left;
2390
2391 while (i < bus->rqueue_size) {
2392 _cleanup_(sd_bus_message_unrefp) sd_bus_message *incoming = NULL;
2393
2394 incoming = sd_bus_message_ref(bus->rqueue[i]);
2395
2396 if (incoming->reply_cookie == cookie) {
2397 /* Found a match! */
2398
2399 rqueue_drop_one(bus, i);
2400 log_debug_bus_message(incoming);
2401
2402 if (incoming->header->type == SD_BUS_MESSAGE_METHOD_RETURN) {
2403
2404 if (incoming->n_fds <= 0 || bus->accept_fd) {
2405 if (reply)
2406 *reply = TAKE_PTR(incoming);
2407
2408 return 1;
2409 }
2410
2411 return sd_bus_error_setf(error, SD_BUS_ERROR_INCONSISTENT_MESSAGE, "Reply message contained file descriptors which I couldn't accept. Sorry.");
2412
2413 } else if (incoming->header->type == SD_BUS_MESSAGE_METHOD_ERROR)
2414 return sd_bus_error_copy(error, &incoming->error);
2415 else {
2416 r = -EIO;
2417 goto fail;
2418 }
2419
2420 } else if (BUS_MESSAGE_COOKIE(incoming) == cookie &&
2421 bus->unique_name &&
2422 incoming->sender &&
2423 streq(bus->unique_name, incoming->sender)) {
2424
2425 rqueue_drop_one(bus, i);
2426
2427 /* Our own message? Somebody is trying to send its own client a message,
2428 * let's not dead-lock, let's fail immediately. */
2429
2430 r = -ELOOP;
2431 goto fail;
2432 }
2433
2434 /* Try to read more, right-away */
2435 i++;
2436 }
2437
2438 r = bus_read_message(bus);
2439 if (r < 0) {
2440 if (ERRNO_IS_DISCONNECT(r)) {
2441 bus_enter_closing(bus);
2442 r = -ECONNRESET;
2443 }
2444
2445 goto fail;
2446 }
2447 if (r > 0)
2448 continue;
2449
2450 if (timeout > 0) {
2451 usec_t n;
2452
2453 n = now(CLOCK_MONOTONIC);
2454 if (n >= timeout) {
2455 r = -ETIMEDOUT;
2456 goto fail;
2457 }
2458
2459 left = timeout - n;
2460 } else
2461 left = (uint64_t) -1;
2462
2463 r = bus_poll(bus, true, left);
2464 if (r < 0)
2465 goto fail;
2466 if (r == 0) {
2467 r = -ETIMEDOUT;
2468 goto fail;
2469 }
2470
2471 r = dispatch_wqueue(bus);
2472 if (r < 0) {
2473 if (ERRNO_IS_DISCONNECT(r)) {
2474 bus_enter_closing(bus);
2475 r = -ECONNRESET;
2476 }
2477
2478 goto fail;
2479 }
2480 }
2481
2482 fail:
2483 return sd_bus_error_set_errno(error, r);
2484 }
2485
2486 _public_ int sd_bus_get_fd(sd_bus *bus) {
2487 assert_return(bus, -EINVAL);
2488 assert_return(bus = bus_resolve(bus), -ENOPKG);
2489 assert_return(bus->input_fd == bus->output_fd, -EPERM);
2490 assert_return(!bus_pid_changed(bus), -ECHILD);
2491
2492 if (bus->state == BUS_CLOSED)
2493 return -ENOTCONN;
2494
2495 if (bus->inotify_fd >= 0)
2496 return bus->inotify_fd;
2497
2498 if (bus->input_fd >= 0)
2499 return bus->input_fd;
2500
2501 return -ENOTCONN;
2502 }
2503
2504 _public_ int sd_bus_get_events(sd_bus *bus) {
2505 int flags = 0;
2506
2507 assert_return(bus, -EINVAL);
2508 assert_return(bus = bus_resolve(bus), -ENOPKG);
2509 assert_return(!bus_pid_changed(bus), -ECHILD);
2510
2511 switch (bus->state) {
2512
2513 case BUS_UNSET:
2514 case BUS_CLOSED:
2515 return -ENOTCONN;
2516
2517 case BUS_WATCH_BIND:
2518 flags |= POLLIN;
2519 break;
2520
2521 case BUS_OPENING:
2522 flags |= POLLOUT;
2523 break;
2524
2525 case BUS_AUTHENTICATING:
2526 if (bus_socket_auth_needs_write(bus))
2527 flags |= POLLOUT;
2528
2529 flags |= POLLIN;
2530 break;
2531
2532 case BUS_RUNNING:
2533 case BUS_HELLO:
2534 if (bus->rqueue_size <= 0)
2535 flags |= POLLIN;
2536 if (bus->wqueue_size > 0)
2537 flags |= POLLOUT;
2538 break;
2539
2540 case BUS_CLOSING:
2541 break;
2542
2543 default:
2544 assert_not_reached("Unknown state");
2545 }
2546
2547 return flags;
2548 }
2549
2550 _public_ int sd_bus_get_timeout(sd_bus *bus, uint64_t *timeout_usec) {
2551 struct reply_callback *c;
2552
2553 assert_return(bus, -EINVAL);
2554 assert_return(bus = bus_resolve(bus), -ENOPKG);
2555 assert_return(timeout_usec, -EINVAL);
2556 assert_return(!bus_pid_changed(bus), -ECHILD);
2557
2558 if (!BUS_IS_OPEN(bus->state) && bus->state != BUS_CLOSING)
2559 return -ENOTCONN;
2560
2561 if (bus->track_queue) {
2562 *timeout_usec = 0;
2563 return 1;
2564 }
2565
2566 switch (bus->state) {
2567
2568 case BUS_AUTHENTICATING:
2569 *timeout_usec = bus->auth_timeout;
2570 return 1;
2571
2572 case BUS_RUNNING:
2573 case BUS_HELLO:
2574 if (bus->rqueue_size > 0) {
2575 *timeout_usec = 0;
2576 return 1;
2577 }
2578
2579 c = prioq_peek(bus->reply_callbacks_prioq);
2580 if (!c) {
2581 *timeout_usec = (uint64_t) -1;
2582 return 0;
2583 }
2584
2585 if (c->timeout_usec == 0) {
2586 *timeout_usec = (uint64_t) -1;
2587 return 0;
2588 }
2589
2590 *timeout_usec = c->timeout_usec;
2591 return 1;
2592
2593 case BUS_CLOSING:
2594 *timeout_usec = 0;
2595 return 1;
2596
2597 case BUS_WATCH_BIND:
2598 case BUS_OPENING:
2599 *timeout_usec = (uint64_t) -1;
2600 return 0;
2601
2602 default:
2603 assert_not_reached("Unknown or unexpected stat");
2604 }
2605 }
2606
2607 int sd_bus_reply(const sd_bus_message *call, sd_bus_message *reply) {
2608 assert_return(call, -EINVAL);
2609 assert_return(call->sealed, -EPERM);
2610 assert_return(call->header->type == SD_BUS_MESSAGE_METHOD_CALL, -EINVAL);
2611 assert_return(call->bus, -EINVAL);
2612 assert_return(!bus_pid_changed(call->bus), -ECHILD);
2613 assert_return(reply, -EINVAL);
2614 assert_return(
2615 IN_SET(reply->header->type, SD_BUS_MESSAGE_METHOD_RETURN, SD_BUS_MESSAGE_METHOD_ERROR),
2616 -EINVAL);
2617
2618 return sd_bus_send(call->bus, reply, NULL);
2619 }
2620
2621 static int process_timeout(sd_bus *bus) {
2622 _cleanup_(sd_bus_error_free) sd_bus_error error_buffer = SD_BUS_ERROR_NULL;
2623 _cleanup_(sd_bus_message_unrefp) sd_bus_message* m = NULL;
2624 struct reply_callback *c;
2625 sd_bus_slot *slot;
2626 bool is_hello;
2627 usec_t n;
2628 int r;
2629
2630 assert(bus);
2631 assert(IN_SET(bus->state, BUS_RUNNING, BUS_HELLO));
2632
2633 c = prioq_peek(bus->reply_callbacks_prioq);
2634 if (!c)
2635 return 0;
2636
2637 n = now(CLOCK_MONOTONIC);
2638 if (c->timeout_usec > n)
2639 return 0;
2640
2641 r = bus_message_new_synthetic_error(
2642 bus,
2643 c->cookie,
2644 &SD_BUS_ERROR_MAKE_CONST(SD_BUS_ERROR_NO_REPLY, "Method call timed out"),
2645 &m);
2646 if (r < 0)
2647 return r;
2648
2649 m->read_counter = ++bus->read_counter;
2650
2651 r = bus_seal_synthetic_message(bus, m);
2652 if (r < 0)
2653 return r;
2654
2655 assert_se(prioq_pop(bus->reply_callbacks_prioq) == c);
2656 c->timeout_usec = 0;
2657
2658 ordered_hashmap_remove(bus->reply_callbacks, &c->cookie);
2659 c->cookie = 0;
2660
2661 slot = container_of(c, sd_bus_slot, reply_callback);
2662
2663 bus->iteration_counter++;
2664
2665 is_hello = bus->state == BUS_HELLO && c->callback == hello_callback;
2666
2667 bus->current_message = m;
2668 bus->current_slot = sd_bus_slot_ref(slot);
2669 bus->current_handler = c->callback;
2670 bus->current_userdata = slot->userdata;
2671 r = c->callback(m, slot->userdata, &error_buffer);
2672 bus->current_userdata = NULL;
2673 bus->current_handler = NULL;
2674 bus->current_slot = NULL;
2675 bus->current_message = NULL;
2676
2677 if (slot->floating)
2678 bus_slot_disconnect(slot, true);
2679
2680 sd_bus_slot_unref(slot);
2681
2682 /* When this is the hello message and it timed out, then make sure to propagate the error up, don't just log
2683 * and ignore the callback handler's return value. */
2684 if (is_hello)
2685 return r;
2686
2687 return bus_maybe_reply_error(m, r, &error_buffer);
2688 }
2689
2690 static int process_hello(sd_bus *bus, sd_bus_message *m) {
2691 assert(bus);
2692 assert(m);
2693
2694 if (bus->state != BUS_HELLO)
2695 return 0;
2696
2697 /* Let's make sure the first message on the bus is the HELLO
2698 * reply. But note that we don't actually parse the message
2699 * here (we leave that to the usual handling), we just verify
2700 * we don't let any earlier msg through. */
2701
2702 if (!IN_SET(m->header->type, SD_BUS_MESSAGE_METHOD_RETURN, SD_BUS_MESSAGE_METHOD_ERROR))
2703 return -EIO;
2704
2705 if (m->reply_cookie != 1)
2706 return -EIO;
2707
2708 return 0;
2709 }
2710
2711 static int process_reply(sd_bus *bus, sd_bus_message *m) {
2712 _cleanup_(sd_bus_message_unrefp) sd_bus_message *synthetic_reply = NULL;
2713 _cleanup_(sd_bus_error_free) sd_bus_error error_buffer = SD_BUS_ERROR_NULL;
2714 struct reply_callback *c;
2715 sd_bus_slot *slot;
2716 bool is_hello;
2717 int r;
2718
2719 assert(bus);
2720 assert(m);
2721
2722 if (!IN_SET(m->header->type, SD_BUS_MESSAGE_METHOD_RETURN, SD_BUS_MESSAGE_METHOD_ERROR))
2723 return 0;
2724
2725 if (m->destination && bus->unique_name && !streq_ptr(m->destination, bus->unique_name))
2726 return 0;
2727
2728 c = ordered_hashmap_remove(bus->reply_callbacks, &m->reply_cookie);
2729 if (!c)
2730 return 0;
2731
2732 c->cookie = 0;
2733
2734 slot = container_of(c, sd_bus_slot, reply_callback);
2735
2736 if (m->n_fds > 0 && !bus->accept_fd) {
2737
2738 /* If the reply contained a file descriptor which we
2739 * didn't want we pass an error instead. */
2740
2741 r = bus_message_new_synthetic_error(
2742 bus,
2743 m->reply_cookie,
2744 &SD_BUS_ERROR_MAKE_CONST(SD_BUS_ERROR_INCONSISTENT_MESSAGE, "Reply message contained file descriptor"),
2745 &synthetic_reply);
2746 if (r < 0)
2747 return r;
2748
2749 /* Copy over original timestamp */
2750 synthetic_reply->realtime = m->realtime;
2751 synthetic_reply->monotonic = m->monotonic;
2752 synthetic_reply->seqnum = m->seqnum;
2753 synthetic_reply->read_counter = m->read_counter;
2754
2755 r = bus_seal_synthetic_message(bus, synthetic_reply);
2756 if (r < 0)
2757 return r;
2758
2759 m = synthetic_reply;
2760 } else {
2761 r = sd_bus_message_rewind(m, true);
2762 if (r < 0)
2763 return r;
2764 }
2765
2766 if (c->timeout_usec != 0) {
2767 prioq_remove(bus->reply_callbacks_prioq, c, &c->prioq_idx);
2768 c->timeout_usec = 0;
2769 }
2770
2771 is_hello = bus->state == BUS_HELLO && c->callback == hello_callback;
2772
2773 bus->current_slot = sd_bus_slot_ref(slot);
2774 bus->current_handler = c->callback;
2775 bus->current_userdata = slot->userdata;
2776 r = c->callback(m, slot->userdata, &error_buffer);
2777 bus->current_userdata = NULL;
2778 bus->current_handler = NULL;
2779 bus->current_slot = NULL;
2780
2781 if (slot->floating)
2782 bus_slot_disconnect(slot, true);
2783
2784 sd_bus_slot_unref(slot);
2785
2786 /* When this is the hello message and it failed, then make sure to propagate the error up, don't just log and
2787 * ignore the callback handler's return value. */
2788 if (is_hello)
2789 return r;
2790
2791 return bus_maybe_reply_error(m, r, &error_buffer);
2792 }
2793
2794 static int process_filter(sd_bus *bus, sd_bus_message *m) {
2795 _cleanup_(sd_bus_error_free) sd_bus_error error_buffer = SD_BUS_ERROR_NULL;
2796 struct filter_callback *l;
2797 int r;
2798
2799 assert(bus);
2800 assert(m);
2801
2802 do {
2803 bus->filter_callbacks_modified = false;
2804
2805 LIST_FOREACH(callbacks, l, bus->filter_callbacks) {
2806 sd_bus_slot *slot;
2807
2808 if (bus->filter_callbacks_modified)
2809 break;
2810
2811 /* Don't run this more than once per iteration */
2812 if (l->last_iteration == bus->iteration_counter)
2813 continue;
2814
2815 l->last_iteration = bus->iteration_counter;
2816
2817 r = sd_bus_message_rewind(m, true);
2818 if (r < 0)
2819 return r;
2820
2821 slot = container_of(l, sd_bus_slot, filter_callback);
2822
2823 bus->current_slot = sd_bus_slot_ref(slot);
2824 bus->current_handler = l->callback;
2825 bus->current_userdata = slot->userdata;
2826 r = l->callback(m, slot->userdata, &error_buffer);
2827 bus->current_userdata = NULL;
2828 bus->current_handler = NULL;
2829 bus->current_slot = sd_bus_slot_unref(slot);
2830
2831 r = bus_maybe_reply_error(m, r, &error_buffer);
2832 if (r != 0)
2833 return r;
2834
2835 }
2836
2837 } while (bus->filter_callbacks_modified);
2838
2839 return 0;
2840 }
2841
2842 static int process_match(sd_bus *bus, sd_bus_message *m) {
2843 int r;
2844
2845 assert(bus);
2846 assert(m);
2847
2848 do {
2849 bus->match_callbacks_modified = false;
2850
2851 r = bus_match_run(bus, &bus->match_callbacks, m);
2852 if (r != 0)
2853 return r;
2854
2855 } while (bus->match_callbacks_modified);
2856
2857 return 0;
2858 }
2859
2860 static int process_builtin(sd_bus *bus, sd_bus_message *m) {
2861 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
2862 int r;
2863
2864 assert(bus);
2865 assert(m);
2866
2867 if (bus->is_monitor)
2868 return 0;
2869
2870 if (bus->manual_peer_interface)
2871 return 0;
2872
2873 if (m->header->type != SD_BUS_MESSAGE_METHOD_CALL)
2874 return 0;
2875
2876 if (!streq_ptr(m->interface, "org.freedesktop.DBus.Peer"))
2877 return 0;
2878
2879 if (m->header->flags & BUS_MESSAGE_NO_REPLY_EXPECTED)
2880 return 1;
2881
2882 if (streq_ptr(m->member, "Ping"))
2883 r = sd_bus_message_new_method_return(m, &reply);
2884 else if (streq_ptr(m->member, "GetMachineId")) {
2885 sd_id128_t id;
2886 char sid[SD_ID128_STRING_MAX];
2887
2888 r = sd_id128_get_machine(&id);
2889 if (r < 0)
2890 return r;
2891
2892 r = sd_bus_message_new_method_return(m, &reply);
2893 if (r < 0)
2894 return r;
2895
2896 r = sd_bus_message_append(reply, "s", sd_id128_to_string(id, sid));
2897 } else {
2898 r = sd_bus_message_new_method_errorf(
2899 m, &reply,
2900 SD_BUS_ERROR_UNKNOWN_METHOD,
2901 "Unknown method '%s' on interface '%s'.", m->member, m->interface);
2902 }
2903 if (r < 0)
2904 return r;
2905
2906 r = sd_bus_send(bus, reply, NULL);
2907 if (r < 0)
2908 return r;
2909
2910 return 1;
2911 }
2912
2913 static int process_fd_check(sd_bus *bus, sd_bus_message *m) {
2914 assert(bus);
2915 assert(m);
2916
2917 /* If we got a message with a file descriptor which we didn't
2918 * want to accept, then let's drop it. How can this even
2919 * happen? For example, when the kernel queues a message into
2920 * an activatable names's queue which allows fds, and then is
2921 * delivered to us later even though we ourselves did not
2922 * negotiate it. */
2923
2924 if (bus->is_monitor)
2925 return 0;
2926
2927 if (m->n_fds <= 0)
2928 return 0;
2929
2930 if (bus->accept_fd)
2931 return 0;
2932
2933 if (m->header->type != SD_BUS_MESSAGE_METHOD_CALL)
2934 return 1; /* just eat it up */
2935
2936 return sd_bus_reply_method_errorf(m, SD_BUS_ERROR_INCONSISTENT_MESSAGE, "Message contains file descriptors, which I cannot accept. Sorry.");
2937 }
2938
2939 static int process_message(sd_bus *bus, sd_bus_message *m) {
2940 int r;
2941
2942 assert(bus);
2943 assert(m);
2944
2945 bus->current_message = m;
2946 bus->iteration_counter++;
2947
2948 log_debug_bus_message(m);
2949
2950 r = process_hello(bus, m);
2951 if (r != 0)
2952 goto finish;
2953
2954 r = process_reply(bus, m);
2955 if (r != 0)
2956 goto finish;
2957
2958 r = process_fd_check(bus, m);
2959 if (r != 0)
2960 goto finish;
2961
2962 r = process_filter(bus, m);
2963 if (r != 0)
2964 goto finish;
2965
2966 r = process_match(bus, m);
2967 if (r != 0)
2968 goto finish;
2969
2970 r = process_builtin(bus, m);
2971 if (r != 0)
2972 goto finish;
2973
2974 r = bus_process_object(bus, m);
2975
2976 finish:
2977 bus->current_message = NULL;
2978 return r;
2979 }
2980
2981 static int dispatch_track(sd_bus *bus) {
2982 assert(bus);
2983
2984 if (!bus->track_queue)
2985 return 0;
2986
2987 bus_track_dispatch(bus->track_queue);
2988 return 1;
2989 }
2990
2991 static int process_running(sd_bus *bus, sd_bus_message **ret) {
2992 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
2993 int r;
2994
2995 assert(bus);
2996 assert(IN_SET(bus->state, BUS_RUNNING, BUS_HELLO));
2997
2998 r = process_timeout(bus);
2999 if (r != 0)
3000 goto null_message;
3001
3002 r = dispatch_wqueue(bus);
3003 if (r != 0)
3004 goto null_message;
3005
3006 r = dispatch_track(bus);
3007 if (r != 0)
3008 goto null_message;
3009
3010 r = dispatch_rqueue(bus, &m);
3011 if (r < 0)
3012 return r;
3013 if (!m)
3014 goto null_message;
3015
3016 r = process_message(bus, m);
3017 if (r != 0)
3018 goto null_message;
3019
3020 if (ret) {
3021 r = sd_bus_message_rewind(m, true);
3022 if (r < 0)
3023 return r;
3024
3025 *ret = TAKE_PTR(m);
3026 return 1;
3027 }
3028
3029 if (m->header->type == SD_BUS_MESSAGE_METHOD_CALL) {
3030
3031 log_debug("Unprocessed message call sender=%s object=%s interface=%s member=%s",
3032 strna(sd_bus_message_get_sender(m)),
3033 strna(sd_bus_message_get_path(m)),
3034 strna(sd_bus_message_get_interface(m)),
3035 strna(sd_bus_message_get_member(m)));
3036
3037 r = sd_bus_reply_method_errorf(
3038 m,
3039 SD_BUS_ERROR_UNKNOWN_OBJECT,
3040 "Unknown object '%s'.", m->path);
3041 if (r < 0)
3042 return r;
3043 }
3044
3045 return 1;
3046
3047 null_message:
3048 if (r >= 0 && ret)
3049 *ret = NULL;
3050
3051 return r;
3052 }
3053
3054 static int bus_exit_now(sd_bus *bus) {
3055 assert(bus);
3056
3057 /* Exit due to close, if this is requested. If this is bus object is attached to an event source, invokes
3058 * sd_event_exit(), otherwise invokes libc exit(). */
3059
3060 if (bus->exited) /* did we already exit? */
3061 return 0;
3062 if (!bus->exit_triggered) /* was the exit condition triggered? */
3063 return 0;
3064 if (!bus->exit_on_disconnect) /* Shall we actually exit on disconnection? */
3065 return 0;
3066
3067 bus->exited = true; /* never exit more than once */
3068
3069 log_debug("Bus connection disconnected, exiting.");
3070
3071 if (bus->event)
3072 return sd_event_exit(bus->event, EXIT_FAILURE);
3073 else
3074 exit(EXIT_FAILURE);
3075
3076 assert_not_reached("exit() didn't exit?");
3077 }
3078
3079 static int process_closing_reply_callback(sd_bus *bus, struct reply_callback *c) {
3080 _cleanup_(sd_bus_error_free) sd_bus_error error_buffer = SD_BUS_ERROR_NULL;
3081 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
3082 sd_bus_slot *slot;
3083 int r;
3084
3085 assert(bus);
3086 assert(c);
3087
3088 r = bus_message_new_synthetic_error(
3089 bus,
3090 c->cookie,
3091 &SD_BUS_ERROR_MAKE_CONST(SD_BUS_ERROR_NO_REPLY, "Connection terminated"),
3092 &m);
3093 if (r < 0)
3094 return r;
3095
3096 m->read_counter = ++bus->read_counter;
3097
3098 r = bus_seal_synthetic_message(bus, m);
3099 if (r < 0)
3100 return r;
3101
3102 if (c->timeout_usec != 0) {
3103 prioq_remove(bus->reply_callbacks_prioq, c, &c->prioq_idx);
3104 c->timeout_usec = 0;
3105 }
3106
3107 ordered_hashmap_remove(bus->reply_callbacks, &c->cookie);
3108 c->cookie = 0;
3109
3110 slot = container_of(c, sd_bus_slot, reply_callback);
3111
3112 bus->iteration_counter++;
3113
3114 bus->current_message = m;
3115 bus->current_slot = sd_bus_slot_ref(slot);
3116 bus->current_handler = c->callback;
3117 bus->current_userdata = slot->userdata;
3118 r = c->callback(m, slot->userdata, &error_buffer);
3119 bus->current_userdata = NULL;
3120 bus->current_handler = NULL;
3121 bus->current_slot = NULL;
3122 bus->current_message = NULL;
3123
3124 if (slot->floating)
3125 bus_slot_disconnect(slot, true);
3126
3127 sd_bus_slot_unref(slot);
3128
3129 return bus_maybe_reply_error(m, r, &error_buffer);
3130 }
3131
3132 static int process_closing(sd_bus *bus, sd_bus_message **ret) {
3133 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
3134 struct reply_callback *c;
3135 int r;
3136
3137 assert(bus);
3138 assert(bus->state == BUS_CLOSING);
3139
3140 /* First, fail all outstanding method calls */
3141 c = ordered_hashmap_first(bus->reply_callbacks);
3142 if (c)
3143 return process_closing_reply_callback(bus, c);
3144
3145 /* Then, fake-drop all remaining bus tracking references */
3146 if (bus->tracks) {
3147 bus_track_close(bus->tracks);
3148 return 1;
3149 }
3150
3151 /* Then, synthesize a Disconnected message */
3152 r = sd_bus_message_new_signal(
3153 bus,
3154 &m,
3155 "/org/freedesktop/DBus/Local",
3156 "org.freedesktop.DBus.Local",
3157 "Disconnected");
3158 if (r < 0)
3159 return r;
3160
3161 bus_message_set_sender_local(bus, m);
3162 m->read_counter = ++bus->read_counter;
3163
3164 r = bus_seal_synthetic_message(bus, m);
3165 if (r < 0)
3166 return r;
3167
3168 sd_bus_close(bus);
3169
3170 bus->current_message = m;
3171 bus->iteration_counter++;
3172
3173 r = process_filter(bus, m);
3174 if (r != 0)
3175 goto finish;
3176
3177 r = process_match(bus, m);
3178 if (r != 0)
3179 goto finish;
3180
3181 /* Nothing else to do, exit now, if the condition holds */
3182 bus->exit_triggered = true;
3183 (void) bus_exit_now(bus);
3184
3185 if (ret)
3186 *ret = TAKE_PTR(m);
3187
3188 r = 1;
3189
3190 finish:
3191 bus->current_message = NULL;
3192
3193 return r;
3194 }
3195
3196 static int bus_process_internal(sd_bus *bus, sd_bus_message **ret) {
3197 int r;
3198
3199 /* Returns 0 when we didn't do anything. This should cause the
3200 * caller to invoke sd_bus_wait() before returning the next
3201 * time. Returns > 0 when we did something, which possibly
3202 * means *ret is filled in with an unprocessed message. */
3203
3204 assert_return(bus, -EINVAL);
3205 assert_return(bus = bus_resolve(bus), -ENOPKG);
3206 assert_return(!bus_pid_changed(bus), -ECHILD);
3207
3208 /* We don't allow recursively invoking sd_bus_process(). */
3209 assert_return(!bus->current_message, -EBUSY);
3210 assert(!bus->current_slot); /* This should be NULL whenever bus->current_message is */
3211
3212 BUS_DONT_DESTROY(bus);
3213
3214 switch (bus->state) {
3215
3216 case BUS_UNSET:
3217 return -ENOTCONN;
3218
3219 case BUS_CLOSED:
3220 return -ECONNRESET;
3221
3222 case BUS_WATCH_BIND:
3223 r = bus_socket_process_watch_bind(bus);
3224 break;
3225
3226 case BUS_OPENING:
3227 r = bus_socket_process_opening(bus);
3228 break;
3229
3230 case BUS_AUTHENTICATING:
3231 r = bus_socket_process_authenticating(bus);
3232 break;
3233
3234 case BUS_RUNNING:
3235 case BUS_HELLO:
3236 r = process_running(bus, ret);
3237 if (r >= 0)
3238 return r;
3239
3240 /* This branch initializes *ret, hence we don't use the generic error checking below */
3241 break;
3242
3243 case BUS_CLOSING:
3244 return process_closing(bus, ret);
3245
3246 default:
3247 assert_not_reached("Unknown state");
3248 }
3249
3250 if (ERRNO_IS_DISCONNECT(r)) {
3251 bus_enter_closing(bus);
3252 r = 1;
3253 } else if (r < 0)
3254 return r;
3255
3256 if (ret)
3257 *ret = NULL;
3258
3259 return r;
3260 }
3261
3262 _public_ int sd_bus_process(sd_bus *bus, sd_bus_message **ret) {
3263 return bus_process_internal(bus, ret);
3264 }
3265
3266 _public_ int sd_bus_process_priority(sd_bus *bus, int64_t priority, sd_bus_message **ret) {
3267 return bus_process_internal(bus, ret);
3268 }
3269
3270 static int bus_poll(sd_bus *bus, bool need_more, uint64_t timeout_usec) {
3271 struct pollfd p[2] = {};
3272 int r, n;
3273 struct timespec ts;
3274 usec_t m = USEC_INFINITY;
3275
3276 assert(bus);
3277
3278 if (bus->state == BUS_CLOSING)
3279 return 1;
3280
3281 if (!BUS_IS_OPEN(bus->state))
3282 return -ENOTCONN;
3283
3284 if (bus->state == BUS_WATCH_BIND) {
3285 assert(bus->inotify_fd >= 0);
3286
3287 p[0].events = POLLIN;
3288 p[0].fd = bus->inotify_fd;
3289 n = 1;
3290 } else {
3291 int e;
3292
3293 e = sd_bus_get_events(bus);
3294 if (e < 0)
3295 return e;
3296
3297 if (need_more)
3298 /* The caller really needs some more data, he doesn't
3299 * care about what's already read, or any timeouts
3300 * except its own. */
3301 e |= POLLIN;
3302 else {
3303 usec_t until;
3304 /* The caller wants to process if there's something to
3305 * process, but doesn't care otherwise */
3306
3307 r = sd_bus_get_timeout(bus, &until);
3308 if (r < 0)
3309 return r;
3310 if (r > 0)
3311 m = usec_sub_unsigned(until, now(CLOCK_MONOTONIC));
3312 }
3313
3314 p[0].fd = bus->input_fd;
3315 if (bus->output_fd == bus->input_fd) {
3316 p[0].events = e;
3317 n = 1;
3318 } else {
3319 p[0].events = e & POLLIN;
3320 p[1].fd = bus->output_fd;
3321 p[1].events = e & POLLOUT;
3322 n = 2;
3323 }
3324 }
3325
3326 if (timeout_usec != (uint64_t) -1 && (m == USEC_INFINITY || timeout_usec < m))
3327 m = timeout_usec;
3328
3329 r = ppoll(p, n, m == USEC_INFINITY ? NULL : timespec_store(&ts, m), NULL);
3330 if (r < 0)
3331 return -errno;
3332 if (r == 0)
3333 return 0;
3334
3335 if (p[0].revents & POLLNVAL)
3336 return -EBADF;
3337 if (n >= 2 && (p[1].revents & POLLNVAL))
3338 return -EBADF;
3339
3340 return 1;
3341 }
3342
3343 _public_ int sd_bus_wait(sd_bus *bus, uint64_t timeout_usec) {
3344
3345 assert_return(bus, -EINVAL);
3346 assert_return(bus = bus_resolve(bus), -ENOPKG);
3347 assert_return(!bus_pid_changed(bus), -ECHILD);
3348
3349 if (bus->state == BUS_CLOSING)
3350 return 0;
3351
3352 if (!BUS_IS_OPEN(bus->state))
3353 return -ENOTCONN;
3354
3355 if (bus->rqueue_size > 0)
3356 return 0;
3357
3358 return bus_poll(bus, false, timeout_usec);
3359 }
3360
3361 _public_ int sd_bus_flush(sd_bus *bus) {
3362 int r;
3363
3364 assert_return(bus, -EINVAL);
3365 assert_return(bus = bus_resolve(bus), -ENOPKG);
3366 assert_return(!bus_pid_changed(bus), -ECHILD);
3367
3368 if (bus->state == BUS_CLOSING)
3369 return 0;
3370
3371 if (!BUS_IS_OPEN(bus->state))
3372 return -ENOTCONN;
3373
3374 /* We never were connected? Don't hang in inotify for good, as there's no timeout set for it */
3375 if (bus->state == BUS_WATCH_BIND)
3376 return -EUNATCH;
3377
3378 r = bus_ensure_running(bus);
3379 if (r < 0)
3380 return r;
3381
3382 if (bus->wqueue_size <= 0)
3383 return 0;
3384
3385 for (;;) {
3386 r = dispatch_wqueue(bus);
3387 if (r < 0) {
3388 if (ERRNO_IS_DISCONNECT(r)) {
3389 bus_enter_closing(bus);
3390 return -ECONNRESET;
3391 }
3392
3393 return r;
3394 }
3395
3396 if (bus->wqueue_size <= 0)
3397 return 0;
3398
3399 r = bus_poll(bus, false, (uint64_t) -1);
3400 if (r < 0)
3401 return r;
3402 }
3403 }
3404
3405 _public_ int sd_bus_add_filter(
3406 sd_bus *bus,
3407 sd_bus_slot **slot,
3408 sd_bus_message_handler_t callback,
3409 void *userdata) {
3410
3411 sd_bus_slot *s;
3412
3413 assert_return(bus, -EINVAL);
3414 assert_return(bus = bus_resolve(bus), -ENOPKG);
3415 assert_return(callback, -EINVAL);
3416 assert_return(!bus_pid_changed(bus), -ECHILD);
3417
3418 s = bus_slot_allocate(bus, !slot, BUS_FILTER_CALLBACK, sizeof(struct filter_callback), userdata);
3419 if (!s)
3420 return -ENOMEM;
3421
3422 s->filter_callback.callback = callback;
3423
3424 bus->filter_callbacks_modified = true;
3425 LIST_PREPEND(callbacks, bus->filter_callbacks, &s->filter_callback);
3426
3427 if (slot)
3428 *slot = s;
3429
3430 return 0;
3431 }
3432
3433 static int add_match_callback(
3434 sd_bus_message *m,
3435 void *userdata,
3436 sd_bus_error *ret_error) {
3437
3438 sd_bus_slot *match_slot = userdata;
3439 bool failed = false;
3440 int r;
3441
3442 assert(m);
3443 assert(match_slot);
3444
3445 sd_bus_slot_ref(match_slot);
3446
3447 if (sd_bus_message_is_method_error(m, NULL)) {
3448 log_debug_errno(sd_bus_message_get_errno(m),
3449 "Unable to add match %s, failing connection: %s",
3450 match_slot->match_callback.match_string,
3451 sd_bus_message_get_error(m)->message);
3452
3453 failed = true;
3454 } else
3455 log_debug("Match %s successfully installed.", match_slot->match_callback.match_string);
3456
3457 if (match_slot->match_callback.install_callback) {
3458 sd_bus *bus;
3459
3460 bus = sd_bus_message_get_bus(m);
3461
3462 /* This function has been called as slot handler, and we want to call another slot handler. Let's
3463 * update the slot callback metadata temporarily with our own data, and then revert back to the old
3464 * values. */
3465
3466 assert(bus->current_slot == match_slot->match_callback.install_slot);
3467 assert(bus->current_handler == add_match_callback);
3468 assert(bus->current_userdata == userdata);
3469
3470 bus->current_slot = match_slot;
3471 bus->current_handler = match_slot->match_callback.install_callback;
3472 bus->current_userdata = match_slot->userdata;
3473
3474 r = match_slot->match_callback.install_callback(m, match_slot->userdata, ret_error);
3475
3476 bus->current_slot = match_slot->match_callback.install_slot;
3477 bus->current_handler = add_match_callback;
3478 bus->current_userdata = userdata;
3479 } else {
3480 if (failed) /* Generic failure handling: destroy the connection */
3481 bus_enter_closing(sd_bus_message_get_bus(m));
3482
3483 r = 1;
3484 }
3485
3486 /* We don't need the install method reply slot anymore, let's free it */
3487 match_slot->match_callback.install_slot = sd_bus_slot_unref(match_slot->match_callback.install_slot);
3488
3489 if (failed && match_slot->floating)
3490 bus_slot_disconnect(match_slot, true);
3491
3492 sd_bus_slot_unref(match_slot);
3493
3494 return r;
3495 }
3496
3497 static int bus_add_match_full(
3498 sd_bus *bus,
3499 sd_bus_slot **slot,
3500 bool asynchronous,
3501 const char *match,
3502 sd_bus_message_handler_t callback,
3503 sd_bus_message_handler_t install_callback,
3504 void *userdata) {
3505
3506 struct bus_match_component *components = NULL;
3507 unsigned n_components = 0;
3508 sd_bus_slot *s = NULL;
3509 int r = 0;
3510
3511 assert_return(bus, -EINVAL);
3512 assert_return(bus = bus_resolve(bus), -ENOPKG);
3513 assert_return(match, -EINVAL);
3514 assert_return(!bus_pid_changed(bus), -ECHILD);
3515
3516 r = bus_match_parse(match, &components, &n_components);
3517 if (r < 0)
3518 goto finish;
3519
3520 s = bus_slot_allocate(bus, !slot, BUS_MATCH_CALLBACK, sizeof(struct match_callback), userdata);
3521 if (!s) {
3522 r = -ENOMEM;
3523 goto finish;
3524 }
3525
3526 s->match_callback.callback = callback;
3527 s->match_callback.install_callback = install_callback;
3528
3529 if (bus->bus_client) {
3530 enum bus_match_scope scope;
3531
3532 scope = bus_match_get_scope(components, n_components);
3533
3534 /* Do not install server-side matches for matches against the local service, interface or bus path. */
3535 if (scope != BUS_MATCH_LOCAL) {
3536
3537 /* We store the original match string, so that we can use it to remove the match again. */
3538
3539 s->match_callback.match_string = strdup(match);
3540 if (!s->match_callback.match_string) {
3541 r = -ENOMEM;
3542 goto finish;
3543 }
3544
3545 if (asynchronous) {
3546 r = bus_add_match_internal_async(bus,
3547 &s->match_callback.install_slot,
3548 s->match_callback.match_string,
3549 add_match_callback,
3550 s);
3551
3552 if (r < 0)
3553 return r;
3554
3555 /* Make the slot of the match call floating now. We need the reference, but we don't
3556 * want that this match pins the bus object, hence we first create it non-floating, but
3557 * then make it floating. */
3558 r = sd_bus_slot_set_floating(s->match_callback.install_slot, true);
3559 } else
3560 r = bus_add_match_internal(bus, s->match_callback.match_string, &s->match_callback.after);
3561 if (r < 0)
3562 goto finish;
3563
3564 s->match_added = true;
3565 }
3566 }
3567
3568 bus->match_callbacks_modified = true;
3569 r = bus_match_add(&bus->match_callbacks, components, n_components, &s->match_callback);
3570 if (r < 0)
3571 goto finish;
3572
3573 if (slot)
3574 *slot = s;
3575 s = NULL;
3576
3577 finish:
3578 bus_match_parse_free(components, n_components);
3579 sd_bus_slot_unref(s);
3580
3581 return r;
3582 }
3583
3584 _public_ int sd_bus_add_match(
3585 sd_bus *bus,
3586 sd_bus_slot **slot,
3587 const char *match,
3588 sd_bus_message_handler_t callback,
3589 void *userdata) {
3590
3591 return bus_add_match_full(bus, slot, false, match, callback, NULL, userdata);
3592 }
3593
3594 _public_ int sd_bus_add_match_async(
3595 sd_bus *bus,
3596 sd_bus_slot **slot,
3597 const char *match,
3598 sd_bus_message_handler_t callback,
3599 sd_bus_message_handler_t install_callback,
3600 void *userdata) {
3601
3602 return bus_add_match_full(bus, slot, true, match, callback, install_callback, userdata);
3603 }
3604
3605 bool bus_pid_changed(sd_bus *bus) {
3606 assert(bus);
3607
3608 /* We don't support people creating a bus connection and
3609 * keeping it around over a fork(). Let's complain. */
3610
3611 return bus->original_pid != getpid_cached();
3612 }
3613
3614 static int io_callback(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
3615 sd_bus *bus = userdata;
3616 int r;
3617
3618 assert(bus);
3619
3620 /* Note that this is called both on input_fd, output_fd as well as inotify_fd events */
3621
3622 r = sd_bus_process(bus, NULL);
3623 if (r < 0) {
3624 log_debug_errno(r, "Processing of bus failed, closing down: %m");
3625 bus_enter_closing(bus);
3626 }
3627
3628 return 1;
3629 }
3630
3631 static int time_callback(sd_event_source *s, uint64_t usec, void *userdata) {
3632 sd_bus *bus = userdata;
3633 int r;
3634
3635 assert(bus);
3636
3637 r = sd_bus_process(bus, NULL);
3638 if (r < 0) {
3639 log_debug_errno(r, "Processing of bus failed, closing down: %m");
3640 bus_enter_closing(bus);
3641 }
3642
3643 return 1;
3644 }
3645
3646 static int prepare_callback(sd_event_source *s, void *userdata) {
3647 sd_bus *bus = userdata;
3648 int r, e;
3649 usec_t until;
3650
3651 assert(s);
3652 assert(bus);
3653
3654 e = sd_bus_get_events(bus);
3655 if (e < 0) {
3656 r = e;
3657 goto fail;
3658 }
3659
3660 if (bus->output_fd != bus->input_fd) {
3661
3662 r = sd_event_source_set_io_events(bus->input_io_event_source, e & POLLIN);
3663 if (r < 0)
3664 goto fail;
3665
3666 r = sd_event_source_set_io_events(bus->output_io_event_source, e & POLLOUT);
3667 } else
3668 r = sd_event_source_set_io_events(bus->input_io_event_source, e);
3669 if (r < 0)
3670 goto fail;
3671
3672 r = sd_bus_get_timeout(bus, &until);
3673 if (r < 0)
3674 goto fail;
3675 if (r > 0) {
3676 int j;
3677
3678 j = sd_event_source_set_time(bus->time_event_source, until);
3679 if (j < 0) {
3680 r = j;
3681 goto fail;
3682 }
3683 }
3684
3685 r = sd_event_source_set_enabled(bus->time_event_source, r > 0);
3686 if (r < 0)
3687 goto fail;
3688
3689 return 1;
3690
3691 fail:
3692 log_debug_errno(r, "Preparing of bus events failed, closing down: %m");
3693 bus_enter_closing(bus);
3694
3695 return 1;
3696 }
3697
3698 static int quit_callback(sd_event_source *event, void *userdata) {
3699 sd_bus *bus = userdata;
3700
3701 assert(event);
3702
3703 if (bus->close_on_exit) {
3704 sd_bus_flush(bus);
3705 sd_bus_close(bus);
3706 }
3707
3708 return 1;
3709 }
3710
3711 int bus_attach_io_events(sd_bus *bus) {
3712 int r;
3713
3714 assert(bus);
3715
3716 if (bus->input_fd < 0)
3717 return 0;
3718
3719 if (!bus->event)
3720 return 0;
3721
3722 if (!bus->input_io_event_source) {
3723 r = sd_event_add_io(bus->event, &bus->input_io_event_source, bus->input_fd, 0, io_callback, bus);
3724 if (r < 0)
3725 return r;
3726
3727 r = sd_event_source_set_prepare(bus->input_io_event_source, prepare_callback);
3728 if (r < 0)
3729 return r;
3730
3731 r = sd_event_source_set_priority(bus->input_io_event_source, bus->event_priority);
3732 if (r < 0)
3733 return r;
3734
3735 r = sd_event_source_set_description(bus->input_io_event_source, "bus-input");
3736 } else
3737 r = sd_event_source_set_io_fd(bus->input_io_event_source, bus->input_fd);
3738
3739 if (r < 0)
3740 return r;
3741
3742 if (bus->output_fd != bus->input_fd) {
3743 assert(bus->output_fd >= 0);
3744
3745 if (!bus->output_io_event_source) {
3746 r = sd_event_add_io(bus->event, &bus->output_io_event_source, bus->output_fd, 0, io_callback, bus);
3747 if (r < 0)
3748 return r;
3749
3750 r = sd_event_source_set_priority(bus->output_io_event_source, bus->event_priority);
3751 if (r < 0)
3752 return r;
3753
3754 r = sd_event_source_set_description(bus->input_io_event_source, "bus-output");
3755 } else
3756 r = sd_event_source_set_io_fd(bus->output_io_event_source, bus->output_fd);
3757
3758 if (r < 0)
3759 return r;
3760 }
3761
3762 return 0;
3763 }
3764
3765 static void bus_detach_io_events(sd_bus *bus) {
3766 assert(bus);
3767
3768 if (bus->input_io_event_source) {
3769 sd_event_source_set_enabled(bus->input_io_event_source, SD_EVENT_OFF);
3770 bus->input_io_event_source = sd_event_source_unref(bus->input_io_event_source);
3771 }
3772
3773 if (bus->output_io_event_source) {
3774 sd_event_source_set_enabled(bus->output_io_event_source, SD_EVENT_OFF);
3775 bus->output_io_event_source = sd_event_source_unref(bus->output_io_event_source);
3776 }
3777 }
3778
3779 int bus_attach_inotify_event(sd_bus *bus) {
3780 int r;
3781
3782 assert(bus);
3783
3784 if (bus->inotify_fd < 0)
3785 return 0;
3786
3787 if (!bus->event)
3788 return 0;
3789
3790 if (!bus->inotify_event_source) {
3791 r = sd_event_add_io(bus->event, &bus->inotify_event_source, bus->inotify_fd, EPOLLIN, io_callback, bus);
3792 if (r < 0)
3793 return r;
3794
3795 r = sd_event_source_set_priority(bus->inotify_event_source, bus->event_priority);
3796 if (r < 0)
3797 return r;
3798
3799 r = sd_event_source_set_description(bus->inotify_event_source, "bus-inotify");
3800 } else
3801 r = sd_event_source_set_io_fd(bus->inotify_event_source, bus->inotify_fd);
3802 if (r < 0)
3803 return r;
3804
3805 return 0;
3806 }
3807
3808 static void bus_detach_inotify_event(sd_bus *bus) {
3809 assert(bus);
3810
3811 if (bus->inotify_event_source) {
3812 sd_event_source_set_enabled(bus->inotify_event_source, SD_EVENT_OFF);
3813 bus->inotify_event_source = sd_event_source_unref(bus->inotify_event_source);
3814 }
3815 }
3816
3817 _public_ int sd_bus_attach_event(sd_bus *bus, sd_event *event, int priority) {
3818 int r;
3819
3820 assert_return(bus, -EINVAL);
3821 assert_return(bus = bus_resolve(bus), -ENOPKG);
3822 assert_return(!bus->event, -EBUSY);
3823
3824 assert(!bus->input_io_event_source);
3825 assert(!bus->output_io_event_source);
3826 assert(!bus->time_event_source);
3827
3828 if (event)
3829 bus->event = sd_event_ref(event);
3830 else {
3831 r = sd_event_default(&bus->event);
3832 if (r < 0)
3833 return r;
3834 }
3835
3836 bus->event_priority = priority;
3837
3838 r = sd_event_add_time(bus->event, &bus->time_event_source, CLOCK_MONOTONIC, 0, 0, time_callback, bus);
3839 if (r < 0)
3840 goto fail;
3841
3842 r = sd_event_source_set_priority(bus->time_event_source, priority);
3843 if (r < 0)
3844 goto fail;
3845
3846 r = sd_event_source_set_description(bus->time_event_source, "bus-time");
3847 if (r < 0)
3848 goto fail;
3849
3850 r = sd_event_add_exit(bus->event, &bus->quit_event_source, quit_callback, bus);
3851 if (r < 0)
3852 goto fail;
3853
3854 r = sd_event_source_set_description(bus->quit_event_source, "bus-exit");
3855 if (r < 0)
3856 goto fail;
3857
3858 r = bus_attach_io_events(bus);
3859 if (r < 0)
3860 goto fail;
3861
3862 r = bus_attach_inotify_event(bus);
3863 if (r < 0)
3864 goto fail;
3865
3866 return 0;
3867
3868 fail:
3869 sd_bus_detach_event(bus);
3870 return r;
3871 }
3872
3873 _public_ int sd_bus_detach_event(sd_bus *bus) {
3874 assert_return(bus, -EINVAL);
3875 assert_return(bus = bus_resolve(bus), -ENOPKG);
3876
3877 if (!bus->event)
3878 return 0;
3879
3880 bus_detach_io_events(bus);
3881 bus_detach_inotify_event(bus);
3882
3883 if (bus->time_event_source) {
3884 sd_event_source_set_enabled(bus->time_event_source, SD_EVENT_OFF);
3885 bus->time_event_source = sd_event_source_unref(bus->time_event_source);
3886 }
3887
3888 if (bus->quit_event_source) {
3889 sd_event_source_set_enabled(bus->quit_event_source, SD_EVENT_OFF);
3890 bus->quit_event_source = sd_event_source_unref(bus->quit_event_source);
3891 }
3892
3893 bus->event = sd_event_unref(bus->event);
3894 return 1;
3895 }
3896
3897 _public_ sd_event* sd_bus_get_event(sd_bus *bus) {
3898 assert_return(bus = bus_resolve(bus), NULL);
3899
3900 return bus->event;
3901 }
3902
3903 _public_ sd_bus_message* sd_bus_get_current_message(sd_bus *bus) {
3904 assert_return(bus = bus_resolve(bus), NULL);
3905
3906 return bus->current_message;
3907 }
3908
3909 _public_ sd_bus_slot* sd_bus_get_current_slot(sd_bus *bus) {
3910 assert_return(bus = bus_resolve(bus), NULL);
3911
3912 return bus->current_slot;
3913 }
3914
3915 _public_ sd_bus_message_handler_t sd_bus_get_current_handler(sd_bus *bus) {
3916 assert_return(bus = bus_resolve(bus), NULL);
3917
3918 return bus->current_handler;
3919 }
3920
3921 _public_ void* sd_bus_get_current_userdata(sd_bus *bus) {
3922 assert_return(bus = bus_resolve(bus), NULL);
3923
3924 return bus->current_userdata;
3925 }
3926
3927 static int bus_default(int (*bus_open)(sd_bus **), sd_bus **default_bus, sd_bus **ret) {
3928 sd_bus *b = NULL;
3929 int r;
3930
3931 assert(bus_open);
3932 assert(default_bus);
3933
3934 if (!ret)
3935 return !!*default_bus;
3936
3937 if (*default_bus) {
3938 *ret = sd_bus_ref(*default_bus);
3939 return 0;
3940 }
3941
3942 r = bus_open(&b);
3943 if (r < 0)
3944 return r;
3945
3946 b->default_bus_ptr = default_bus;
3947 b->tid = gettid();
3948 *default_bus = b;
3949
3950 *ret = b;
3951 return 1;
3952 }
3953
3954 _public_ int sd_bus_default_system(sd_bus **ret) {
3955 return bus_default(sd_bus_open_system, &default_system_bus, ret);
3956 }
3957
3958 _public_ int sd_bus_default_user(sd_bus **ret) {
3959 return bus_default(sd_bus_open_user, &default_user_bus, ret);
3960 }
3961
3962 _public_ int sd_bus_default(sd_bus **ret) {
3963 int (*bus_open)(sd_bus **) = NULL;
3964 sd_bus **busp;
3965
3966 busp = bus_choose_default(&bus_open);
3967 return bus_default(bus_open, busp, ret);
3968 }
3969
3970 _public_ int sd_bus_get_tid(sd_bus *b, pid_t *tid) {
3971 assert_return(b, -EINVAL);
3972 assert_return(tid, -EINVAL);
3973 assert_return(!bus_pid_changed(b), -ECHILD);
3974
3975 if (b->tid != 0) {
3976 *tid = b->tid;
3977 return 0;
3978 }
3979
3980 if (b->event)
3981 return sd_event_get_tid(b->event, tid);
3982
3983 return -ENXIO;
3984 }
3985
3986 _public_ int sd_bus_path_encode(const char *prefix, const char *external_id, char **ret_path) {
3987 _cleanup_free_ char *e = NULL;
3988 char *ret;
3989
3990 assert_return(object_path_is_valid(prefix), -EINVAL);
3991 assert_return(external_id, -EINVAL);
3992 assert_return(ret_path, -EINVAL);
3993
3994 e = bus_label_escape(external_id);
3995 if (!e)
3996 return -ENOMEM;
3997
3998 ret = path_join(prefix, e);
3999 if (!ret)
4000 return -ENOMEM;
4001
4002 *ret_path = ret;
4003 return 0;
4004 }
4005
4006 _public_ int sd_bus_path_decode(const char *path, const char *prefix, char **external_id) {
4007 const char *e;
4008 char *ret;
4009
4010 assert_return(object_path_is_valid(path), -EINVAL);
4011 assert_return(object_path_is_valid(prefix), -EINVAL);
4012 assert_return(external_id, -EINVAL);
4013
4014 e = object_path_startswith(path, prefix);
4015 if (!e) {
4016 *external_id = NULL;
4017 return 0;
4018 }
4019
4020 ret = bus_label_unescape(e);
4021 if (!ret)
4022 return -ENOMEM;
4023
4024 *external_id = ret;
4025 return 1;
4026 }
4027
4028 _public_ int sd_bus_path_encode_many(char **out, const char *path_template, ...) {
4029 _cleanup_strv_free_ char **labels = NULL;
4030 char *path, *path_pos, **label_pos;
4031 const char *sep, *template_pos;
4032 size_t path_length;
4033 va_list list;
4034 int r;
4035
4036 assert_return(out, -EINVAL);
4037 assert_return(path_template, -EINVAL);
4038
4039 path_length = strlen(path_template);
4040
4041 va_start(list, path_template);
4042 for (sep = strchr(path_template, '%'); sep; sep = strchr(sep + 1, '%')) {
4043 const char *arg;
4044 char *label;
4045
4046 arg = va_arg(list, const char *);
4047 if (!arg) {
4048 va_end(list);
4049 return -EINVAL;
4050 }
4051
4052 label = bus_label_escape(arg);
4053 if (!label) {
4054 va_end(list);
4055 return -ENOMEM;
4056 }
4057
4058 r = strv_consume(&labels, label);
4059 if (r < 0) {
4060 va_end(list);
4061 return r;
4062 }
4063
4064 /* add label length, but account for the format character */
4065 path_length += strlen(label) - 1;
4066 }
4067 va_end(list);
4068
4069 path = malloc(path_length + 1);
4070 if (!path)
4071 return -ENOMEM;
4072
4073 path_pos = path;
4074 label_pos = labels;
4075
4076 for (template_pos = path_template; *template_pos; ) {
4077 sep = strchrnul(template_pos, '%');
4078 path_pos = mempcpy(path_pos, template_pos, sep - template_pos);
4079 if (!*sep)
4080 break;
4081
4082 path_pos = stpcpy(path_pos, *label_pos++);
4083 template_pos = sep + 1;
4084 }
4085
4086 *path_pos = 0;
4087 *out = path;
4088 return 0;
4089 }
4090
4091 _public_ int sd_bus_path_decode_many(const char *path, const char *path_template, ...) {
4092 _cleanup_strv_free_ char **labels = NULL;
4093 const char *template_pos, *path_pos;
4094 char **label_pos;
4095 va_list list;
4096 int r;
4097
4098 /*
4099 * This decodes an object-path based on a template argument. The
4100 * template consists of a verbatim path, optionally including special
4101 * directives:
4102 *
4103 * - Each occurrence of '%' in the template matches an arbitrary
4104 * substring of a label in the given path. At most one such
4105 * directive is allowed per label. For each such directive, the
4106 * caller must provide an output parameter (char **) via va_arg. If
4107 * NULL is passed, the given label is verified, but not returned.
4108 * For each matched label, the *decoded* label is stored in the
4109 * passed output argument, and the caller is responsible to free
4110 * it. Note that the output arguments are only modified if the
4111 * actually path matched the template. Otherwise, they're left
4112 * untouched.
4113 *
4114 * This function returns <0 on error, 0 if the path does not match the
4115 * template, 1 if it matched.
4116 */
4117
4118 assert_return(path, -EINVAL);
4119 assert_return(path_template, -EINVAL);
4120
4121 path_pos = path;
4122
4123 for (template_pos = path_template; *template_pos; ) {
4124 const char *sep;
4125 size_t length;
4126 char *label;
4127
4128 /* verify everything until the next '%' matches verbatim */
4129 sep = strchrnul(template_pos, '%');
4130 length = sep - template_pos;
4131 if (strncmp(path_pos, template_pos, length))
4132 return 0;
4133
4134 path_pos += length;
4135 template_pos += length;
4136
4137 if (!*template_pos)
4138 break;
4139
4140 /* We found the next '%' character. Everything up until here
4141 * matched. We now skip ahead to the end of this label and make
4142 * sure it matches the tail of the label in the path. Then we
4143 * decode the string in-between and save it for later use. */
4144
4145 ++template_pos; /* skip over '%' */
4146
4147 sep = strchrnul(template_pos, '/');
4148 length = sep - template_pos; /* length of suffix to match verbatim */
4149
4150 /* verify the suffixes match */
4151 sep = strchrnul(path_pos, '/');
4152 if (sep - path_pos < (ssize_t)length ||
4153 strncmp(sep - length, template_pos, length))
4154 return 0;
4155
4156 template_pos += length; /* skip over matched label */
4157 length = sep - path_pos - length; /* length of sub-label to decode */
4158
4159 /* store unescaped label for later use */
4160 label = bus_label_unescape_n(path_pos, length);
4161 if (!label)
4162 return -ENOMEM;
4163
4164 r = strv_consume(&labels, label);
4165 if (r < 0)
4166 return r;
4167
4168 path_pos = sep; /* skip decoded label and suffix */
4169 }
4170
4171 /* end of template must match end of path */
4172 if (*path_pos)
4173 return 0;
4174
4175 /* copy the labels over to the caller */
4176 va_start(list, path_template);
4177 for (label_pos = labels; label_pos && *label_pos; ++label_pos) {
4178 char **arg;
4179
4180 arg = va_arg(list, char **);
4181 if (arg)
4182 *arg = *label_pos;
4183 else
4184 free(*label_pos);
4185 }
4186 va_end(list);
4187
4188 labels = mfree(labels);
4189 return 1;
4190 }
4191
4192 _public_ int sd_bus_try_close(sd_bus *bus) {
4193 assert_return(bus, -EINVAL);
4194 assert_return(bus = bus_resolve(bus), -ENOPKG);
4195 assert_return(!bus_pid_changed(bus), -ECHILD);
4196
4197 return -EOPNOTSUPP;
4198 }
4199
4200 _public_ int sd_bus_get_description(sd_bus *bus, const char **description) {
4201 assert_return(bus, -EINVAL);
4202 assert_return(bus = bus_resolve(bus), -ENOPKG);
4203 assert_return(description, -EINVAL);
4204 assert_return(bus->description, -ENXIO);
4205 assert_return(!bus_pid_changed(bus), -ECHILD);
4206
4207 if (bus->description)
4208 *description = bus->description;
4209 else if (bus->is_system)
4210 *description = "system";
4211 else if (bus->is_user)
4212 *description = "user";
4213 else
4214 *description = NULL;
4215
4216 return 0;
4217 }
4218
4219 _public_ int sd_bus_get_scope(sd_bus *bus, const char **scope) {
4220 assert_return(bus, -EINVAL);
4221 assert_return(bus = bus_resolve(bus), -ENOPKG);
4222 assert_return(scope, -EINVAL);
4223 assert_return(!bus_pid_changed(bus), -ECHILD);
4224
4225 if (bus->is_user) {
4226 *scope = "user";
4227 return 0;
4228 }
4229
4230 if (bus->is_system) {
4231 *scope = "system";
4232 return 0;
4233 }
4234
4235 return -ENODATA;
4236 }
4237
4238 _public_ int sd_bus_get_address(sd_bus *bus, const char **address) {
4239 assert_return(bus, -EINVAL);
4240 assert_return(bus = bus_resolve(bus), -ENOPKG);
4241 assert_return(address, -EINVAL);
4242 assert_return(!bus_pid_changed(bus), -ECHILD);
4243
4244 if (bus->address) {
4245 *address = bus->address;
4246 return 0;
4247 }
4248
4249 return -ENODATA;
4250 }
4251
4252 _public_ int sd_bus_get_creds_mask(sd_bus *bus, uint64_t *mask) {
4253 assert_return(bus, -EINVAL);
4254 assert_return(bus = bus_resolve(bus), -ENOPKG);
4255 assert_return(mask, -EINVAL);
4256 assert_return(!bus_pid_changed(bus), -ECHILD);
4257
4258 *mask = bus->creds_mask;
4259 return 0;
4260 }
4261
4262 _public_ int sd_bus_is_bus_client(sd_bus *bus) {
4263 assert_return(bus, -EINVAL);
4264 assert_return(bus = bus_resolve(bus), -ENOPKG);
4265 assert_return(!bus_pid_changed(bus), -ECHILD);
4266
4267 return bus->bus_client;
4268 }
4269
4270 _public_ int sd_bus_is_server(sd_bus *bus) {
4271 assert_return(bus, -EINVAL);
4272 assert_return(bus = bus_resolve(bus), -ENOPKG);
4273 assert_return(!bus_pid_changed(bus), -ECHILD);
4274
4275 return bus->is_server;
4276 }
4277
4278 _public_ int sd_bus_is_anonymous(sd_bus *bus) {
4279 assert_return(bus, -EINVAL);
4280 assert_return(bus = bus_resolve(bus), -ENOPKG);
4281 assert_return(!bus_pid_changed(bus), -ECHILD);
4282
4283 return bus->anonymous_auth;
4284 }
4285
4286 _public_ int sd_bus_is_trusted(sd_bus *bus) {
4287 assert_return(bus, -EINVAL);
4288 assert_return(bus = bus_resolve(bus), -ENOPKG);
4289 assert_return(!bus_pid_changed(bus), -ECHILD);
4290
4291 return bus->trusted;
4292 }
4293
4294 _public_ int sd_bus_is_monitor(sd_bus *bus) {
4295 assert_return(bus, -EINVAL);
4296 assert_return(bus = bus_resolve(bus), -ENOPKG);
4297 assert_return(!bus_pid_changed(bus), -ECHILD);
4298
4299 return bus->is_monitor;
4300 }
4301
4302 static void flush_close(sd_bus *bus) {
4303 if (!bus)
4304 return;
4305
4306 /* Flushes and closes the specified bus. We take a ref before,
4307 * to ensure the flushing does not cause the bus to be
4308 * unreferenced. */
4309
4310 sd_bus_flush_close_unref(sd_bus_ref(bus));
4311 }
4312
4313 _public_ void sd_bus_default_flush_close(void) {
4314 flush_close(default_starter_bus);
4315 flush_close(default_user_bus);
4316 flush_close(default_system_bus);
4317 }
4318
4319 _public_ int sd_bus_set_exit_on_disconnect(sd_bus *bus, int b) {
4320 assert_return(bus, -EINVAL);
4321 assert_return(bus = bus_resolve(bus), -ENOPKG);
4322
4323 /* Turns on exit-on-disconnect, and triggers it immediately if the bus connection was already
4324 * disconnected. Note that this is triggered exclusively on disconnections triggered by the server side, never
4325 * from the client side. */
4326 bus->exit_on_disconnect = b;
4327
4328 /* If the exit condition was triggered already, exit immediately. */
4329 return bus_exit_now(bus);
4330 }
4331
4332 _public_ int sd_bus_get_exit_on_disconnect(sd_bus *bus) {
4333 assert_return(bus, -EINVAL);
4334 assert_return(bus = bus_resolve(bus), -ENOPKG);
4335
4336 return bus->exit_on_disconnect;
4337 }
4338
4339 _public_ int sd_bus_set_sender(sd_bus *bus, const char *sender) {
4340 assert_return(bus, -EINVAL);
4341 assert_return(bus = bus_resolve(bus), -ENOPKG);
4342 assert_return(!bus->bus_client, -EPERM);
4343 assert_return(!sender || service_name_is_valid(sender), -EINVAL);
4344
4345 return free_and_strdup(&bus->patch_sender, sender);
4346 }
4347
4348 _public_ int sd_bus_get_sender(sd_bus *bus, const char **ret) {
4349 assert_return(bus, -EINVAL);
4350 assert_return(bus = bus_resolve(bus), -ENOPKG);
4351 assert_return(ret, -EINVAL);
4352
4353 if (!bus->patch_sender)
4354 return -ENODATA;
4355
4356 *ret = bus->patch_sender;
4357 return 0;
4358 }
4359
4360 _public_ int sd_bus_get_n_queued_read(sd_bus *bus, uint64_t *ret) {
4361 assert_return(bus, -EINVAL);
4362 assert_return(bus = bus_resolve(bus), -ENOPKG);
4363 assert_return(!bus_pid_changed(bus), -ECHILD);
4364 assert_return(ret, -EINVAL);
4365
4366 *ret = bus->rqueue_size;
4367 return 0;
4368 }
4369
4370 _public_ int sd_bus_get_n_queued_write(sd_bus *bus, uint64_t *ret) {
4371 assert_return(bus, -EINVAL);
4372 assert_return(bus = bus_resolve(bus), -ENOPKG);
4373 assert_return(!bus_pid_changed(bus), -ECHILD);
4374 assert_return(ret, -EINVAL);
4375
4376 *ret = bus->wqueue_size;
4377 return 0;
4378 }
4379
4380 _public_ int sd_bus_set_method_call_timeout(sd_bus *bus, uint64_t usec) {
4381 assert_return(bus, -EINVAL);
4382 assert_return(bus = bus_resolve(bus), -ENOPKG);
4383
4384 bus->method_call_timeout = usec;
4385 return 0;
4386 }
4387
4388 _public_ int sd_bus_get_method_call_timeout(sd_bus *bus, uint64_t *ret) {
4389 const char *e;
4390 usec_t usec;
4391
4392 assert_return(bus, -EINVAL);
4393 assert_return(bus = bus_resolve(bus), -ENOPKG);
4394 assert_return(ret, -EINVAL);
4395
4396 if (bus->method_call_timeout != 0) {
4397 *ret = bus->method_call_timeout;
4398 return 0;
4399 }
4400
4401 e = secure_getenv("SYSTEMD_BUS_TIMEOUT");
4402 if (e && parse_sec(e, &usec) >= 0 && usec != 0) {
4403 /* Save the parsed value to avoid multiple parsing. To change the timeout value,
4404 * use sd_bus_set_method_call_timeout() instead of setenv(). */
4405 *ret = bus->method_call_timeout = usec;
4406 return 0;
4407 }
4408
4409 *ret = bus->method_call_timeout = BUS_DEFAULT_TIMEOUT;
4410 return 0;
4411 }
4412
4413 _public_ int sd_bus_set_close_on_exit(sd_bus *bus, int b) {
4414 assert_return(bus, -EINVAL);
4415 assert_return(bus = bus_resolve(bus), -ENOPKG);
4416
4417 bus->close_on_exit = b;
4418 return 0;
4419 }
4420
4421 _public_ int sd_bus_get_close_on_exit(sd_bus *bus) {
4422 assert_return(bus, -EINVAL);
4423 assert_return(bus = bus_resolve(bus), -ENOPKG);
4424
4425 return bus->close_on_exit;
4426 }
4427
4428 _public_ int sd_bus_enqueue_for_read(sd_bus *bus, sd_bus_message *m) {
4429 int r;
4430
4431 assert_return(bus, -EINVAL);
4432 assert_return(bus = bus_resolve(bus), -ENOPKG);
4433 assert_return(m, -EINVAL);
4434 assert_return(m->sealed, -EINVAL);
4435 assert_return(!bus_pid_changed(bus), -ECHILD);
4436
4437 if (!BUS_IS_OPEN(bus->state))
4438 return -ENOTCONN;
4439
4440 /* Re-enqueue a message for reading. This is primarily useful for PolicyKit-style authentication,
4441 * where we accept a message, then determine we need to interactively authenticate the user, and then
4442 * we want to process the message again. */
4443
4444 r = bus_rqueue_make_room(bus);
4445 if (r < 0)
4446 return r;
4447
4448 bus->rqueue[bus->rqueue_size++] = bus_message_ref_queued(m, bus);
4449 return 0;
4450 }