]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libsystemd/sd-bus/bus-slot.c
Merge pull request #8417 from brauner/2018-03-09/add_bind_mount_fallback_to_private_d...
[thirdparty/systemd.git] / src / libsystemd / sd-bus / bus-slot.c
1 /* SPDX-License-Identifier: LGPL-2.1+ */
2 /***
3 This file is part of systemd.
4
5 Copyright 2013 Lennart Poettering
6 ***/
7
8 #include "sd-bus.h"
9
10 #include "alloc-util.h"
11 #include "bus-control.h"
12 #include "bus-objects.h"
13 #include "bus-slot.h"
14 #include "string-util.h"
15
16 sd_bus_slot *bus_slot_allocate(
17 sd_bus *bus,
18 bool floating,
19 BusSlotType type,
20 size_t extra,
21 void *userdata) {
22
23 sd_bus_slot *slot;
24
25 assert(bus);
26
27 slot = malloc0(offsetof(sd_bus_slot, reply_callback) + extra);
28 if (!slot)
29 return NULL;
30
31 slot->n_ref = 1;
32 slot->type = type;
33 slot->bus = bus;
34 slot->floating = floating;
35 slot->userdata = userdata;
36
37 if (!floating)
38 sd_bus_ref(bus);
39
40 LIST_PREPEND(slots, bus->slots, slot);
41
42 return slot;
43 }
44
45 _public_ sd_bus_slot* sd_bus_slot_ref(sd_bus_slot *slot) {
46
47 if (!slot)
48 return NULL;
49
50 assert(slot->n_ref > 0);
51
52 slot->n_ref++;
53 return slot;
54 }
55
56 void bus_slot_disconnect(sd_bus_slot *slot) {
57 sd_bus *bus;
58
59 assert(slot);
60
61 if (!slot->bus)
62 return;
63
64 switch (slot->type) {
65
66 case BUS_REPLY_CALLBACK:
67
68 if (slot->reply_callback.cookie != 0)
69 ordered_hashmap_remove(slot->bus->reply_callbacks, &slot->reply_callback.cookie);
70
71 if (slot->reply_callback.timeout_usec != 0)
72 prioq_remove(slot->bus->reply_callbacks_prioq, &slot->reply_callback, &slot->reply_callback.prioq_idx);
73
74 break;
75
76 case BUS_FILTER_CALLBACK:
77 slot->bus->filter_callbacks_modified = true;
78 LIST_REMOVE(callbacks, slot->bus->filter_callbacks, &slot->filter_callback);
79 break;
80
81 case BUS_MATCH_CALLBACK:
82
83 if (slot->match_added)
84 (void) bus_remove_match_internal(slot->bus, slot->match_callback.match_string);
85
86 if (slot->match_callback.install_slot) {
87 bus_slot_disconnect(slot->match_callback.install_slot);
88 slot->match_callback.install_slot = sd_bus_slot_unref(slot->match_callback.install_slot);
89 }
90
91 slot->bus->match_callbacks_modified = true;
92 bus_match_remove(&slot->bus->match_callbacks, &slot->match_callback);
93
94 slot->match_callback.match_string = mfree(slot->match_callback.match_string);
95
96 break;
97
98 case BUS_NODE_CALLBACK:
99
100 if (slot->node_callback.node) {
101 LIST_REMOVE(callbacks, slot->node_callback.node->callbacks, &slot->node_callback);
102 slot->bus->nodes_modified = true;
103
104 bus_node_gc(slot->bus, slot->node_callback.node);
105 }
106
107 break;
108
109 case BUS_NODE_ENUMERATOR:
110
111 if (slot->node_enumerator.node) {
112 LIST_REMOVE(enumerators, slot->node_enumerator.node->enumerators, &slot->node_enumerator);
113 slot->bus->nodes_modified = true;
114
115 bus_node_gc(slot->bus, slot->node_enumerator.node);
116 }
117
118 break;
119
120 case BUS_NODE_OBJECT_MANAGER:
121
122 if (slot->node_object_manager.node) {
123 LIST_REMOVE(object_managers, slot->node_object_manager.node->object_managers, &slot->node_object_manager);
124 slot->bus->nodes_modified = true;
125
126 bus_node_gc(slot->bus, slot->node_object_manager.node);
127 }
128
129 break;
130
131 case BUS_NODE_VTABLE:
132
133 if (slot->node_vtable.node && slot->node_vtable.interface && slot->node_vtable.vtable) {
134 const sd_bus_vtable *v;
135
136 for (v = slot->node_vtable.vtable; v->type != _SD_BUS_VTABLE_END; v++) {
137 struct vtable_member *x = NULL;
138
139 switch (v->type) {
140
141 case _SD_BUS_VTABLE_METHOD: {
142 struct vtable_member key;
143
144 key.path = slot->node_vtable.node->path;
145 key.interface = slot->node_vtable.interface;
146 key.member = v->x.method.member;
147
148 x = hashmap_remove(slot->bus->vtable_methods, &key);
149 break;
150 }
151
152 case _SD_BUS_VTABLE_PROPERTY:
153 case _SD_BUS_VTABLE_WRITABLE_PROPERTY: {
154 struct vtable_member key;
155
156 key.path = slot->node_vtable.node->path;
157 key.interface = slot->node_vtable.interface;
158 key.member = v->x.method.member;
159
160
161 x = hashmap_remove(slot->bus->vtable_properties, &key);
162 break;
163 }}
164
165 free(x);
166 }
167 }
168
169 slot->node_vtable.interface = mfree(slot->node_vtable.interface);
170
171 if (slot->node_vtable.node) {
172 LIST_REMOVE(vtables, slot->node_vtable.node->vtables, &slot->node_vtable);
173 slot->bus->nodes_modified = true;
174
175 bus_node_gc(slot->bus, slot->node_vtable.node);
176 }
177
178 break;
179
180 default:
181 assert_not_reached("Wut? Unknown slot type?");
182 }
183
184 bus = slot->bus;
185
186 slot->type = _BUS_SLOT_INVALID;
187 slot->bus = NULL;
188 LIST_REMOVE(slots, bus->slots, slot);
189
190 if (!slot->floating)
191 sd_bus_unref(bus);
192 }
193
194 _public_ sd_bus_slot* sd_bus_slot_unref(sd_bus_slot *slot) {
195
196 if (!slot)
197 return NULL;
198
199 assert(slot->n_ref > 0);
200
201 if (slot->n_ref > 1) {
202 slot->n_ref--;
203 return NULL;
204 }
205
206 bus_slot_disconnect(slot);
207 free(slot->description);
208 return mfree(slot);
209 }
210
211 _public_ sd_bus* sd_bus_slot_get_bus(sd_bus_slot *slot) {
212 assert_return(slot, NULL);
213
214 return slot->bus;
215 }
216
217 _public_ void *sd_bus_slot_get_userdata(sd_bus_slot *slot) {
218 assert_return(slot, NULL);
219
220 return slot->userdata;
221 }
222
223 _public_ void *sd_bus_slot_set_userdata(sd_bus_slot *slot, void *userdata) {
224 void *ret;
225
226 assert_return(slot, NULL);
227
228 ret = slot->userdata;
229 slot->userdata = userdata;
230
231 return ret;
232 }
233
234 _public_ sd_bus_message *sd_bus_slot_get_current_message(sd_bus_slot *slot) {
235 assert_return(slot, NULL);
236 assert_return(slot->type >= 0, NULL);
237
238 if (slot->bus->current_slot != slot)
239 return NULL;
240
241 return slot->bus->current_message;
242 }
243
244 _public_ sd_bus_message_handler_t sd_bus_slot_get_current_handler(sd_bus_slot *slot) {
245 assert_return(slot, NULL);
246 assert_return(slot->type >= 0, NULL);
247
248 if (slot->bus->current_slot != slot)
249 return NULL;
250
251 return slot->bus->current_handler;
252 }
253
254 _public_ void* sd_bus_slot_get_current_userdata(sd_bus_slot *slot) {
255 assert_return(slot, NULL);
256 assert_return(slot->type >= 0, NULL);
257
258 if (slot->bus->current_slot != slot)
259 return NULL;
260
261 return slot->bus->current_userdata;
262 }
263
264 _public_ int sd_bus_slot_set_description(sd_bus_slot *slot, const char *description) {
265 assert_return(slot, -EINVAL);
266
267 return free_and_strdup(&slot->description, description);
268 }
269
270 _public_ int sd_bus_slot_get_description(sd_bus_slot *slot, const char **description) {
271 assert_return(slot, -EINVAL);
272 assert_return(description, -EINVAL);
273 assert_return(slot->description, -ENXIO);
274
275 *description = slot->description;
276 return 0;
277 }