]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libsystemd/sd-bus/bus-internal.h
bus: extend memfd api so that we can label memfds for debugging purposes
[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"
de1c301e
LP
34
35#include "sd-bus.h"
36#include "bus-error.h"
392d5b37 37#include "bus-match.h"
bc7fd8cd 38#include "bus-kernel.h"
8a0e0ed9 39#include "kdbus.h"
de1c301e
LP
40
41struct reply_callback {
52f3ba91 42 sd_bus_message_handler_t callback;
de1c301e
LP
43 void *userdata;
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
LP
51 void *userdata;
52
7286037f
LP
53 unsigned last_iteration;
54
de1c301e
LP
55 LIST_FIELDS(struct filter_callback, callbacks);
56};
57
29ddb38f
LP
58struct node {
59 char *path;
60 struct node *parent;
61 LIST_HEAD(struct node, child);
62 LIST_FIELDS(struct node, siblings);
63
64 LIST_HEAD(struct node_callback, callbacks);
65 LIST_HEAD(struct node_vtable, vtables);
66 LIST_HEAD(struct node_enumerator, enumerators);
67
68 bool object_manager;
69};
70
71struct node_callback {
72 struct node *node;
73
74 bool is_fallback;
52f3ba91 75 sd_bus_message_handler_t callback;
a652755d
LP
76 void *userdata;
77
29ddb38f
LP
78 unsigned last_iteration;
79
80 LIST_FIELDS(struct node_callback, callbacks);
81};
82
83struct node_enumerator {
84 struct node *node;
85
86 sd_bus_node_enumerator_t callback;
87 void *userdata;
88
89 unsigned last_iteration;
90
91 LIST_FIELDS(struct node_enumerator, enumerators);
92};
93
94struct node_vtable {
95 struct node *node;
96
97 char *interface;
a652755d 98 bool is_fallback;
29ddb38f
LP
99 const sd_bus_vtable *vtable;
100 void *userdata;
101 sd_bus_object_find_t find;
7286037f
LP
102
103 unsigned last_iteration;
29ddb38f
LP
104
105 LIST_FIELDS(struct node_vtable, vtables);
106};
107
108struct vtable_member {
109 const char *path;
110 const char *interface;
111 const char *member;
112 struct node_vtable *parent;
113 unsigned last_iteration;
114 const sd_bus_vtable *vtable;
a652755d
LP
115};
116
de1c301e 117enum bus_state {
021a1e78 118 BUS_UNSET,
de1c301e
LP
119 BUS_OPENING,
120 BUS_AUTHENTICATING,
121 BUS_HELLO,
f54514f3 122 BUS_RUNNING,
718db961 123 BUS_CLOSING,
f54514f3 124 BUS_CLOSED
de1c301e
LP
125};
126
f54514f3 127static inline bool BUS_IS_OPEN(enum bus_state state) {
718db961 128 return state > BUS_UNSET && state < BUS_CLOSING;
f54514f3
LP
129}
130
2181a7f5
LP
131enum bus_auth {
132 _BUS_AUTH_INVALID,
133 BUS_AUTH_EXTERNAL,
134 BUS_AUTH_ANONYMOUS
135};
136
de1c301e 137struct sd_bus {
e4ee6e5c
LP
138 /* We use atomic ref counting here since sd_bus_message
139 objects retain references to their originating sd_bus but
140 we want to allow them to be processed in a different
141 thread. We won't provide full thread safety, but only the
142 bare minimum that makes it possible to use sd_bus and
143 sd_bus_message objects independently and on different
144 threads as long as each object is used only once at the
145 same time. */
146 RefCount n_ref;
147
de1c301e 148 enum bus_state state;
e82c9509 149 int input_fd, output_fd;
de1c301e 150 int message_version;
0f437184 151 int message_endian;
021a1e78 152
6629161f 153 bool is_kernel:1;
de1c301e 154 bool can_fds:1;
94bbf1ba 155 bool bus_client:1;
2571ead1 156 bool ucred_valid:1;
2181a7f5
LP
157 bool is_server:1;
158 bool anonymous_auth:1;
15d5af81
LP
159 bool prefer_readv:1;
160 bool prefer_writev:1;
7286037f
LP
161 bool match_callbacks_modified:1;
162 bool filter_callbacks_modified:1;
29ddb38f 163 bool nodes_modified:1;
adacb957 164 bool trusted:1;
8a0e0ed9 165 bool fake_creds_valid:1;
758bf0c7 166 bool manual_peer_interface:1;
de1c301e 167
8f155917
LP
168 int use_memfd;
169
de1c301e
LP
170 void *rbuffer;
171 size_t rbuffer_size;
172
173 sd_bus_message **rqueue;
821e0756
LP
174 unsigned rqueue_size;
175 size_t rqueue_allocated;
de1c301e
LP
176
177 sd_bus_message **wqueue;
178 unsigned wqueue_size;
179 size_t windex;
821e0756 180 size_t wqueue_allocated;
de1c301e 181
693eb9a2 182 uint64_t cookie;
de1c301e
LP
183
184 char *unique_name;
219728b3 185 uint64_t unique_id;
de1c301e 186
392d5b37 187 struct bus_match_node match_callbacks;
e3017af9 188 Prioq *reply_callbacks_prioq;
de1c301e
LP
189 Hashmap *reply_callbacks;
190 LIST_HEAD(struct filter_callback, filter_callbacks);
29ddb38f
LP
191
192 Hashmap *nodes;
29ddb38f
LP
193 Hashmap *vtable_methods;
194 Hashmap *vtable_properties;
de1c301e
LP
195
196 union {
197 struct sockaddr sa;
198 struct sockaddr_un un;
199 struct sockaddr_in in;
200 struct sockaddr_in6 in6;
201 } sockaddr;
202 socklen_t sockaddr_size;
203
6629161f 204 char *kernel;
a7893c6b 205 char *machine;
6629161f 206
98178d39 207 sd_id128_t server_id;
de1c301e
LP
208
209 char *address;
210 unsigned address_index;
211
212 int last_connect_error;
213
2181a7f5
LP
214 enum bus_auth auth;
215 size_t auth_rbegin;
de1c301e
LP
216 struct iovec auth_iovec[3];
217 unsigned auth_index;
2181a7f5 218 char *auth_buffer;
e3017af9 219 usec_t auth_timeout;
2571ead1
LP
220
221 struct ucred ucred;
222 char label[NAME_MAX];
2c93b4ef 223
5b12334d
LP
224 uint64_t creds_mask;
225
2c93b4ef
LP
226 int *fds;
227 unsigned n_fds;
2fd9ae2e
LP
228
229 char *exec_path;
230 char **exec_argv;
9d373862 231
693eb9a2 232 uint64_t hello_cookie;
7286037f 233 unsigned iteration_counter;
fd8d62d9
LP
234
235 void *kdbus_buffer;
bc7fd8cd 236
45fbe937
LP
237 /* We do locking around the memfd cache, since we want to
238 * allow people to process a sd_bus_message in a different
239 * thread then it was generated on and free it there. Since
240 * adding something to the memfd cache might happen when a
241 * message is released, we hence need to protect this bit with
242 * a mutex. */
243 pthread_mutex_t memfd_cache_mutex;
bc7fd8cd
LP
244 struct memfd_cache memfd_cache[MEMFD_CACHE_MAX];
245 unsigned n_memfd_cache;
d5a2b9a6
LP
246
247 pid_t original_pid;
264ad849
LP
248
249 uint64_t hello_flags;
d21a7bb1 250 uint64_t attach_flags;
c7819669
LP
251
252 uint64_t match_cookie;
89ffcd2a 253
40ca29a1
LP
254 sd_event_source *input_io_event_source;
255 sd_event_source *output_io_event_source;
256 sd_event_source *time_event_source;
abc5fe72 257 sd_event_source *quit_event_source;
40ca29a1 258 sd_event *event;
1e05d493 259 int event_priority;
affff0b6
LP
260
261 sd_bus_message *current;
76b54375
LP
262
263 sd_bus **default_bus_ptr;
264 pid_t tid;
8a0e0ed9
LP
265
266 struct kdbus_creds fake_creds;
267 char *fake_label;
751bc6ac
LP
268
269 char *cgroup_root;
40ca29a1 270};
e3017af9
LP
271
272#define BUS_DEFAULT_TIMEOUT ((usec_t) (25 * USEC_PER_SEC))
25220239 273
7a4a2105
LP
274#define BUS_WQUEUE_MAX 1024
275#define BUS_RQUEUE_MAX 64*1024
25220239
LP
276
277#define BUS_MESSAGE_SIZE_MAX (64*1024*1024)
278#define BUS_AUTH_SIZE_MAX (64*1024)
ac89bf1d 279
ed205a6b
LP
280#define BUS_CONTAINER_DEPTH 128
281
ac89bf1d
LP
282/* Defined by the specification as maximum size of an array in
283 * bytes */
284#define BUS_ARRAY_MAX_SIZE 67108864
285
2c93b4ef
LP
286#define BUS_FDS_MAX 1024
287
2fd9ae2e
LP
288#define BUS_EXEC_ARGV_MAX 256
289
0ce036ce
LP
290bool interface_name_is_valid(const char *p) _pure_;
291bool service_name_is_valid(const char *p) _pure_;
292bool member_name_is_valid(const char *p) _pure_;
293bool object_path_is_valid(const char *p) _pure_;
294char *object_path_startswith(const char *a, const char *b) _pure_;
6693860f 295
0ce036ce
LP
296bool namespace_complex_pattern(const char *pattern, const char *value) _pure_;
297bool path_complex_pattern(const char *pattern, const char *value) _pure_;
392d5b37 298
0ce036ce
LP
299bool namespace_simple_pattern(const char *pattern, const char *value) _pure_;
300bool path_simple_pattern(const char *pattern, const char *value) _pure_;
392d5b37 301
0ce036ce
LP
302int bus_message_type_from_string(const char *s, uint8_t *u) _pure_;
303const char *bus_message_type_to_string(uint8_t u) _pure_;
392d5b37 304
6693860f 305#define error_name_is_valid interface_name_is_valid
20902f3e
LP
306
307int bus_ensure_running(sd_bus *bus);
a7e3212d
LP
308int bus_start_running(sd_bus *bus);
309int bus_next_address(sd_bus *bus);
d5a2b9a6 310
7adc46fc 311int bus_seal_synthetic_message(sd_bus *b, sd_bus_message *m);
777d7a61 312
7adc46fc 313int bus_rqueue_make_room(sd_bus *bus);
7d22c717 314
d5a2b9a6 315bool bus_pid_changed(sd_bus *bus);
92e189e5 316
0f8bd8de
LP
317char *bus_address_escape(const char *v);
318
92e189e5
LP
319#define OBJECT_PATH_FOREACH_PREFIX(prefix, path) \
320 for (char *_slash = ({ strcpy((prefix), (path)); streq((prefix), "/") ? NULL : strrchr((prefix), '/'); }) ; \
321 _slash && !(_slash[(_slash) == (prefix)] = 0); \
322 _slash = streq((prefix), "/") ? NULL : strrchr((prefix), '/'))
8ce2afd6
LP
323
324/* If we are invoking callbacks of a bus object, ensure unreffing the
325 * bus from the callback doesn't destroy the object we are working
326 * on */
327#define BUS_DONT_DESTROY(bus) \
d7726e57 328 _cleanup_bus_unref_ _unused_ sd_bus *_dont_destroy_##bus = sd_bus_ref(bus)