]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/libsystemd/sd-bus/bus-message.h
Merge pull request #2495 from heftig/master
[thirdparty/systemd.git] / src / libsystemd / sd-bus / bus-message.h
1 #pragma once
2
3 /***
4 This file is part of systemd.
5
6 Copyright 2013 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 #include <byteswap.h>
23 #include <stdbool.h>
24 #include <sys/socket.h>
25
26 #include "sd-bus.h"
27
28 #include "bus-creds.h"
29 #include "bus-protocol.h"
30 #include "macro.h"
31 #include "time-util.h"
32
33 struct bus_container {
34 char enclosing;
35 bool need_offsets:1;
36
37 /* Indexes into the signature string */
38 unsigned index, saved_index;
39 char *signature;
40
41 size_t before, begin, end;
42
43 /* dbus1: pointer to the array size value, if this is a value */
44 uint32_t *array_size;
45
46 /* gvariant: list of offsets to end of children if this is struct/dict entry/array */
47 size_t *offsets, n_offsets, offsets_allocated, offset_index;
48 size_t item_size;
49
50 char *peeked_signature;
51 };
52
53 struct bus_body_part {
54 struct bus_body_part *next;
55 void *data;
56 void *mmap_begin;
57 size_t size;
58 size_t mapped;
59 size_t allocated;
60 uint64_t memfd_offset;
61 int memfd;
62 bool free_this:1;
63 bool munmap_this:1;
64 bool sealed:1;
65 bool is_zero:1;
66 };
67
68 struct sd_bus_message {
69 unsigned n_ref;
70
71 sd_bus *bus;
72
73 uint64_t reply_cookie;
74
75 const char *path;
76 const char *interface;
77 const char *member;
78 const char *destination;
79 const char *sender;
80
81 sd_bus_error error;
82
83 sd_bus_creds creds;
84
85 usec_t monotonic;
86 usec_t realtime;
87 uint64_t seqnum;
88 int64_t priority;
89 uint64_t verify_destination_id;
90
91 bool sealed:1;
92 bool dont_send:1;
93 bool allow_fds:1;
94 bool free_header:1;
95 bool free_kdbus:1;
96 bool free_fds:1;
97 bool release_kdbus:1;
98 bool poisoned:1;
99
100 /* The first and last bytes of the message */
101 struct bus_header *header;
102 void *footer;
103
104 /* How many bytes are accessible in the above pointers */
105 size_t header_accessible;
106 size_t footer_accessible;
107
108 size_t fields_size;
109 size_t body_size;
110 size_t user_body_size;
111
112 struct bus_body_part body;
113 struct bus_body_part *body_end;
114 unsigned n_body_parts;
115
116 size_t rindex;
117 struct bus_body_part *cached_rindex_part;
118 size_t cached_rindex_part_begin;
119
120 uint32_t n_fds;
121 int *fds;
122
123 struct bus_container root_container, *containers;
124 size_t n_containers;
125 size_t containers_allocated;
126
127 struct iovec *iovec;
128 struct iovec iovec_fixed[2];
129 unsigned n_iovec;
130
131 struct kdbus_msg *kdbus;
132
133 char *peeked_signature;
134
135 /* If set replies to this message must carry the signature
136 * specified here to successfully seal. This is initialized
137 * from the vtable data */
138 const char *enforced_reply_signature;
139
140 usec_t timeout;
141
142 char sender_buffer[3 + DECIMAL_STR_MAX(uint64_t) + 1];
143 char destination_buffer[3 + DECIMAL_STR_MAX(uint64_t) + 1];
144 char *destination_ptr;
145
146 size_t header_offsets[_BUS_MESSAGE_HEADER_MAX];
147 unsigned n_header_offsets;
148 };
149
150 static inline bool BUS_MESSAGE_NEED_BSWAP(sd_bus_message *m) {
151 return m->header->endian != BUS_NATIVE_ENDIAN;
152 }
153
154 static inline uint16_t BUS_MESSAGE_BSWAP16(sd_bus_message *m, uint16_t u) {
155 return BUS_MESSAGE_NEED_BSWAP(m) ? bswap_16(u) : u;
156 }
157
158 static inline uint32_t BUS_MESSAGE_BSWAP32(sd_bus_message *m, uint32_t u) {
159 return BUS_MESSAGE_NEED_BSWAP(m) ? bswap_32(u) : u;
160 }
161
162 static inline uint64_t BUS_MESSAGE_BSWAP64(sd_bus_message *m, uint64_t u) {
163 return BUS_MESSAGE_NEED_BSWAP(m) ? bswap_64(u) : u;
164 }
165
166 static inline uint64_t BUS_MESSAGE_COOKIE(sd_bus_message *m) {
167 if (m->header->version == 2)
168 return BUS_MESSAGE_BSWAP64(m, m->header->dbus2.cookie);
169
170 return BUS_MESSAGE_BSWAP32(m, m->header->dbus1.serial);
171 }
172
173 static inline size_t BUS_MESSAGE_SIZE(sd_bus_message *m) {
174 return
175 sizeof(struct bus_header) +
176 ALIGN8(m->fields_size) +
177 m->body_size;
178 }
179
180 static inline size_t BUS_MESSAGE_BODY_BEGIN(sd_bus_message *m) {
181 return
182 sizeof(struct bus_header) +
183 ALIGN8(m->fields_size);
184 }
185
186 static inline void* BUS_MESSAGE_FIELDS(sd_bus_message *m) {
187 return (uint8_t*) m->header + sizeof(struct bus_header);
188 }
189
190 static inline bool BUS_MESSAGE_IS_GVARIANT(sd_bus_message *m) {
191 return m->header->version == 2;
192 }
193
194 int bus_message_seal(sd_bus_message *m, uint64_t serial, usec_t timeout);
195 int bus_message_get_blob(sd_bus_message *m, void **buffer, size_t *sz);
196 int bus_message_read_strv_extend(sd_bus_message *m, char ***l);
197
198 int bus_message_from_header(
199 sd_bus *bus,
200 void *header,
201 size_t header_accessible,
202 void *footer,
203 size_t footer_accessible,
204 size_t message_size,
205 int *fds,
206 unsigned n_fds,
207 const char *label,
208 size_t extra,
209 sd_bus_message **ret);
210
211 int bus_message_from_malloc(
212 sd_bus *bus,
213 void *buffer,
214 size_t length,
215 int *fds,
216 unsigned n_fds,
217 const char *label,
218 sd_bus_message **ret);
219
220 int bus_message_get_arg(sd_bus_message *m, unsigned i, const char **str);
221 int bus_message_get_arg_strv(sd_bus_message *m, unsigned i, char ***strv);
222
223 int bus_message_append_ap(sd_bus_message *m, const char *types, va_list ap);
224
225 int bus_message_parse_fields(sd_bus_message *m);
226
227 struct bus_body_part *message_append_part(sd_bus_message *m);
228
229 #define MESSAGE_FOREACH_PART(part, i, m) \
230 for ((i) = 0, (part) = &(m)->body; (i) < (m)->n_body_parts; (i)++, (part) = (part)->next)
231
232 int bus_body_part_map(struct bus_body_part *part);
233 void bus_body_part_unmap(struct bus_body_part *part);
234
235 int bus_message_to_errno(sd_bus_message *m);
236
237 int bus_message_new_synthetic_error(sd_bus *bus, uint64_t serial, const sd_bus_error *e, sd_bus_message **m);
238
239 int bus_message_remarshal(sd_bus *bus, sd_bus_message **m);
240
241 int bus_message_append_sender(sd_bus_message *m, const char *sender);
242
243 void bus_message_set_sender_driver(sd_bus *bus, sd_bus_message *m);
244 void bus_message_set_sender_local(sd_bus *bus, sd_bus_message *m);