1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
6 This file is part of systemd.
8 Copyright 2013 Lennart Poettering
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.
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.
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/>.
24 #include <sys/socket.h>
26 #include <netinet/in.h>
34 #include "socket-util.h"
37 #include "bus-error.h"
38 #include "bus-match.h"
39 #include "bus-kernel.h"
42 struct reply_callback
{
43 sd_bus_message_handler_t callback
;
49 struct filter_callback
{
50 sd_bus_message_handler_t callback
;
52 unsigned last_iteration
;
54 LIST_FIELDS(struct filter_callback
, callbacks
);
57 struct match_callback
{
58 sd_bus_message_handler_t callback
;
61 unsigned last_iteration
;
65 struct bus_match_node
*match_node
;
71 LIST_HEAD(struct node
, child
);
72 LIST_FIELDS(struct node
, siblings
);
74 LIST_HEAD(struct node_callback
, callbacks
);
75 LIST_HEAD(struct node_vtable
, vtables
);
76 LIST_HEAD(struct node_enumerator
, enumerators
);
77 LIST_HEAD(struct node_object_manager
, object_managers
);
80 struct node_callback
{
84 sd_bus_message_handler_t callback
;
86 unsigned last_iteration
;
88 LIST_FIELDS(struct node_callback
, callbacks
);
91 struct node_enumerator
{
94 sd_bus_node_enumerator_t callback
;
96 unsigned last_iteration
;
98 LIST_FIELDS(struct node_enumerator
, enumerators
);
101 struct node_object_manager
{
104 LIST_FIELDS(struct node_object_manager
, object_managers
);
112 const sd_bus_vtable
*vtable
;
113 sd_bus_object_find_t find
;
115 unsigned last_iteration
;
117 LIST_FIELDS(struct node_vtable
, vtables
);
120 struct vtable_member
{
122 const char *interface
;
124 struct node_vtable
*parent
;
125 unsigned last_iteration
;
126 const sd_bus_vtable
*vtable
;
129 typedef enum BusSlotType
{
136 BUS_NODE_OBJECT_MANAGER
,
137 _BUS_SLOT_INVALID
= -1,
148 LIST_FIELDS(sd_bus_slot
, slots
);
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
;
171 static inline bool BUS_IS_OPEN(enum bus_state state
) {
172 return state
> BUS_UNSET
&& state
< BUS_CLOSING
;
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
192 enum bus_state state
;
193 int input_fd
, output_fd
;
202 bool anonymous_auth
:1;
204 bool prefer_writev
:1;
205 bool match_callbacks_modified
:1;
206 bool filter_callbacks_modified
:1;
207 bool nodes_modified
:1;
209 bool fake_creds_valid
:1;
210 bool fake_pids_valid
:1;
211 bool manual_peer_interface
:1;
220 sd_bus_message
**rqueue
;
221 unsigned rqueue_size
;
222 size_t rqueue_allocated
;
224 sd_bus_message
**wqueue
;
225 unsigned wqueue_size
;
227 size_t wqueue_allocated
;
234 struct bus_match_node match_callbacks
;
235 Prioq
*reply_callbacks_prioq
;
236 OrderedHashmap
*reply_callbacks
;
237 LIST_HEAD(struct filter_callback
, filter_callbacks
);
240 Hashmap
*vtable_methods
;
241 Hashmap
*vtable_properties
;
243 union sockaddr_union sockaddr
;
244 socklen_t sockaddr_size
;
250 sd_id128_t server_id
;
253 unsigned address_index
;
255 int last_connect_error
;
259 struct iovec auth_iovec
[3];
265 char label
[NAME_MAX
];
275 unsigned iteration_counter
;
279 /* We do locking around the memfd cache, since we want to
280 * allow people to process a sd_bus_message in a different
281 * thread then it was generated on and free it there. Since
282 * adding something to the memfd cache might happen when a
283 * message is released, we hence need to protect this bit with
285 pthread_mutex_t memfd_cache_mutex
;
286 struct memfd_cache memfd_cache
[MEMFD_CACHE_MAX
];
287 unsigned n_memfd_cache
;
291 uint64_t hello_flags
;
292 uint64_t attach_flags
;
294 uint64_t match_cookie
;
296 sd_event_source
*input_io_event_source
;
297 sd_event_source
*output_io_event_source
;
298 sd_event_source
*time_event_source
;
299 sd_event_source
*quit_event_source
;
303 sd_bus_message
*current_message
;
304 sd_bus_slot
*current_slot
;
305 sd_bus_message_handler_t current_handler
;
306 void *current_userdata
;
308 sd_bus
**default_bus_ptr
;
311 struct kdbus_creds fake_creds
;
312 struct kdbus_pids fake_pids
;
320 unsigned bloom_n_hash
;
322 sd_bus_track
*track_queue
;
324 LIST_HEAD(sd_bus_slot
, slots
);
327 #define BUS_DEFAULT_TIMEOUT ((usec_t) (25 * USEC_PER_SEC))
329 #define BUS_WQUEUE_MAX 1024
330 #define BUS_RQUEUE_MAX 64*1024
332 #define BUS_MESSAGE_SIZE_MAX (64*1024*1024)
333 #define BUS_AUTH_SIZE_MAX (64*1024)
335 #define BUS_CONTAINER_DEPTH 128
337 /* Defined by the specification as maximum size of an array in
339 #define BUS_ARRAY_MAX_SIZE 67108864
341 #define BUS_FDS_MAX 1024
343 #define BUS_EXEC_ARGV_MAX 256
345 bool interface_name_is_valid(const char *p
) _pure_
;
346 bool service_name_is_valid(const char *p
) _pure_
;
347 char* service_name_startswith(const char *a
, const char *b
);
348 bool member_name_is_valid(const char *p
) _pure_
;
349 bool object_path_is_valid(const char *p
) _pure_
;
350 char *object_path_startswith(const char *a
, const char *b
) _pure_
;
352 bool namespace_complex_pattern(const char *pattern
, const char *value
) _pure_
;
353 bool path_complex_pattern(const char *pattern
, const char *value
) _pure_
;
355 bool namespace_simple_pattern(const char *pattern
, const char *value
) _pure_
;
356 bool path_simple_pattern(const char *pattern
, const char *value
) _pure_
;
358 int bus_message_type_from_string(const char *s
, uint8_t *u
) _pure_
;
359 const char *bus_message_type_to_string(uint8_t u
) _pure_
;
361 #define error_name_is_valid interface_name_is_valid
363 int bus_ensure_running(sd_bus
*bus
);
364 int bus_start_running(sd_bus
*bus
);
365 int bus_next_address(sd_bus
*bus
);
367 int bus_seal_synthetic_message(sd_bus
*b
, sd_bus_message
*m
);
369 int bus_rqueue_make_room(sd_bus
*bus
);
371 bool bus_pid_changed(sd_bus
*bus
);
373 char *bus_address_escape(const char *v
);
375 #define OBJECT_PATH_FOREACH_PREFIX(prefix, path) \
376 for (char *_slash = ({ strcpy((prefix), (path)); streq((prefix), "/") ? NULL : strrchr((prefix), '/'); }) ; \
377 _slash && !(_slash[(_slash) == (prefix)] = 0); \
378 _slash = streq((prefix), "/") ? NULL : strrchr((prefix), '/'))
380 /* If we are invoking callbacks of a bus object, ensure unreffing the
381 * bus from the callback doesn't destroy the object we are working
383 #define BUS_DONT_DESTROY(bus) \
384 _cleanup_bus_unref_ _unused_ sd_bus *_dont_destroy_##bus = sd_bus_ref(bus)
386 int bus_set_address_system(sd_bus
*bus
);
387 int bus_set_address_user(sd_bus
*bus
);
388 int bus_set_address_system_remote(sd_bus
*b
, const char *host
);
389 int bus_set_address_system_machine(sd_bus
*b
, const char *machine
);
391 int bus_remove_match_by_string(sd_bus
*bus
, const char *match
, sd_bus_message_handler_t callback
, void *userdata
);
393 int bus_get_root_path(sd_bus
*bus
);