]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libsystemd-bus/bus-message.h
activate: fix error checking on epoll_ctl()
[thirdparty/systemd.git] / src / libsystemd-bus / bus-message.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 <stdbool.h>
25#include <byteswap.h>
2571ead1 26#include <sys/socket.h>
de1c301e
LP
27
28#include "macro.h"
29#include "sd-bus.h"
6629161f 30#include "kdbus.h"
dd418b9a 31#include "time-util.h"
5b12334d 32#include "bus-creds.h"
0461f8cd 33#include "bus-protocol.h"
de1c301e
LP
34
35struct bus_container {
36 char enclosing;
6647dc66 37 bool need_offsets:1;
de1c301e 38
6647dc66 39 /* Indexes into the signature string */
b3af9646 40 unsigned index, saved_index;
453a0c29
LP
41 char *signature;
42
6647dc66 43 size_t before, begin, end;
c1b9d935 44
6647dc66
LP
45 /* dbus1: pointer to the array size value, if this is a value */
46 uint32_t *array_size;
c1b9d935 47
6647dc66 48 /* gvariant: list of offsets to end of children if this is struct/dict entry/array */
306f07be 49 size_t *offsets, n_offsets, offsets_allocated, offset_index;
6647dc66 50 size_t item_size;
de1c301e
LP
51};
52
cb695f05 53struct bus_header {
de1c301e
LP
54 uint8_t endian;
55 uint8_t type;
56 uint8_t flags;
57 uint8_t version;
58 uint32_t body_size;
59 uint32_t serial;
60 uint32_t fields_size;
cb695f05 61} _packed_;
de1c301e 62
bc7fd8cd 63struct bus_body_part {
453a0c29 64 struct bus_body_part *next;
bc7fd8cd
LP
65 void *data;
66 size_t size;
67 size_t mapped;
68 int memfd;
69 bool free_this:1;
453a0c29 70 bool munmap_this:1;
bc7fd8cd 71 bool sealed:1;
453a0c29 72 bool is_zero:1;
bc7fd8cd
LP
73};
74
de1c301e
LP
75struct sd_bus_message {
76 unsigned n_ref;
77
fd8d62d9
LP
78 sd_bus *bus;
79
de1c301e
LP
80 uint32_t reply_serial;
81
82 const char *path;
83 const char *interface;
84 const char *member;
85 const char *destination;
86 const char *sender;
de1c301e
LP
87
88 sd_bus_error error;
89
5b12334d
LP
90 sd_bus_creds creds;
91
69aec65c
LP
92 usec_t monotonic;
93 usec_t realtime;
de1c301e
LP
94
95 bool sealed:1;
2c93b4ef
LP
96 bool dont_send:1;
97 bool allow_fds:1;
de1c301e 98 bool free_header:1;
6629161f 99 bool free_kdbus:1;
2c93b4ef 100 bool free_fds:1;
fd8d62d9 101 bool release_kdbus:1;
bc7fd8cd 102 bool poisoned:1;
de1c301e
LP
103
104 struct bus_header *header;
bc7fd8cd
LP
105 struct bus_body_part body;
106 struct bus_body_part *body_end;
107 unsigned n_body_parts;
de1c301e 108
9a17484d 109 size_t rindex;
bc7fd8cd
LP
110 struct bus_body_part *cached_rindex_part;
111 size_t cached_rindex_part_begin;
9a17484d 112
de1c301e
LP
113 uint32_t n_fds;
114 int *fds;
115
9a17484d 116 struct bus_container root_container, *containers;
de1c301e 117 unsigned n_containers;
306f07be 118 size_t containers_allocated;
de1c301e 119
bc7fd8cd 120 struct iovec *iovec;
c91cb83c 121 struct iovec iovec_fixed[2];
de1c301e 122 unsigned n_iovec;
9a17484d 123
bc7fd8cd
LP
124 struct kdbus_msg *kdbus;
125
9a17484d 126 char *peeked_signature;
6629161f 127
6717d473
LP
128 /* If set replies to this message must carry the signature
129 * specified here to successfully seal. This is initialized
130 * from the vtable data */
131 const char *enforced_reply_signature;
132
6629161f 133 usec_t timeout;
51038c03
LP
134
135 char sender_buffer[3 + DECIMAL_STR_MAX(uint64_t) + 1];
136 char destination_buffer[3 + DECIMAL_STR_MAX(uint64_t) + 1];
c1b9d935
LP
137
138 size_t header_offsets[_BUS_MESSAGE_HEADER_MAX];
139 unsigned n_header_offsets;
de1c301e
LP
140};
141
0461f8cd 142#define BUS_MESSAGE_NEED_BSWAP(m) ((m)->header->endian != BUS_NATIVE_ENDIAN)
de1c301e 143
9a17484d
LP
144static inline uint16_t BUS_MESSAGE_BSWAP16(sd_bus_message *m, uint16_t u) {
145 return BUS_MESSAGE_NEED_BSWAP(m) ? bswap_16(u) : u;
146}
147
148static inline uint32_t BUS_MESSAGE_BSWAP32(sd_bus_message *m, uint32_t u) {
de1c301e
LP
149 return BUS_MESSAGE_NEED_BSWAP(m) ? bswap_32(u) : u;
150}
151
9a17484d
LP
152static inline uint64_t BUS_MESSAGE_BSWAP64(sd_bus_message *m, uint64_t u) {
153 return BUS_MESSAGE_NEED_BSWAP(m) ? bswap_64(u) : u;
154}
155
de1c301e 156static inline uint32_t BUS_MESSAGE_SERIAL(sd_bus_message *m) {
9a17484d 157 return BUS_MESSAGE_BSWAP32(m, m->header->serial);
de1c301e
LP
158}
159
160static inline uint32_t BUS_MESSAGE_BODY_SIZE(sd_bus_message *m) {
9a17484d 161 return BUS_MESSAGE_BSWAP32(m, m->header->body_size);
de1c301e
LP
162}
163
164static inline uint32_t BUS_MESSAGE_FIELDS_SIZE(sd_bus_message *m) {
9a17484d 165 return BUS_MESSAGE_BSWAP32(m, m->header->fields_size);
de1c301e
LP
166}
167
6629161f
LP
168static inline uint32_t BUS_MESSAGE_SIZE(sd_bus_message *m) {
169 return
170 sizeof(struct bus_header) +
171 ALIGN8(BUS_MESSAGE_FIELDS_SIZE(m)) +
172 BUS_MESSAGE_BODY_SIZE(m);
173}
174
c91cb83c
LP
175static inline uint32_t BUS_MESSAGE_BODY_BEGIN(sd_bus_message *m) {
176 return
177 sizeof(struct bus_header) +
178 ALIGN8(BUS_MESSAGE_FIELDS_SIZE(m));
179}
180
181static inline void* BUS_MESSAGE_FIELDS(sd_bus_message *m) {
182 return (uint8_t*) m->header + sizeof(struct bus_header);
183}
184
6647dc66
LP
185static inline bool BUS_MESSAGE_IS_GVARIANT(sd_bus_message *m) {
186 return m->header->version == 2;
187}
188
3df7a7e6 189int bus_message_seal(sd_bus_message *m, uint64_t serial, usec_t timeout);
de1c301e 190int bus_message_get_blob(sd_bus_message *m, void **buffer, size_t *sz);
89ffcd2a 191int bus_message_read_strv_extend(sd_bus_message *m, char ***l);
2c93b4ef 192
6629161f 193int bus_message_from_header(
df2d202e 194 sd_bus *bus,
6629161f
LP
195 void *header,
196 size_t length,
197 int *fds,
198 unsigned n_fds,
199 const struct ucred *ucred,
200 const char *label,
201 size_t extra,
202 sd_bus_message **ret);
203
2c93b4ef 204int bus_message_from_malloc(
df2d202e 205 sd_bus *bus,
2c93b4ef
LP
206 void *buffer,
207 size_t length,
208 int *fds,
209 unsigned n_fds,
210 const struct ucred *ucred,
211 const char *label,
212 sd_bus_message **ret);
392d5b37
LP
213
214const char* bus_message_get_arg(sd_bus_message *m, unsigned i);
917b5dc7
LP
215
216int bus_message_append_ap(sd_bus_message *m, const char *types, va_list ap);
2100fa10 217
6629161f
LP
218int bus_message_parse_fields(sd_bus_message *m);
219
c91cb83c
LP
220bool bus_header_is_complete(struct bus_header *h, size_t size);
221int bus_header_message_size(struct bus_header *h, size_t *sum);
bc7fd8cd
LP
222
223struct bus_body_part *message_append_part(sd_bus_message *m);
9b29bb68
LP
224
225#define MESSAGE_FOREACH_PART(part, i, m) \
226 for ((i) = 0, (part) = &(m)->body; (i) < (m)->n_body_parts; (i)++, (part) = (part)->next)
a392d361
LP
227
228int bus_body_part_map(struct bus_body_part *part);
229void bus_body_part_unmap(struct bus_body_part *part);
eb01ba5d
LP
230
231int bus_message_to_errno(sd_bus_message *m);
232
233int bus_message_new_synthetic_error(sd_bus *bus, uint64_t serial, const sd_bus_error *e, sd_bus_message **m);