]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libsystemd/sd-bus/sd-bus.c
tree-wide: use ppoll_usec()
[thirdparty/systemd.git] / src / libsystemd / sd-bus / sd-bus.c
CommitLineData
db9ecf05 1/* SPDX-License-Identifier: LGPL-2.1-or-later */
de1c301e
LP
2
3#include <endian.h>
de1c301e 4#include <netdb.h>
45fbe937 5#include <pthread.h>
392cf1d0 6#include <signal.h>
cf0fbc49
TA
7#include <stdlib.h>
8#include <sys/mman.h>
f5947a5e 9#include <sys/stat.h>
392cf1d0 10#include <sys/wait.h>
cf0fbc49 11#include <unistd.h>
de1c301e 12
de1c301e 13#include "sd-bus.h"
07630cea 14
b5efdb8a 15#include "alloc-util.h"
07630cea
LP
16#include "bus-container.h"
17#include "bus-control.h"
de1c301e 18#include "bus-internal.h"
6629161f 19#include "bus-kernel.h"
07630cea
LP
20#include "bus-label.h"
21#include "bus-message.h"
992c052c 22#include "bus-objects.h"
0461f8cd 23#include "bus-protocol.h"
19befb2d 24#include "bus-slot.h"
07630cea
LP
25#include "bus-socket.h"
26#include "bus-track.h"
27#include "bus-type.h"
07630cea
LP
28#include "cgroup-util.h"
29#include "def.h"
f60a028a 30#include "errno-util.h"
3ffd4af2 31#include "fd-util.h"
cf0fbc49 32#include "hexdecoct.h"
07630cea 33#include "hostname-util.h"
d9e2af0a 34#include "io-util.h"
07630cea 35#include "macro.h"
0a970718 36#include "memory-util.h"
f5947a5e 37#include "missing_syscall.h"
6bedfcbb 38#include "parse-util.h"
657ee2d8 39#include "path-util.h"
dccca82b 40#include "process-util.h"
07630cea
LP
41#include "string-util.h"
42#include "strv.h"
1b630835 43#include "user-util.h"
de1c301e 44
b56c4604
LP
45#define log_debug_bus_message(m) \
46 do { \
47 sd_bus_message *_mm = (m); \
e32fd6b4 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", \
b56c4604
LP
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, \
e32fd6b4 57 strna(_mm->root_container.signature), \
e28d0865 58 strna(_mm->error.name), \
b56c4604
LP
59 strna(_mm->error.message)); \
60 } while (false)
f9f97ca6 61
e3017af9 62static int bus_poll(sd_bus *bus, bool need_more, uint64_t timeout_usec);
8a5cd31e
LP
63static void bus_detach_io_events(sd_bus *b);
64static void bus_detach_inotify_event(sd_bus *b);
e3017af9 65
fa2f8973
LP
66static thread_local sd_bus *default_system_bus = NULL;
67static thread_local sd_bus *default_user_bus = NULL;
68static thread_local sd_bus *default_starter_bus = NULL;
69
45b1f410
NM
70static 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
115sd_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
8a5cd31e 128void bus_close_io_fds(sd_bus *b) {
f54514f3
LP
129 assert(b);
130
8a5cd31e 131 bus_detach_io_events(b);
1e05d493 132
0fd8d506 133 if (b->input_fd != b->output_fd)
03e334a1 134 safe_close(b->output_fd);
0fd8d506 135 b->output_fd = b->input_fd = safe_close(b->input_fd);
f54514f3
LP
136}
137
8a5cd31e
LP
138void 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
0e586eae 148static void bus_reset_queues(sd_bus *b) {
0e586eae
LP
149 assert(b);
150
f389bf15 151 while (b->rqueue_size > 0)
c1757a70 152 bus_message_unref_queued(b->rqueue[--b->rqueue_size], b);
f389bf15 153
253f96e5 154 b->rqueue = mfree(b->rqueue);
f389bf15 155 b->rqueue_allocated = 0;
0e586eae 156
f389bf15 157 while (b->wqueue_size > 0)
c1757a70 158 bus_message_unref_queued(b->wqueue[--b->wqueue_size], b);
0e586eae 159
253f96e5 160 b->wqueue = mfree(b->wqueue);
f389bf15 161 b->wqueue_allocated = 0;
0e586eae
LP
162}
163
9df088f1 164static sd_bus* bus_free(sd_bus *b) {
19befb2d 165 sd_bus_slot *s;
de1c301e
LP
166
167 assert(b);
8f8f05a9 168 assert(!b->track_queue);
232f3677 169 assert(!b->tracks);
8f8f05a9 170
19befb2d
LP
171 b->state = BUS_CLOSED;
172
40ca29a1
LP
173 sd_bus_detach_event(b);
174
19befb2d
LP
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);
2e7e8e34 184 bus_slot_disconnect(s, true);
19befb2d
LP
185 }
186
f4d140e9
LP
187 if (b->default_bus_ptr)
188 *b->default_bus_ptr = NULL;
189
8a5cd31e
LP
190 bus_close_io_fds(b);
191 bus_close_inotify_fd(b);
de1c301e 192
c4e6556c 193 free(b->label);
18ac4643 194 free(b->groups);
de1c301e 195 free(b->rbuffer);
89ffcd2a 196 free(b->unique_name);
2181a7f5 197 free(b->auth_buffer);
89ffcd2a 198 free(b->address);
a7893c6b 199 free(b->machine);
455971c1 200 free(b->description);
48ef41a3 201 free(b->patch_sender);
89ffcd2a 202
2fd9ae2e
LP
203 free(b->exec_path);
204 strv_free(b->exec_argv);
205
2c93b4ef
LP
206 close_many(b->fds, b->n_fds);
207 free(b->fds);
208
0e586eae 209 bus_reset_queues(b);
de1c301e 210
c9fe4af7 211 ordered_hashmap_free_free(b->reply_callbacks);
e3017af9 212 prioq_free(b->reply_callbacks_prioq);
de1c301e 213
75a0da95 214 assert(b->match_callbacks.type == BUS_MATCH_ROOT);
392d5b37
LP
215 bus_match_free(&b->match_callbacks);
216
29ddb38f
LP
217 hashmap_free_free(b->vtable_methods);
218 hashmap_free_free(b->vtable_properties);
219
19befb2d 220 assert(hashmap_isempty(b->nodes));
29ddb38f
LP
221 hashmap_free(b->nodes);
222
a132bef0 223 bus_flush_memfd(b);
bc7fd8cd 224
45fbe937
LP
225 assert_se(pthread_mutex_destroy(&b->memfd_cache_mutex) == 0);
226
9df088f1 227 return mfree(b);
de1c301e
LP
228}
229
9df088f1
ZJS
230DEFINE_TRIVIAL_CLEANUP_FUNC(sd_bus*, bus_free);
231
d9f644e2 232_public_ int sd_bus_new(sd_bus **ret) {
01c4dcaf 233 _cleanup_free_ sd_bus *b = NULL;
de1c301e 234
d6888822 235 assert_return(ret, -EINVAL);
021a1e78 236
c4e48030 237 b = new(sd_bus, 1);
01c4dcaf 238 if (!b)
021a1e78 239 return -ENOMEM;
de1c301e 240
c4e48030 241 *b = (sd_bus) {
42541a71 242 .n_ref = 1,
c4e48030
LP
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 };
01c4dcaf 253
01c4dcaf
ZJS
254 /* We guarantee that wqueue always has space for at least one entry */
255 if (!GREEDY_REALLOC(b->wqueue, b->wqueue_allocated, 1))
021a1e78 256 return -ENOMEM;
de1c301e 257
2fe9a10d
LP
258 assert_se(pthread_mutex_init(&b->memfd_cache_mutex, NULL) == 0);
259
01c4dcaf 260 *ret = TAKE_PTR(b);
021a1e78
LP
261 return 0;
262}
263
d9f644e2 264_public_ int sd_bus_set_address(sd_bus *bus, const char *address) {
d6888822 265 assert_return(bus, -EINVAL);
45b1f410 266 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822
LP
267 assert_return(bus->state == BUS_UNSET, -EPERM);
268 assert_return(address, -EINVAL);
269 assert_return(!bus_pid_changed(bus), -ECHILD);
021a1e78 270
1ab436e3 271 return free_and_strdup(&bus->address, address);
021a1e78
LP
272}
273
d9f644e2 274_public_ int sd_bus_set_fd(sd_bus *bus, int input_fd, int output_fd) {
d6888822 275 assert_return(bus, -EINVAL);
45b1f410 276 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822 277 assert_return(bus->state == BUS_UNSET, -EPERM);
8ac43fee
LP
278 assert_return(input_fd >= 0, -EBADF);
279 assert_return(output_fd >= 0, -EBADF);
d6888822 280 assert_return(!bus_pid_changed(bus), -ECHILD);
021a1e78 281
e82c9509
LP
282 bus->input_fd = input_fd;
283 bus->output_fd = output_fd;
021a1e78
LP
284 return 0;
285}
286
59a77060 287_public_ int sd_bus_set_exec(sd_bus *bus, const char *path, char *const *argv) {
1ab436e3
YW
288 _cleanup_strv_free_ char **a = NULL;
289 int r;
2fd9ae2e 290
d6888822 291 assert_return(bus, -EINVAL);
45b1f410 292 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822
LP
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);
2fd9ae2e 297
2fd9ae2e 298 a = strv_copy(argv);
01c4dcaf 299 if (!a)
2fd9ae2e 300 return -ENOMEM;
2fd9ae2e 301
1ab436e3
YW
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);
2fd9ae2e
LP
307}
308
d9f644e2 309_public_ int sd_bus_set_bus_client(sd_bus *bus, int b) {
d6888822 310 assert_return(bus, -EINVAL);
45b1f410 311 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822 312 assert_return(bus->state == BUS_UNSET, -EPERM);
48ef41a3 313 assert_return(!bus->patch_sender, -EPERM);
d6888822 314 assert_return(!bus_pid_changed(bus), -ECHILD);
021a1e78 315
94bbf1ba 316 bus->bus_client = !!b;
021a1e78
LP
317 return 0;
318}
319
09365592
LP
320_public_ int sd_bus_set_monitor(sd_bus *bus, int b) {
321 assert_return(bus, -EINVAL);
45b1f410 322 assert_return(bus = bus_resolve(bus), -ENOPKG);
09365592
LP
323 assert_return(bus->state == BUS_UNSET, -EPERM);
324 assert_return(!bus_pid_changed(bus), -ECHILD);
325
e5c8029e 326 bus->is_monitor = !!b;
09365592
LP
327 return 0;
328}
329
d9f644e2 330_public_ int sd_bus_negotiate_fds(sd_bus *bus, int b) {
d6888822 331 assert_return(bus, -EINVAL);
45b1f410 332 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822
LP
333 assert_return(bus->state == BUS_UNSET, -EPERM);
334 assert_return(!bus_pid_changed(bus), -ECHILD);
021a1e78 335
e5c8029e 336 bus->accept_fd = !!b;
264ad849
LP
337 return 0;
338}
339
4fc31988 340_public_ int sd_bus_negotiate_timestamp(sd_bus *bus, int b) {
16be4368 341 assert_return(bus, -EINVAL);
45b1f410 342 assert_return(bus = bus_resolve(bus), -ENOPKG);
b5dae4c7 343 assert_return(!IN_SET(bus->state, BUS_CLOSING, BUS_CLOSED), -EPERM);
16be4368
KS
344 assert_return(!bus_pid_changed(bus), -ECHILD);
345
c7db1984
LP
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 */
e5c8029e 348 bus->attach_timestamp = !!b;
b5dae4c7 349
16be4368
KS
350 return 0;
351}
352
b5dae4c7 353_public_ int sd_bus_negotiate_creds(sd_bus *bus, int b, uint64_t mask) {
16be4368 354 assert_return(bus, -EINVAL);
45b1f410 355 assert_return(bus = bus_resolve(bus), -ENOPKG);
95c4fe82 356 assert_return(mask <= _SD_BUS_CREDS_ALL, -EINVAL);
b5dae4c7 357 assert_return(!IN_SET(bus->state, BUS_CLOSING, BUS_CLOSED), -EPERM);
16be4368
KS
358 assert_return(!bus_pid_changed(bus), -ECHILD);
359
5883ff60 360 SET_FLAG(bus->creds_mask, mask, b);
b5dae4c7 361
49b832c5 362 /* The well knowns we need unconditionally, so that matches can work */
b5dae4c7
LP
363 bus->creds_mask |= SD_BUS_CREDS_WELL_KNOWN_NAMES|SD_BUS_CREDS_UNIQUE_NAME;
364
b5dae4c7 365 return 0;
021a1e78 366}
de1c301e 367
d9f644e2 368_public_ int sd_bus_set_server(sd_bus *bus, int b, sd_id128_t server_id) {
d6888822 369 assert_return(bus, -EINVAL);
45b1f410 370 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822
LP
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);
2181a7f5
LP
374
375 bus->is_server = !!b;
98178d39 376 bus->server_id = server_id;
2181a7f5
LP
377 return 0;
378}
379
d9f644e2 380_public_ int sd_bus_set_anonymous(sd_bus *bus, int b) {
d6888822 381 assert_return(bus, -EINVAL);
45b1f410 382 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822
LP
383 assert_return(bus->state == BUS_UNSET, -EPERM);
384 assert_return(!bus_pid_changed(bus), -ECHILD);
2181a7f5
LP
385
386 bus->anonymous_auth = !!b;
387 return 0;
388}
389
adacb957
LP
390_public_ int sd_bus_set_trusted(sd_bus *bus, int b) {
391 assert_return(bus, -EINVAL);
45b1f410 392 assert_return(bus = bus_resolve(bus), -ENOPKG);
adacb957
LP
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
455971c1 400_public_ int sd_bus_set_description(sd_bus *bus, const char *description) {
5972fe95 401 assert_return(bus, -EINVAL);
45b1f410 402 assert_return(bus = bus_resolve(bus), -ENOPKG);
5972fe95
LP
403 assert_return(bus->state == BUS_UNSET, -EPERM);
404 assert_return(!bus_pid_changed(bus), -ECHILD);
405
d1b91c99 406 return free_and_strdup(&bus->description, description);
5972fe95
LP
407}
408
c0765ddb
LP
409_public_ int sd_bus_set_allow_interactive_authorization(sd_bus *bus, int b) {
410 assert_return(bus, -EINVAL);
45b1f410 411 assert_return(bus = bus_resolve(bus), -ENOPKG);
c0765ddb
LP
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);
45b1f410 420 assert_return(bus = bus_resolve(bus), -ENOPKG);
c0765ddb
LP
421 assert_return(!bus_pid_changed(bus), -ECHILD);
422
423 return bus->allow_interactive_authorization;
424}
425
8a5cd31e
LP
426_public_ int sd_bus_set_watch_bind(sd_bus *bus, int b) {
427 assert_return(bus, -EINVAL);
45b1f410 428 assert_return(bus = bus_resolve(bus), -ENOPKG);
8a5cd31e
LP
429 assert_return(bus->state == BUS_UNSET, -EPERM);
430 assert_return(!bus_pid_changed(bus), -ECHILD);
431
e5c8029e 432 bus->watch_bind = !!b;
8a5cd31e
LP
433 return 0;
434}
435
436_public_ int sd_bus_get_watch_bind(sd_bus *bus) {
437 assert_return(bus, -EINVAL);
45b1f410 438 assert_return(bus = bus_resolve(bus), -ENOPKG);
8a5cd31e
LP
439 assert_return(!bus_pid_changed(bus), -ECHILD);
440
441 return bus->watch_bind;
442}
443
b38cc8d5
LP
444_public_ int sd_bus_set_connected_signal(sd_bus *bus, int b) {
445 assert_return(bus, -EINVAL);
45b1f410 446 assert_return(bus = bus_resolve(bus), -ENOPKG);
b38cc8d5
LP
447 assert_return(bus->state == BUS_UNSET, -EPERM);
448 assert_return(!bus_pid_changed(bus), -ECHILD);
449
e5c8029e 450 bus->connected_signal = !!b;
b38cc8d5
LP
451 return 0;
452}
453
454_public_ int sd_bus_get_connected_signal(sd_bus *bus) {
455 assert_return(bus, -EINVAL);
45b1f410 456 assert_return(bus = bus_resolve(bus), -ENOPKG);
b38cc8d5
LP
457 assert_return(!bus_pid_changed(bus), -ECHILD);
458
459 return bus->connected_signal;
460}
461
462static 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
5238e957 470 * Hello() reply. Or in other words, whenever we enter BUS_RUNNING state.
b38cc8d5 471 *
5238e957 472 * This is useful so that clients can start doing stuff whenever the connection is fully established in a way
b38cc8d5
LP
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);
f1617a3b 488 m->read_counter = ++bus->read_counter;
b38cc8d5
LP
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);
c1757a70 500 bus->rqueue[0] = bus_message_ref_queued(m, bus);
b38cc8d5
LP
501 bus->rqueue_size++;
502
503 return 0;
504}
505
3e0e196e 506void bus_set_state(sd_bus *bus, enum bus_state state) {
3e0e196e
LP
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
19070062 528static int hello_callback(sd_bus_message *reply, void *userdata, sd_bus_error *error) {
de1c301e 529 const char *s;
19070062 530 sd_bus *bus;
de1c301e
LP
531 int r;
532
19070062
LP
533 assert(reply);
534 bus = reply->bus;
de1c301e 535 assert(bus);
945c2931 536 assert(IN_SET(bus->state, BUS_HELLO, BUS_CLOSING));
de1c301e 537
40ca29a1 538 r = sd_bus_message_get_errno(reply);
19fa17c7
LP
539 if (r > 0) {
540 r = -r;
541 goto fail;
542 }
eb01ba5d 543
de1c301e
LP
544 r = sd_bus_message_read(reply, "s", &s);
545 if (r < 0)
19fa17c7 546 goto fail;
de1c301e 547
19fa17c7
LP
548 if (!service_name_is_valid(s) || s[0] != ':') {
549 r = -EBADMSG;
550 goto fail;
551 }
dafb7591 552
1ab436e3
YW
553 r = free_and_strdup(&bus->unique_name, s);
554 if (r < 0)
19fa17c7 555 goto fail;
b4ca3f45 556
b38cc8d5 557 if (bus->state == BUS_HELLO) {
3e0e196e 558 bus_set_state(bus, BUS_RUNNING);
dafb7591 559
b38cc8d5
LP
560 r = synthesize_connected_signal(bus);
561 if (r < 0)
19fa17c7 562 goto fail;
b38cc8d5
LP
563 }
564
de1c301e 565 return 1;
19fa17c7
LP
566
567fail:
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;
de1c301e
LP
574}
575
576static int bus_send_hello(sd_bus *bus) {
4afd3348 577 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
de1c301e
LP
578 int r;
579
580 assert(bus);
581
a132bef0 582 if (!bus->bus_client)
021a1e78
LP
583 return 0;
584
de1c301e
LP
585 r = sd_bus_message_new_method_call(
586 bus,
151b9b96 587 &m,
de1c301e 588 "org.freedesktop.DBus",
a7639e37 589 "/org/freedesktop/DBus",
de1c301e 590 "org.freedesktop.DBus",
151b9b96 591 "Hello");
de1c301e
LP
592 if (r < 0)
593 return r;
594
19befb2d 595 return sd_bus_call_async(bus, NULL, m, hello_callback, NULL, 0);
de1c301e
LP
596}
597
a7e3212d 598int bus_start_running(sd_bus *bus) {
ac8029fc 599 struct reply_callback *c;
ac8029fc 600 usec_t n;
b38cc8d5 601 int r;
ac8029fc 602
de1c301e 603 assert(bus);
ac8029fc
LP
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);
90e74a66 611 ORDERED_HASHMAP_FOREACH(c, bus->reply_callbacks) {
ac8029fc
LP
612 if (c->timeout_usec == 0)
613 continue;
614
615 c->timeout_usec = usec_add(n, c->timeout_usec);
616 }
de1c301e 617
a132bef0 618 if (bus->bus_client) {
3e0e196e 619 bus_set_state(bus, BUS_HELLO);
e3017af9 620 return 1;
de1c301e
LP
621 }
622
3e0e196e 623 bus_set_state(bus, BUS_RUNNING);
b38cc8d5
LP
624
625 r = synthesize_connected_signal(bus);
626 if (r < 0)
627 return r;
628
e3017af9 629 return 1;
de1c301e
LP
630}
631
632static int parse_address_key(const char **p, const char *key, char **value) {
821e0756 633 size_t l, n = 0, allocated = 0;
cad4fb19 634 _cleanup_free_ char *r = NULL;
de1c301e 635 const char *a;
de1c301e
LP
636
637 assert(p);
638 assert(*p);
de1c301e
LP
639 assert(value);
640
2fd9ae2e
LP
641 if (key) {
642 l = strlen(key);
643 if (strncmp(*p, key, l) != 0)
644 return 0;
de1c301e 645
2fd9ae2e
LP
646 if ((*p)[l] != '=')
647 return 0;
de1c301e 648
2fd9ae2e
LP
649 if (*value)
650 return -EINVAL;
de1c301e 651
2fd9ae2e
LP
652 a = *p + l + 1;
653 } else
654 a = *p;
655
945c2931 656 while (!IN_SET(*a, ';', ',', 0)) {
821e0756 657 char c;
de1c301e
LP
658
659 if (*a == '%') {
660 int x, y;
661
662 x = unhexchar(a[1]);
cad4fb19 663 if (x < 0)
de1c301e 664 return x;
de1c301e
LP
665
666 y = unhexchar(a[2]);
cad4fb19 667 if (y < 0)
de1c301e 668 return y;
de1c301e 669
de1c301e 670 c = (char) ((x << 4) | y);
89ffcd2a
LP
671 a += 3;
672 } else {
de1c301e 673 c = *a;
89ffcd2a
LP
674 a++;
675 }
de1c301e 676
821e0756 677 if (!GREEDY_REALLOC(r, allocated, n + 2))
de1c301e 678 return -ENOMEM;
de1c301e 679
de1c301e
LP
680 r[n++] = c;
681 }
682
89ffcd2a
LP
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
de1c301e 693 *p = a;
2fd9ae2e 694
cad4fb19 695 free_and_replace(*value, r);
2fd9ae2e 696
de1c301e
LP
697 return 1;
698}
699
700static void skip_address_key(const char **p) {
701 assert(p);
702 assert(*p);
703
89ffcd2a
LP
704 *p += strcspn(*p, ",");
705
706 if (**p == ',')
313cefa1 707 (*p)++;
de1c301e
LP
708}
709
2fd9ae2e
LP
710static int parse_unix_address(sd_bus *b, const char **p, char **guid) {
711 _cleanup_free_ char *path = NULL, *abstract = NULL;
712 size_t l;
de1c301e
LP
713 int r;
714
715 assert(b);
2fd9ae2e
LP
716 assert(p);
717 assert(*p);
718 assert(guid);
de1c301e 719
945c2931 720 while (!IN_SET(**p, 0, ';')) {
2fd9ae2e
LP
721 r = parse_address_key(p, "guid", guid);
722 if (r < 0)
723 return r;
724 else if (r > 0)
725 continue;
de1c301e 726
2fd9ae2e
LP
727 r = parse_address_key(p, "path", &path);
728 if (r < 0)
729 return r;
730 else if (r > 0)
731 continue;
de1c301e 732
2fd9ae2e
LP
733 r = parse_address_key(p, "abstract", &abstract);
734 if (r < 0)
735 return r;
736 else if (r > 0)
737 continue;
de1c301e 738
2fd9ae2e
LP
739 skip_address_key(p);
740 }
de1c301e 741
2fd9ae2e
LP
742 if (!path && !abstract)
743 return -EINVAL;
de1c301e 744
2fd9ae2e
LP
745 if (path && abstract)
746 return -EINVAL;
747
748 if (path) {
749 l = strlen(path);
1d261418 750 if (l >= sizeof(b->sockaddr.un.sun_path)) /* We insist on NUL termination */
2fd9ae2e 751 return -E2BIG;
de1c301e 752
95cb14b0
LP
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
2fd9ae2e 763 l = strlen(abstract);
1d261418 764 if (l >= sizeof(b->sockaddr.un.sun_path) - 1) /* We insist on NUL termination */
2fd9ae2e
LP
765 return -E2BIG;
766
95cb14b0
LP
767 b->sockaddr.un = (struct sockaddr_un) {
768 .sun_family = AF_UNIX,
769 };
770
771 memcpy(b->sockaddr.un.sun_path+1, abstract, l);
2fd9ae2e
LP
772 b->sockaddr_size = offsetof(struct sockaddr_un, sun_path) + 1 + l;
773 }
774
694859b5
LP
775 b->is_local = true;
776
2fd9ae2e
LP
777 return 0;
778}
779
780static int parse_tcp_address(sd_bus *b, const char **p, char **guid) {
781 _cleanup_free_ char *host = NULL, *port = NULL, *family = NULL;
2fd9ae2e 782 int r;
b92bea5d
ZJS
783 struct addrinfo *result, hints = {
784 .ai_socktype = SOCK_STREAM,
b92bea5d 785 };
2fd9ae2e
LP
786
787 assert(b);
788 assert(p);
789 assert(*p);
790 assert(guid);
791
945c2931 792 while (!IN_SET(**p, 0, ';')) {
2fd9ae2e
LP
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
2fd9ae2e
LP
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
694859b5
LP
843 b->is_local = false;
844
2fd9ae2e
LP
845 return 0;
846}
847
848static 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;
821e0756 852 size_t allocated = 0;
2fd9ae2e
LP
853 int r;
854
855 assert(b);
856 assert(p);
857 assert(*p);
858 assert(guid);
859
945c2931 860 while (!IN_SET(**p, 0, ';')) {
2fd9ae2e
LP
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);
8333c77e 878 if (errno > 0 || **p != '=' || ul > 256) {
2fd9ae2e
LP
879 r = -EINVAL;
880 goto fail;
881 }
882
313cefa1 883 (*p)++;
2fd9ae2e
LP
884
885 if (ul >= n_argv) {
821e0756 886 if (!GREEDY_REALLOC0(argv, allocated, ul + 2)) {
2fd9ae2e
LP
887 r = -ENOMEM;
888 goto fail;
889 }
890
2fd9ae2e
LP
891 n_argv = ul + 1;
892 }
893
894 r = parse_address_key(p, NULL, argv + ul);
de1c301e 895 if (r < 0)
2fd9ae2e 896 goto fail;
de1c301e 897
2fd9ae2e 898 continue;
de1c301e
LP
899 }
900
2fd9ae2e
LP
901 skip_address_key(p);
902 }
de1c301e 903
5a0f6033
LP
904 if (!path) {
905 r = -EINVAL;
2fd9ae2e 906 goto fail;
5a0f6033 907 }
de1c301e 908
2fd9ae2e
LP
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 }
de1c301e 924
2fd9ae2e
LP
925 b->exec_path = path;
926 b->exec_argv = argv;
694859b5
LP
927
928 b->is_local = false;
929
2fd9ae2e 930 return 0;
de1c301e 931
2fd9ae2e
LP
932fail:
933 for (j = 0; j < n_argv; j++)
934 free(argv[j]);
935
936 free(argv);
937 free(path);
938 return r;
939}
940
bc9fd78c 941static int parse_container_unix_address(sd_bus *b, const char **p, char **guid) {
ee502e0c 942 _cleanup_free_ char *machine = NULL, *pid = NULL;
a7893c6b
LP
943 int r;
944
945 assert(b);
946 assert(p);
947 assert(*p);
948 assert(guid);
949
945c2931 950 while (!IN_SET(**p, 0, ';')) {
a7893c6b
LP
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
ee502e0c
LP
963 r = parse_address_key(p, "pid", &pid);
964 if (r < 0)
965 return r;
966 else if (r > 0)
967 continue;
968
a7893c6b
LP
969 skip_address_key(p);
970 }
971
ee502e0c 972 if (!machine == !pid)
a7893c6b
LP
973 return -EINVAL;
974
ee502e0c 975 if (machine) {
52ef5dd7 976 if (!hostname_is_valid(machine, VALID_HOSTNAME_DOT_HOST))
ee502e0c 977 return -EINVAL;
b6741478 978
f9ecfd3b 979 free_and_replace(b->machine, machine);
d3d5ff4b 980 } else
a1e58e8e 981 b->machine = mfree(b->machine);
ee502e0c
LP
982
983 if (pid) {
984 r = parse_pid(pid, &b->nspid);
985 if (r < 0)
986 return r;
987 } else
988 b->nspid = 0;
a7893c6b 989
44ed5214
LP
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 };
fc2fffe7 995 b->sockaddr_size = SOCKADDR_UN_LEN(b->sockaddr.un);
694859b5 996 b->is_local = false;
a7893c6b
LP
997
998 return 0;
999}
1000
2fd9ae2e
LP
1001static void bus_reset_parsed_address(sd_bus *b) {
1002 assert(b);
1003
1004 zero(b->sockaddr);
1005 b->sockaddr_size = 0;
ba243e51
NK
1006 b->exec_argv = strv_free(b->exec_argv);
1007 b->exec_path = mfree(b->exec_path);
98178d39 1008 b->server_id = SD_ID128_NULL;
ba243e51 1009 b->machine = mfree(b->machine);
ee502e0c 1010 b->nspid = 0;
2fd9ae2e
LP
1011}
1012
1013static 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;
de1c301e 1028
2fd9ae2e 1029 while (*a != 0) {
de1c301e 1030
2fd9ae2e
LP
1031 if (*a == ';') {
1032 a++;
1033 continue;
de1c301e
LP
1034 }
1035
2fd9ae2e
LP
1036 if (startswith(a, "unix:")) {
1037 a += 5;
de1c301e 1038
2fd9ae2e 1039 r = parse_unix_address(b, &a, &guid);
de1c301e
LP
1040 if (r < 0)
1041 return r;
2fd9ae2e 1042 break;
de1c301e 1043
2fd9ae2e 1044 } else if (startswith(a, "tcp:")) {
de1c301e 1045
2fd9ae2e
LP
1046 a += 4;
1047 r = parse_tcp_address(b, &a, &guid);
de1c301e
LP
1048 if (r < 0)
1049 return r;
de1c301e 1050
2fd9ae2e
LP
1051 break;
1052
1053 } else if (startswith(a, "unixexec:")) {
1054
1055 a += 9;
1056 r = parse_exec_address(b, &a, &guid);
de1c301e
LP
1057 if (r < 0)
1058 return r;
de1c301e 1059
2fd9ae2e 1060 break;
de1c301e 1061
de33fc62 1062 } else if (startswith(a, "x-machine-unix:")) {
bc9fd78c 1063
146d4773 1064 a += 15;
bc9fd78c
LP
1065 r = parse_container_unix_address(b, &a, &guid);
1066 if (r < 0)
1067 return r;
1068
6629161f 1069 break;
de1c301e
LP
1070 }
1071
2fd9ae2e
LP
1072 a = strchr(a, ';');
1073 if (!a)
1074 return 0;
de1c301e
LP
1075 }
1076
1077 if (guid) {
98178d39 1078 r = sd_id128_from_string(guid, &b->server_id);
de1c301e
LP
1079 if (r < 0)
1080 return r;
1081 }
1082
2fd9ae2e 1083 b->address_index = a - b->address;
de1c301e
LP
1084 return 1;
1085}
1086
392cf1d0
SL
1087static 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
a7e3212d 1094static int bus_start_address(sd_bus *b) {
2fd9ae2e
LP
1095 int r;
1096
1097 assert(b);
1098
1099 for (;;) {
8a5cd31e
LP
1100 bus_close_io_fds(b);
1101 bus_close_inotify_fd(b);
a7e3212d 1102
392cf1d0
SL
1103 bus_kill_exec(b);
1104
a132bef0
ZJS
1105 /* If you provide multiple different bus-addresses, we
1106 * try all of them in order and use the first one that
1107 * succeeds. */
15442912 1108
1e05d493 1109 if (b->exec_path)
a7893c6b 1110 r = bus_socket_exec(b);
a132bef0
ZJS
1111 else if ((b->nspid > 0 || b->machine) && b->sockaddr.sa.sa_family != AF_UNSPEC)
1112 r = bus_container_connect_socket(b);
a132bef0
ZJS
1113 else if (b->sockaddr.sa.sa_family != AF_UNSPEC)
1114 r = bus_socket_connect(b);
a132bef0
ZJS
1115 else
1116 goto next;
1117
1118 if (r >= 0) {
8a5cd31e
LP
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;
2fd9ae2e
LP
1130 }
1131
a132bef0
ZJS
1132 b->last_connect_error = -r;
1133
1134 next:
2fd9ae2e
LP
1135 r = bus_parse_next_address(b);
1136 if (r < 0)
1137 return r;
1138 if (r == 0)
a132bef0 1139 return b->last_connect_error > 0 ? -b->last_connect_error : -ECONNREFUSED;
de1c301e
LP
1140 }
1141}
1142
a7e3212d
LP
1143int bus_next_address(sd_bus *b) {
1144 assert(b);
1145
1146 bus_reset_parsed_address(b);
1147 return bus_start_address(b);
1148}
1149
021a1e78 1150static int bus_start_fd(sd_bus *b) {
6629161f 1151 struct stat st;
021a1e78
LP
1152 int r;
1153
1154 assert(b);
e82c9509
LP
1155 assert(b->input_fd >= 0);
1156 assert(b->output_fd >= 0);
021a1e78 1157
165fee86
ZJS
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
e82c9509 1168 r = fd_nonblock(b->input_fd, true);
021a1e78
LP
1169 if (r < 0)
1170 return r;
1171
e82c9509 1172 r = fd_cloexec(b->input_fd, true);
021a1e78
LP
1173 if (r < 0)
1174 return r;
1175
e82c9509
LP
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
6629161f
LP
1186 if (fstat(b->input_fd, &st) < 0)
1187 return -errno;
1188
a132bef0 1189 return bus_socket_take_fd(b);
021a1e78
LP
1190}
1191
d9f644e2 1192_public_ int sd_bus_start(sd_bus *bus) {
021a1e78
LP
1193 int r;
1194
d6888822 1195 assert_return(bus, -EINVAL);
45b1f410 1196 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822
LP
1197 assert_return(bus->state == BUS_UNSET, -EPERM);
1198 assert_return(!bus_pid_changed(bus), -ECHILD);
021a1e78 1199
3e0e196e 1200 bus_set_state(bus, BUS_OPENING);
021a1e78 1201
2181a7f5
LP
1202 if (bus->is_server && bus->bus_client)
1203 return -EINVAL;
1204
e82c9509 1205 if (bus->input_fd >= 0)
021a1e78 1206 r = bus_start_fd(bus);
a132bef0 1207 else if (bus->address || bus->sockaddr.sa.sa_family != AF_UNSPEC || bus->exec_path || bus->machine)
a7e3212d 1208 r = bus_start_address(bus);
021a1e78
LP
1209 else
1210 return -EINVAL;
1211
db9bb83f
LP
1212 if (r < 0) {
1213 sd_bus_close(bus);
021a1e78 1214 return r;
db9bb83f 1215 }
021a1e78
LP
1216
1217 return bus_send_hello(bus);
1218}
1219
56fbd718 1220_public_ int sd_bus_open_with_description(sd_bus **ret, const char *description) {
af08d2f9 1221 const char *e;
9df088f1 1222 _cleanup_(bus_freep) sd_bus *b = NULL;
af08d2f9
LP
1223 int r;
1224
1225 assert_return(ret, -EINVAL);
1226
1227 /* Let's connect to the starter bus if it is set, and
5238e957 1228 * otherwise to the bus that is appropriate for the scope
af08d2f9
LP
1229 * we are running in */
1230
1231 e = secure_getenv("DBUS_STARTER_BUS_TYPE");
1232 if (e) {
1233 if (streq(e, "system"))
56fbd718 1234 return sd_bus_open_system_with_description(ret, description);
09365592 1235 else if (STR_IN_SET(e, "session", "user"))
56fbd718 1236 return sd_bus_open_user_with_description(ret, description);
af08d2f9
LP
1237 }
1238
1239 e = secure_getenv("DBUS_STARTER_ADDRESS");
1240 if (!e) {
1241 if (cg_pid_get_owner_uid(0, NULL) >= 0)
56fbd718 1242 return sd_bus_open_user_with_description(ret, description);
af08d2f9 1243 else
56fbd718 1244 return sd_bus_open_system_with_description(ret, description);
af08d2f9
LP
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)
9df088f1 1253 return r;
af08d2f9
LP
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;
694859b5 1260 b->is_local = false;
cf226cfc 1261 b->creds_mask |= SD_BUS_CREDS_UID | SD_BUS_CREDS_EUID | SD_BUS_CREDS_EFFECTIVE_CAPS;
af08d2f9
LP
1262
1263 r = sd_bus_start(b);
1264 if (r < 0)
9df088f1 1265 return r;
af08d2f9 1266
9df088f1 1267 *ret = TAKE_PTR(b);
af08d2f9 1268 return 0;
af08d2f9
LP
1269}
1270
56fbd718
ZJS
1271_public_ int sd_bus_open(sd_bus **ret) {
1272 return sd_bus_open_with_description(ret, NULL);
1273}
1274
09365592 1275int bus_set_address_system(sd_bus *b) {
de1c301e 1276 const char *e;
062ac2ea
ZJS
1277 int r;
1278
09365592
LP
1279 assert(b);
1280
1281 e = secure_getenv("DBUS_SYSTEM_BUS_ADDRESS");
062ac2ea
ZJS
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;
09365592
LP
1287}
1288
56fbd718 1289_public_ int sd_bus_open_system_with_description(sd_bus **ret, const char *description) {
9df088f1 1290 _cleanup_(bus_freep) sd_bus *b = NULL;
de1c301e
LP
1291 int r;
1292
d6888822 1293 assert_return(ret, -EINVAL);
de1c301e 1294
021a1e78
LP
1295 r = sd_bus_new(&b);
1296 if (r < 0)
1297 return r;
1298
56fbd718
ZJS
1299 if (description) {
1300 r = sd_bus_set_description(b, description);
1301 if (r < 0)
9df088f1 1302 return r;
56fbd718
ZJS
1303 }
1304
09365592 1305 r = bus_set_address_system(b);
e3dd987c 1306 if (r < 0)
9df088f1 1307 return r;
de1c301e 1308
94bbf1ba 1309 b->bus_client = true;
021a1e78 1310
adacb957
LP
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;
cf226cfc 1314 b->creds_mask |= SD_BUS_CREDS_UID | SD_BUS_CREDS_EUID | SD_BUS_CREDS_EFFECTIVE_CAPS;
694859b5 1315 b->is_local = true;
adacb957 1316
021a1e78
LP
1317 r = sd_bus_start(b);
1318 if (r < 0)
9df088f1 1319 return r;
de1c301e 1320
9df088f1 1321 *ret = TAKE_PTR(b);
de1c301e
LP
1322 return 0;
1323}
1324
56fbd718
ZJS
1325_public_ int sd_bus_open_system(sd_bus **ret) {
1326 return sd_bus_open_system_with_description(ret, NULL);
1327}
1328
09365592 1329int bus_set_address_user(sd_bus *b) {
d3d5ff4b
ZJS
1330 const char *a;
1331 _cleanup_free_ char *_a = NULL;
062ac2ea 1332 int r;
de1c301e 1333
09365592 1334 assert(b);
021a1e78 1335
d3d5ff4b
ZJS
1336 a = secure_getenv("DBUS_SESSION_BUS_ADDRESS");
1337 if (!a) {
1338 const char *e;
1339 _cleanup_free_ char *ee = NULL;
09365592 1340
d3d5ff4b
ZJS
1341 e = secure_getenv("XDG_RUNTIME_DIR");
1342 if (!e)
ab4a88eb
ZJS
1343 return log_debug_errno(SYNTHETIC_ERRNO(ENOMEDIUM),
1344 "sd-bus: $XDG_RUNTIME_DIR not set, cannot connect to user bus.");
e3dd987c 1345
d3d5ff4b
ZJS
1346 ee = bus_address_escape(e);
1347 if (!ee)
1348 return -ENOMEM;
09365592 1349
d3d5ff4b
ZJS
1350 if (asprintf(&_a, DEFAULT_USER_BUS_ADDRESS_FMT, ee) < 0)
1351 return -ENOMEM;
1352 a = _a;
1353 }
a132bef0 1354
062ac2ea
ZJS
1355 r = sd_bus_set_address(b, a);
1356 if (r >= 0)
1357 b->is_user = true;
1358 return r;
09365592
LP
1359}
1360
56fbd718 1361_public_ int sd_bus_open_user_with_description(sd_bus **ret, const char *description) {
9df088f1 1362 _cleanup_(bus_freep) sd_bus *b = NULL;
09365592
LP
1363 int r;
1364
1365 assert_return(ret, -EINVAL);
1366
1367 r = sd_bus_new(&b);
1368 if (r < 0)
1369 return r;
1370
56fbd718
ZJS
1371 if (description) {
1372 r = sd_bus_set_description(b, description);
1373 if (r < 0)
9df088f1 1374 return r;
56fbd718
ZJS
1375 }
1376
09365592
LP
1377 r = bus_set_address_user(b);
1378 if (r < 0)
9df088f1 1379 return r;
09365592 1380
94bbf1ba 1381 b->bus_client = true;
de1c301e 1382
61252bae 1383 /* We don't do any per-method access control on the user bus. */
adacb957 1384 b->trusted = true;
694859b5 1385 b->is_local = true;
adacb957 1386
021a1e78 1387 r = sd_bus_start(b);
2571ead1 1388 if (r < 0)
9df088f1 1389 return r;
de1c301e 1390
9df088f1 1391 *ret = TAKE_PTR(b);
de1c301e
LP
1392 return 0;
1393}
1394
56fbd718
ZJS
1395_public_ int sd_bus_open_user(sd_bus **ret) {
1396 return sd_bus_open_user_with_description(ret, NULL);
1397}
1398
09365592 1399int bus_set_address_system_remote(sd_bus *b, const char *host) {
0f8bd8de 1400 _cleanup_free_ char *e = NULL;
b85b4a70 1401 char *m = NULL, *c = NULL, *a, *rbracket = NULL, *p = NULL;
0f8bd8de 1402
09365592
LP
1403 assert(b);
1404 assert(host);
0f8bd8de 1405
b85b4a70
SL
1406 /* Skip ":"s in ipv6 addresses */
1407 if (*host == '[') {
1408 char *t;
7f0d207d 1409
b85b4a70
SL
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;
6a555849 1417 } else if ((a = strchr(host, '@'))) {
b85b4a70
SL
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);
7f0d207d
LP
1429 e = bus_address_escape(t);
1430 if (!e)
1431 return -ENOMEM;
6a555849
SL
1432 } else if (*(a + 1) == '\0' || strchr(a + 1, '@'))
1433 return -EINVAL;
1434 }
b85b4a70
SL
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;
7f0d207d 1441
b85b4a70
SL
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
6a555849 1450 if (!in_charset(p, "0123456789") || *p == '\0') {
52ef5dd7 1451 if (!hostname_is_valid(p, 0) || got_forward_slash)
b85b4a70 1452 return -EINVAL;
490c5a37
LP
1453
1454 m = TAKE_PTR(p);
1455 goto interpret_port_as_machine_old_syntax;
7f0d207d
LP
1456 }
1457 }
1458
b85b4a70
SL
1459 /* Let's see if a machine was given */
1460 m = strchr(rbracket ? rbracket + 1 : host, '/');
1461 if (m) {
1462 m++;
1463interpret_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. */
52ef5dd7 1466 if (!in_charset(m, "0123456789") && hostname_is_valid(m, 0))
b85b4a70
SL
1467 c = strjoina(",argv", p ? "7" : "5", "=--machine=", m);
1468 }
1469
7f0d207d 1470 if (!e) {
b85b4a70
SL
1471 char *t;
1472
1473 t = strndupa(host, strcspn(host, ":/"));
1474
1475 e = bus_address_escape(t);
7f0d207d
LP
1476 if (!e)
1477 return -ENOMEM;
1478 }
0f8bd8de 1479
b85b4a70
SL
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);
b4ca3f45 1483 if (!a)
0f8bd8de 1484 return -ENOMEM;
a7893c6b 1485
0639f135
ZJS
1486 return free_and_replace(b->address, a);
1487}
09365592
LP
1488
1489_public_ int sd_bus_open_system_remote(sd_bus **ret, const char *host) {
9df088f1 1490 _cleanup_(bus_freep) sd_bus *b = NULL;
09365592
LP
1491 int r;
1492
1493 assert_return(host, -EINVAL);
1494 assert_return(ret, -EINVAL);
1495
9df088f1 1496 r = sd_bus_new(&b);
09365592 1497 if (r < 0)
a7893c6b 1498 return r;
a7893c6b 1499
9df088f1 1500 r = bus_set_address_system_remote(b, host);
09365592 1501 if (r < 0)
9df088f1 1502 return r;
09365592 1503
9df088f1
ZJS
1504 b->bus_client = true;
1505 b->trusted = false;
1506 b->is_system = true;
1507 b->is_local = false;
a7893c6b 1508
9df088f1 1509 r = sd_bus_start(b);
09365592 1510 if (r < 0)
9df088f1 1511 return r;
a7893c6b 1512
9df088f1 1513 *ret = TAKE_PTR(b);
a7893c6b
LP
1514 return 0;
1515}
1516
1b630835 1517int bus_set_address_machine(sd_bus *b, bool user, const char *machine) {
8f13ef25 1518 _cleanup_free_ char *a = NULL;
1b630835 1519 const char *rhs;
a7893c6b 1520
09365592
LP
1521 assert(b);
1522 assert(machine);
a7893c6b 1523
1b630835
LP
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;
a7893c6b 1543
1b630835
LP
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 }
0f8bd8de 1609
0639f135 1610 return free_and_replace(b->address, a);
09365592
LP
1611}
1612
1b630835
LP
1613static 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
1643static 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) {
9df088f1 1678 _cleanup_(bus_freep) sd_bus *b = NULL;
09365592
LP
1679 int r;
1680
1b630835 1681 assert_return(user_and_machine, -EINVAL);
09365592 1682 assert_return(ret, -EINVAL);
1b630835
LP
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);
09365592 1692
9df088f1 1693 r = sd_bus_new(&b);
09365592 1694 if (r < 0)
0f8bd8de 1695 return r;
0f8bd8de 1696
1b630835 1697 r = bus_set_address_machine(b, false, user_and_machine);
09365592 1698 if (r < 0)
9df088f1 1699 return r;
09365592 1700
9df088f1 1701 b->bus_client = true;
9df088f1 1702 b->is_system = true;
1b630835
LP
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;
0f8bd8de 1739
9df088f1 1740 r = sd_bus_start(b);
09365592 1741 if (r < 0)
9df088f1 1742 return r;
0f8bd8de 1743
9df088f1 1744 *ret = TAKE_PTR(b);
0f8bd8de
LP
1745 return 0;
1746}
1747
d9f644e2 1748_public_ void sd_bus_close(sd_bus *bus) {
de1c301e
LP
1749 if (!bus)
1750 return;
d5a2b9a6
LP
1751 if (bus->state == BUS_CLOSED)
1752 return;
1753 if (bus_pid_changed(bus))
f54514f3
LP
1754 return;
1755
392cf1d0
SL
1756 /* Don't leave ssh hanging around */
1757 bus_kill_exec(bus);
1758
3e0e196e 1759 bus_set_state(bus, BUS_CLOSED);
e82c9509 1760
40ca29a1
LP
1761 sd_bus_detach_event(bus);
1762
0e586eae
LP
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
8a5cd31e
LP
1767 bus_close_io_fds(bus);
1768 bus_close_inotify_fd(bus);
de1c301e
LP
1769}
1770
bd62b744
LP
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
03976f7b 1780_public_ sd_bus* sd_bus_flush_close_unref(sd_bus *bus) {
03976f7b
LP
1781 if (!bus)
1782 return NULL;
1783
392cf1d0
SL
1784 /* Have to do this before flush() to prevent hang */
1785 bus_kill_exec(bus);
03976f7b 1786 sd_bus_flush(bus);
03976f7b 1787
bd62b744 1788 return sd_bus_close_unref(bus);
03976f7b
LP
1789}
1790
98c5bbc8 1791void bus_enter_closing(sd_bus *bus) {
718db961
LP
1792 assert(bus);
1793
8a5cd31e 1794 if (!IN_SET(bus->state, BUS_WATCH_BIND, BUS_OPENING, BUS_AUTHENTICATING, BUS_HELLO, BUS_RUNNING))
718db961
LP
1795 return;
1796
3e0e196e 1797 bus_set_state(bus, BUS_CLOSING);
718db961
LP
1798}
1799
42541a71 1800DEFINE_PUBLIC_TRIVIAL_REF_UNREF_FUNC(sd_bus, sd_bus, bus_free);
de1c301e 1801
d9f644e2 1802_public_ int sd_bus_is_open(sd_bus *bus) {
d6888822 1803 assert_return(bus, -EINVAL);
45b1f410 1804 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822 1805 assert_return(!bus_pid_changed(bus), -ECHILD);
e3017af9 1806
f54514f3 1807 return BUS_IS_OPEN(bus->state);
e3017af9
LP
1808}
1809
bdbc8669
LP
1810_public_ int sd_bus_is_ready(sd_bus *bus) {
1811 assert_return(bus, -EINVAL);
45b1f410 1812 assert_return(bus = bus_resolve(bus), -ENOPKG);
bdbc8669
LP
1813 assert_return(!bus_pid_changed(bus), -ECHILD);
1814
1815 return bus->state == BUS_RUNNING;
1816}
1817
d9f644e2 1818_public_ int sd_bus_can_send(sd_bus *bus, char type) {
d728d708
LP
1819 int r;
1820
d6888822 1821 assert_return(bus, -EINVAL);
45b1f410 1822 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822
LP
1823 assert_return(bus->state != BUS_UNSET, -ENOTCONN);
1824 assert_return(!bus_pid_changed(bus), -ECHILD);
de1c301e 1825
c7db1984 1826 if (bus->is_monitor)
09365592
LP
1827 return 0;
1828
d728d708 1829 if (type == SD_BUS_TYPE_UNIX_FD) {
c7db1984 1830 if (!bus->accept_fd)
021a1e78
LP
1831 return 0;
1832
20902f3e 1833 r = bus_ensure_running(bus);
d728d708
LP
1834 if (r < 0)
1835 return r;
de1c301e 1836
d728d708
LP
1837 return bus->can_fds;
1838 }
1839
1840 return bus_type_is_valid(type);
de1c301e
LP
1841}
1842
5c302692 1843_public_ int sd_bus_get_bus_id(sd_bus *bus, sd_id128_t *id) {
d728d708 1844 int r;
de1c301e 1845
d6888822 1846 assert_return(bus, -EINVAL);
45b1f410 1847 assert_return(bus = bus_resolve(bus), -ENOPKG);
f7fce345 1848 assert_return(id, -EINVAL);
d6888822 1849 assert_return(!bus_pid_changed(bus), -ECHILD);
de1c301e 1850
20902f3e 1851 r = bus_ensure_running(bus);
d728d708
LP
1852 if (r < 0)
1853 return r;
de1c301e 1854
f7fce345 1855 *id = bus->server_id;
d728d708 1856 return 0;
de1c301e
LP
1857}
1858
1f82f5bb
LP
1859#define COOKIE_CYCLED (UINT32_C(1) << 31)
1860
1861static 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
1871static 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
1895good:
1896 b->cookie = new_cookie;
1897 return 0;
1898}
1899
3df7a7e6 1900static int bus_seal_message(sd_bus *b, sd_bus_message *m, usec_t timeout) {
48ef41a3
LP
1901 int r;
1902
7adc46fc 1903 assert(b);
de1c301e
LP
1904 assert(m);
1905
aea93deb
LP
1906 if (m->sealed) {
1907 /* If we copy the same message to multiple
693eb9a2 1908 * destinations, avoid using the same cookie
aea93deb 1909 * numbers. */
693eb9a2 1910 b->cookie = MAX(b->cookie, BUS_MESSAGE_COOKIE(m));
de1c301e 1911 return 0;
aea93deb 1912 }
de1c301e 1913
385b2eb2
YW
1914 if (timeout == 0) {
1915 r = sd_bus_get_method_call_timeout(b, &timeout);
1916 if (r < 0)
1917 return r;
1918 }
3df7a7e6 1919
48ef41a3
LP
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
1f82f5bb
LP
1926 r = next_cookie(b);
1927 if (r < 0)
1928 return r;
1929
1930 return sd_bus_message_seal(m, b->cookie, timeout);
de1c301e
LP
1931}
1932
e1c433c6 1933static int bus_remarshal_message(sd_bus *b, sd_bus_message **m) {
908b8a42
DH
1934 bool remarshal = false;
1935
e1c433c6
LP
1936 assert(b);
1937
908b8a42
DH
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
908b8a42 1946 return remarshal ? bus_message_remarshal(b, m) : 0;
e1c433c6
LP
1947}
1948
7adc46fc
LP
1949int bus_seal_synthetic_message(sd_bus *b, sd_bus_message *m) {
1950 assert(b);
1951 assert(m);
1952
52cd5877
LP
1953 /* Fake some timestamps, if they were requested, and not
1954 * already initialized */
c7db1984 1955 if (b->attach_timestamp) {
52cd5877
LP
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
7adc46fc
LP
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
6f285378 1967 * pick a fixed, artificial one. We use (uint32_t) -1 rather
7adc46fc
LP
1968 * than (uint64_t) -1 since dbus1 only had 32bit identifiers,
1969 * even though kdbus can do 64bit. */
75bcbcf2 1970 return sd_bus_message_seal(m, 0xFFFFFFFFULL, 0);
7adc46fc
LP
1971}
1972
66baf8c6 1973static int bus_write_message(sd_bus *bus, sd_bus_message *m, size_t *idx) {
2e3db52d
LP
1974 int r;
1975
718db961 1976 assert(bus);
2e3db52d 1977 assert(m);
718db961 1978
a132bef0 1979 r = bus_socket_write_message(bus, m, idx);
2e3db52d
LP
1980 if (r <= 0)
1981 return r;
1982
a132bef0 1983 if (*idx >= BUS_MESSAGE_SIZE(m))
e32fd6b4 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",
2e3db52d
LP
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)),
42c4ebcb
LP
1991 BUS_MESSAGE_COOKIE(m),
1992 m->reply_cookie,
e32fd6b4 1993 strna(m->root_container.signature),
e28d0865 1994 strna(m->error.name),
2e3db52d
LP
1995 strna(m->error.message));
1996
1997 return r;
718db961
LP
1998}
1999
de1c301e 2000static int dispatch_wqueue(sd_bus *bus) {
e3017af9 2001 int r, ret = 0;
de1c301e
LP
2002
2003 assert(bus);
945c2931 2004 assert(IN_SET(bus->state, BUS_RUNNING, BUS_HELLO));
de1c301e 2005
de1c301e
LP
2006 while (bus->wqueue_size > 0) {
2007
66baf8c6 2008 r = bus_write_message(bus, bus->wqueue[0], &bus->windex);
718db961 2009 if (r < 0)
de1c301e 2010 return r;
718db961 2011 else if (r == 0)
e3017af9
LP
2012 /* Didn't do anything this time */
2013 return ret;
a132bef0 2014 else if (bus->windex >= BUS_MESSAGE_SIZE(bus->wqueue[0])) {
de1c301e
LP
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
313cefa1 2025 bus->wqueue_size--;
c1757a70 2026 bus_message_unref_queued(bus->wqueue[0], bus);
de1c301e
LP
2027 memmove(bus->wqueue, bus->wqueue + 1, sizeof(sd_bus_message*) * bus->wqueue_size);
2028 bus->windex = 0;
2029
e3017af9 2030 ret = 1;
de1c301e
LP
2031 }
2032 }
2033
e3017af9 2034 return ret;
de1c301e
LP
2035}
2036
1e9a7c44 2037static int bus_read_message(sd_bus *bus) {
7d22c717
LP
2038 assert(bus);
2039
a132bef0 2040 return bus_socket_read_message(bus);
7d22c717
LP
2041}
2042
7adc46fc 2043int bus_rqueue_make_room(sd_bus *bus) {
821e0756 2044 assert(bus);
7d22c717 2045
821e0756 2046 if (bus->rqueue_size >= BUS_RQUEUE_MAX)
7d22c717
LP
2047 return -ENOBUFS;
2048
821e0756 2049 if (!GREEDY_REALLOC(bus->rqueue, bus->rqueue_allocated, bus->rqueue_size + 1))
7d22c717
LP
2050 return -ENOMEM;
2051
7d22c717
LP
2052 return 0;
2053}
2054
c1757a70
LP
2055static 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
1e9a7c44 2064static int dispatch_rqueue(sd_bus *bus, sd_bus_message **m) {
e3017af9 2065 int r, ret = 0;
de1c301e
LP
2066
2067 assert(bus);
2068 assert(m);
945c2931 2069 assert(IN_SET(bus->state, BUS_RUNNING, BUS_HELLO));
de1c301e 2070
7d22c717
LP
2071 for (;;) {
2072 if (bus->rqueue_size > 0) {
2073 /* Dispatch a queued message */
c1757a70
LP
2074 *m = sd_bus_message_ref(bus->rqueue[0]);
2075 rqueue_drop_one(bus, 0);
7d22c717
LP
2076 return 1;
2077 }
de1c301e 2078
7d22c717 2079 /* Try to read a new message */
1e9a7c44 2080 r = bus_read_message(bus);
718db961 2081 if (r < 0)
e3017af9 2082 return r;
c0bc4ec5
LP
2083 if (r == 0) {
2084 *m = NULL;
e3017af9 2085 return ret;
c0bc4ec5 2086 }
de1c301e 2087
2e8d788c 2088 ret = 1;
7d22c717 2089 }
de1c301e
LP
2090}
2091
66baf8c6 2092_public_ int sd_bus_send(sd_bus *bus, sd_bus_message *_m, uint64_t *cookie) {
4afd3348 2093 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = sd_bus_message_ref(_m);
de1c301e
LP
2094 int r;
2095
d6888822 2096 assert_return(m, -EINVAL);
9030ca46 2097
70bc558c
ZJS
2098 if (bus)
2099 assert_return(bus = bus_resolve(bus), -ENOPKG);
2100 else
2101 assert_return(bus = m->bus, -ENOTCONN);
d6888822 2102 assert_return(!bus_pid_changed(bus), -ECHILD);
021a1e78 2103
a3d59cd1
LP
2104 if (!BUS_IS_OPEN(bus->state))
2105 return -ENOTCONN;
2106
021a1e78
LP
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)
15411c0c 2112 return -EOPNOTSUPP;
021a1e78 2113 }
de1c301e 2114
693eb9a2 2115 /* If the cookie number isn't kept, then we know that no reply
29f6aadd 2116 * is expected */
693eb9a2 2117 if (!cookie && !m->sealed)
0461f8cd 2118 m->header->flags |= BUS_MESSAGE_NO_REPLY_EXPECTED;
29f6aadd 2119
3df7a7e6 2120 r = bus_seal_message(bus, m, 0);
de1c301e
LP
2121 if (r < 0)
2122 return r;
2123
441d56a1 2124 /* Remarshall if we have to. This will possibly unref the
e1c433c6
LP
2125 * message and place a replacement in m */
2126 r = bus_remarshal_message(bus, &m);
2127 if (r < 0)
2128 return r;
2129
5407f2de
LP
2130 /* If this is a reply and no reply was requested, then let's
2131 * suppress this, if we can */
997eadb5
LP
2132 if (m->dont_send)
2133 goto finish;
5407f2de 2134
945c2931 2135 if (IN_SET(bus->state, BUS_RUNNING, BUS_HELLO) && bus->wqueue_size <= 0) {
de1c301e
LP
2136 size_t idx = 0;
2137
66baf8c6 2138 r = bus_write_message(bus, m, &idx);
32f46480 2139 if (r < 0) {
f60a028a 2140 if (ERRNO_IS_DISCONNECT(r)) {
32f46480 2141 bus_enter_closing(bus);
441d56a1
LP
2142 return -ECONNRESET;
2143 }
32f46480 2144
de1c301e 2145 return r;
997eadb5
LP
2146 }
2147
a132bef0 2148 if (idx < BUS_MESSAGE_SIZE(m)) {
de1c301e
LP
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. */
c1757a70 2154 bus->wqueue[0] = bus_message_ref_queued(m, bus);
de1c301e
LP
2155 bus->wqueue_size = 1;
2156 bus->windex = idx;
2157 }
997eadb5 2158
de1c301e 2159 } else {
de1c301e
LP
2160 /* Just append it to the queue. */
2161
25220239 2162 if (bus->wqueue_size >= BUS_WQUEUE_MAX)
de1c301e
LP
2163 return -ENOBUFS;
2164
821e0756 2165 if (!GREEDY_REALLOC(bus->wqueue, bus->wqueue_allocated, bus->wqueue_size + 1))
de1c301e
LP
2166 return -ENOMEM;
2167
c1757a70 2168 bus->wqueue[bus->wqueue_size++] = bus_message_ref_queued(m, bus);
de1c301e
LP
2169 }
2170
997eadb5 2171finish:
693eb9a2
LP
2172 if (cookie)
2173 *cookie = BUS_MESSAGE_COOKIE(m);
de1c301e 2174
7a37d625 2175 return 1;
de1c301e
LP
2176}
2177
693eb9a2 2178_public_ int sd_bus_send_to(sd_bus *bus, sd_bus_message *m, const char *destination, uint64_t *cookie) {
911121a7
LP
2179 int r;
2180
911121a7 2181 assert_return(m, -EINVAL);
9030ca46 2182
70bc558c
ZJS
2183 if (bus)
2184 assert_return(bus = bus_resolve(bus), -ENOPKG);
2185 else
2186 assert_return(bus = m->bus, -ENOTCONN);
911121a7
LP
2187 assert_return(!bus_pid_changed(bus), -ECHILD);
2188
a3d59cd1
LP
2189 if (!BUS_IS_OPEN(bus->state))
2190 return -ENOTCONN;
2191
911121a7
LP
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
693eb9a2 2202 return sd_bus_send(bus, m, cookie);
911121a7
LP
2203}
2204
ac8029fc
LP
2205static usec_t calc_elapse(sd_bus *bus, uint64_t usec) {
2206 assert(bus);
2207
de1c301e
LP
2208 if (usec == (uint64_t) -1)
2209 return 0;
2210
ac8029fc
LP
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;
de1c301e
LP
2219}
2220
e3017af9
LP
2221static int timeout_compare(const void *a, const void *b) {
2222 const struct reply_callback *x = a, *y = b;
2223
ac8029fc 2224 if (x->timeout_usec != 0 && y->timeout_usec == 0)
e3017af9
LP
2225 return -1;
2226
ac8029fc 2227 if (x->timeout_usec == 0 && y->timeout_usec != 0)
e3017af9
LP
2228 return 1;
2229
9c57a73b 2230 return CMP(x->timeout_usec, y->timeout_usec);
e3017af9
LP
2231}
2232
c49b30a2 2233_public_ int sd_bus_call_async(
de1c301e 2234 sd_bus *bus,
19befb2d 2235 sd_bus_slot **slot,
e1c433c6 2236 sd_bus_message *_m,
52f3ba91 2237 sd_bus_message_handler_t callback,
de1c301e 2238 void *userdata,
19befb2d 2239 uint64_t usec) {
de1c301e 2240
4afd3348
LP
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;
de1c301e
LP
2243 int r;
2244
d6888822 2245 assert_return(m, -EINVAL);
40ca29a1 2246 assert_return(m->header->type == SD_BUS_MESSAGE_METHOD_CALL, -EINVAL);
dbc526f0 2247 assert_return(!m->sealed || (!!callback == !(m->header->flags & BUS_MESSAGE_NO_REPLY_EXPECTED)), -EINVAL);
9030ca46 2248
70bc558c
ZJS
2249 if (bus)
2250 assert_return(bus = bus_resolve(bus), -ENOPKG);
2251 else
2252 assert_return(bus = m->bus, -ENOTCONN);
d6888822 2253 assert_return(!bus_pid_changed(bus), -ECHILD);
89ffcd2a 2254
a3d59cd1
LP
2255 if (!BUS_IS_OPEN(bus->state))
2256 return -ENOTCONN;
2257
dbc526f0
LP
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
c9fe4af7 2262 r = ordered_hashmap_ensure_allocated(&bus->reply_callbacks, &uint64_hash_ops);
89ffcd2a
LP
2263 if (r < 0)
2264 return r;
de1c301e 2265
3df7a7e6
LP
2266 r = prioq_ensure_allocated(&bus->reply_callbacks_prioq, timeout_compare);
2267 if (r < 0)
2268 return r;
e3017af9 2269
3df7a7e6 2270 r = bus_seal_message(bus, m, usec);
de1c301e
LP
2271 if (r < 0)
2272 return r;
2273
e1c433c6
LP
2274 r = bus_remarshal_message(bus, &m);
2275 if (r < 0)
2276 return r;
2277
dbc526f0
LP
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;
de1c301e 2282
dbc526f0 2283 s->reply_callback.callback = callback;
de1c301e 2284
dbc526f0
LP
2285 s->reply_callback.cookie = BUS_MESSAGE_COOKIE(m);
2286 r = ordered_hashmap_put(bus->reply_callbacks, &s->reply_callback.cookie, &s->reply_callback);
e3017af9 2287 if (r < 0) {
dbc526f0 2288 s->reply_callback.cookie = 0;
e3017af9
LP
2289 return r;
2290 }
dbc526f0
LP
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 }
e3017af9
LP
2300 }
2301
dbc526f0 2302 r = sd_bus_send(bus, m, s ? &s->reply_callback.cookie : NULL);
19befb2d 2303 if (r < 0)
de1c301e 2304 return r;
de1c301e 2305
19befb2d
LP
2306 if (slot)
2307 *slot = s;
2308 s = NULL;
e3017af9 2309
19befb2d 2310 return r;
de1c301e
LP
2311}
2312
20902f3e 2313int bus_ensure_running(sd_bus *bus) {
89ffcd2a
LP
2314 int r;
2315
2316 assert(bus);
2317
d728d708
LP
2318 if (bus->state == BUS_RUNNING)
2319 return 1;
89ffcd2a
LP
2320
2321 for (;;) {
93a59b1a
ZJS
2322 if (IN_SET(bus->state, BUS_UNSET, BUS_CLOSED, BUS_CLOSING))
2323 return -ENOTCONN;
2324
89ffcd2a
LP
2325 r = sd_bus_process(bus, NULL);
2326 if (r < 0)
2327 return r;
d728d708
LP
2328 if (bus->state == BUS_RUNNING)
2329 return 1;
e3017af9
LP
2330 if (r > 0)
2331 continue;
89ffcd2a
LP
2332
2333 r = sd_bus_wait(bus, (uint64_t) -1);
2334 if (r < 0)
2335 return r;
2336 }
2337}
2338
97f82db3 2339_public_ int sd_bus_call(
de1c301e 2340 sd_bus *bus,
97f82db3 2341 sd_bus_message *_m,
de1c301e
LP
2342 uint64_t usec,
2343 sd_bus_error *error,
2344 sd_bus_message **reply) {
2345
4afd3348 2346 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = sd_bus_message_ref(_m);
de1c301e 2347 usec_t timeout;
693eb9a2 2348 uint64_t cookie;
143d4e04 2349 size_t i;
7d22c717 2350 int r;
de1c301e 2351
759e02e7
LP
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);
9030ca46 2356
70bc558c
ZJS
2357 if (bus)
2358 assert_return(bus = bus_resolve(bus), -ENOPKG);
2359 else
2360 assert_return(bus = m->bus, -ENOTCONN);
759e02e7 2361 bus_assert_return(!bus_pid_changed(bus), -ECHILD, error);
97f82db3 2362
759e02e7
LP
2363 if (!BUS_IS_OPEN(bus->state)) {
2364 r = -ENOTCONN;
2365 goto fail;
2366 }
a3d59cd1 2367
97f82db3
KS
2368 r = bus_ensure_running(bus);
2369 if (r < 0)
759e02e7 2370 goto fail;
97f82db3 2371
a43b9ca3 2372 i = bus->rqueue_size;
97f82db3
KS
2373
2374 r = bus_seal_message(bus, m, usec);
2375 if (r < 0)
759e02e7 2376 goto fail;
97f82db3
KS
2377
2378 r = bus_remarshal_message(bus, &m);
2379 if (r < 0)
759e02e7 2380 goto fail;
97f82db3 2381
66baf8c6 2382 r = sd_bus_send(bus, m, &cookie);
de1c301e 2383 if (r < 0)
759e02e7 2384 goto fail;
de1c301e 2385
ac8029fc 2386 timeout = calc_elapse(bus, m->timeout);
de1c301e
LP
2387
2388 for (;;) {
2389 usec_t left;
de1c301e 2390
7d22c717 2391 while (i < bus->rqueue_size) {
c1757a70 2392 _cleanup_(sd_bus_message_unrefp) sd_bus_message *incoming = NULL;
7d22c717 2393
c1757a70 2394 incoming = sd_bus_message_ref(bus->rqueue[i]);
89ffcd2a 2395
693eb9a2 2396 if (incoming->reply_cookie == cookie) {
de1c301e
LP
2397 /* Found a match! */
2398
c1757a70 2399 rqueue_drop_one(bus, i);
f9f97ca6 2400 log_debug_bus_message(incoming);
7d22c717 2401
40ca29a1 2402 if (incoming->header->type == SD_BUS_MESSAGE_METHOD_RETURN) {
b7f247e0 2403
c7db1984 2404 if (incoming->n_fds <= 0 || bus->accept_fd) {
2ce97e2b 2405 if (reply)
c1757a70 2406 *reply = TAKE_PTR(incoming);
2ce97e2b
LP
2407
2408 return 1;
2409 }
2410
c1757a70 2411 return sd_bus_error_setf(error, SD_BUS_ERROR_INCONSISTENT_MESSAGE, "Reply message contained file descriptors which I couldn't accept. Sorry.");
b7f247e0 2412
c1757a70
LP
2413 } else if (incoming->header->type == SD_BUS_MESSAGE_METHOD_ERROR)
2414 return sd_bus_error_copy(error, &incoming->error);
2415 else {
a43b9ca3 2416 r = -EIO;
759e02e7
LP
2417 goto fail;
2418 }
a8a07f89 2419
693eb9a2 2420 } else if (BUS_MESSAGE_COOKIE(incoming) == cookie &&
a8a07f89
LP
2421 bus->unique_name &&
2422 incoming->sender &&
2423 streq(bus->unique_name, incoming->sender)) {
2424
c1757a70 2425 rqueue_drop_one(bus, i);
7d22c717 2426
c1757a70
LP
2427 /* Our own message? Somebody is trying to send its own client a message,
2428 * let's not dead-lock, let's fail immediately. */
a8a07f89 2429
759e02e7
LP
2430 r = -ELOOP;
2431 goto fail;
de1c301e
LP
2432 }
2433
de1c301e 2434 /* Try to read more, right-away */
7d22c717 2435 i++;
de1c301e 2436 }
7d22c717 2437
1e9a7c44 2438 r = bus_read_message(bus);
32f46480 2439 if (r < 0) {
f60a028a 2440 if (ERRNO_IS_DISCONNECT(r)) {
32f46480 2441 bus_enter_closing(bus);
759e02e7 2442 r = -ECONNRESET;
441d56a1 2443 }
32f46480 2444
759e02e7 2445 goto fail;
32f46480 2446 }
7d22c717 2447 if (r > 0)
e3017af9 2448 continue;
de1c301e
LP
2449
2450 if (timeout > 0) {
2451 usec_t n;
2452
2453 n = now(CLOCK_MONOTONIC);
759e02e7
LP
2454 if (n >= timeout) {
2455 r = -ETIMEDOUT;
2456 goto fail;
2457 }
de1c301e
LP
2458
2459 left = timeout - n;
2460 } else
2461 left = (uint64_t) -1;
2462
e3017af9 2463 r = bus_poll(bus, true, left);
de1c301e 2464 if (r < 0)
759e02e7
LP
2465 goto fail;
2466 if (r == 0) {
2467 r = -ETIMEDOUT;
2468 goto fail;
2469 }
de1c301e
LP
2470
2471 r = dispatch_wqueue(bus);
32f46480 2472 if (r < 0) {
f60a028a 2473 if (ERRNO_IS_DISCONNECT(r)) {
32f46480 2474 bus_enter_closing(bus);
759e02e7 2475 r = -ECONNRESET;
441d56a1 2476 }
32f46480 2477
759e02e7 2478 goto fail;
32f46480 2479 }
de1c301e 2480 }
759e02e7
LP
2481
2482fail:
2483 return sd_bus_error_set_errno(error, r);
de1c301e
LP
2484}
2485
d9f644e2 2486_public_ int sd_bus_get_fd(sd_bus *bus) {
d6888822 2487 assert_return(bus, -EINVAL);
45b1f410 2488 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822
LP
2489 assert_return(bus->input_fd == bus->output_fd, -EPERM);
2490 assert_return(!bus_pid_changed(bus), -ECHILD);
de1c301e 2491
8a5cd31e
LP
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;
de1c301e
LP
2502}
2503
d9f644e2 2504_public_ int sd_bus_get_events(sd_bus *bus) {
de1c301e
LP
2505 int flags = 0;
2506
d6888822 2507 assert_return(bus, -EINVAL);
45b1f410 2508 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822 2509 assert_return(!bus_pid_changed(bus), -ECHILD);
de1c301e 2510
8a5cd31e
LP
2511 switch (bus->state) {
2512
2513 case BUS_UNSET:
2514 case BUS_CLOSED:
a3d59cd1
LP
2515 return -ENOTCONN;
2516
8a5cd31e
LP
2517 case BUS_WATCH_BIND:
2518 flags |= POLLIN;
2519 break;
2520
2521 case BUS_OPENING:
de1c301e 2522 flags |= POLLOUT;
8a5cd31e 2523 break;
89ffcd2a 2524
8a5cd31e 2525 case BUS_AUTHENTICATING:
2181a7f5 2526 if (bus_socket_auth_needs_write(bus))
89ffcd2a
LP
2527 flags |= POLLOUT;
2528
2529 flags |= POLLIN;
8a5cd31e 2530 break;
89ffcd2a 2531
8a5cd31e
LP
2532 case BUS_RUNNING:
2533 case BUS_HELLO:
de1c301e
LP
2534 if (bus->rqueue_size <= 0)
2535 flags |= POLLIN;
2536 if (bus->wqueue_size > 0)
2537 flags |= POLLOUT;
8a5cd31e
LP
2538 break;
2539
2540 case BUS_CLOSING:
2541 break;
2542
2543 default:
2544 assert_not_reached("Unknown state");
de1c301e
LP
2545 }
2546
2547 return flags;
2548}
2549
d9f644e2 2550_public_ int sd_bus_get_timeout(sd_bus *bus, uint64_t *timeout_usec) {
e3017af9
LP
2551 struct reply_callback *c;
2552
d6888822 2553 assert_return(bus, -EINVAL);
45b1f410 2554 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822 2555 assert_return(timeout_usec, -EINVAL);
d6888822 2556 assert_return(!bus_pid_changed(bus), -ECHILD);
e3017af9 2557
a3d59cd1
LP
2558 if (!BUS_IS_OPEN(bus->state) && bus->state != BUS_CLOSING)
2559 return -ENOTCONN;
2560
8f8f05a9
LP
2561 if (bus->track_queue) {
2562 *timeout_usec = 0;
2563 return 1;
2564 }
2565
8a5cd31e 2566 switch (bus->state) {
718db961 2567
8a5cd31e 2568 case BUS_AUTHENTICATING:
e3017af9
LP
2569 *timeout_usec = bus->auth_timeout;
2570 return 1;
e3017af9 2571
8a5cd31e
LP
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
ac8029fc 2585 if (c->timeout_usec == 0) {
8a5cd31e
LP
2586 *timeout_usec = (uint64_t) -1;
2587 return 0;
2588 }
2589
ac8029fc 2590 *timeout_usec = c->timeout_usec;
8a5cd31e 2591 return 1;
e3017af9 2592
8a5cd31e 2593 case BUS_CLOSING:
8efd6381
LP
2594 *timeout_usec = 0;
2595 return 1;
8efd6381 2596
8a5cd31e
LP
2597 case BUS_WATCH_BIND:
2598 case BUS_OPENING:
adee69fa 2599 *timeout_usec = (uint64_t) -1;
e3017af9
LP
2600 return 0;
2601
8a5cd31e
LP
2602 default:
2603 assert_not_reached("Unknown or unexpected stat");
19befb2d 2604 }
e3017af9
LP
2605}
2606
2607static int process_timeout(sd_bus *bus) {
4afd3348
LP
2608 _cleanup_(sd_bus_error_free) sd_bus_error error_buffer = SD_BUS_ERROR_NULL;
2609 _cleanup_(sd_bus_message_unrefp) sd_bus_message* m = NULL;
e3017af9 2610 struct reply_callback *c;
1b64f838 2611 sd_bus_slot *slot;
b057498a 2612 bool is_hello;
e3017af9
LP
2613 usec_t n;
2614 int r;
2615
2616 assert(bus);
ac8029fc 2617 assert(IN_SET(bus->state, BUS_RUNNING, BUS_HELLO));
e3017af9
LP
2618
2619 c = prioq_peek(bus->reply_callbacks_prioq);
2620 if (!c)
2621 return 0;
2622
2623 n = now(CLOCK_MONOTONIC);
ac8029fc 2624 if (c->timeout_usec > n)
e3017af9
LP
2625 return 0;
2626
eb01ba5d
LP
2627 r = bus_message_new_synthetic_error(
2628 bus,
693eb9a2 2629 c->cookie,
14c24659 2630 &SD_BUS_ERROR_MAKE_CONST(SD_BUS_ERROR_NO_REPLY, "Method call timed out"),
eb01ba5d
LP
2631 &m);
2632 if (r < 0)
2633 return r;
2634
f1617a3b
LP
2635 m->read_counter = ++bus->read_counter;
2636
7adc46fc 2637 r = bus_seal_synthetic_message(bus, m);
718db961
LP
2638 if (r < 0)
2639 return r;
2640
e3017af9 2641 assert_se(prioq_pop(bus->reply_callbacks_prioq) == c);
ac8029fc 2642 c->timeout_usec = 0;
19befb2d 2643
c9fe4af7 2644 ordered_hashmap_remove(bus->reply_callbacks, &c->cookie);
19befb2d
LP
2645 c->cookie = 0;
2646
1b64f838 2647 slot = container_of(c, sd_bus_slot, reply_callback);
e3017af9 2648
313cefa1 2649 bus->iteration_counter++;
718db961 2650
b057498a
LP
2651 is_hello = bus->state == BUS_HELLO && c->callback == hello_callback;
2652
1b64f838
LP
2653 bus->current_message = m;
2654 bus->current_slot = sd_bus_slot_ref(slot);
caa82984
LP
2655 bus->current_handler = c->callback;
2656 bus->current_userdata = slot->userdata;
19070062 2657 r = c->callback(m, slot->userdata, &error_buffer);
caa82984
LP
2658 bus->current_userdata = NULL;
2659 bus->current_handler = NULL;
d974ad05 2660 bus->current_slot = NULL;
19befb2d 2661 bus->current_message = NULL;
718db961 2662
2e7e8e34
YW
2663 if (slot->floating)
2664 bus_slot_disconnect(slot, true);
1b64f838 2665
d974ad05
DH
2666 sd_bus_slot_unref(slot);
2667
8a5cd31e
LP
2668 /* When this is the hello message and it timed out, then make sure to propagate the error up, don't just log
2669 * and ignore the callback handler's return value. */
b057498a
LP
2670 if (is_hello)
2671 return r;
2672
1b64f838 2673 return bus_maybe_reply_error(m, r, &error_buffer);
e3017af9
LP
2674}
2675
9d373862
LP
2676static int process_hello(sd_bus *bus, sd_bus_message *m) {
2677 assert(bus);
2678 assert(m);
2679
2680 if (bus->state != BUS_HELLO)
2681 return 0;
2682
2683 /* Let's make sure the first message on the bus is the HELLO
2684 * reply. But note that we don't actually parse the message
2181a7f5
LP
2685 * here (we leave that to the usual handling), we just verify
2686 * we don't let any earlier msg through. */
9d373862 2687
945c2931 2688 if (!IN_SET(m->header->type, SD_BUS_MESSAGE_METHOD_RETURN, SD_BUS_MESSAGE_METHOD_ERROR))
9d373862
LP
2689 return -EIO;
2690
19befb2d 2691 if (m->reply_cookie != 1)
9d373862
LP
2692 return -EIO;
2693
2694 return 0;
2695}
2696
a652755d 2697static int process_reply(sd_bus *bus, sd_bus_message *m) {
4afd3348
LP
2698 _cleanup_(sd_bus_message_unrefp) sd_bus_message *synthetic_reply = NULL;
2699 _cleanup_(sd_bus_error_free) sd_bus_error error_buffer = SD_BUS_ERROR_NULL;
19befb2d 2700 struct reply_callback *c;
1b64f838 2701 sd_bus_slot *slot;
b057498a 2702 bool is_hello;
a652755d
LP
2703 int r;
2704
2705 assert(bus);
2706 assert(m);
2707
945c2931 2708 if (!IN_SET(m->header->type, SD_BUS_MESSAGE_METHOD_RETURN, SD_BUS_MESSAGE_METHOD_ERROR))
a652755d
LP
2709 return 0;
2710
09365592
LP
2711 if (m->destination && bus->unique_name && !streq_ptr(m->destination, bus->unique_name))
2712 return 0;
2713
c9fe4af7 2714 c = ordered_hashmap_remove(bus->reply_callbacks, &m->reply_cookie);
a652755d
LP
2715 if (!c)
2716 return 0;
2717
19befb2d 2718 c->cookie = 0;
19befb2d 2719
1b64f838 2720 slot = container_of(c, sd_bus_slot, reply_callback);
a652755d 2721
c7db1984 2722 if (m->n_fds > 0 && !bus->accept_fd) {
2ce97e2b
LP
2723
2724 /* If the reply contained a file descriptor which we
2725 * didn't want we pass an error instead. */
2726
2727 r = bus_message_new_synthetic_error(
2728 bus,
2729 m->reply_cookie,
2730 &SD_BUS_ERROR_MAKE_CONST(SD_BUS_ERROR_INCONSISTENT_MESSAGE, "Reply message contained file descriptor"),
2731 &synthetic_reply);
2732 if (r < 0)
1b64f838 2733 return r;
2ce97e2b 2734
52cd5877
LP
2735 /* Copy over original timestamp */
2736 synthetic_reply->realtime = m->realtime;
2737 synthetic_reply->monotonic = m->monotonic;
2738 synthetic_reply->seqnum = m->seqnum;
f1617a3b 2739 synthetic_reply->read_counter = m->read_counter;
52cd5877 2740
2ce97e2b
LP
2741 r = bus_seal_synthetic_message(bus, synthetic_reply);
2742 if (r < 0)
1b64f838 2743 return r;
2ce97e2b
LP
2744
2745 m = synthetic_reply;
2746 } else {
2747 r = sd_bus_message_rewind(m, true);
2748 if (r < 0)
1b64f838 2749 return r;
2ce97e2b 2750 }
88fe224c 2751
ac8029fc 2752 if (c->timeout_usec != 0) {
1b64f838 2753 prioq_remove(bus->reply_callbacks_prioq, c, &c->prioq_idx);
ac8029fc 2754 c->timeout_usec = 0;
1b64f838 2755 }
19befb2d 2756
b057498a
LP
2757 is_hello = bus->state == BUS_HELLO && c->callback == hello_callback;
2758
1b64f838 2759 bus->current_slot = sd_bus_slot_ref(slot);
caa82984
LP
2760 bus->current_handler = c->callback;
2761 bus->current_userdata = slot->userdata;
19070062 2762 r = c->callback(m, slot->userdata, &error_buffer);
caa82984
LP
2763 bus->current_userdata = NULL;
2764 bus->current_handler = NULL;
d974ad05 2765 bus->current_slot = NULL;
a652755d 2766
2e7e8e34
YW
2767 if (slot->floating)
2768 bus_slot_disconnect(slot, true);
19befb2d 2769
d974ad05
DH
2770 sd_bus_slot_unref(slot);
2771
8a5cd31e
LP
2772 /* When this is the hello message and it failed, then make sure to propagate the error up, don't just log and
2773 * ignore the callback handler's return value. */
b057498a
LP
2774 if (is_hello)
2775 return r;
2776
1b64f838 2777 return bus_maybe_reply_error(m, r, &error_buffer);
a652755d
LP
2778}
2779
2780static int process_filter(sd_bus *bus, sd_bus_message *m) {
4afd3348 2781 _cleanup_(sd_bus_error_free) sd_bus_error error_buffer = SD_BUS_ERROR_NULL;
a652755d
LP
2782 struct filter_callback *l;
2783 int r;
2784
392d5b37
LP
2785 assert(bus);
2786 assert(m);
2787
7286037f
LP
2788 do {
2789 bus->filter_callbacks_modified = false;
2790
2791 LIST_FOREACH(callbacks, l, bus->filter_callbacks) {
1b64f838 2792 sd_bus_slot *slot;
7286037f
LP
2793
2794 if (bus->filter_callbacks_modified)
2795 break;
2796
2797 /* Don't run this more than once per iteration */
2798 if (l->last_iteration == bus->iteration_counter)
2799 continue;
2800
2801 l->last_iteration = bus->iteration_counter;
2802
88fe224c
LP
2803 r = sd_bus_message_rewind(m, true);
2804 if (r < 0)
2805 return r;
2806
1b64f838
LP
2807 slot = container_of(l, sd_bus_slot, filter_callback);
2808
2809 bus->current_slot = sd_bus_slot_ref(slot);
caa82984
LP
2810 bus->current_handler = l->callback;
2811 bus->current_userdata = slot->userdata;
19070062 2812 r = l->callback(m, slot->userdata, &error_buffer);
caa82984
LP
2813 bus->current_userdata = NULL;
2814 bus->current_handler = NULL;
1b64f838 2815 bus->current_slot = sd_bus_slot_unref(slot);
19befb2d 2816
ebcf1f97 2817 r = bus_maybe_reply_error(m, r, &error_buffer);
7286037f
LP
2818 if (r != 0)
2819 return r;
2820
2821 }
2822
2823 } while (bus->filter_callbacks_modified);
a652755d
LP
2824
2825 return 0;
2826}
2827
392d5b37 2828static int process_match(sd_bus *bus, sd_bus_message *m) {
7286037f
LP
2829 int r;
2830
392d5b37
LP
2831 assert(bus);
2832 assert(m);
2833
7286037f
LP
2834 do {
2835 bus->match_callbacks_modified = false;
2836
eb01ba5d 2837 r = bus_match_run(bus, &bus->match_callbacks, m);
7286037f
LP
2838 if (r != 0)
2839 return r;
2840
2841 } while (bus->match_callbacks_modified);
2842
2843 return 0;
392d5b37
LP
2844}
2845
b9bf7e2b 2846static int process_builtin(sd_bus *bus, sd_bus_message *m) {
4afd3348 2847 _cleanup_(sd_bus_message_unrefp) sd_bus_message *reply = NULL;
b9bf7e2b
LP
2848 int r;
2849
2850 assert(bus);
2851 assert(m);
2852
c7db1984 2853 if (bus->is_monitor)
09365592
LP
2854 return 0;
2855
758bf0c7
LP
2856 if (bus->manual_peer_interface)
2857 return 0;
2858
40ca29a1 2859 if (m->header->type != SD_BUS_MESSAGE_METHOD_CALL)
b9bf7e2b
LP
2860 return 0;
2861
2862 if (!streq_ptr(m->interface, "org.freedesktop.DBus.Peer"))
2863 return 0;
2864
0461f8cd 2865 if (m->header->flags & BUS_MESSAGE_NO_REPLY_EXPECTED)
b9bf7e2b
LP
2866 return 1;
2867
2868 if (streq_ptr(m->member, "Ping"))
df2d202e 2869 r = sd_bus_message_new_method_return(m, &reply);
b9bf7e2b
LP
2870 else if (streq_ptr(m->member, "GetMachineId")) {
2871 sd_id128_t id;
5905d7cf 2872 char sid[SD_ID128_STRING_MAX];
b9bf7e2b
LP
2873
2874 r = sd_id128_get_machine(&id);
2875 if (r < 0)
2876 return r;
2877
df2d202e 2878 r = sd_bus_message_new_method_return(m, &reply);
b9bf7e2b
LP
2879 if (r < 0)
2880 return r;
2881
2882 r = sd_bus_message_append(reply, "s", sd_id128_to_string(id, sid));
2883 } else {
29ddb38f 2884 r = sd_bus_message_new_method_errorf(
df2d202e 2885 m, &reply,
40ca29a1 2886 SD_BUS_ERROR_UNKNOWN_METHOD,
b9bf7e2b 2887 "Unknown method '%s' on interface '%s'.", m->member, m->interface);
b9bf7e2b 2888 }
b9bf7e2b
LP
2889 if (r < 0)
2890 return r;
2891
2892 r = sd_bus_send(bus, reply, NULL);
2893 if (r < 0)
2894 return r;
2895
2896 return 1;
2897}
2898
2ce97e2b
LP
2899static int process_fd_check(sd_bus *bus, sd_bus_message *m) {
2900 assert(bus);
2901 assert(m);
2902
2903 /* If we got a message with a file descriptor which we didn't
2904 * want to accept, then let's drop it. How can this even
2905 * happen? For example, when the kernel queues a message into
2906 * an activatable names's queue which allows fds, and then is
2907 * delivered to us later even though we ourselves did not
2908 * negotiate it. */
2909
c7db1984 2910 if (bus->is_monitor)
09365592
LP
2911 return 0;
2912
2ce97e2b
LP
2913 if (m->n_fds <= 0)
2914 return 0;
2915
c7db1984 2916 if (bus->accept_fd)
2ce97e2b
LP
2917 return 0;
2918
2919 if (m->header->type != SD_BUS_MESSAGE_METHOD_CALL)
2920 return 1; /* just eat it up */
2921
2922 return sd_bus_reply_method_errorf(m, SD_BUS_ERROR_INCONSISTENT_MESSAGE, "Message contains file descriptors, which I cannot accept. Sorry.");
2923}
2924
992c052c 2925static int process_message(sd_bus *bus, sd_bus_message *m) {
e3017af9
LP
2926 int r;
2927
2928 assert(bus);
992c052c 2929 assert(m);
e3017af9 2930
19befb2d 2931 bus->current_message = m;
992c052c 2932 bus->iteration_counter++;
e3017af9 2933
f9f97ca6 2934 log_debug_bus_message(m);
40ca29a1 2935
992c052c
LP
2936 r = process_hello(bus, m);
2937 if (r != 0)
affff0b6 2938 goto finish;
a652755d 2939
992c052c
LP
2940 r = process_reply(bus, m);
2941 if (r != 0)
affff0b6 2942 goto finish;
e3017af9 2943
2ce97e2b
LP
2944 r = process_fd_check(bus, m);
2945 if (r != 0)
2946 goto finish;
2947
992c052c
LP
2948 r = process_filter(bus, m);
2949 if (r != 0)
affff0b6 2950 goto finish;
a652755d 2951
992c052c
LP
2952 r = process_match(bus, m);
2953 if (r != 0)
affff0b6 2954 goto finish;
a652755d 2955
992c052c
LP
2956 r = process_builtin(bus, m);
2957 if (r != 0)
affff0b6
LP
2958 goto finish;
2959
2960 r = bus_process_object(bus, m);
a652755d 2961
affff0b6 2962finish:
19befb2d 2963 bus->current_message = NULL;
affff0b6 2964 return r;
29ddb38f 2965}
88fe224c 2966
8f8f05a9
LP
2967static int dispatch_track(sd_bus *bus) {
2968 assert(bus);
2969
2970 if (!bus->track_queue)
2971 return 0;
2972
2973 bus_track_dispatch(bus->track_queue);
2974 return 1;
2975}
2976
1e9a7c44 2977static int process_running(sd_bus *bus, sd_bus_message **ret) {
4afd3348 2978 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
29ddb38f 2979 int r;
a652755d 2980
29ddb38f 2981 assert(bus);
945c2931 2982 assert(IN_SET(bus->state, BUS_RUNNING, BUS_HELLO));
7286037f 2983
992c052c
LP
2984 r = process_timeout(bus);
2985 if (r != 0)
2986 goto null_message;
7286037f 2987
992c052c
LP
2988 r = dispatch_wqueue(bus);
2989 if (r != 0)
2990 goto null_message;
7286037f 2991
8f8f05a9
LP
2992 r = dispatch_track(bus);
2993 if (r != 0)
2994 goto null_message;
2995
1e9a7c44 2996 r = dispatch_rqueue(bus, &m);
992c052c
LP
2997 if (r < 0)
2998 return r;
2999 if (!m)
3000 goto null_message;
7286037f 3001
992c052c
LP
3002 r = process_message(bus, m);
3003 if (r != 0)
3004 goto null_message;
7286037f 3005
992c052c
LP
3006 if (ret) {
3007 r = sd_bus_message_rewind(m, true);
29ddb38f
LP
3008 if (r < 0)
3009 return r;
e3017af9 3010
1cc6c93a 3011 *ret = TAKE_PTR(m);
992c052c
LP
3012 return 1;
3013 }
a652755d 3014
40ca29a1 3015 if (m->header->type == SD_BUS_MESSAGE_METHOD_CALL) {
a652755d 3016
dc74ce9b
LP
3017 log_debug("Unprocessed message call sender=%s object=%s interface=%s member=%s",
3018 strna(sd_bus_message_get_sender(m)),
3019 strna(sd_bus_message_get_path(m)),
3020 strna(sd_bus_message_get_interface(m)),
3021 strna(sd_bus_message_get_member(m)));
3022
992c052c 3023 r = sd_bus_reply_method_errorf(
df2d202e 3024 m,
40ca29a1 3025 SD_BUS_ERROR_UNKNOWN_OBJECT,
992c052c 3026 "Unknown object '%s'.", m->path);
29ddb38f
LP
3027 if (r < 0)
3028 return r;
3029 }
e3017af9 3030
992c052c 3031 return 1;
0a72c2bd 3032
992c052c
LP
3033null_message:
3034 if (r >= 0 && ret)
3035 *ret = NULL;
0a72c2bd 3036
992c052c 3037 return r;
29ddb38f 3038}
0a72c2bd 3039
fbb4603d
LP
3040static int bus_exit_now(sd_bus *bus) {
3041 assert(bus);
3042
3043 /* Exit due to close, if this is requested. If this is bus object is attached to an event source, invokes
3044 * sd_event_exit(), otherwise invokes libc exit(). */
3045
3046 if (bus->exited) /* did we already exit? */
3047 return 0;
3048 if (!bus->exit_triggered) /* was the exit condition triggered? */
3049 return 0;
3050 if (!bus->exit_on_disconnect) /* Shall we actually exit on disconnection? */
3051 return 0;
3052
3053 bus->exited = true; /* never exit more than once */
3054
3055 log_debug("Bus connection disconnected, exiting.");
3056
3057 if (bus->event)
3058 return sd_event_exit(bus->event, EXIT_FAILURE);
3059 else
3060 exit(EXIT_FAILURE);
3061
3062 assert_not_reached("exit() didn't exit?");
3063}
3064
217fcc7e
LP
3065static int process_closing_reply_callback(sd_bus *bus, struct reply_callback *c) {
3066 _cleanup_(sd_bus_error_free) sd_bus_error error_buffer = SD_BUS_ERROR_NULL;
4afd3348 3067 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
217fcc7e 3068 sd_bus_slot *slot;
718db961
LP
3069 int r;
3070
3071 assert(bus);
217fcc7e 3072 assert(c);
718db961 3073
217fcc7e
LP
3074 r = bus_message_new_synthetic_error(
3075 bus,
3076 c->cookie,
3077 &SD_BUS_ERROR_MAKE_CONST(SD_BUS_ERROR_NO_REPLY, "Connection terminated"),
3078 &m);
3079 if (r < 0)
3080 return r;
ebcf1f97 3081
f1617a3b
LP
3082 m->read_counter = ++bus->read_counter;
3083
217fcc7e
LP
3084 r = bus_seal_synthetic_message(bus, m);
3085 if (r < 0)
3086 return r;
718db961 3087
ac8029fc 3088 if (c->timeout_usec != 0) {
217fcc7e 3089 prioq_remove(bus->reply_callbacks_prioq, c, &c->prioq_idx);
ac8029fc 3090 c->timeout_usec = 0;
217fcc7e 3091 }
718db961 3092
217fcc7e
LP
3093 ordered_hashmap_remove(bus->reply_callbacks, &c->cookie);
3094 c->cookie = 0;
3095
3096 slot = container_of(c, sd_bus_slot, reply_callback);
718db961 3097
217fcc7e 3098 bus->iteration_counter++;
19befb2d 3099
217fcc7e
LP
3100 bus->current_message = m;
3101 bus->current_slot = sd_bus_slot_ref(slot);
3102 bus->current_handler = c->callback;
3103 bus->current_userdata = slot->userdata;
3104 r = c->callback(m, slot->userdata, &error_buffer);
3105 bus->current_userdata = NULL;
3106 bus->current_handler = NULL;
3107 bus->current_slot = NULL;
3108 bus->current_message = NULL;
718db961 3109
2e7e8e34
YW
3110 if (slot->floating)
3111 bus_slot_disconnect(slot, true);
718db961 3112
217fcc7e 3113 sd_bus_slot_unref(slot);
1b64f838 3114
217fcc7e
LP
3115 return bus_maybe_reply_error(m, r, &error_buffer);
3116}
718db961 3117
217fcc7e
LP
3118static int process_closing(sd_bus *bus, sd_bus_message **ret) {
3119 _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL;
3120 struct reply_callback *c;
3121 int r;
d974ad05 3122
217fcc7e
LP
3123 assert(bus);
3124 assert(bus->state == BUS_CLOSING);
3125
3126 /* First, fail all outstanding method calls */
3127 c = ordered_hashmap_first(bus->reply_callbacks);
3128 if (c)
3129 return process_closing_reply_callback(bus, c);
718db961 3130
232f3677
LP
3131 /* Then, fake-drop all remaining bus tracking references */
3132 if (bus->tracks) {
3133 bus_track_close(bus->tracks);
3134 return 1;
3135 }
3136
718db961
LP
3137 /* Then, synthesize a Disconnected message */
3138 r = sd_bus_message_new_signal(
3139 bus,
151b9b96 3140 &m,
718db961
LP
3141 "/org/freedesktop/DBus/Local",
3142 "org.freedesktop.DBus.Local",
151b9b96 3143 "Disconnected");
718db961
LP
3144 if (r < 0)
3145 return r;
3146
fb6d9b77 3147 bus_message_set_sender_local(bus, m);
f1617a3b 3148 m->read_counter = ++bus->read_counter;
34a2c9e8 3149
7adc46fc 3150 r = bus_seal_synthetic_message(bus, m);
718db961
LP
3151 if (r < 0)
3152 return r;
3153
3154 sd_bus_close(bus);
3155
19befb2d 3156 bus->current_message = m;
718db961
LP
3157 bus->iteration_counter++;
3158
3159 r = process_filter(bus, m);
3160 if (r != 0)
3161 goto finish;
3162
3163 r = process_match(bus, m);
3164 if (r != 0)
3165 goto finish;
3166
fbb4603d
LP
3167 /* Nothing else to do, exit now, if the condition holds */
3168 bus->exit_triggered = true;
3169 (void) bus_exit_now(bus);
3170
1cc6c93a
YW
3171 if (ret)
3172 *ret = TAKE_PTR(m);
718db961
LP
3173
3174 r = 1;
3175
3176finish:
19befb2d
LP
3177 bus->current_message = NULL;
3178
718db961
LP
3179 return r;
3180}
3181
1e9a7c44 3182static int bus_process_internal(sd_bus *bus, sd_bus_message **ret) {
29ddb38f 3183 int r;
0a72c2bd 3184
992c052c
LP
3185 /* Returns 0 when we didn't do anything. This should cause the
3186 * caller to invoke sd_bus_wait() before returning the next
3187 * time. Returns > 0 when we did something, which possibly
3188 * means *ret is filled in with an unprocessed message. */
0a72c2bd 3189
d6888822 3190 assert_return(bus, -EINVAL);
45b1f410 3191 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822 3192 assert_return(!bus_pid_changed(bus), -ECHILD);
0a72c2bd 3193
992c052c 3194 /* We don't allow recursively invoking sd_bus_process(). */
19befb2d 3195 assert_return(!bus->current_message, -EBUSY);
6d77a30c 3196 assert(!bus->current_slot); /* This should be NULL whenever bus->current_message is */
0a72c2bd 3197
7ae8edcd
ZJS
3198 BUS_DONT_DESTROY(bus);
3199
992c052c 3200 switch (bus->state) {
0a72c2bd 3201
992c052c 3202 case BUS_UNSET:
992c052c 3203 return -ENOTCONN;
0a72c2bd 3204
6d6f4904
LP
3205 case BUS_CLOSED:
3206 return -ECONNRESET;
3207
8a5cd31e
LP
3208 case BUS_WATCH_BIND:
3209 r = bus_socket_process_watch_bind(bus);
3210 break;
3211
992c052c
LP
3212 case BUS_OPENING:
3213 r = bus_socket_process_opening(bus);
8a5cd31e 3214 break;
a652755d 3215
992c052c 3216 case BUS_AUTHENTICATING:
992c052c 3217 r = bus_socket_process_authenticating(bus);
8a5cd31e 3218 break;
a652755d 3219
992c052c
LP
3220 case BUS_RUNNING:
3221 case BUS_HELLO:
1e9a7c44 3222 r = process_running(bus, ret);
8a5cd31e
LP
3223 if (r >= 0)
3224 return r;
718db961 3225
8a5cd31e
LP
3226 /* This branch initializes *ret, hence we don't use the generic error checking below */
3227 break;
718db961
LP
3228
3229 case BUS_CLOSING:
3230 return process_closing(bus, ret);
8a5cd31e
LP
3231
3232 default:
3233 assert_not_reached("Unknown state");
992c052c 3234 }
43a43f50 3235
f60a028a 3236 if (ERRNO_IS_DISCONNECT(r)) {
8a5cd31e
LP
3237 bus_enter_closing(bus);
3238 r = 1;
3239 } else if (r < 0)
3240 return r;
3241
3242 if (ret)
3243 *ret = NULL;
3244
3245 return r;
e3017af9
LP
3246}
3247
766c5809 3248_public_ int sd_bus_process(sd_bus *bus, sd_bus_message **ret) {
1e9a7c44 3249 return bus_process_internal(bus, ret);
766c5809
LP
3250}
3251
3252_public_ int sd_bus_process_priority(sd_bus *bus, int64_t priority, sd_bus_message **ret) {
1e9a7c44 3253 return bus_process_internal(bus, ret);
766c5809
LP
3254}
3255
992c052c
LP
3256static int bus_poll(sd_bus *bus, bool need_more, uint64_t timeout_usec) {
3257 struct pollfd p[2] = {};
3a43da28 3258 usec_t m = USEC_INFINITY;
d9e2af0a 3259 int r, n;
adcdb374
LP
3260
3261 assert(bus);
718db961
LP
3262
3263 if (bus->state == BUS_CLOSING)
3264 return 1;
3265
a3d59cd1
LP
3266 if (!BUS_IS_OPEN(bus->state))
3267 return -ENOTCONN;
adcdb374 3268
8a5cd31e
LP
3269 if (bus->state == BUS_WATCH_BIND) {
3270 assert(bus->inotify_fd >= 0);
adcdb374 3271
8a5cd31e
LP
3272 p[0].events = POLLIN;
3273 p[0].fd = bus->inotify_fd;
992c052c
LP
3274 n = 1;
3275 } else {
8a5cd31e
LP
3276 int e;
3277
3278 e = sd_bus_get_events(bus);
3279 if (e < 0)
3280 return e;
3281
3282 if (need_more)
3283 /* The caller really needs some more data, he doesn't
3284 * care about what's already read, or any timeouts
3285 * except its own. */
3286 e |= POLLIN;
3287 else {
3288 usec_t until;
3289 /* The caller wants to process if there's something to
3290 * process, but doesn't care otherwise */
3291
3292 r = sd_bus_get_timeout(bus, &until);
3293 if (r < 0)
3294 return r;
3295 if (r > 0)
3296 m = usec_sub_unsigned(until, now(CLOCK_MONOTONIC));
3297 }
3298
3299 p[0].fd = bus->input_fd;
3300 if (bus->output_fd == bus->input_fd) {
3301 p[0].events = e;
3302 n = 1;
3303 } else {
3304 p[0].events = e & POLLIN;
3305 p[1].fd = bus->output_fd;
3306 p[1].events = e & POLLOUT;
3307 n = 2;
3308 }
adcdb374
LP
3309 }
3310
8a5cd31e
LP
3311 if (timeout_usec != (uint64_t) -1 && (m == USEC_INFINITY || timeout_usec < m))
3312 m = timeout_usec;
3313
d9e2af0a
YW
3314 r = ppoll_usec(p, n, m);
3315 if (r <= 0)
3316 return r;
adcdb374 3317
dad28bff 3318 return 1;
adcdb374
LP
3319}
3320
d9f644e2 3321_public_ int sd_bus_wait(sd_bus *bus, uint64_t timeout_usec) {
9db76355 3322
d6888822 3323 assert_return(bus, -EINVAL);
45b1f410 3324 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822 3325 assert_return(!bus_pid_changed(bus), -ECHILD);
9db76355 3326
718db961
LP
3327 if (bus->state == BUS_CLOSING)
3328 return 0;
3329
a3d59cd1
LP
3330 if (!BUS_IS_OPEN(bus->state))
3331 return -ENOTCONN;
718db961 3332
992c052c
LP
3333 if (bus->rqueue_size > 0)
3334 return 0;
9db76355 3335
992c052c
LP
3336 return bus_poll(bus, false, timeout_usec);
3337}
9db76355 3338
d9f644e2 3339_public_ int sd_bus_flush(sd_bus *bus) {
992c052c 3340 int r;
9db76355 3341
d6888822 3342 assert_return(bus, -EINVAL);
45b1f410 3343 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822 3344 assert_return(!bus_pid_changed(bus), -ECHILD);
9db76355 3345
718db961
LP
3346 if (bus->state == BUS_CLOSING)
3347 return 0;
3348
a3d59cd1
LP
3349 if (!BUS_IS_OPEN(bus->state))
3350 return -ENOTCONN;
718db961 3351
8a5cd31e
LP
3352 /* We never were connected? Don't hang in inotify for good, as there's no timeout set for it */
3353 if (bus->state == BUS_WATCH_BIND)
3354 return -EUNATCH;
3355
992c052c
LP
3356 r = bus_ensure_running(bus);
3357 if (r < 0)
3358 return r;
9db76355 3359
992c052c
LP
3360 if (bus->wqueue_size <= 0)
3361 return 0;
9db76355 3362
992c052c
LP
3363 for (;;) {
3364 r = dispatch_wqueue(bus);
32f46480 3365 if (r < 0) {
f60a028a 3366 if (ERRNO_IS_DISCONNECT(r)) {
32f46480 3367 bus_enter_closing(bus);
441d56a1
LP
3368 return -ECONNRESET;
3369 }
32f46480 3370
9db76355 3371 return r;
32f46480 3372 }
9db76355 3373
992c052c
LP
3374 if (bus->wqueue_size <= 0)
3375 return 0;
9db76355 3376
992c052c 3377 r = bus_poll(bus, false, (uint64_t) -1);
9db76355
LP
3378 if (r < 0)
3379 return r;
9db76355 3380 }
9db76355
LP
3381}
3382
19befb2d
LP
3383_public_ int sd_bus_add_filter(
3384 sd_bus *bus,
3385 sd_bus_slot **slot,
3386 sd_bus_message_handler_t callback,
3387 void *userdata) {
d9f644e2 3388
19befb2d 3389 sd_bus_slot *s;
de1c301e 3390
d6888822 3391 assert_return(bus, -EINVAL);
45b1f410 3392 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822
LP
3393 assert_return(callback, -EINVAL);
3394 assert_return(!bus_pid_changed(bus), -ECHILD);
de1c301e 3395
19befb2d
LP
3396 s = bus_slot_allocate(bus, !slot, BUS_FILTER_CALLBACK, sizeof(struct filter_callback), userdata);
3397 if (!s)
29ddb38f
LP
3398 return -ENOMEM;
3399
19befb2d 3400 s->filter_callback.callback = callback;
a652755d 3401
19befb2d
LP
3402 bus->filter_callbacks_modified = true;
3403 LIST_PREPEND(callbacks, bus->filter_callbacks, &s->filter_callback);
a652755d 3404
19befb2d
LP
3405 if (slot)
3406 *slot = s;
29ddb38f 3407
992c052c 3408 return 0;
a652755d 3409}
392d5b37 3410
7593c7a4
LP
3411static int add_match_callback(
3412 sd_bus_message *m,
3413 void *userdata,
3414 sd_bus_error *ret_error) {
3415
3416 sd_bus_slot *match_slot = userdata;
3417 bool failed = false;
3418 int r;
3419
3420 assert(m);
3421 assert(match_slot);
3422
3423 sd_bus_slot_ref(match_slot);
3424
3425 if (sd_bus_message_is_method_error(m, NULL)) {
3426 log_debug_errno(sd_bus_message_get_errno(m),
3427 "Unable to add match %s, failing connection: %s",
3428 match_slot->match_callback.match_string,
3429 sd_bus_message_get_error(m)->message);
3430
3431 failed = true;
3432 } else
3433 log_debug("Match %s successfully installed.", match_slot->match_callback.match_string);
3434
3435 if (match_slot->match_callback.install_callback) {
3436 sd_bus *bus;
3437
3438 bus = sd_bus_message_get_bus(m);
3439
3440 /* This function has been called as slot handler, and we want to call another slot handler. Let's
3441 * update the slot callback metadata temporarily with our own data, and then revert back to the old
3442 * values. */
3443
3444 assert(bus->current_slot == match_slot->match_callback.install_slot);
3445 assert(bus->current_handler == add_match_callback);
3446 assert(bus->current_userdata == userdata);
3447
3448 bus->current_slot = match_slot;
3449 bus->current_handler = match_slot->match_callback.install_callback;
3450 bus->current_userdata = match_slot->userdata;
3451
3452 r = match_slot->match_callback.install_callback(m, match_slot->userdata, ret_error);
3453
3454 bus->current_slot = match_slot->match_callback.install_slot;
3455 bus->current_handler = add_match_callback;
3456 bus->current_userdata = userdata;
7593c7a4
LP
3457 } else {
3458 if (failed) /* Generic failure handling: destroy the connection */
3459 bus_enter_closing(sd_bus_message_get_bus(m));
3460
3461 r = 1;
3462 }
3463
3cf8dd53
LP
3464 /* We don't need the install method reply slot anymore, let's free it */
3465 match_slot->match_callback.install_slot = sd_bus_slot_unref(match_slot->match_callback.install_slot);
3466
2e7e8e34
YW
3467 if (failed && match_slot->floating)
3468 bus_slot_disconnect(match_slot, true);
7593c7a4
LP
3469
3470 sd_bus_slot_unref(match_slot);
3471
3472 return r;
3473}
3474
3475static int bus_add_match_full(
19befb2d
LP
3476 sd_bus *bus,
3477 sd_bus_slot **slot,
7593c7a4 3478 bool asynchronous,
19befb2d
LP
3479 const char *match,
3480 sd_bus_message_handler_t callback,
7593c7a4 3481 sd_bus_message_handler_t install_callback,
19befb2d 3482 void *userdata) {
d9f644e2 3483
992c052c
LP
3484 struct bus_match_component *components = NULL;
3485 unsigned n_components = 0;
2915234d 3486 sd_bus_slot *s = NULL;
992c052c 3487 int r = 0;
392d5b37 3488
d6888822 3489 assert_return(bus, -EINVAL);
45b1f410 3490 assert_return(bus = bus_resolve(bus), -ENOPKG);
d6888822
LP
3491 assert_return(match, -EINVAL);
3492 assert_return(!bus_pid_changed(bus), -ECHILD);
392d5b37 3493
992c052c
LP
3494 r = bus_match_parse(match, &components, &n_components);
3495 if (r < 0)
3496 goto finish;
29ddb38f 3497
19befb2d
LP
3498 s = bus_slot_allocate(bus, !slot, BUS_MATCH_CALLBACK, sizeof(struct match_callback), userdata);
3499 if (!s) {
3500 r = -ENOMEM;
3501 goto finish;
3502 }
3503
3504 s->match_callback.callback = callback;
7593c7a4 3505 s->match_callback.install_callback = install_callback;
19befb2d 3506
992c052c 3507 if (bus->bus_client) {
cc65fe5e 3508 enum bus_match_scope scope;
29ddb38f 3509
cc65fe5e 3510 scope = bus_match_get_scope(components, n_components);
19befb2d 3511
7593c7a4 3512 /* Do not install server-side matches for matches against the local service, interface or bus path. */
9ee7a50c 3513 if (scope != BUS_MATCH_LOCAL) {
cc65fe5e 3514
7593c7a4 3515 /* We store the original match string, so that we can use it to remove the match again. */
cc65fe5e 3516
a132bef0
ZJS
3517 s->match_callback.match_string = strdup(match);
3518 if (!s->match_callback.match_string) {
3519 r = -ENOMEM;
3520 goto finish;
19befb2d 3521 }
19befb2d 3522
fc2d4c89 3523 if (asynchronous) {
7593c7a4
LP
3524 r = bus_add_match_internal_async(bus,
3525 &s->match_callback.install_slot,
3526 s->match_callback.match_string,
3527 add_match_callback,
3528 s);
fc2d4c89
LP
3529
3530 if (r < 0)
3531 return r;
3532
3533 /* Make the slot of the match call floating now. We need the reference, but we don't
3534 * want that this match pins the bus object, hence we first create it non-floating, but
3535 * then make it floating. */
3536 r = sd_bus_slot_set_floating(s->match_callback.install_slot, true);
3537 } else
6b39223c 3538 r = bus_add_match_internal(bus, s->match_callback.match_string, &s->match_callback.after);
cc65fe5e
LP
3539 if (r < 0)
3540 goto finish;
3541
3542 s->match_added = true;
3543 }
392d5b37
LP
3544 }
3545
992c052c 3546 bus->match_callbacks_modified = true;
19befb2d
LP
3547 r = bus_match_add(&bus->match_callbacks, components, n_components, &s->match_callback);
3548 if (r < 0)
3549 goto finish;
3550
3551 if (slot)
3552 *slot = s;
3553 s = NULL;
917b5dc7 3554
992c052c
LP
3555finish:
3556 bus_match_parse_free(components, n_components);
19befb2d
LP
3557 sd_bus_slot_unref(s);
3558
992c052c 3559 return r;
917b5dc7
LP
3560}
3561
7593c7a4
LP
3562_public_ int sd_bus_add_match(
3563 sd_bus *bus,
3564 sd_bus_slot **slot,
3565 const char *match,
3566 sd_bus_message_handler_t callback,
3567 void *userdata) {
3568
3569 return bus_add_match_full(bus, slot, false, match, callback, NULL, userdata);
3570}
3571
3572_public_ int sd_bus_add_match_async(
3573 sd_bus *bus,
3574 sd_bus_slot **slot,
3575 const char *match,
3576 sd_bus_message_handler_t callback,
3577 sd_bus_message_handler_t install_callback,
3578 void *userdata) {
3579
3580 return bus_add_match_full(bus, slot, true, match, callback, install_callback, userdata);
3581}
3582
992c052c
LP
3583bool bus_pid_changed(sd_bus *bus) {
3584 assert(bus);
f10dda3b 3585
992c052c
LP
3586 /* We don't support people creating a bus connection and
3587 * keeping it around over a fork(). Let's complain. */
d5a2b9a6 3588
df0ff127 3589 return bus->original_pid != getpid_cached();
d5a2b9a6 3590}
40ca29a1
LP
3591
3592static int io_callback(sd_event_source *s, int fd, uint32_t revents, void *userdata) {
0927756b 3593 sd_bus *bus = userdata;
40ca29a1
LP
3594 int r;
3595
3596 assert(bus);
3597
8a5cd31e
LP
3598 /* Note that this is called both on input_fd, output_fd as well as inotify_fd events */
3599
40ca29a1 3600 r = sd_bus_process(bus, NULL);
5ae37ad8
LP
3601 if (r < 0) {
3602 log_debug_errno(r, "Processing of bus failed, closing down: %m");
3603 bus_enter_closing(bus);
3604 }
40ca29a1
LP
3605
3606 return 1;
3607}
3608
3609static int time_callback(sd_event_source *s, uint64_t usec, void *userdata) {
0927756b 3610 sd_bus *bus = userdata;
40ca29a1
LP
3611 int r;
3612
3613 assert(bus);
3614
3615 r = sd_bus_process(bus, NULL);
5ae37ad8
LP
3616 if (r < 0) {
3617 log_debug_errno(r, "Processing of bus failed, closing down: %m");
3618 bus_enter_closing(bus);
3619 }
40ca29a1
LP
3620
3621 return 1;
3622}
3623
3624static int prepare_callback(sd_event_source *s, void *userdata) {
3625 sd_bus *bus = userdata;
3626 int r, e;
3627 usec_t until;
3628
3629 assert(s);
3630 assert(bus);
3631
3632 e = sd_bus_get_events(bus);
5ae37ad8
LP
3633 if (e < 0) {
3634 r = e;
3635 goto fail;
3636 }
40ca29a1
LP
3637
3638 if (bus->output_fd != bus->input_fd) {
3639
3640 r = sd_event_source_set_io_events(bus->input_io_event_source, e & POLLIN);
3641 if (r < 0)
5ae37ad8 3642 goto fail;
40ca29a1
LP
3643
3644 r = sd_event_source_set_io_events(bus->output_io_event_source, e & POLLOUT);
5ae37ad8 3645 } else
40ca29a1 3646 r = sd_event_source_set_io_events(bus->input_io_event_source, e);
5ae37ad8
LP
3647 if (r < 0)
3648 goto fail;
40ca29a1
LP
3649
3650 r = sd_bus_get_timeout(bus, &until);
3651 if (r < 0)
5ae37ad8 3652 goto fail;
40ca29a1
LP
3653 if (r > 0) {
3654 int j;
3655
3656 j = sd_event_source_set_time(bus->time_event_source, until);
5ae37ad8
LP
3657 if (j < 0) {
3658 r = j;
3659 goto fail;
3660 }
40ca29a1
LP
3661 }
3662
3663 r = sd_event_source_set_enabled(bus->time_event_source, r > 0);
3664 if (r < 0)
5ae37ad8
LP
3665 goto fail;
3666
3667 return 1;
3668
3669fail:
3670 log_debug_errno(r, "Preparing of bus events failed, closing down: %m");
3671 bus_enter_closing(bus);
40ca29a1
LP
3672
3673 return 1;
3674}
3675
abc5fe72
LP
3676static int quit_callback(sd_event_source *event, void *userdata) {
3677 sd_bus *bus = userdata;
3678
3679 assert(event);
3680
c4e48030
LP
3681 if (bus->close_on_exit) {
3682 sd_bus_flush(bus);
3683 sd_bus_close(bus);
3684 }
abc5fe72
LP
3685
3686 return 1;
3687}
3688
8a5cd31e 3689int bus_attach_io_events(sd_bus *bus) {
1e05d493
LP
3690 int r;
3691
3692 assert(bus);
3693
3694 if (bus->input_fd < 0)
3695 return 0;
3696
3697 if (!bus->event)
3698 return 0;
3699
3700 if (!bus->input_io_event_source) {
151b9b96 3701 r = sd_event_add_io(bus->event, &bus->input_io_event_source, bus->input_fd, 0, io_callback, bus);
1e05d493
LP
3702 if (r < 0)
3703 return r;
3704
3705 r = sd_event_source_set_prepare(bus->input_io_event_source, prepare_callback);
3706 if (r < 0)
3707 return r;
3708
3709 r = sd_event_source_set_priority(bus->input_io_event_source, bus->event_priority);
9021bb9f
TG
3710 if (r < 0)
3711 return r;
3712
356779df 3713 r = sd_event_source_set_description(bus->input_io_event_source, "bus-input");
1e05d493
LP
3714 } else
3715 r = sd_event_source_set_io_fd(bus->input_io_event_source, bus->input_fd);
3716
3717 if (r < 0)
3718 return r;
3719
3720 if (bus->output_fd != bus->input_fd) {
3721 assert(bus->output_fd >= 0);
3722
3723 if (!bus->output_io_event_source) {
151b9b96 3724 r = sd_event_add_io(bus->event, &bus->output_io_event_source, bus->output_fd, 0, io_callback, bus);
1e05d493
LP
3725 if (r < 0)
3726 return r;
3727
3728 r = sd_event_source_set_priority(bus->output_io_event_source, bus->event_priority);
9021bb9f
TG
3729 if (r < 0)
3730 return r;
3731
356779df 3732 r = sd_event_source_set_description(bus->input_io_event_source, "bus-output");
1e05d493
LP
3733 } else
3734 r = sd_event_source_set_io_fd(bus->output_io_event_source, bus->output_fd);
3735
3736 if (r < 0)
3737 return r;
3738 }
3739
3740 return 0;
3741}
3742
8a5cd31e 3743static void bus_detach_io_events(sd_bus *bus) {
1e05d493
LP
3744 assert(bus);
3745
3746 if (bus->input_io_event_source) {
3747 sd_event_source_set_enabled(bus->input_io_event_source, SD_EVENT_OFF);
3748 bus->input_io_event_source = sd_event_source_unref(bus->input_io_event_source);
3749 }
3750
3751 if (bus->output_io_event_source) {
3752 sd_event_source_set_enabled(bus->output_io_event_source, SD_EVENT_OFF);
3753 bus->output_io_event_source = sd_event_source_unref(bus->output_io_event_source);
3754 }
3755}
3756
8a5cd31e
LP
3757int bus_attach_inotify_event(sd_bus *bus) {
3758 int r;
3759
3760 assert(bus);
3761
3762 if (bus->inotify_fd < 0)
3763 return 0;
3764
3765 if (!bus->event)
3766 return 0;
3767
3768 if (!bus->inotify_event_source) {
3769 r = sd_event_add_io(bus->event, &bus->inotify_event_source, bus->inotify_fd, EPOLLIN, io_callback, bus);
3770 if (r < 0)
3771 return r;
3772
3773 r = sd_event_source_set_priority(bus->inotify_event_source, bus->event_priority);
3774 if (r < 0)
3775 return r;
3776
3777 r = sd_event_source_set_description(bus->inotify_event_source, "bus-inotify");
3778 } else
3779 r = sd_event_source_set_io_fd(bus->inotify_event_source, bus->inotify_fd);
3780 if (r < 0)
3781 return r;
3782
3783 return 0;
3784}
3785
3786static void bus_detach_inotify_event(sd_bus *bus) {
3787 assert(bus);
3788
3789 if (bus->inotify_event_source) {
3790 sd_event_source_set_enabled(bus->inotify_event_source, SD_EVENT_OFF);
3791 bus->inotify_event_source = sd_event_source_unref(bus->inotify_event_source);
3792 }
3793}
3794
d9f644e2 3795_public_ int sd_bus_attach_event(sd_bus *bus, sd_event *event, int priority) {
40ca29a1
LP
3796 int r;
3797
3798 assert_return(bus, -EINVAL);
45b1f410 3799 assert_return(bus = bus_resolve(bus), -ENOPKG);
40ca29a1
LP
3800 assert_return(!bus->event, -EBUSY);
3801
3802 assert(!bus->input_io_event_source);
3803 assert(!bus->output_io_event_source);
3804 assert(!bus->time_event_source);
3805
76b54375
LP
3806 if (event)
3807 bus->event = sd_event_ref(event);
3808 else {
3809 r = sd_event_default(&bus->event);
3810 if (r < 0)
3811 return r;
3812 }
40ca29a1 3813
1e05d493 3814 bus->event_priority = priority;
40ca29a1 3815
6a0f1f6d 3816 r = sd_event_add_time(bus->event, &bus->time_event_source, CLOCK_MONOTONIC, 0, 0, time_callback, bus);
40ca29a1
LP
3817 if (r < 0)
3818 goto fail;
3819
3820 r = sd_event_source_set_priority(bus->time_event_source, priority);
3821 if (r < 0)
3822 goto fail;
3823
356779df 3824 r = sd_event_source_set_description(bus->time_event_source, "bus-time");
9021bb9f
TG
3825 if (r < 0)
3826 goto fail;
3827
151b9b96 3828 r = sd_event_add_exit(bus->event, &bus->quit_event_source, quit_callback, bus);
abc5fe72
LP
3829 if (r < 0)
3830 goto fail;
3831
356779df 3832 r = sd_event_source_set_description(bus->quit_event_source, "bus-exit");
9021bb9f
TG
3833 if (r < 0)
3834 goto fail;
3835
8a5cd31e
LP
3836 r = bus_attach_io_events(bus);
3837 if (r < 0)
3838 goto fail;
3839
3840 r = bus_attach_inotify_event(bus);
1e05d493
LP
3841 if (r < 0)
3842 goto fail;
3843
40ca29a1
LP
3844 return 0;
3845
3846fail:
3847 sd_bus_detach_event(bus);
3848 return r;
3849}
3850
d9f644e2 3851_public_ int sd_bus_detach_event(sd_bus *bus) {
40ca29a1 3852 assert_return(bus, -EINVAL);
45b1f410 3853 assert_return(bus = bus_resolve(bus), -ENOPKG);
a82cafb9
LP
3854
3855 if (!bus->event)
3856 return 0;
40ca29a1 3857
8a5cd31e
LP
3858 bus_detach_io_events(bus);
3859 bus_detach_inotify_event(bus);
40ca29a1 3860
86befb40
LP
3861 if (bus->time_event_source) {
3862 sd_event_source_set_enabled(bus->time_event_source, SD_EVENT_OFF);
40ca29a1 3863 bus->time_event_source = sd_event_source_unref(bus->time_event_source);
86befb40 3864 }
40ca29a1 3865
86befb40
LP
3866 if (bus->quit_event_source) {
3867 sd_event_source_set_enabled(bus->quit_event_source, SD_EVENT_OFF);
abc5fe72 3868 bus->quit_event_source = sd_event_source_unref(bus->quit_event_source);
86befb40 3869 }
abc5fe72 3870
93f1bcf4 3871 bus->event = sd_event_unref(bus->event);
a82cafb9 3872 return 1;
40ca29a1 3873}
affff0b6 3874
2be44176 3875_public_ sd_event* sd_bus_get_event(sd_bus *bus) {
501ecd67 3876 assert_return(bus = bus_resolve(bus), NULL);
2be44176
LP
3877
3878 return bus->event;
3879}
3880
19befb2d 3881_public_ sd_bus_message* sd_bus_get_current_message(sd_bus *bus) {
501ecd67 3882 assert_return(bus = bus_resolve(bus), NULL);
19befb2d
LP
3883
3884 return bus->current_message;
3885}
3886
3887_public_ sd_bus_slot* sd_bus_get_current_slot(sd_bus *bus) {
501ecd67 3888 assert_return(bus = bus_resolve(bus), NULL);
affff0b6 3889
19befb2d 3890 return bus->current_slot;
affff0b6 3891}
76b54375 3892
caa82984 3893_public_ sd_bus_message_handler_t sd_bus_get_current_handler(sd_bus *bus) {
501ecd67 3894 assert_return(bus = bus_resolve(bus), NULL);
caa82984
LP
3895
3896 return bus->current_handler;
3897}
3898
3899_public_ void* sd_bus_get_current_userdata(sd_bus *bus) {
501ecd67 3900 assert_return(bus = bus_resolve(bus), NULL);
caa82984
LP
3901
3902 return bus->current_userdata;
3903}
3904
76b54375
LP
3905static int bus_default(int (*bus_open)(sd_bus **), sd_bus **default_bus, sd_bus **ret) {
3906 sd_bus *b = NULL;
3907 int r;
3908
3909 assert(bus_open);
3910 assert(default_bus);
3911
3912 if (!ret)
3913 return !!*default_bus;
3914
3915 if (*default_bus) {
3916 *ret = sd_bus_ref(*default_bus);
3917 return 0;
3918 }
3919
3920 r = bus_open(&b);
3921 if (r < 0)
3922 return r;
3923
3924 b->default_bus_ptr = default_bus;
3925 b->tid = gettid();
3926 *default_bus = b;
3927
3928 *ret = b;
3929 return 1;
3930}
3931
3932_public_ int sd_bus_default_system(sd_bus **ret) {
76b54375
LP
3933 return bus_default(sd_bus_open_system, &default_system_bus, ret);
3934}
3935
fa2f8973 3936_public_ int sd_bus_default_user(sd_bus **ret) {
76b54375
LP
3937 return bus_default(sd_bus_open_user, &default_user_bus, ret);
3938}
3939
af08d2f9 3940_public_ int sd_bus_default(sd_bus **ret) {
45b1f410
NM
3941 int (*bus_open)(sd_bus **) = NULL;
3942 sd_bus **busp;
af08d2f9 3943
45b1f410
NM
3944 busp = bus_choose_default(&bus_open);
3945 return bus_default(bus_open, busp, ret);
af08d2f9
LP
3946}
3947
76b54375
LP
3948_public_ int sd_bus_get_tid(sd_bus *b, pid_t *tid) {
3949 assert_return(b, -EINVAL);
3950 assert_return(tid, -EINVAL);
3951 assert_return(!bus_pid_changed(b), -ECHILD);
3952
3953 if (b->tid != 0) {
3954 *tid = b->tid;
3955 return 0;
3956 }
3957
3958 if (b->event)
3959 return sd_event_get_tid(b->event, tid);
3960
3961 return -ENXIO;
3962}
28383ba1 3963
a6278b88
LP
3964_public_ int sd_bus_path_encode(const char *prefix, const char *external_id, char **ret_path) {
3965 _cleanup_free_ char *e = NULL;
3966 char *ret;
3967
3968 assert_return(object_path_is_valid(prefix), -EINVAL);
3969 assert_return(external_id, -EINVAL);
3970 assert_return(ret_path, -EINVAL);
3971
3972 e = bus_label_escape(external_id);
3973 if (!e)
3974 return -ENOMEM;
3975
657ee2d8 3976 ret = path_join(prefix, e);
a6278b88
LP
3977 if (!ret)
3978 return -ENOMEM;
3979
3980 *ret_path = ret;
3981 return 0;
28383ba1
LP
3982}
3983
a6278b88
LP
3984_public_ int sd_bus_path_decode(const char *path, const char *prefix, char **external_id) {
3985 const char *e;
3986 char *ret;
3987
3988 assert_return(object_path_is_valid(path), -EINVAL);
3989 assert_return(object_path_is_valid(prefix), -EINVAL);
3990 assert_return(external_id, -EINVAL);
3991
3992 e = object_path_startswith(path, prefix);
3993 if (!e) {
3994 *external_id = NULL;
3995 return 0;
3996 }
3997
3998 ret = bus_label_unescape(e);
3999 if (!ret)
4000 return -ENOMEM;
4001
4002 *external_id = ret;
4003 return 1;
28383ba1 4004}
5b12334d 4005
dfb815c3
DH
4006_public_ int sd_bus_path_encode_many(char **out, const char *path_template, ...) {
4007 _cleanup_strv_free_ char **labels = NULL;
4008 char *path, *path_pos, **label_pos;
4009 const char *sep, *template_pos;
4010 size_t path_length;
4011 va_list list;
4012 int r;
4013
4014 assert_return(out, -EINVAL);
4015 assert_return(path_template, -EINVAL);
4016
4017 path_length = strlen(path_template);
4018
19932084 4019 va_start(list, path_template);
dfb815c3
DH
4020 for (sep = strchr(path_template, '%'); sep; sep = strchr(sep + 1, '%')) {
4021 const char *arg;
4022 char *label;
4023
4024 arg = va_arg(list, const char *);
4025 if (!arg) {
4026 va_end(list);
4027 return -EINVAL;
4028 }
4029
4030 label = bus_label_escape(arg);
4031 if (!label) {
4032 va_end(list);
4033 return -ENOMEM;
4034 }
4035
4036 r = strv_consume(&labels, label);
4037 if (r < 0) {
4038 va_end(list);
4039 return r;
4040 }
4041
4042 /* add label length, but account for the format character */
4043 path_length += strlen(label) - 1;
4044 }
4045 va_end(list);
4046
4047 path = malloc(path_length + 1);
4048 if (!path)
4049 return -ENOMEM;
4050
4051 path_pos = path;
4052 label_pos = labels;
4053
4054 for (template_pos = path_template; *template_pos; ) {
4055 sep = strchrnul(template_pos, '%');
4056 path_pos = mempcpy(path_pos, template_pos, sep - template_pos);
4057 if (!*sep)
4058 break;
4059
4060 path_pos = stpcpy(path_pos, *label_pos++);
4061 template_pos = sep + 1;
4062 }
4063
4064 *path_pos = 0;
4065 *out = path;
4066 return 0;
4067}
4068
4069_public_ int sd_bus_path_decode_many(const char *path, const char *path_template, ...) {
4070 _cleanup_strv_free_ char **labels = NULL;
4071 const char *template_pos, *path_pos;
4072 char **label_pos;
4073 va_list list;
4074 int r;
4075
4076 /*
4077 * This decodes an object-path based on a template argument. The
4078 * template consists of a verbatim path, optionally including special
4079 * directives:
4080 *
4081 * - Each occurrence of '%' in the template matches an arbitrary
4082 * substring of a label in the given path. At most one such
4083 * directive is allowed per label. For each such directive, the
4084 * caller must provide an output parameter (char **) via va_arg. If
4085 * NULL is passed, the given label is verified, but not returned.
4086 * For each matched label, the *decoded* label is stored in the
4087 * passed output argument, and the caller is responsible to free
4088 * it. Note that the output arguments are only modified if the
5238e957 4089 * actually path matched the template. Otherwise, they're left
dfb815c3
DH
4090 * untouched.
4091 *
4092 * This function returns <0 on error, 0 if the path does not match the
4093 * template, 1 if it matched.
4094 */
4095
4096 assert_return(path, -EINVAL);
4097 assert_return(path_template, -EINVAL);
4098
4099 path_pos = path;
4100
4101 for (template_pos = path_template; *template_pos; ) {
4102 const char *sep;
4103 size_t length;
4104 char *label;
4105
4106 /* verify everything until the next '%' matches verbatim */
4107 sep = strchrnul(template_pos, '%');
4108 length = sep - template_pos;
4109 if (strncmp(path_pos, template_pos, length))
4110 return 0;
4111
4112 path_pos += length;
4113 template_pos += length;
4114
4115 if (!*template_pos)
4116 break;
4117
4118 /* We found the next '%' character. Everything up until here
4119 * matched. We now skip ahead to the end of this label and make
4120 * sure it matches the tail of the label in the path. Then we
4121 * decode the string in-between and save it for later use. */
4122
4123 ++template_pos; /* skip over '%' */
4124
4125 sep = strchrnul(template_pos, '/');
4126 length = sep - template_pos; /* length of suffix to match verbatim */
4127
4128 /* verify the suffixes match */
4129 sep = strchrnul(path_pos, '/');
4130 if (sep - path_pos < (ssize_t)length ||
4131 strncmp(sep - length, template_pos, length))
4132 return 0;
4133
4134 template_pos += length; /* skip over matched label */
4135 length = sep - path_pos - length; /* length of sub-label to decode */
4136
4137 /* store unescaped label for later use */
4138 label = bus_label_unescape_n(path_pos, length);
4139 if (!label)
4140 return -ENOMEM;
4141
4142 r = strv_consume(&labels, label);
4143 if (r < 0)
4144 return r;
4145
4146 path_pos = sep; /* skip decoded label and suffix */
4147 }
4148
4149 /* end of template must match end of path */
4150 if (*path_pos)
4151 return 0;
4152
4153 /* copy the labels over to the caller */
19932084 4154 va_start(list, path_template);
dfb815c3
DH
4155 for (label_pos = labels; label_pos && *label_pos; ++label_pos) {
4156 char **arg;
4157
4158 arg = va_arg(list, char **);
4159 if (arg)
4160 *arg = *label_pos;
4161 else
4162 free(*label_pos);
4163 }
4164 va_end(list);
4165
86ed6d1b 4166 labels = mfree(labels);
dfb815c3
DH
4167 return 1;
4168}
4169
ae095f86 4170_public_ int sd_bus_try_close(sd_bus *bus) {
ae095f86 4171 assert_return(bus, -EINVAL);
45b1f410 4172 assert_return(bus = bus_resolve(bus), -ENOPKG);
ae095f86 4173 assert_return(!bus_pid_changed(bus), -ECHILD);
a3d59cd1 4174
a132bef0 4175 return -EOPNOTSUPP;
ae095f86 4176}
5972fe95 4177
455971c1 4178_public_ int sd_bus_get_description(sd_bus *bus, const char **description) {
5972fe95 4179 assert_return(bus, -EINVAL);
45b1f410 4180 assert_return(bus = bus_resolve(bus), -ENOPKG);
455971c1 4181 assert_return(description, -EINVAL);
f4b2933e 4182 assert_return(bus->description, -ENXIO);
5972fe95
LP
4183 assert_return(!bus_pid_changed(bus), -ECHILD);
4184
201e419a
LP
4185 if (bus->description)
4186 *description = bus->description;
4187 else if (bus->is_system)
4188 *description = "system";
4189 else if (bus->is_user)
4190 *description = "user";
4191 else
4192 *description = NULL;
4193
5972fe95
LP
4194 return 0;
4195}
fe3f22d1 4196
3acc1daf 4197_public_ int sd_bus_get_scope(sd_bus *bus, const char **scope) {
3acc1daf 4198 assert_return(bus, -EINVAL);
45b1f410 4199 assert_return(bus = bus_resolve(bus), -ENOPKG);
3acc1daf
LP
4200 assert_return(scope, -EINVAL);
4201 assert_return(!bus_pid_changed(bus), -ECHILD);
4202
3acc1daf
LP
4203 if (bus->is_user) {
4204 *scope = "user";
5b820358 4205 return 0;
3acc1daf
LP
4206 }
4207
4208 if (bus->is_system) {
4209 *scope = "system";
5b820358
LP
4210 return 0;
4211 }
4212
4213 return -ENODATA;
4214}
4215
4216_public_ int sd_bus_get_address(sd_bus *bus, const char **address) {
5b820358 4217 assert_return(bus, -EINVAL);
45b1f410 4218 assert_return(bus = bus_resolve(bus), -ENOPKG);
5b820358
LP
4219 assert_return(address, -EINVAL);
4220 assert_return(!bus_pid_changed(bus), -ECHILD);
4221
4222 if (bus->address) {
4223 *address = bus->address;
4224 return 0;
3acc1daf
LP
4225 }
4226
4227 return -ENODATA;
4228}
224b3787 4229
882897af 4230_public_ int sd_bus_get_creds_mask(sd_bus *bus, uint64_t *mask) {
224b3787 4231 assert_return(bus, -EINVAL);
45b1f410 4232 assert_return(bus = bus_resolve(bus), -ENOPKG);
224b3787
LP
4233 assert_return(mask, -EINVAL);
4234 assert_return(!bus_pid_changed(bus), -ECHILD);
4235
4236 *mask = bus->creds_mask;
4237 return 0;
4238}
4239
882897af 4240_public_ int sd_bus_is_bus_client(sd_bus *bus) {
224b3787 4241 assert_return(bus, -EINVAL);
45b1f410 4242 assert_return(bus = bus_resolve(bus), -ENOPKG);
224b3787
LP
4243 assert_return(!bus_pid_changed(bus), -ECHILD);
4244
4245 return bus->bus_client;
4246}
4247
882897af 4248_public_ int sd_bus_is_server(sd_bus *bus) {
224b3787 4249 assert_return(bus, -EINVAL);
45b1f410 4250 assert_return(bus = bus_resolve(bus), -ENOPKG);
224b3787
LP
4251 assert_return(!bus_pid_changed(bus), -ECHILD);
4252
4253 return bus->is_server;
4254}
4255
882897af 4256_public_ int sd_bus_is_anonymous(sd_bus *bus) {
224b3787 4257 assert_return(bus, -EINVAL);
45b1f410 4258 assert_return(bus = bus_resolve(bus), -ENOPKG);
224b3787
LP
4259 assert_return(!bus_pid_changed(bus), -ECHILD);
4260
4261 return bus->anonymous_auth;
4262}
4263
882897af 4264_public_ int sd_bus_is_trusted(sd_bus *bus) {
224b3787 4265 assert_return(bus, -EINVAL);
45b1f410 4266 assert_return(bus = bus_resolve(bus), -ENOPKG);
224b3787
LP
4267 assert_return(!bus_pid_changed(bus), -ECHILD);
4268
4269 return bus->trusted;
4270}
4271
882897af 4272_public_ int sd_bus_is_monitor(sd_bus *bus) {
224b3787 4273 assert_return(bus, -EINVAL);
45b1f410 4274 assert_return(bus = bus_resolve(bus), -ENOPKG);
224b3787
LP
4275 assert_return(!bus_pid_changed(bus), -ECHILD);
4276
c7db1984 4277 return bus->is_monitor;
224b3787 4278}
fa2f8973
LP
4279
4280static void flush_close(sd_bus *bus) {
4281 if (!bus)
4282 return;
4283
4284 /* Flushes and closes the specified bus. We take a ref before,
4285 * to ensure the flushing does not cause the bus to be
4286 * unreferenced. */
4287
4288 sd_bus_flush_close_unref(sd_bus_ref(bus));
4289}
4290
4291_public_ void sd_bus_default_flush_close(void) {
4292 flush_close(default_starter_bus);
4293 flush_close(default_user_bus);
4294 flush_close(default_system_bus);
4295}
fbb4603d
LP
4296
4297_public_ int sd_bus_set_exit_on_disconnect(sd_bus *bus, int b) {
4298 assert_return(bus, -EINVAL);
45b1f410 4299 assert_return(bus = bus_resolve(bus), -ENOPKG);
fbb4603d
LP
4300
4301 /* Turns on exit-on-disconnect, and triggers it immediately if the bus connection was already
4302 * disconnected. Note that this is triggered exclusively on disconnections triggered by the server side, never
4303 * from the client side. */
4304 bus->exit_on_disconnect = b;
4305
4306 /* If the exit condition was triggered already, exit immediately. */
4307 return bus_exit_now(bus);
4308}
4309
4310_public_ int sd_bus_get_exit_on_disconnect(sd_bus *bus) {
4311 assert_return(bus, -EINVAL);
45b1f410 4312 assert_return(bus = bus_resolve(bus), -ENOPKG);
fbb4603d
LP
4313
4314 return bus->exit_on_disconnect;
4315}
48ef41a3
LP
4316
4317_public_ int sd_bus_set_sender(sd_bus *bus, const char *sender) {
4318 assert_return(bus, -EINVAL);
45b1f410 4319 assert_return(bus = bus_resolve(bus), -ENOPKG);
48ef41a3
LP
4320 assert_return(!bus->bus_client, -EPERM);
4321 assert_return(!sender || service_name_is_valid(sender), -EINVAL);
4322
4323 return free_and_strdup(&bus->patch_sender, sender);
4324}
4325
4326_public_ int sd_bus_get_sender(sd_bus *bus, const char **ret) {
4327 assert_return(bus, -EINVAL);
45b1f410 4328 assert_return(bus = bus_resolve(bus), -ENOPKG);
48ef41a3
LP
4329 assert_return(ret, -EINVAL);
4330
4331 if (!bus->patch_sender)
4332 return -ENODATA;
4333
4334 *ret = bus->patch_sender;
4335 return 0;
4336}
2770da02
LP
4337
4338_public_ int sd_bus_get_n_queued_read(sd_bus *bus, uint64_t *ret) {
4339 assert_return(bus, -EINVAL);
4340 assert_return(bus = bus_resolve(bus), -ENOPKG);
4341 assert_return(!bus_pid_changed(bus), -ECHILD);
4342 assert_return(ret, -EINVAL);
4343
4344 *ret = bus->rqueue_size;
4345 return 0;
4346}
4347
4348_public_ int sd_bus_get_n_queued_write(sd_bus *bus, uint64_t *ret) {
4349 assert_return(bus, -EINVAL);
4350 assert_return(bus = bus_resolve(bus), -ENOPKG);
4351 assert_return(!bus_pid_changed(bus), -ECHILD);
4352 assert_return(ret, -EINVAL);
4353
4354 *ret = bus->wqueue_size;
4355 return 0;
4356}
385b2eb2
YW
4357
4358_public_ int sd_bus_set_method_call_timeout(sd_bus *bus, uint64_t usec) {
4359 assert_return(bus, -EINVAL);
4360 assert_return(bus = bus_resolve(bus), -ENOPKG);
4361
4362 bus->method_call_timeout = usec;
4363 return 0;
4364}
4365
4366_public_ int sd_bus_get_method_call_timeout(sd_bus *bus, uint64_t *ret) {
4367 const char *e;
4368 usec_t usec;
4369
4370 assert_return(bus, -EINVAL);
4371 assert_return(bus = bus_resolve(bus), -ENOPKG);
4372 assert_return(ret, -EINVAL);
4373
4374 if (bus->method_call_timeout != 0) {
4375 *ret = bus->method_call_timeout;
4376 return 0;
4377 }
4378
4379 e = secure_getenv("SYSTEMD_BUS_TIMEOUT");
4380 if (e && parse_sec(e, &usec) >= 0 && usec != 0) {
4381 /* Save the parsed value to avoid multiple parsing. To change the timeout value,
4382 * use sd_bus_set_method_call_timeout() instead of setenv(). */
4383 *ret = bus->method_call_timeout = usec;
4384 return 0;
4385 }
4386
4387 *ret = bus->method_call_timeout = BUS_DEFAULT_TIMEOUT;
4388 return 0;
4389}
c4e48030
LP
4390
4391_public_ int sd_bus_set_close_on_exit(sd_bus *bus, int b) {
4392 assert_return(bus, -EINVAL);
4393 assert_return(bus = bus_resolve(bus), -ENOPKG);
4394
4395 bus->close_on_exit = b;
4396 return 0;
4397}
4398
4399_public_ int sd_bus_get_close_on_exit(sd_bus *bus) {
4400 assert_return(bus, -EINVAL);
4401 assert_return(bus = bus_resolve(bus), -ENOPKG);
4402
4403 return bus->close_on_exit;
4404}
1068447e 4405
bc130b68 4406_public_ int sd_bus_enqueue_for_read(sd_bus *bus, sd_bus_message *m) {
1068447e
LP
4407 int r;
4408
4409 assert_return(bus, -EINVAL);
4410 assert_return(bus = bus_resolve(bus), -ENOPKG);
4411 assert_return(m, -EINVAL);
4412 assert_return(m->sealed, -EINVAL);
4413 assert_return(!bus_pid_changed(bus), -ECHILD);
4414
4415 if (!BUS_IS_OPEN(bus->state))
4416 return -ENOTCONN;
4417
bc130b68
ZJS
4418 /* Re-enqueue a message for reading. This is primarily useful for PolicyKit-style authentication,
4419 * where we accept a message, then determine we need to interactively authenticate the user, and then
4420 * we want to process the message again. */
1068447e
LP
4421
4422 r = bus_rqueue_make_room(bus);
4423 if (r < 0)
4424 return r;
4425
4426 bus->rqueue[bus->rqueue_size++] = bus_message_ref_queued(m, bus);
4427 return 0;
4428}