]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libsystemd/sd-bus/bus-internal.h
tree-wide: remove Lennart's copyright lines
[thirdparty/systemd.git] / src / libsystemd / sd-bus / bus-internal.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
de1c301e
LP
2#pragma once
3
4/***
de1c301e
LP
5***/
6
45fbe937 7#include <pthread.h>
07630cea 8#include <sys/socket.h>
de1c301e
LP
9
10#include "sd-bus.h"
07630cea 11
de1c301e 12#include "bus-error.h"
bc7fd8cd 13#include "bus-kernel.h"
07630cea 14#include "bus-match.h"
036d61b3 15#include "def.h"
07630cea 16#include "hashmap.h"
07630cea
LP
17#include "list.h"
18#include "prioq.h"
19#include "refcnt.h"
20#include "socket-util.h"
21#include "util.h"
de1c301e
LP
22
23struct reply_callback {
52f3ba91 24 sd_bus_message_handler_t callback;
ac8029fc 25 usec_t timeout_usec; /* this is a relative timeout until we reach the BUS_HELLO state, and an absolute one right after */
693eb9a2 26 uint64_t cookie;
e3017af9 27 unsigned prioq_idx;
de1c301e
LP
28};
29
30struct filter_callback {
52f3ba91 31 sd_bus_message_handler_t callback;
de1c301e 32
7286037f
LP
33 unsigned last_iteration;
34
de1c301e
LP
35 LIST_FIELDS(struct filter_callback, callbacks);
36};
37
19befb2d
LP
38struct match_callback {
39 sd_bus_message_handler_t callback;
7593c7a4
LP
40 sd_bus_message_handler_t install_callback;
41
42 sd_bus_slot *install_slot; /* The AddMatch() call */
19befb2d 43
19befb2d
LP
44 unsigned last_iteration;
45
46 char *match_string;
47
48 struct bus_match_node *match_node;
49};
50
29ddb38f
LP
51struct node {
52 char *path;
53 struct node *parent;
54 LIST_HEAD(struct node, child);
55 LIST_FIELDS(struct node, siblings);
56
57 LIST_HEAD(struct node_callback, callbacks);
58 LIST_HEAD(struct node_vtable, vtables);
59 LIST_HEAD(struct node_enumerator, enumerators);
19befb2d 60 LIST_HEAD(struct node_object_manager, object_managers);
29ddb38f
LP
61};
62
63struct node_callback {
64 struct node *node;
65
66 bool is_fallback;
52f3ba91 67 sd_bus_message_handler_t callback;
a652755d 68
29ddb38f
LP
69 unsigned last_iteration;
70
71 LIST_FIELDS(struct node_callback, callbacks);
72};
73
74struct node_enumerator {
75 struct node *node;
76
77 sd_bus_node_enumerator_t callback;
29ddb38f
LP
78
79 unsigned last_iteration;
80
81 LIST_FIELDS(struct node_enumerator, enumerators);
82};
83
19befb2d
LP
84struct node_object_manager {
85 struct node *node;
86
87 LIST_FIELDS(struct node_object_manager, object_managers);
88};
89
29ddb38f
LP
90struct node_vtable {
91 struct node *node;
92
93 char *interface;
a652755d 94 bool is_fallback;
29ddb38f 95 const sd_bus_vtable *vtable;
29ddb38f 96 sd_bus_object_find_t find;
7286037f
LP
97
98 unsigned last_iteration;
29ddb38f
LP
99
100 LIST_FIELDS(struct node_vtable, vtables);
101};
102
103struct vtable_member {
104 const char *path;
105 const char *interface;
106 const char *member;
107 struct node_vtable *parent;
108 unsigned last_iteration;
109 const sd_bus_vtable *vtable;
a652755d
LP
110};
111
19befb2d 112typedef enum BusSlotType {
19befb2d
LP
113 BUS_REPLY_CALLBACK,
114 BUS_FILTER_CALLBACK,
115 BUS_MATCH_CALLBACK,
116 BUS_NODE_CALLBACK,
117 BUS_NODE_ENUMERATOR,
118 BUS_NODE_VTABLE,
119 BUS_NODE_OBJECT_MANAGER,
a71fe8b8 120 _BUS_SLOT_INVALID = -1,
19befb2d
LP
121} BusSlotType;
122
123struct sd_bus_slot {
124 unsigned n_ref;
125 sd_bus *bus;
126 void *userdata;
fa17b4e8 127 sd_bus_destroy_t destroy_callback;
a71fe8b8 128 BusSlotType type:5;
303acb7f
LP
129
130 /* Slots can be "floating" or not. If they are not floating (the usual case) then they reference the bus object
131 * they are associated with. This means the bus object stays allocated at least as long as there is a slot
132 * around associated with it. If it is floating, then the slot's lifecycle is bound to the lifecycle of the
133 * bus: it will be disconnected from the bus when the bus is destroyed, and it keeping the slot reffed hence
134 * won't mean the bus stays reffed too. Internally this means the reference direction is reversed: floating
135 * slots objects are referenced by the bus object, and not vice versa. */
a71fe8b8 136 bool floating:1;
303acb7f 137
cc65fe5e 138 bool match_added:1;
9cbfc66c 139 char *description;
19befb2d
LP
140
141 LIST_FIELDS(sd_bus_slot, slots);
142
143 union {
144 struct reply_callback reply_callback;
145 struct filter_callback filter_callback;
146 struct match_callback match_callback;
147 struct node_callback node_callback;
148 struct node_enumerator node_enumerator;
149 struct node_object_manager node_object_manager;
150 struct node_vtable node_vtable;
151 };
152};
153
de1c301e 154enum bus_state {
021a1e78 155 BUS_UNSET,
ac8029fc
LP
156 BUS_WATCH_BIND, /* waiting for the socket to appear via inotify */
157 BUS_OPENING, /* the kernel's connect() is still not ready */
158 BUS_AUTHENTICATING, /* we are currently in the "SASL" authorization phase of dbus */
159 BUS_HELLO, /* we are waiting for the Hello() response */
f54514f3 160 BUS_RUNNING,
718db961 161 BUS_CLOSING,
3e0e196e
LP
162 BUS_CLOSED,
163 _BUS_STATE_MAX,
de1c301e
LP
164};
165
f54514f3 166static inline bool BUS_IS_OPEN(enum bus_state state) {
718db961 167 return state > BUS_UNSET && state < BUS_CLOSING;
f54514f3
LP
168}
169
2181a7f5
LP
170enum bus_auth {
171 _BUS_AUTH_INVALID,
172 BUS_AUTH_EXTERNAL,
173 BUS_AUTH_ANONYMOUS
174};
175
de1c301e 176struct sd_bus {
e4ee6e5c
LP
177 /* We use atomic ref counting here since sd_bus_message
178 objects retain references to their originating sd_bus but
179 we want to allow them to be processed in a different
180 thread. We won't provide full thread safety, but only the
181 bare minimum that makes it possible to use sd_bus and
182 sd_bus_message objects independently and on different
183 threads as long as each object is used only once at the
184 same time. */
185 RefCount n_ref;
186
de1c301e 187 enum bus_state state;
e82c9509 188 int input_fd, output_fd;
8a5cd31e 189 int inotify_fd;
de1c301e 190 int message_version;
0f437184 191 int message_endian;
021a1e78 192
de1c301e 193 bool can_fds:1;
94bbf1ba 194 bool bus_client:1;
2571ead1 195 bool ucred_valid:1;
2181a7f5
LP
196 bool is_server:1;
197 bool anonymous_auth:1;
15d5af81
LP
198 bool prefer_readv:1;
199 bool prefer_writev:1;
7286037f
LP
200 bool match_callbacks_modified:1;
201 bool filter_callbacks_modified:1;
29ddb38f 202 bool nodes_modified:1;
adacb957 203 bool trusted:1;
758bf0c7 204 bool manual_peer_interface:1;
5972fe95
LP
205 bool is_system:1;
206 bool is_user:1;
c0765ddb 207 bool allow_interactive_authorization:1;
fbb4603d
LP
208 bool exit_on_disconnect:1;
209 bool exited:1;
210 bool exit_triggered:1;
694859b5 211 bool is_local:1;
8a5cd31e 212 bool watch_bind:1;
c7db1984
LP
213 bool is_monitor:1;
214 bool accept_fd:1;
215 bool attach_timestamp:1;
b38cc8d5 216 bool connected_signal:1;
de1c301e 217
8f155917
LP
218 int use_memfd;
219
de1c301e
LP
220 void *rbuffer;
221 size_t rbuffer_size;
222
223 sd_bus_message **rqueue;
821e0756
LP
224 unsigned rqueue_size;
225 size_t rqueue_allocated;
de1c301e
LP
226
227 sd_bus_message **wqueue;
228 unsigned wqueue_size;
229 size_t windex;
821e0756 230 size_t wqueue_allocated;
de1c301e 231
693eb9a2 232 uint64_t cookie;
de1c301e
LP
233
234 char *unique_name;
219728b3 235 uint64_t unique_id;
de1c301e 236
392d5b37 237 struct bus_match_node match_callbacks;
e3017af9 238 Prioq *reply_callbacks_prioq;
c9fe4af7 239 OrderedHashmap *reply_callbacks;
de1c301e 240 LIST_HEAD(struct filter_callback, filter_callbacks);
29ddb38f
LP
241
242 Hashmap *nodes;
29ddb38f
LP
243 Hashmap *vtable_methods;
244 Hashmap *vtable_properties;
de1c301e 245
3cb46740 246 union sockaddr_union sockaddr;
de1c301e
LP
247 socklen_t sockaddr_size;
248
a7893c6b 249 char *machine;
ee502e0c 250 pid_t nspid;
6629161f 251
98178d39 252 sd_id128_t server_id;
de1c301e
LP
253
254 char *address;
255 unsigned address_index;
256
257 int last_connect_error;
258
2181a7f5
LP
259 enum bus_auth auth;
260 size_t auth_rbegin;
de1c301e
LP
261 struct iovec auth_iovec[3];
262 unsigned auth_index;
2181a7f5 263 char *auth_buffer;
e3017af9 264 usec_t auth_timeout;
2571ead1
LP
265
266 struct ucred ucred;
c4e6556c 267 char *label;
18ac4643
LP
268 gid_t *groups;
269 size_t n_groups;
2c93b4ef 270
5b12334d
LP
271 uint64_t creds_mask;
272
2c93b4ef 273 int *fds;
da6053d0 274 size_t n_fds;
2fd9ae2e
LP
275
276 char *exec_path;
277 char **exec_argv;
9d373862 278
7286037f 279 unsigned iteration_counter;
fd8d62d9 280
45fbe937
LP
281 /* We do locking around the memfd cache, since we want to
282 * allow people to process a sd_bus_message in a different
283 * thread then it was generated on and free it there. Since
284 * adding something to the memfd cache might happen when a
285 * message is released, we hence need to protect this bit with
286 * a mutex. */
287 pthread_mutex_t memfd_cache_mutex;
bc7fd8cd
LP
288 struct memfd_cache memfd_cache[MEMFD_CACHE_MAX];
289 unsigned n_memfd_cache;
d5a2b9a6
LP
290
291 pid_t original_pid;
392cf1d0 292 pid_t busexec_pid;
264ad849 293
40ca29a1
LP
294 sd_event_source *input_io_event_source;
295 sd_event_source *output_io_event_source;
296 sd_event_source *time_event_source;
abc5fe72 297 sd_event_source *quit_event_source;
8a5cd31e 298 sd_event_source *inotify_event_source;
40ca29a1 299 sd_event *event;
1e05d493 300 int event_priority;
affff0b6 301
19befb2d
LP
302 sd_bus_message *current_message;
303 sd_bus_slot *current_slot;
caa82984
LP
304 sd_bus_message_handler_t current_handler;
305 void *current_userdata;
76b54375
LP
306
307 sd_bus **default_bus_ptr;
308 pid_t tid;
8a0e0ed9 309
751bc6ac 310 char *cgroup_root;
5972fe95 311
455971c1 312 char *description;
48ef41a3 313 char *patch_sender;
b28ff39f 314
8f8f05a9 315 sd_bus_track *track_queue;
19befb2d
LP
316
317 LIST_HEAD(sd_bus_slot, slots);
232f3677 318 LIST_HEAD(sd_bus_track, tracks);
8a5cd31e
LP
319
320 int *inotify_watches;
321 size_t n_inotify_watches;
40ca29a1 322};
e3017af9 323
036d61b3 324/* For method calls we time-out at 25s, like in the D-Bus reference implementation */
e3017af9 325#define BUS_DEFAULT_TIMEOUT ((usec_t) (25 * USEC_PER_SEC))
25220239 326
036d61b3
LP
327/* For the authentication phase we grant 90s, to provide extra room during boot, when RNGs and such are not filled up
328 * with enough entropy yet and might delay the boot */
329#define BUS_AUTH_TIMEOUT ((usec_t) DEFAULT_TIMEOUT_USEC)
330
5ddda46f
LP
331#define BUS_WQUEUE_MAX (192*1024)
332#define BUS_RQUEUE_MAX (192*1024)
25220239 333
33d8fe60 334#define BUS_MESSAGE_SIZE_MAX (128*1024*1024)
25220239 335#define BUS_AUTH_SIZE_MAX (64*1024)
ac89bf1d 336
ed205a6b
LP
337#define BUS_CONTAINER_DEPTH 128
338
ac89bf1d
LP
339/* Defined by the specification as maximum size of an array in
340 * bytes */
341#define BUS_ARRAY_MAX_SIZE 67108864
342
2c93b4ef
LP
343#define BUS_FDS_MAX 1024
344
2fd9ae2e
LP
345#define BUS_EXEC_ARGV_MAX 256
346
0ce036ce
LP
347bool interface_name_is_valid(const char *p) _pure_;
348bool service_name_is_valid(const char *p) _pure_;
f5d8989c 349char* service_name_startswith(const char *a, const char *b);
0ce036ce
LP
350bool member_name_is_valid(const char *p) _pure_;
351bool object_path_is_valid(const char *p) _pure_;
352char *object_path_startswith(const char *a, const char *b) _pure_;
6693860f 353
0ce036ce
LP
354bool namespace_complex_pattern(const char *pattern, const char *value) _pure_;
355bool path_complex_pattern(const char *pattern, const char *value) _pure_;
392d5b37 356
0ce036ce
LP
357bool namespace_simple_pattern(const char *pattern, const char *value) _pure_;
358bool path_simple_pattern(const char *pattern, const char *value) _pure_;
392d5b37 359
0ce036ce
LP
360int bus_message_type_from_string(const char *s, uint8_t *u) _pure_;
361const char *bus_message_type_to_string(uint8_t u) _pure_;
392d5b37 362
6693860f 363#define error_name_is_valid interface_name_is_valid
20902f3e 364
45b1f410
NM
365sd_bus *bus_resolve(sd_bus *bus);
366
20902f3e 367int bus_ensure_running(sd_bus *bus);
a7e3212d
LP
368int bus_start_running(sd_bus *bus);
369int bus_next_address(sd_bus *bus);
d5a2b9a6 370
7adc46fc 371int bus_seal_synthetic_message(sd_bus *b, sd_bus_message *m);
777d7a61 372
7adc46fc 373int bus_rqueue_make_room(sd_bus *bus);
7d22c717 374
d5a2b9a6 375bool bus_pid_changed(sd_bus *bus);
92e189e5 376
0f8bd8de
LP
377char *bus_address_escape(const char *v);
378
8a5cd31e
LP
379int bus_attach_io_events(sd_bus *b);
380int bus_attach_inotify_event(sd_bus *b);
381
382void bus_close_inotify_fd(sd_bus *b);
383void bus_close_io_fds(sd_bus *b);
384
92e189e5
LP
385#define OBJECT_PATH_FOREACH_PREFIX(prefix, path) \
386 for (char *_slash = ({ strcpy((prefix), (path)); streq((prefix), "/") ? NULL : strrchr((prefix), '/'); }) ; \
387 _slash && !(_slash[(_slash) == (prefix)] = 0); \
388 _slash = streq((prefix), "/") ? NULL : strrchr((prefix), '/'))
8ce2afd6
LP
389
390/* If we are invoking callbacks of a bus object, ensure unreffing the
391 * bus from the callback doesn't destroy the object we are working
392 * on */
393#define BUS_DONT_DESTROY(bus) \
4afd3348 394 _cleanup_(sd_bus_unrefp) _unused_ sd_bus *_dont_destroy_##bus = sd_bus_ref(bus)
09365592
LP
395
396int bus_set_address_system(sd_bus *bus);
397int bus_set_address_user(sd_bus *bus);
398int bus_set_address_system_remote(sd_bus *b, const char *host);
de33fc62 399int bus_set_address_system_machine(sd_bus *b, const char *machine);
19befb2d 400
fe3f22d1 401int bus_get_root_path(sd_bus *bus);
a095315b
KS
402
403int bus_maybe_reply_error(sd_bus_message *m, int r, sd_bus_error *error);
d4d00020 404
759e02e7
LP
405#define bus_assert_return(expr, r, error) \
406 do { \
34c38d2a 407 if (!assert_log(expr, #expr)) \
759e02e7
LP
408 return sd_bus_error_set_errno(error, r); \
409 } while (false)
98c5bbc8
LP
410
411void bus_enter_closing(sd_bus *bus);
3e0e196e
LP
412
413void bus_set_state(sd_bus *bus, enum bus_state state);