]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libsystemd-bus/bus-internal.h
mount: mount all cgroup controllers in containers, too
[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>
27
28#include "hashmap.h"
e3017af9 29#include "prioq.h"
de1c301e
LP
30#include "list.h"
31#include "util.h"
32
33#include "sd-bus.h"
34#include "bus-error.h"
35
36struct reply_callback {
37 sd_message_handler_t callback;
38 void *userdata;
39 usec_t timeout;
40 uint64_t serial;
e3017af9 41 unsigned prioq_idx;
de1c301e
LP
42};
43
44struct filter_callback {
45 sd_message_handler_t callback;
46 void *userdata;
47
48 LIST_FIELDS(struct filter_callback, callbacks);
49};
50
51enum bus_state {
52 BUS_OPENING,
53 BUS_AUTHENTICATING,
54 BUS_HELLO,
89ffcd2a 55 BUS_RUNNING
de1c301e
LP
56};
57
58struct sd_bus {
59 unsigned n_ref;
60 enum bus_state state;
61 int fd;
62 int message_version;
63 bool can_fds:1;
89ffcd2a 64 bool sent_hello:1;
2571ead1 65 bool ucred_valid:1;
de1c301e
LP
66
67 void *rbuffer;
68 size_t rbuffer_size;
69
70 sd_bus_message **rqueue;
71 unsigned rqueue_size;
72
73 sd_bus_message **wqueue;
74 unsigned wqueue_size;
75 size_t windex;
76
77 uint64_t serial;
78
79 char *unique_name;
80
e3017af9 81 Prioq *reply_callbacks_prioq;
de1c301e
LP
82 Hashmap *reply_callbacks;
83 LIST_HEAD(struct filter_callback, filter_callbacks);
84
85 union {
86 struct sockaddr sa;
87 struct sockaddr_un un;
88 struct sockaddr_in in;
89 struct sockaddr_in6 in6;
90 } sockaddr;
91 socklen_t sockaddr_size;
92
93 sd_id128_t peer;
94
95 char *address;
96 unsigned address_index;
97
98 int last_connect_error;
99
100 struct iovec auth_iovec[3];
101 unsigned auth_index;
102 size_t auth_size;
103 char *auth_uid;
e3017af9 104 usec_t auth_timeout;
2571ead1
LP
105
106 struct ucred ucred;
107 char label[NAME_MAX];
de1c301e 108};
89ffcd2a
LP
109
110static inline void bus_unrefp(sd_bus **b) {
111 sd_bus_unref(*b);
112}
113
114#define _cleanup_bus_unref_ __attribute__((cleanup(bus_unrefp)))
b9bf7e2b 115#define _cleanup_bus_error_free_ __attribute__((cleanup(sd_bus_error_free)))
e3017af9
LP
116
117#define BUS_DEFAULT_TIMEOUT ((usec_t) (25 * USEC_PER_SEC))
25220239
LP
118
119#define BUS_WQUEUE_MAX 128
120#define BUS_RQUEUE_MAX 128
121
122#define BUS_MESSAGE_SIZE_MAX (64*1024*1024)
123#define BUS_AUTH_SIZE_MAX (64*1024)
ac89bf1d 124
ed205a6b
LP
125#define BUS_CONTAINER_DEPTH 128
126
ac89bf1d
LP
127/* Defined by the specification as maximum size of an array in
128 * bytes */
129#define BUS_ARRAY_MAX_SIZE 67108864
130
131bool object_path_is_valid(const char *p);
6693860f
LP
132bool interface_name_is_valid(const char *p);
133bool service_name_is_valid(const char *p);
134bool member_name_is_valid(const char *p);
135
136#define error_name_is_valid interface_name_is_valid
20902f3e
LP
137
138int bus_ensure_running(sd_bus *bus);