chiark / gitweb /
event: clear pending-state when re-arming timers
[elogind.git] / src / libsystemd-bus / bus-message.h
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>
26 #include <sys/socket.h>
27
28 #include "macro.h"
29 #include "sd-bus.h"
30 #include "kdbus.h"
31 #include "time-util.h"
32
33 struct bus_container {
34         char enclosing;
35
36         unsigned index, saved_index;
37
38         char *signature;
39
40         uint32_t *array_size;
41         size_t before, begin;
42 };
43
44 struct bus_header {
45         uint8_t endian;
46         uint8_t type;
47         uint8_t flags;
48         uint8_t version;
49         uint32_t body_size;
50         uint32_t serial;
51         uint32_t fields_size;
52 } _packed_;
53
54 struct bus_body_part {
55         struct bus_body_part *next;
56         void *data;
57         size_t size;
58         size_t mapped;
59         int memfd;
60         bool free_this:1;
61         bool munmap_this:1;
62         bool sealed:1;
63         bool is_zero:1;
64 };
65
66 struct sd_bus_message {
67         unsigned n_ref;
68
69         sd_bus *bus;
70
71         uint32_t reply_serial;
72
73         const char *path;
74         const char *interface;
75         const char *member;
76         const char *destination;
77         const char *sender;
78
79         sd_bus_error error;
80
81         uid_t uid;
82         gid_t gid;
83         pid_t pid;
84         pid_t tid;
85         usec_t pid_starttime;
86         usec_t monotonic;
87         usec_t realtime;
88
89         bool sealed:1;
90         bool dont_send:1;
91         bool allow_fds:1;
92         bool uid_valid:1;
93         bool gid_valid: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         struct bus_header *header;
101         struct bus_body_part body;
102         struct bus_body_part *body_end;
103         unsigned n_body_parts;
104
105         char *label;
106
107         size_t rindex;
108         struct bus_body_part *cached_rindex_part;
109         size_t cached_rindex_part_begin;
110
111         uint32_t n_fds;
112         int *fds;
113
114         struct bus_container root_container, *containers;
115         unsigned n_containers;
116
117         struct iovec *iovec;
118         struct iovec iovec_fixed[2];
119         unsigned n_iovec;
120
121         struct kdbus_msg *kdbus;
122
123         char *peeked_signature;
124
125         usec_t timeout;
126
127         char sender_buffer[3 + DECIMAL_STR_MAX(uint64_t) + 1];
128         char destination_buffer[3 + DECIMAL_STR_MAX(uint64_t) + 1];
129
130         const char *exe;
131         const char *comm;
132         const char *tid_comm;
133         const char *cgroup;
134
135         const char *cmdline;
136         size_t cmdline_length;
137         char **cmdline_array;
138
139         char *session;
140         char *unit;
141         char *user_unit;
142
143         struct kdbus_audit *audit;
144
145         uint8_t *capability;
146         size_t capability_size;
147 };
148
149 #define BUS_MESSAGE_NEED_BSWAP(m) ((m)->header->endian != SD_BUS_NATIVE_ENDIAN)
150
151 static inline uint16_t BUS_MESSAGE_BSWAP16(sd_bus_message *m, uint16_t u) {
152         return BUS_MESSAGE_NEED_BSWAP(m) ? bswap_16(u) : u;
153 }
154
155 static inline uint32_t BUS_MESSAGE_BSWAP32(sd_bus_message *m, uint32_t u) {
156         return BUS_MESSAGE_NEED_BSWAP(m) ? bswap_32(u) : u;
157 }
158
159 static inline uint64_t BUS_MESSAGE_BSWAP64(sd_bus_message *m, uint64_t u) {
160         return BUS_MESSAGE_NEED_BSWAP(m) ? bswap_64(u) : u;
161 }
162
163 static inline uint32_t BUS_MESSAGE_SERIAL(sd_bus_message *m) {
164         return BUS_MESSAGE_BSWAP32(m, m->header->serial);
165 }
166
167 static inline uint32_t BUS_MESSAGE_BODY_SIZE(sd_bus_message *m) {
168         return BUS_MESSAGE_BSWAP32(m, m->header->body_size);
169 }
170
171 static inline uint32_t BUS_MESSAGE_FIELDS_SIZE(sd_bus_message *m) {
172         return BUS_MESSAGE_BSWAP32(m, m->header->fields_size);
173 }
174
175 static inline uint32_t BUS_MESSAGE_SIZE(sd_bus_message *m) {
176         return
177                 sizeof(struct bus_header) +
178                 ALIGN8(BUS_MESSAGE_FIELDS_SIZE(m)) +
179                 BUS_MESSAGE_BODY_SIZE(m);
180 }
181
182 static inline uint32_t BUS_MESSAGE_BODY_BEGIN(sd_bus_message *m) {
183         return
184                 sizeof(struct bus_header) +
185                 ALIGN8(BUS_MESSAGE_FIELDS_SIZE(m));
186 }
187
188 static inline void* BUS_MESSAGE_FIELDS(sd_bus_message *m) {
189         return (uint8_t*) m->header + sizeof(struct bus_header);
190 }
191
192 int bus_message_seal(sd_bus_message *m, uint64_t serial);
193 int bus_message_get_blob(sd_bus_message *m, void **buffer, size_t *sz);
194 int bus_message_read_strv_extend(sd_bus_message *m, char ***l);
195
196 int bus_message_from_header(
197                 void *header,
198                 size_t length,
199                 int *fds,
200                 unsigned n_fds,
201                 const struct ucred *ucred,
202                 const char *label,
203                 size_t extra,
204                 sd_bus_message **ret);
205
206 int bus_message_from_malloc(
207                 void *buffer,
208                 size_t length,
209                 int *fds,
210                 unsigned n_fds,
211                 const struct ucred *ucred,
212                 const char *label,
213                 sd_bus_message **ret);
214
215 const char* bus_message_get_arg(sd_bus_message *m, unsigned i);
216
217 int bus_message_append_ap(sd_bus_message *m, const char *types, va_list ap);
218
219 int bus_message_parse_fields(sd_bus_message *m);
220
221 bool bus_header_is_complete(struct bus_header *h, size_t size);
222 int bus_header_message_size(struct bus_header *h, size_t *sum);
223
224 struct bus_body_part *message_append_part(sd_bus_message *m);
225
226 #define MESSAGE_FOREACH_PART(part, i, m) \
227         for ((i) = 0, (part) = &(m)->body; (i) < (m)->n_body_parts; (i)++, (part) = (part)->next)
228
229 int bus_body_part_map(struct bus_body_part *part);
230 void bus_body_part_unmap(struct bus_body_part *part);
231
232 int bus_message_to_errno(sd_bus_message *m);
233
234 int bus_message_new_synthetic_error(sd_bus *bus, uint64_t serial, const sd_bus_error *e, sd_bus_message **m);