]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libsystemd/sd-bus/bus-internal.h
condition: don't include files from src/core
[thirdparty/systemd.git] / src / libsystemd / sd-bus / bus-internal.h
CommitLineData
de1c301e
LP
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3#pragma once
4
5/***
6 This file is part of systemd.
7
8 Copyright 2013 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
24#include <sys/socket.h>
25#include <sys/un.h>
26#include <netinet/in.h>
45fbe937 27#include <pthread.h>
de1c301e
LP
28
29#include "hashmap.h"
e3017af9 30#include "prioq.h"
de1c301e
LP
31#include "list.h"
32#include "util.h"
e4ee6e5c 33#include "refcnt.h"
3c70e3bb 34#include "socket-util.h"
de1c301e
LP
35
36#include "sd-bus.h"
37#include "bus-error.h"
392d5b37 38#include "bus-match.h"
bc7fd8cd 39#include "bus-kernel.h"
8a0e0ed9 40#include "kdbus.h"
de1c301e
LP
41
42struct reply_callback {
52f3ba91 43 sd_bus_message_handler_t callback;
de1c301e 44 usec_t timeout;
693eb9a2 45 uint64_t cookie;
e3017af9 46 unsigned prioq_idx;
de1c301e
LP
47};
48
49struct filter_callback {
52f3ba91 50 sd_bus_message_handler_t callback;
de1c301e 51
7286037f
LP
52 unsigned last_iteration;
53
de1c301e
LP
54 LIST_FIELDS(struct filter_callback, callbacks);
55};
56
19befb2d
LP
57struct match_callback {
58 sd_bus_message_handler_t callback;
59
60 uint64_t cookie;
61 unsigned last_iteration;
62
63 char *match_string;
64
65 struct bus_match_node *match_node;
66};
67
29ddb38f
LP
68struct node {
69 char *path;
70 struct node *parent;
71 LIST_HEAD(struct node, child);
72 LIST_FIELDS(struct node, siblings);
73
74 LIST_HEAD(struct node_callback, callbacks);
75 LIST_HEAD(struct node_vtable, vtables);
76 LIST_HEAD(struct node_enumerator, enumerators);
19befb2d 77 LIST_HEAD(struct node_object_manager, object_managers);
29ddb38f
LP
78};
79
80struct node_callback {
81 struct node *node;
82
83 bool is_fallback;
52f3ba91 84 sd_bus_message_handler_t callback;
a652755d 85
29ddb38f
LP
86 unsigned last_iteration;
87
88 LIST_FIELDS(struct node_callback, callbacks);
89};
90
91struct node_enumerator {
92 struct node *node;
93
94 sd_bus_node_enumerator_t callback;
29ddb38f
LP
95
96 unsigned last_iteration;
97
98 LIST_FIELDS(struct node_enumerator, enumerators);
99};
100
19befb2d
LP
101struct node_object_manager {
102 struct node *node;
103
104 LIST_FIELDS(struct node_object_manager, object_managers);
105};
106
29ddb38f
LP
107struct node_vtable {
108 struct node *node;
109
110 char *interface;
a652755d 111 bool is_fallback;
29ddb38f 112 const sd_bus_vtable *vtable;
29ddb38f 113 sd_bus_object_find_t find;
7286037f
LP
114
115 unsigned last_iteration;
29ddb38f
LP
116
117 LIST_FIELDS(struct node_vtable, vtables);
118};
119
120struct vtable_member {
121 const char *path;
122 const char *interface;
123 const char *member;
124 struct node_vtable *parent;
125 unsigned last_iteration;
126 const sd_bus_vtable *vtable;
a652755d
LP
127};
128
19befb2d 129typedef enum BusSlotType {
19befb2d
LP
130 BUS_REPLY_CALLBACK,
131 BUS_FILTER_CALLBACK,
132 BUS_MATCH_CALLBACK,
133 BUS_NODE_CALLBACK,
134 BUS_NODE_ENUMERATOR,
135 BUS_NODE_VTABLE,
136 BUS_NODE_OBJECT_MANAGER,
a71fe8b8 137 _BUS_SLOT_INVALID = -1,
19befb2d
LP
138} BusSlotType;
139
140struct sd_bus_slot {
141 unsigned n_ref;
142 sd_bus *bus;
143 void *userdata;
a71fe8b8
LP
144 BusSlotType type:5;
145 bool floating:1;
9cbfc66c 146 char *description;
19befb2d
LP
147
148 LIST_FIELDS(sd_bus_slot, slots);
149
150 union {
151 struct reply_callback reply_callback;
152 struct filter_callback filter_callback;
153 struct match_callback match_callback;
154 struct node_callback node_callback;
155 struct node_enumerator node_enumerator;
156 struct node_object_manager node_object_manager;
157 struct node_vtable node_vtable;
158 };
159};
160
de1c301e 161enum bus_state {
021a1e78 162 BUS_UNSET,
de1c301e
LP
163 BUS_OPENING,
164 BUS_AUTHENTICATING,
165 BUS_HELLO,
f54514f3 166 BUS_RUNNING,
718db961 167 BUS_CLOSING,
f54514f3 168 BUS_CLOSED
de1c301e
LP
169};
170
f54514f3 171static inline bool BUS_IS_OPEN(enum bus_state state) {
718db961 172 return state > BUS_UNSET && state < BUS_CLOSING;
f54514f3
LP
173}
174
2181a7f5
LP
175enum bus_auth {
176 _BUS_AUTH_INVALID,
177 BUS_AUTH_EXTERNAL,
178 BUS_AUTH_ANONYMOUS
179};
180
de1c301e 181struct sd_bus {
e4ee6e5c
LP
182 /* We use atomic ref counting here since sd_bus_message
183 objects retain references to their originating sd_bus but
184 we want to allow them to be processed in a different
185 thread. We won't provide full thread safety, but only the
186 bare minimum that makes it possible to use sd_bus and
187 sd_bus_message objects independently and on different
188 threads as long as each object is used only once at the
189 same time. */
190 RefCount n_ref;
191
de1c301e 192 enum bus_state state;
e82c9509 193 int input_fd, output_fd;
de1c301e 194 int message_version;
0f437184 195 int message_endian;
021a1e78 196
6629161f 197 bool is_kernel:1;
de1c301e 198 bool can_fds:1;
94bbf1ba 199 bool bus_client:1;
2571ead1 200 bool ucred_valid:1;
2181a7f5
LP
201 bool is_server:1;
202 bool anonymous_auth:1;
15d5af81
LP
203 bool prefer_readv:1;
204 bool prefer_writev:1;
7286037f
LP
205 bool match_callbacks_modified:1;
206 bool filter_callbacks_modified:1;
29ddb38f 207 bool nodes_modified:1;
adacb957 208 bool trusted:1;
8a0e0ed9 209 bool fake_creds_valid:1;
705a415f 210 bool fake_pids_valid:1;
758bf0c7 211 bool manual_peer_interface:1;
5972fe95
LP
212 bool is_system:1;
213 bool is_user:1;
de1c301e 214
8f155917
LP
215 int use_memfd;
216
de1c301e
LP
217 void *rbuffer;
218 size_t rbuffer_size;
219
220 sd_bus_message **rqueue;
821e0756
LP
221 unsigned rqueue_size;
222 size_t rqueue_allocated;
de1c301e
LP
223
224 sd_bus_message **wqueue;
225 unsigned wqueue_size;
226 size_t windex;
821e0756 227 size_t wqueue_allocated;
de1c301e 228
693eb9a2 229 uint64_t cookie;
de1c301e
LP
230
231 char *unique_name;
219728b3 232 uint64_t unique_id;
de1c301e 233
392d5b37 234 struct bus_match_node match_callbacks;
e3017af9 235 Prioq *reply_callbacks_prioq;
c9fe4af7 236 OrderedHashmap *reply_callbacks;
de1c301e 237 LIST_HEAD(struct filter_callback, filter_callbacks);
29ddb38f
LP
238
239 Hashmap *nodes;
29ddb38f
LP
240 Hashmap *vtable_methods;
241 Hashmap *vtable_properties;
de1c301e 242
3cb46740 243 union sockaddr_union sockaddr;
de1c301e
LP
244 socklen_t sockaddr_size;
245
6629161f 246 char *kernel;
a7893c6b 247 char *machine;
6629161f 248
98178d39 249 sd_id128_t server_id;
de1c301e
LP
250
251 char *address;
252 unsigned address_index;
253
254 int last_connect_error;
255
2181a7f5
LP
256 enum bus_auth auth;
257 size_t auth_rbegin;
de1c301e
LP
258 struct iovec auth_iovec[3];
259 unsigned auth_index;
2181a7f5 260 char *auth_buffer;
e3017af9 261 usec_t auth_timeout;
2571ead1
LP
262
263 struct ucred ucred;
264 char label[NAME_MAX];
2c93b4ef 265
5b12334d
LP
266 uint64_t creds_mask;
267
2c93b4ef
LP
268 int *fds;
269 unsigned n_fds;
2fd9ae2e
LP
270
271 char *exec_path;
272 char **exec_argv;
9d373862 273
7286037f 274 unsigned iteration_counter;
fd8d62d9
LP
275
276 void *kdbus_buffer;
bc7fd8cd 277
45fbe937
LP
278 /* We do locking around the memfd cache, since we want to
279 * allow people to process a sd_bus_message in a different
280 * thread then it was generated on and free it there. Since
281 * adding something to the memfd cache might happen when a
282 * message is released, we hence need to protect this bit with
283 * a mutex. */
284 pthread_mutex_t memfd_cache_mutex;
bc7fd8cd
LP
285 struct memfd_cache memfd_cache[MEMFD_CACHE_MAX];
286 unsigned n_memfd_cache;
d5a2b9a6
LP
287
288 pid_t original_pid;
264ad849
LP
289
290 uint64_t hello_flags;
d21a7bb1 291 uint64_t attach_flags;
c7819669
LP
292
293 uint64_t match_cookie;
89ffcd2a 294
40ca29a1
LP
295 sd_event_source *input_io_event_source;
296 sd_event_source *output_io_event_source;
297 sd_event_source *time_event_source;
abc5fe72 298 sd_event_source *quit_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
LP
309
310 struct kdbus_creds fake_creds;
705a415f 311 struct kdbus_pids fake_pids;
8a0e0ed9 312 char *fake_label;
751bc6ac
LP
313
314 char *cgroup_root;
5972fe95 315
455971c1 316 char *description;
b28ff39f
LP
317
318 size_t bloom_size;
319 unsigned bloom_n_hash;
8f8f05a9
LP
320
321 sd_bus_track *track_queue;
19befb2d
LP
322
323 LIST_HEAD(sd_bus_slot, slots);
40ca29a1 324};
e3017af9
LP
325
326#define BUS_DEFAULT_TIMEOUT ((usec_t) (25 * USEC_PER_SEC))
25220239 327
7a4a2105
LP
328#define BUS_WQUEUE_MAX 1024
329#define BUS_RQUEUE_MAX 64*1024
25220239
LP
330
331#define BUS_MESSAGE_SIZE_MAX (64*1024*1024)
332#define BUS_AUTH_SIZE_MAX (64*1024)
ac89bf1d 333
ed205a6b
LP
334#define BUS_CONTAINER_DEPTH 128
335
ac89bf1d
LP
336/* Defined by the specification as maximum size of an array in
337 * bytes */
338#define BUS_ARRAY_MAX_SIZE 67108864
339
2c93b4ef
LP
340#define BUS_FDS_MAX 1024
341
2fd9ae2e
LP
342#define BUS_EXEC_ARGV_MAX 256
343
0ce036ce
LP
344bool interface_name_is_valid(const char *p) _pure_;
345bool service_name_is_valid(const char *p) _pure_;
f5d8989c 346char* service_name_startswith(const char *a, const char *b);
0ce036ce
LP
347bool member_name_is_valid(const char *p) _pure_;
348bool object_path_is_valid(const char *p) _pure_;
349char *object_path_startswith(const char *a, const char *b) _pure_;
6693860f 350
0ce036ce
LP
351bool namespace_complex_pattern(const char *pattern, const char *value) _pure_;
352bool path_complex_pattern(const char *pattern, const char *value) _pure_;
392d5b37 353
0ce036ce
LP
354bool namespace_simple_pattern(const char *pattern, const char *value) _pure_;
355bool path_simple_pattern(const char *pattern, const char *value) _pure_;
392d5b37 356
0ce036ce
LP
357int bus_message_type_from_string(const char *s, uint8_t *u) _pure_;
358const char *bus_message_type_to_string(uint8_t u) _pure_;
392d5b37 359
6693860f 360#define error_name_is_valid interface_name_is_valid
20902f3e
LP
361
362int bus_ensure_running(sd_bus *bus);
a7e3212d
LP
363int bus_start_running(sd_bus *bus);
364int bus_next_address(sd_bus *bus);
d5a2b9a6 365
7adc46fc 366int bus_seal_synthetic_message(sd_bus *b, sd_bus_message *m);
777d7a61 367
7adc46fc 368int bus_rqueue_make_room(sd_bus *bus);
7d22c717 369
d5a2b9a6 370bool bus_pid_changed(sd_bus *bus);
92e189e5 371
0f8bd8de
LP
372char *bus_address_escape(const char *v);
373
92e189e5
LP
374#define OBJECT_PATH_FOREACH_PREFIX(prefix, path) \
375 for (char *_slash = ({ strcpy((prefix), (path)); streq((prefix), "/") ? NULL : strrchr((prefix), '/'); }) ; \
376 _slash && !(_slash[(_slash) == (prefix)] = 0); \
377 _slash = streq((prefix), "/") ? NULL : strrchr((prefix), '/'))
8ce2afd6
LP
378
379/* If we are invoking callbacks of a bus object, ensure unreffing the
380 * bus from the callback doesn't destroy the object we are working
381 * on */
382#define BUS_DONT_DESTROY(bus) \
d7726e57 383 _cleanup_bus_unref_ _unused_ sd_bus *_dont_destroy_##bus = sd_bus_ref(bus)
09365592
LP
384
385int bus_set_address_system(sd_bus *bus);
386int bus_set_address_user(sd_bus *bus);
387int bus_set_address_system_remote(sd_bus *b, const char *host);
388int bus_set_address_system_container(sd_bus *b, const char *machine);
19befb2d
LP
389
390int bus_remove_match_by_string(sd_bus *bus, const char *match, sd_bus_message_handler_t callback, void *userdata);
fe3f22d1
DK
391
392int bus_get_root_path(sd_bus *bus);