[daemon-dev] List of queued owners read from kdbus
[platform/upstream/dbus.git] / dbus / kdbus.h
1 /*
2  * Copyright (C) 2013 Kay Sievers
3  * Copyright (C) 2013 Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4  * Copyright (C) 2013 Linux Foundation
5  * Copyright (C) 2013 Lennart Poettering
6  * Copyright (C) 2013 Daniel Mack <daniel@zonque.org>
7  * Copyright (C) 2013 Samsung Electronics
8  *
9  * kdbus is free software; you can redistribute it and/or modify it under
10  * the terms of the GNU Lesser General Public License as published by the
11  * Free Software Foundation; either version 2.1 of the License, or (at
12  * your option) any later version.
13  */
14
15 #ifndef _KDBUS_H_
16 #define _KDBUS_H_
17
18 #ifndef __KERNEL__
19 #include <sys/ioctl.h>
20 #include <sys/types.h>
21 #include <linux/types.h>
22 #endif
23
24 /* todo #define KDBUS_MSG_MAX_PAYLOAD_VEC_SIZE          SZ_8M   - maximum size of message header and items
25  * taken from internal.h of kdbus
26  * finally it should be placed higher - e.g. kdbus.h of kdbus kernel module
27  */
28 #define KDBUS_MSG_MAX_PAYLOAD_VEC_SIZE          0x00800000              /* maximum size of message header and items */
29
30 #define KDBUS_IOC_MAGIC                 0x95
31 #define KDBUS_SRC_ID_KERNEL             (0)
32 #define KDBUS_DST_ID_WELL_KNOWN_NAME    (0)
33 #define KDBUS_MATCH_SRC_ID_ANY          (~0ULL)
34 #define KDBUS_DST_ID_BROADCAST          (~0ULL)
35
36 /* Common first elements in a structure which are used to iterate over
37  * a list of elements. */
38 #define KDBUS_PART_HEADER \
39         struct {                                                        \
40                 __u64 size;                                             \
41                 __u64 type;                                             \
42         }
43
44 #define KDBUS_PART_HEADER_SIZE offsetof(struct kdbus_item, data)
45
46 /* Message sent from kernel to userspace, when the owner or starter of
47  * a well-known name changes */
48 struct kdbus_manager_msg_name_change {
49         __u64 old_id;
50         __u64 new_id;
51         __u64 flags;                    /* 0 or (possibly?) KDBUS_NAME_IN_QUEUE */
52         char name[0];
53 };
54
55 struct kdbus_manager_msg_id_change {
56         __u64 id;
57         __u64 flags;                    /* The kernel flags field from KDBUS_HELLO */
58 };
59
60 struct kdbus_creds {
61         __u64 uid;
62         __u64 gid;
63         __u64 pid;
64         __u64 tid;
65
66         /* The starttime of the process PID. This is useful to detect
67         PID overruns from the client side. i.e. if you use the PID to
68         look something up in /proc/$PID/ you can afterwards check the
69         starttime field of it to ensure you didn't run into a PID
70         ovretun. */
71         __u64 starttime;
72 };
73
74 struct kdbus_audit {
75         __u64 sessionid;
76         __u64 loginuid;
77 };
78
79 struct kdbus_timestamp {
80         __u64 monotonic_ns;
81         __u64 realtime_ns;
82 };
83
84 struct kdbus_vec {
85         __u64 size;
86         union {
87                 __u64 address;
88                 __u64 offset;
89         };
90 };
91
92 struct kdbus_memfd {
93         __u64 size;
94         int fd;
95         __u32 __pad;
96 };
97
98 /* Message Item Types */
99 enum {
100         _KDBUS_MSG_NULL,
101
102         /* Filled in by userspace */
103         KDBUS_MSG_PAYLOAD_VEC,          /* .data_vec, reference to memory area */
104         KDBUS_MSG_PAYLOAD_OFF,          /* .data_vec, reference to memory area */
105         KDBUS_MSG_PAYLOAD_MEMFD,        /* file descriptor of a special data file */
106         KDBUS_MSG_FDS,                  /* .data_fds of file descriptors */
107         KDBUS_MSG_BLOOM,                /* for broadcasts, carries bloom filter blob in .data */
108         KDBUS_MSG_DST_NAME,             /* destination's well-known name, in .str */
109         KDBUS_MSG_PRIORITY,             /* queue priority for message */
110
111         /* Filled in by kernelspace */
112         KDBUS_MSG_SRC_NAMES     = 0x400,/* NUL separated string list with well-known names of source */
113         KDBUS_MSG_TIMESTAMP,            /* .timestamp */
114         KDBUS_MSG_SRC_CREDS,            /* .creds */
115         KDBUS_MSG_SRC_PID_COMM,         /* optional, in .str */
116         KDBUS_MSG_SRC_TID_COMM,         /* optional, in .str */
117         KDBUS_MSG_SRC_EXE,              /* optional, in .str */
118         KDBUS_MSG_SRC_CMDLINE,          /* optional, in .str (a chain of NUL str) */
119         KDBUS_MSG_SRC_CGROUP,           /* optional, in .str */
120         KDBUS_MSG_SRC_CAPS,             /* caps data blob, in .data */
121         KDBUS_MSG_SRC_SECLABEL,         /* NUL terminated string, in .str */
122         KDBUS_MSG_SRC_AUDIT,            /* .audit */
123
124         /* Special messages from kernel, consisting of one and only one of these data blocks */
125         KDBUS_MSG_NAME_ADD      = 0x800,/* .name_change */
126         KDBUS_MSG_NAME_REMOVE,          /* .name_change */
127         KDBUS_MSG_NAME_CHANGE,          /* .name_change */
128         KDBUS_MSG_ID_ADD,               /* .id_change */
129         KDBUS_MSG_ID_REMOVE,            /* .id_change */
130         KDBUS_MSG_REPLY_TIMEOUT,        /* empty, but .reply_cookie in .kdbus_msg is filled in */
131         KDBUS_MSG_REPLY_DEAD,           /* dito */
132 };
133
134 /**
135  * struct  kdbus_item - chain of data blocks
136  *
137  * size: overall data record size
138  * type: kdbus_item type of data
139  */
140 struct kdbus_item {
141         KDBUS_PART_HEADER;
142         union {
143                 /* inline data */
144                 __u8 data[0];
145                 __u32 data32[0];
146                 __u64 data64[0];
147                 char str[0];
148
149                 /* connection */
150                 __u64 id;
151
152                 /* data vector */
153                 struct kdbus_vec vec;
154
155                 /* process credentials and properties*/
156                 struct kdbus_creds creds;
157                 struct kdbus_audit audit;
158                 struct kdbus_timestamp timestamp;
159
160                 /* specific fields */
161                 struct kdbus_memfd memfd;
162                 int fds[0];
163                 struct kdbus_manager_msg_name_change name_change;
164                 struct kdbus_manager_msg_id_change id_change;
165         };
166 };
167
168 enum {
169         KDBUS_MSG_FLAGS_EXPECT_REPLY    = 1 << 0,
170         KDBUS_MSG_FLAGS_NO_AUTO_START   = 1 << 1,
171 };
172
173 enum {
174         KDBUS_PAYLOAD_KERNEL,
175         KDBUS_PAYLOAD_DBUS1     = 0x4442757356657231ULL, /* 'DBusVer1' */
176         KDBUS_PAYLOAD_GVARIANT  = 0x4756617269616e74ULL, /* 'GVariant' */
177 };
178
179 /**
180  * struct kdbus_msg
181  *
182  * set by userspace:
183  * dst_id: destination id
184  * flags: KDBUS_MSG_FLAGS_*
185  * items: data records
186  *
187  * set by kernel:
188  * src_id: who sent the message
189  */
190 struct kdbus_msg {
191         __u64 size;
192         __u64 flags;
193         __u64 dst_id;                   /* connection, 0 == name in data, ~0 broadcast */
194         __u64 src_id;                   /* connection, 0 == kernel */
195         __u64 payload_type;             /* 'DBusVer1', 'GVariant', ... */
196         __u64 cookie;                   /* userspace-supplied cookie */
197         union {
198                 __u64 cookie_reply;     /* cookie we reply to */
199                 __u64 timeout_ns;       /* timespan to wait for reply */
200         };
201         struct kdbus_item items[0];
202 };
203
204 enum {
205         _KDBUS_POLICY_NULL,
206         KDBUS_POLICY_NAME,
207         KDBUS_POLICY_ACCESS,
208 };
209
210 enum {
211         _KDBUS_POLICY_ACCESS_NULL,
212         KDBUS_POLICY_ACCESS_USER,
213         KDBUS_POLICY_ACCESS_GROUP,
214         KDBUS_POLICY_ACCESS_WORLD,
215 };
216
217 enum {
218         KDBUS_POLICY_RECV               = 1 <<  2,
219         KDBUS_POLICY_SEND               = 1 <<  1,
220         KDBUS_POLICY_OWN                = 1 <<  0,
221 };
222
223 struct kdbus_policy_access {
224         __u64 type;             /* USER, GROUP, WORLD */
225         __u64 bits;             /* RECV, SEND, OWN */
226         __u64 id;               /* uid, gid, 0 */
227 };
228
229 //FIXME: convert access to access[]
230 struct kdbus_policy {
231         KDBUS_PART_HEADER;
232         union {
233                 char name[0];
234                 struct kdbus_policy_access access;
235         };
236 };
237
238 /* A series of KDBUS_POLICY_NAME, plus one or more KDBUS_POLICY_ACCESS */
239 struct kdbus_cmd_policy {
240         __u64 size;
241         struct kdbus_policy policies[0];
242 };
243
244 /* Flags for struct kdbus_cmd_hello */
245 enum {
246         KDBUS_HELLO_STARTER             =  1 <<  0,
247         KDBUS_HELLO_ACCEPT_FD           =  1 <<  1,
248
249         /* The following have an effect on directed messages only --
250          * not for broadcasts */
251         KDBUS_HELLO_ATTACH_COMM         =  1 << 10,
252         KDBUS_HELLO_ATTACH_EXE          =  1 << 11,
253         KDBUS_HELLO_ATTACH_CMDLINE      =  1 << 12,
254         KDBUS_HELLO_ATTACH_CGROUP       =  1 << 13,
255         KDBUS_HELLO_ATTACH_CAPS         =  1 << 14,
256         KDBUS_HELLO_ATTACH_SECLABEL     =  1 << 15,
257         KDBUS_HELLO_ATTACH_AUDIT        =  1 << 16,
258 };
259
260 struct kdbus_cmd_hello {
261         __u64 size;
262
263         /* userspace → kernel, kernel → userspace */
264         __u64 conn_flags;       /* userspace specifies its
265                                  * capabilities and more, kernel
266                                  * returns its capabilites and
267                                  * more. Kernel might refuse client's
268                                  * capabilities by returning an error
269                                  * from KDBUS_HELLO */
270
271         /* kernel → userspace */
272         __u64 bus_flags;        /* this is .flags copied verbatim from
273                                  * from original KDBUS_CMD_BUS_MAKE
274                                  * ioctl. It's intended to be useful
275                                  * to do negotiation of features of
276                                  * the payload that is transfreted. */
277         __u64 id;               /* id assigned to this connection */
278         __u64 bloom_size;       /* The bloom filter size chosen by the
279                                  * bus owner */
280         __u64 pool_size;        /* maximum size of pool buffer */
281         struct kdbus_item items[0];
282 };
283
284 /* Flags for kdbus_cmd_{bus,ep,ns}_make */
285 enum {
286         KDBUS_MAKE_ACCESS_GROUP         = 1 <<  0,
287         KDBUS_MAKE_ACCESS_WORLD         = 1 <<  1,
288         KDBUS_MAKE_POLICY_OPEN          = 1 <<  2,
289 };
290
291 /* Items to append to kdbus_cmd_{bus,ep,ns}_make */
292 enum {
293         _KDBUS_MAKE_NULL,
294         KDBUS_MAKE_NAME,
295         KDBUS_MAKE_CGROUP,      /* the cgroup hierarchy ID for which to attach
296                                  * cgroup membership paths to messages.
297                                  * FIXME: remove, use *the* hierarchy */
298         KDBUS_MAKE_CRED,        /* allow translator services which connect
299                                  * to the bus on behalf of somebody else,
300                                  * allow specifiying the credentials of the
301                                  * client to connect on behalf on. Needs
302                                  * privileges */
303 };
304
305 struct kdbus_cmd_bus_make {
306         __u64 size;
307         __u64 flags;            /* userspace → kernel, kernel → userspace
308                                  * When creating a bus feature
309                                  * kernel negotiation. */
310         __u64 bus_flags;        /* userspace → kernel
311                                  * When a bus is created this value is
312                                  * copied verbatim into the bus
313                                  * structure and returned from
314                                  * KDBUS_CMD_HELLO, later */
315         __u64 bloom_size;       /* size of the bloom filter for this bus */
316         struct kdbus_item items[0];
317 };
318
319 struct kdbus_cmd_ep_make {
320         __u64 size;
321         __u64 flags;            /* userspace → kernel, kernel → userspace
322                                  * When creating an entry point
323                                  * feature kernel negotiation done the
324                                  * same way as for
325                                  * KDBUS_CMD_BUS_MAKE. Unused for
326                                  * now. */
327         struct kdbus_item items[0];
328 };
329
330 struct kdbus_cmd_ns_make {
331         __u64 size;
332         __u64 flags;            /* userspace → kernel, kernel → userspace
333                                  * When creating an entry point
334                                  * feature kernel negotiation done the
335                                  * same way as for
336                                  * KDBUS_CMD_BUS_MAKE. Unused for
337                                  * now. */
338         struct kdbus_item items[0];
339 };
340
341 enum {
342         /* userspace → kernel */
343         KDBUS_NAME_REPLACE_EXISTING             = 1 <<  0,
344         KDBUS_NAME_QUEUE                        = 1 <<  1,
345         KDBUS_NAME_ALLOW_REPLACEMENT            = 1 <<  2,
346
347         KDBUS_NAME_STARTER        = 1 <<  7,
348
349         /* kernel → userspace */
350         KDBUS_NAME_IN_QUEUE                     = 1 << 16,
351 };
352
353 /* We allow (de)regestration of names of other peers */
354 struct kdbus_cmd_name {
355         __u64 size;
356         __u64 flags;
357         __u64 id;
358         __u64 conn_flags;
359         char name[0];
360 };
361
362 struct kdbus_cmd_names {
363         __u64 size;
364         struct kdbus_cmd_name names[0];
365 };
366
367 enum {
368         _KDBUS_NAME_INFO_ITEM_NULL,
369         KDBUS_NAME_INFO_ITEM_NAME,      /* userspace → kernel */
370         KDBUS_NAME_INFO_ITEM_SECLABEL,  /* kernel → userspace */
371         KDBUS_NAME_INFO_ITEM_AUDIT,     /* kernel → userspace */
372 };
373
374 struct kdbus_cmd_name_info {
375         __u64 size;                     /* overall size of info */
376         __u64 flags;
377         __u64 id;                       /* either ID, or 0 and _ITEM_NAME follows */
378         struct kdbus_creds creds;
379         struct kdbus_item items[0];     /* list of item records */
380 };
381
382 enum {
383         _KDBUS_MATCH_NULL,
384         KDBUS_MATCH_BLOOM,              /* Matches a mask blob against KDBUS_MSG_BLOOM */
385         KDBUS_MATCH_SRC_NAME,           /* Matches a name string against KDBUS_MSG_SRC_NAMES */
386         KDBUS_MATCH_NAME_ADD,           /* Matches a name string against KDBUS_MSG_NAME_ADD */
387         KDBUS_MATCH_NAME_REMOVE,        /* Matches a name string against KDBUS_MSG_NAME_REMOVE */
388         KDBUS_MATCH_NAME_CHANGE,        /* Matches a name string against KDBUS_MSG_NAME_CHANGE */
389         KDBUS_MATCH_ID_ADD,             /* Matches an ID against KDBUS_MSG_ID_ADD */
390         KDBUS_MATCH_ID_REMOVE,          /* Matches an ID against KDBUS_MSG_ID_REMOVE */
391 };
392
393 struct kdbus_cmd_match {
394         __u64 size;
395         __u64 id;       /* We allow registration/deregestration of matches for other peers */
396         __u64 cookie;   /* userspace supplied cookie; when removing; kernel deletes everything with same cookie */
397         __u64 src_id;   /* ~0: any. other: exact unique match */
398         struct kdbus_item items[0];
399 };
400
401 struct kdbus_cmd_monitor {
402         __u64 id;               /* We allow setting the monitor flag of other peers */
403         unsigned int enable;    /* A boolean to enable/disable monitoring */
404         __u32 __pad;
405 };
406
407 /* FD states:
408  * control nodes: unset
409  *   bus owner  (via KDBUS_CMD_BUS_MAKE)
410  *   ns owner   (via KDBUS_CMD_NS_MAKE)
411  *
412  * ep nodes: unset
413  *   connected  (via KDBUS_CMD_HELLO)
414  *   starter    (via KDBUS_CMD_HELLO with KDBUS_CMD_HELLO_STARTER)
415  *   ep owner   (via KDBUS_CMD_EP_MAKE)
416  */
417 enum {
418         /* kdbus control node commands: require unset state */
419         KDBUS_CMD_BUS_MAKE =            _IOW(KDBUS_IOC_MAGIC, 0x00, struct kdbus_cmd_bus_make),
420         KDBUS_CMD_NS_MAKE =             _IOR(KDBUS_IOC_MAGIC, 0x10, struct kdbus_cmd_ns_make),
421
422         /* kdbus ep node commands: require unset state */
423         KDBUS_CMD_EP_MAKE =             _IOW(KDBUS_IOC_MAGIC, 0x20, struct kdbus_cmd_ep_make),
424         KDBUS_CMD_HELLO =               _IOWR(KDBUS_IOC_MAGIC, 0x30, struct kdbus_cmd_hello),
425
426         /* kdbus ep node commands: require connected state */
427         KDBUS_CMD_MSG_SEND =            _IOW(KDBUS_IOC_MAGIC, 0x40, struct kdbus_msg),
428         KDBUS_CMD_MSG_RECV =            _IOR(KDBUS_IOC_MAGIC, 0x41, __u64 *),
429         KDBUS_CMD_MSG_RELEASE =         _IOW(KDBUS_IOC_MAGIC, 0x42, __u64 *),
430
431         KDBUS_CMD_NAME_ACQUIRE =        _IOWR(KDBUS_IOC_MAGIC, 0x50, struct kdbus_cmd_name),
432         KDBUS_CMD_NAME_RELEASE =        _IOW(KDBUS_IOC_MAGIC, 0x51, struct kdbus_cmd_name),
433         KDBUS_CMD_NAME_LIST =           _IOWR(KDBUS_IOC_MAGIC, 0x52, struct kdbus_cmd_names),
434         KDBUS_CMD_NAME_QUERY =          _IOWR(KDBUS_IOC_MAGIC, 0x53, struct kdbus_cmd_name_info),
435         KDBUS_CMD_NAME_LIST_QUEUED = _IOWR(KDBUS_IOC_MAGIC, 0x54, struct kdbus_cmd_names),
436
437         KDBUS_CMD_MATCH_ADD =           _IOW(KDBUS_IOC_MAGIC, 0x60, struct kdbus_cmd_match),
438         KDBUS_CMD_MATCH_REMOVE =        _IOW(KDBUS_IOC_MAGIC, 0x61, struct kdbus_cmd_match),
439         KDBUS_CMD_MONITOR =             _IOW(KDBUS_IOC_MAGIC, 0x62, struct kdbus_cmd_monitor),
440
441         /* kdbus ep node commands: require ep owner state */
442         KDBUS_CMD_EP_POLICY_SET =       _IOW(KDBUS_IOC_MAGIC, 0x70, struct kdbus_cmd_policy),
443
444         /* kdbus memfd commands: */
445         KDBUS_CMD_MEMFD_NEW =           _IOR(KDBUS_IOC_MAGIC, 0x80, int *),
446         KDBUS_CMD_MEMFD_SIZE_GET =      _IOR(KDBUS_IOC_MAGIC, 0x81, __u64 *),
447         KDBUS_CMD_MEMFD_SIZE_SET =      _IOW(KDBUS_IOC_MAGIC, 0x82, __u64 *),
448         KDBUS_CMD_MEMFD_SEAL_GET =      _IOR(KDBUS_IOC_MAGIC, 0x83, int *),
449         KDBUS_CMD_MEMFD_SEAL_SET =      _IO(KDBUS_IOC_MAGIC, 0x84),
450 };
451 #endif