]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libsystemd-bus/bus-internal.h
bus: fix return message if StartServiceByName() in the driver fails due
[thirdparty/systemd.git] / src / libsystemd-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;
45 uint64_t serial;
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;
de1c301e 166
8f155917
LP
167 int use_memfd;
168
de1c301e
LP
169 void *rbuffer;
170 size_t rbuffer_size;
171
172 sd_bus_message **rqueue;
821e0756
LP
173 unsigned rqueue_size;
174 size_t rqueue_allocated;
de1c301e
LP
175
176 sd_bus_message **wqueue;
177 unsigned wqueue_size;
178 size_t windex;
821e0756 179 size_t wqueue_allocated;
de1c301e
LP
180
181 uint64_t serial;
182
183 char *unique_name;
219728b3 184 uint64_t unique_id;
de1c301e 185
392d5b37 186 struct bus_match_node match_callbacks;
e3017af9 187 Prioq *reply_callbacks_prioq;
de1c301e
LP
188 Hashmap *reply_callbacks;
189 LIST_HEAD(struct filter_callback, filter_callbacks);
29ddb38f
LP
190
191 Hashmap *nodes;
29ddb38f
LP
192 Hashmap *vtable_methods;
193 Hashmap *vtable_properties;
de1c301e
LP
194
195 union {
196 struct sockaddr sa;
197 struct sockaddr_un un;
198 struct sockaddr_in in;
199 struct sockaddr_in6 in6;
200 } sockaddr;
201 socklen_t sockaddr_size;
202
6629161f 203 char *kernel;
a7893c6b 204 char *machine;
6629161f 205
98178d39 206 sd_id128_t server_id;
de1c301e
LP
207
208 char *address;
209 unsigned address_index;
210
211 int last_connect_error;
212
2181a7f5
LP
213 enum bus_auth auth;
214 size_t auth_rbegin;
de1c301e
LP
215 struct iovec auth_iovec[3];
216 unsigned auth_index;
2181a7f5 217 char *auth_buffer;
e3017af9 218 usec_t auth_timeout;
2571ead1
LP
219
220 struct ucred ucred;
221 char label[NAME_MAX];
2c93b4ef 222
5b12334d
LP
223 uint64_t creds_mask;
224
2c93b4ef
LP
225 int *fds;
226 unsigned n_fds;
2fd9ae2e
LP
227
228 char *exec_path;
229 char **exec_argv;
9d373862
LP
230
231 uint64_t hello_serial;
7286037f 232 unsigned iteration_counter;
fd8d62d9
LP
233
234 void *kdbus_buffer;
bc7fd8cd 235
45fbe937
LP
236 /* We do locking around the memfd cache, since we want to
237 * allow people to process a sd_bus_message in a different
238 * thread then it was generated on and free it there. Since
239 * adding something to the memfd cache might happen when a
240 * message is released, we hence need to protect this bit with
241 * a mutex. */
242 pthread_mutex_t memfd_cache_mutex;
bc7fd8cd
LP
243 struct memfd_cache memfd_cache[MEMFD_CACHE_MAX];
244 unsigned n_memfd_cache;
d5a2b9a6
LP
245
246 pid_t original_pid;
264ad849
LP
247
248 uint64_t hello_flags;
d21a7bb1 249 uint64_t attach_flags;
c7819669
LP
250
251 uint64_t match_cookie;
89ffcd2a 252
40ca29a1
LP
253 sd_event_source *input_io_event_source;
254 sd_event_source *output_io_event_source;
255 sd_event_source *time_event_source;
abc5fe72 256 sd_event_source *quit_event_source;
40ca29a1 257 sd_event *event;
1e05d493 258 int event_priority;
affff0b6
LP
259
260 sd_bus_message *current;
76b54375
LP
261
262 sd_bus **default_bus_ptr;
263 pid_t tid;
8a0e0ed9
LP
264
265 struct kdbus_creds fake_creds;
266 char *fake_label;
40ca29a1 267};
e3017af9
LP
268
269#define BUS_DEFAULT_TIMEOUT ((usec_t) (25 * USEC_PER_SEC))
25220239 270
7a4a2105
LP
271#define BUS_WQUEUE_MAX 1024
272#define BUS_RQUEUE_MAX 64*1024
25220239
LP
273
274#define BUS_MESSAGE_SIZE_MAX (64*1024*1024)
275#define BUS_AUTH_SIZE_MAX (64*1024)
ac89bf1d 276
ed205a6b
LP
277#define BUS_CONTAINER_DEPTH 128
278
ac89bf1d
LP
279/* Defined by the specification as maximum size of an array in
280 * bytes */
281#define BUS_ARRAY_MAX_SIZE 67108864
282
2c93b4ef
LP
283#define BUS_FDS_MAX 1024
284
2fd9ae2e
LP
285#define BUS_EXEC_ARGV_MAX 256
286
6693860f
LP
287bool interface_name_is_valid(const char *p);
288bool service_name_is_valid(const char *p);
289bool member_name_is_valid(const char *p);
29ddb38f
LP
290bool object_path_is_valid(const char *p);
291char *object_path_startswith(const char *a, const char *b);
6693860f 292
392d5b37
LP
293bool namespace_complex_pattern(const char *pattern, const char *value);
294bool path_complex_pattern(const char *pattern, const char *value);
295
296bool namespace_simple_pattern(const char *pattern, const char *value);
297bool path_simple_pattern(const char *pattern, const char *value);
298
299int bus_message_type_from_string(const char *s, uint8_t *u);
a56f19c4 300const char *bus_message_type_to_string(uint8_t u);
392d5b37 301
6693860f 302#define error_name_is_valid interface_name_is_valid
20902f3e
LP
303
304int bus_ensure_running(sd_bus *bus);
a7e3212d
LP
305int bus_start_running(sd_bus *bus);
306int bus_next_address(sd_bus *bus);
d5a2b9a6 307
7adc46fc 308int bus_seal_synthetic_message(sd_bus *b, sd_bus_message *m);
777d7a61 309
7adc46fc 310int bus_rqueue_make_room(sd_bus *bus);
7d22c717 311
d5a2b9a6 312bool bus_pid_changed(sd_bus *bus);
92e189e5 313
0f8bd8de
LP
314char *bus_address_escape(const char *v);
315
92e189e5
LP
316#define OBJECT_PATH_FOREACH_PREFIX(prefix, path) \
317 for (char *_slash = ({ strcpy((prefix), (path)); streq((prefix), "/") ? NULL : strrchr((prefix), '/'); }) ; \
318 _slash && !(_slash[(_slash) == (prefix)] = 0); \
319 _slash = streq((prefix), "/") ? NULL : strrchr((prefix), '/'))
8ce2afd6
LP
320
321/* If we are invoking callbacks of a bus object, ensure unreffing the
322 * bus from the callback doesn't destroy the object we are working
323 * on */
324#define BUS_DONT_DESTROY(bus) \
d7726e57 325 _cleanup_bus_unref_ _unused_ sd_bus *_dont_destroy_##bus = sd_bus_ref(bus)