chiark / gitweb /
bus: sync with kdbus (ABI break)
[elogind.git] / src / libsystemd / sd-bus / kdbus.h
1 /*
2  * kdbus is free software; you can redistribute it and/or modify it under
3  * the terms of the GNU Lesser General Public License as published by the
4  * Free Software Foundation; either version 2.1 of the License, or (at
5  * your option) any later version.
6  */
7
8 #ifndef _KDBUS_UAPI_H_
9 #define _KDBUS_UAPI_H_
10
11 #include <linux/ioctl.h>
12 #include <linux/types.h>
13
14 #define KDBUS_IOCTL_MAGIC               0x95
15 #define KDBUS_SRC_ID_KERNEL             (0)
16 #define KDBUS_DST_ID_NAME               (0)
17 #define KDBUS_MATCH_ID_ANY              (~0ULL)
18 #define KDBUS_DST_ID_BROADCAST          (~0ULL)
19 #define KDBUS_FLAG_NEGOTIATE            (1ULL << 63)
20
21 /**
22  * struct kdbus_notify_id_change - name registry change message
23  * @id:                 New or former owner of the name
24  * @flags:              flags field from KDBUS_HELLO_*
25  *
26  * Sent from kernel to userspace when the owner or activator of
27  * a well-known name changes.
28  *
29  * Attached to:
30  *   KDBUS_ITEM_ID_ADD
31  *   KDBUS_ITEM_ID_REMOVE
32  */
33 struct kdbus_notify_id_change {
34         __u64 id;
35         __u64 flags;
36 } __attribute__((__aligned__(8)));
37
38 /**
39  * struct kdbus_notify_name_change - name registry change message
40  * @old_id:             ID and flags of former owner of a name
41  * @new_id:             ID and flags of new owner of a name
42  * @name:               Well-known name
43  *
44  * Sent from kernel to userspace when the owner or activator of
45  * a well-known name changes.
46  *
47  * Attached to:
48  *   KDBUS_ITEM_NAME_ADD
49  *   KDBUS_ITEM_NAME_REMOVE
50  *   KDBUS_ITEM_NAME_CHANGE
51  */
52 struct kdbus_notify_name_change {
53         struct kdbus_notify_id_change old_id;
54         struct kdbus_notify_id_change new_id;
55         char name[0];
56 } __attribute__((__aligned__(8)));
57
58 /**
59  * struct kdbus_creds - process credentials
60  * @uid:                User ID
61  * @euid:               Effective UID
62  * @suid:               Saved UID
63  * @fsuid:              Filesystem UID
64  * @gid:                Group ID
65  * @egid:               Effective GID
66  * @sgid:               Saved GID
67  * @fsgid:              Filesystem GID
68  *
69  * Attached to:
70  *   KDBUS_ITEM_CREDS
71  */
72 struct kdbus_creds {
73         __u32 uid;
74         __u32 euid;
75         __u32 suid;
76         __u32 fsuid;
77         __u32 gid;
78         __u32 egid;
79         __u32 sgid;
80         __u32 fsgid;
81 } __attribute__((__aligned__(8)));
82
83 /**
84  * struct kdbus_pids - process identifiers
85  * @pid:                Process ID
86  * @tid:                Thread ID
87  * @ppid:               Parent process ID
88  *
89  * The PID and TID of a process.
90  *
91  * Attached to:
92  *   KDBUS_ITEM_PIDS
93  */
94 struct kdbus_pids {
95         __u64 pid;
96         __u64 tid;
97         __u64 ppid;
98 } __attribute__((__aligned__(8)));
99
100 /**
101  * struct kdbus_caps - process capabilities
102  * @last_cap:   Highest currently known capability bit
103  * @caps:       Variable number of 32-bit capabilities flags
104  *
105  * Contains a variable number of 32-bit capabilities flags.
106  *
107  * Attached to:
108  *   KDBUS_ITEM_CAPS
109  */
110 struct kdbus_caps {
111         __u32 last_cap;
112         __u32 caps[0];
113 } __attribute__((__aligned__(8)));
114
115 /**
116  * struct kdbus_audit - audit information
117  * @sessionid:          The audit session ID
118  * @loginuid:           The audit login uid
119  *
120  * Attached to:
121  *   KDBUS_ITEM_AUDIT
122  */
123 struct kdbus_audit {
124         __u32 sessionid;
125         __u32 loginuid;
126 } __attribute__((__aligned__(8)));
127
128 /**
129  * struct kdbus_timestamp
130  * @seqnum:             Global per-domain message sequence number
131  * @monotonic_ns:       Monotonic timestamp, in nanoseconds
132  * @realtime_ns:        Realtime timestamp, in nanoseconds
133  *
134  * Attached to:
135  *   KDBUS_ITEM_TIMESTAMP
136  */
137 struct kdbus_timestamp {
138         __u64 seqnum;
139         __u64 monotonic_ns;
140         __u64 realtime_ns;
141 } __attribute__((__aligned__(8)));
142
143 /**
144  * struct kdbus_vec - I/O vector for kdbus payload items
145  * @size:               The size of the vector
146  * @address:            Memory address of data buffer
147  * @offset:             Offset in the in-message payload memory,
148  *                      relative to the message head
149  *
150  * Attached to:
151  *   KDBUS_ITEM_PAYLOAD_VEC, KDBUS_ITEM_PAYLOAD_OFF
152  */
153 struct kdbus_vec {
154         __u64 size;
155         union {
156                 __u64 address;
157                 __u64 offset;
158         };
159 } __attribute__((__aligned__(8)));
160
161 /**
162  * struct kdbus_bloom_parameter - bus-wide bloom parameters
163  * @size:               Size of the bit field in bytes (m / 8)
164  * @n_hash:             Number of hash functions used (k)
165  */
166 struct kdbus_bloom_parameter {
167         __u64 size;
168         __u64 n_hash;
169 } __attribute__((__aligned__(8)));
170
171 /**
172  * struct kdbus_bloom_filter - bloom filter containing n elements
173  * @generation:         Generation of the element set in the filter
174  * @data:               Bit field, multiple of 8 bytes
175  */
176 struct kdbus_bloom_filter {
177         __u64 generation;
178         __u64 data[0];
179 } __attribute__((__aligned__(8)));
180
181 /**
182  * struct kdbus_memfd - a kdbus memfd
183  * @start:              The offset into the memfd where the segment starts
184  * @size:               The size of the memfd segment
185  * @fd:                 The file descriptor number
186  * @__pad:              Padding to ensure proper alignment and size
187  *
188  * Attached to:
189  *   KDBUS_ITEM_PAYLOAD_MEMFD
190  */
191 struct kdbus_memfd {
192         __u64 start;
193         __u64 size;
194         int fd;
195         __u32 __pad;
196 } __attribute__((__aligned__(8)));
197
198 /**
199  * struct kdbus_name - a registered well-known name with its flags
200  * @flags:              Flags from KDBUS_NAME_*
201  * @name:               Well-known name
202  *
203  * Attached to:
204  *   KDBUS_ITEM_OWNED_NAME
205  */
206 struct kdbus_name {
207         __u64 flags;
208         char name[0];
209 } __attribute__((__aligned__(8)));
210
211 /**
212  * enum kdbus_policy_access_type - permissions of a policy record
213  * @_KDBUS_POLICY_ACCESS_NULL:  Uninitialized/invalid
214  * @KDBUS_POLICY_ACCESS_USER:   Grant access to a uid
215  * @KDBUS_POLICY_ACCESS_GROUP:  Grant access to gid
216  * @KDBUS_POLICY_ACCESS_WORLD:  World-accessible
217  */
218 enum kdbus_policy_access_type {
219         _KDBUS_POLICY_ACCESS_NULL,
220         KDBUS_POLICY_ACCESS_USER,
221         KDBUS_POLICY_ACCESS_GROUP,
222         KDBUS_POLICY_ACCESS_WORLD,
223 };
224
225 /**
226  * enum kdbus_policy_access_flags - mode flags
227  * @KDBUS_POLICY_OWN:           Allow to own a well-known name
228  *                              Implies KDBUS_POLICY_TALK and KDBUS_POLICY_SEE
229  * @KDBUS_POLICY_TALK:          Allow communication to a well-known name
230  *                              Implies KDBUS_POLICY_SEE
231  * @KDBUS_POLICY_SEE:           Allow to see a well-known name
232  */
233 enum kdbus_policy_type {
234         KDBUS_POLICY_SEE        = 0,
235         KDBUS_POLICY_TALK,
236         KDBUS_POLICY_OWN,
237 };
238
239 /**
240  * struct kdbus_policy_access - policy access item
241  * @type:               One of KDBUS_POLICY_ACCESS_* types
242  * @access:             Access to grant
243  * @id:                 For KDBUS_POLICY_ACCESS_USER, the uid
244  *                      For KDBUS_POLICY_ACCESS_GROUP, the gid
245  */
246 struct kdbus_policy_access {
247         __u64 type;     /* USER, GROUP, WORLD */
248         __u64 access;   /* OWN, TALK, SEE */
249         __u64 id;       /* uid, gid, 0 */
250 } __attribute__((__aligned__(8)));
251
252 /**
253  * enum kdbus_attach_flags - flags for metadata attachments
254  * @KDBUS_ATTACH_TIMESTAMP:             Timestamp
255  * @KDBUS_ATTACH_CREDS:                 Credentials
256  * @KDBUS_ATTACH_PIDS:                  PIDs
257  * @KDBUS_ATTACH_AUXGROUPS:             Auxiliary groups
258  * @KDBUS_ATTACH_NAMES:                 Well-known names
259  * @KDBUS_ATTACH_TID_COMM:              The "comm" process identifier of the TID
260  * @KDBUS_ATTACH_PID_COMM:              The "comm" process identifier of the PID
261  * @KDBUS_ATTACH_EXE:                   The path of the executable
262  * @KDBUS_ATTACH_CMDLINE:               The process command line
263  * @KDBUS_ATTACH_CGROUP:                The croup membership
264  * @KDBUS_ATTACH_CAPS:                  The process capabilities
265  * @KDBUS_ATTACH_SECLABEL:              The security label
266  * @KDBUS_ATTACH_AUDIT:                 The audit IDs
267  * @KDBUS_ATTACH_CONN_DESCRIPTION:      The human-readable connection name
268  * @_KDBUS_ATTACH_ALL:                  All of the above
269  * @_KDBUS_ATTACH_ANY:                  Wildcard match to enable any kind of
270  *                                      metatdata.
271  */
272 enum kdbus_attach_flags {
273         KDBUS_ATTACH_TIMESTAMP          =  1ULL <<  0,
274         KDBUS_ATTACH_CREDS              =  1ULL <<  1,
275         KDBUS_ATTACH_PIDS               =  1ULL <<  2,
276         KDBUS_ATTACH_AUXGROUPS          =  1ULL <<  3,
277         KDBUS_ATTACH_NAMES              =  1ULL <<  4,
278         KDBUS_ATTACH_TID_COMM           =  1ULL <<  5,
279         KDBUS_ATTACH_PID_COMM           =  1ULL <<  6,
280         KDBUS_ATTACH_EXE                =  1ULL <<  7,
281         KDBUS_ATTACH_CMDLINE            =  1ULL <<  8,
282         KDBUS_ATTACH_CGROUP             =  1ULL <<  9,
283         KDBUS_ATTACH_CAPS               =  1ULL << 10,
284         KDBUS_ATTACH_SECLABEL           =  1ULL << 11,
285         KDBUS_ATTACH_AUDIT              =  1ULL << 12,
286         KDBUS_ATTACH_CONN_DESCRIPTION   =  1ULL << 13,
287         _KDBUS_ATTACH_ALL               =  (1ULL << 14) - 1,
288         _KDBUS_ATTACH_ANY               =  ~0ULL
289 };
290
291 /**
292  * enum kdbus_item_type - item types to chain data in a list
293  * @_KDBUS_ITEM_NULL:                   Uninitialized/invalid
294  * @_KDBUS_ITEM_USER_BASE:              Start of user items
295  * @KDBUS_ITEM_NEGOTIATE:               Negotiate supported items
296  * @KDBUS_ITEM_PAYLOAD_VEC:             Vector to data
297  * @KDBUS_ITEM_PAYLOAD_OFF:             Data at returned offset to message head
298  * @KDBUS_ITEM_PAYLOAD_MEMFD:           Data as sealed memfd
299  * @KDBUS_ITEM_FDS:                     Attached file descriptors
300  * @KDBUS_ITEM_CANCEL_FD:               FD used to cancel a synchronous
301  *                                      operation by writing to it from
302  *                                      userspace
303  * @KDBUS_ITEM_BLOOM_PARAMETER:         Bus-wide bloom parameters, used with
304  *                                      KDBUS_CMD_BUS_MAKE, carries a
305  *                                      struct kdbus_bloom_parameter
306  * @KDBUS_ITEM_BLOOM_FILTER:            Bloom filter carried with a message,
307  *                                      used to match against a bloom mask of a
308  *                                      connection, carries a struct
309  *                                      kdbus_bloom_filter
310  * @KDBUS_ITEM_BLOOM_MASK:              Bloom mask used to match against a
311  *                                      message'sbloom filter
312  * @KDBUS_ITEM_DST_NAME:                Destination's well-known name
313  * @KDBUS_ITEM_MAKE_NAME:               Name of domain, bus, endpoint
314  * @KDBUS_ITEM_ATTACH_FLAGS_SEND:       Attach-flags, used for updating which
315  *                                      metadata a connection opts in to send
316  * @KDBUS_ITEM_ATTACH_FLAGS_RECV:       Attach-flags, used for updating which
317  *                                      metadata a connection requests to
318  *                                      receive for each reeceived message
319  * @KDBUS_ITEM_ID:                      Connection ID
320  * @KDBUS_ITEM_NAME:                    Well-know name with flags
321  * @_KDBUS_ITEM_ATTACH_BASE:            Start of metadata attach items
322  * @KDBUS_ITEM_TIMESTAMP:               Timestamp
323  * @KDBUS_ITEM_CREDS:                   Process credentials
324  * @KDBUS_ITEM_PIDS:                    Process identifiers
325  * @KDBUS_ITEM_AUXGROUPS:               Auxiliary process groups
326  * @KDBUS_ITEM_OWNED_NAME:              A name owned by the associated
327  *                                      connection
328  * @KDBUS_ITEM_TID_COMM:                Thread ID "comm" identifier
329  *                                      (Don't trust this, see below.)
330  * @KDBUS_ITEM_PID_COMM:                Process ID "comm" identifier
331  *                                      (Don't trust this, see below.)
332  * @KDBUS_ITEM_EXE:                     The path of the executable
333  *                                      (Don't trust this, see below.)
334  * @KDBUS_ITEM_CMDLINE:                 The process command line
335  *                                      (Don't trust this, see below.)
336  * @KDBUS_ITEM_CGROUP:                  The croup membership
337  * @KDBUS_ITEM_CAPS:                    The process capabilities
338  * @KDBUS_ITEM_SECLABEL:                The security label
339  * @KDBUS_ITEM_AUDIT:                   The audit IDs
340  * @KDBUS_ITEM_CONN_DESCRIPTION:        The connection's human-readable name
341  *                                      (debugging)
342  * @_KDBUS_ITEM_POLICY_BASE:            Start of policy items
343  * @KDBUS_ITEM_POLICY_ACCESS:           Policy access block
344  * @_KDBUS_ITEM_KERNEL_BASE:            Start of kernel-generated message items
345  * @KDBUS_ITEM_NAME_ADD:                Notification in kdbus_notify_name_change
346  * @KDBUS_ITEM_NAME_REMOVE:             Notification in kdbus_notify_name_change
347  * @KDBUS_ITEM_NAME_CHANGE:             Notification in kdbus_notify_name_change
348  * @KDBUS_ITEM_ID_ADD:                  Notification in kdbus_notify_id_change
349  * @KDBUS_ITEM_ID_REMOVE:               Notification in kdbus_notify_id_change
350  * @KDBUS_ITEM_REPLY_TIMEOUT:           Timeout has been reached
351  * @KDBUS_ITEM_REPLY_DEAD:              Destination died
352  *
353  * N.B: The process and thread COMM fields, as well as the CMDLINE and
354  * EXE fields may be altered by unprivileged processes und should
355  * hence *not* used for security decisions. Peers should make use of
356  * these items only for informational purposes, such as generating log
357  * records.
358  */
359 enum kdbus_item_type {
360         _KDBUS_ITEM_NULL,
361         _KDBUS_ITEM_USER_BASE,
362         KDBUS_ITEM_NEGOTIATE    = _KDBUS_ITEM_USER_BASE,
363         KDBUS_ITEM_PAYLOAD_VEC,
364         KDBUS_ITEM_PAYLOAD_OFF,
365         KDBUS_ITEM_PAYLOAD_MEMFD,
366         KDBUS_ITEM_FDS,
367         KDBUS_ITEM_CANCEL_FD,
368         KDBUS_ITEM_BLOOM_PARAMETER,
369         KDBUS_ITEM_BLOOM_FILTER,
370         KDBUS_ITEM_BLOOM_MASK,
371         KDBUS_ITEM_DST_NAME,
372         KDBUS_ITEM_MAKE_NAME,
373         KDBUS_ITEM_ATTACH_FLAGS_SEND,
374         KDBUS_ITEM_ATTACH_FLAGS_RECV,
375         KDBUS_ITEM_ID,
376         KDBUS_ITEM_NAME,
377
378         /* keep these item types in sync with KDBUS_ATTACH_* flags */
379         _KDBUS_ITEM_ATTACH_BASE = 0x1000,
380         KDBUS_ITEM_TIMESTAMP    = _KDBUS_ITEM_ATTACH_BASE,
381         KDBUS_ITEM_CREDS,
382         KDBUS_ITEM_PIDS,
383         KDBUS_ITEM_AUXGROUPS,
384         KDBUS_ITEM_OWNED_NAME,
385         KDBUS_ITEM_TID_COMM,
386         KDBUS_ITEM_PID_COMM,
387         KDBUS_ITEM_EXE,
388         KDBUS_ITEM_CMDLINE,
389         KDBUS_ITEM_CGROUP,
390         KDBUS_ITEM_CAPS,
391         KDBUS_ITEM_SECLABEL,
392         KDBUS_ITEM_AUDIT,
393         KDBUS_ITEM_CONN_DESCRIPTION,
394
395         _KDBUS_ITEM_POLICY_BASE = 0x2000,
396         KDBUS_ITEM_POLICY_ACCESS = _KDBUS_ITEM_POLICY_BASE,
397
398         _KDBUS_ITEM_KERNEL_BASE = 0x8000,
399         KDBUS_ITEM_NAME_ADD     = _KDBUS_ITEM_KERNEL_BASE,
400         KDBUS_ITEM_NAME_REMOVE,
401         KDBUS_ITEM_NAME_CHANGE,
402         KDBUS_ITEM_ID_ADD,
403         KDBUS_ITEM_ID_REMOVE,
404         KDBUS_ITEM_REPLY_TIMEOUT,
405         KDBUS_ITEM_REPLY_DEAD,
406 };
407
408 /**
409  * struct kdbus_item - chain of data blocks
410  * @size:               Overall data record size
411  * @type:               Kdbus_item type of data
412  * @data:               Generic bytes
413  * @data32:             Generic 32 bit array
414  * @data64:             Generic 64 bit array
415  * @str:                Generic string
416  * @id:                 Connection ID
417  * @vec:                KDBUS_ITEM_PAYLOAD_VEC
418  * @creds:              KDBUS_ITEM_CREDS
419  * @audit:              KDBUS_ITEM_AUDIT
420  * @timestamp:          KDBUS_ITEM_TIMESTAMP
421  * @name:               KDBUS_ITEM_NAME
422  * @bloom_parameter:    KDBUS_ITEM_BLOOM_PARAMETER
423  * @bloom_filter:       KDBUS_ITEM_BLOOM_FILTER
424  * @memfd:              KDBUS_ITEM_PAYLOAD_MEMFD
425  * @name_change:        KDBUS_ITEM_NAME_ADD
426  *                      KDBUS_ITEM_NAME_REMOVE
427  *                      KDBUS_ITEM_NAME_CHANGE
428  * @id_change:          KDBUS_ITEM_ID_ADD
429  *                      KDBUS_ITEM_ID_REMOVE
430  * @policy:             KDBUS_ITEM_POLICY_ACCESS
431  */
432 struct kdbus_item {
433         __u64 size;
434         __u64 type;
435         union {
436                 __u8 data[0];
437                 __u32 data32[0];
438                 __u64 data64[0];
439                 char str[0];
440
441                 __u64 id;
442                 struct kdbus_vec vec;
443                 struct kdbus_creds creds;
444                 struct kdbus_pids pids;
445                 struct kdbus_audit audit;
446                 struct kdbus_caps caps;
447                 struct kdbus_timestamp timestamp;
448                 struct kdbus_name name;
449                 struct kdbus_bloom_parameter bloom_parameter;
450                 struct kdbus_bloom_filter bloom_filter;
451                 struct kdbus_memfd memfd;
452                 int fds[0];
453                 struct kdbus_notify_name_change name_change;
454                 struct kdbus_notify_id_change id_change;
455                 struct kdbus_policy_access policy_access;
456         };
457 } __attribute__((__aligned__(8)));
458
459 /**
460  * struct kdbus_item_list - A list of items
461  * @size:               The total size of the structure
462  * @items:              Array of items
463  */
464 struct kdbus_item_list {
465         __u64 size;
466         struct kdbus_item items[0];
467 } __attribute__((__aligned__(8)));
468
469 /**
470  * enum kdbus_msg_flags - type of message
471  * @KDBUS_MSG_EXPECT_REPLY:     Expect a reply message, used for
472  *                              method calls. The userspace-supplied
473  *                              cookie identifies the message and the
474  *                              respective reply carries the cookie
475  *                              in cookie_reply
476  * @KDBUS_MSG_NO_AUTO_START:    Do not start a service, if the addressed
477  *                              name is not currently active
478  * @KDBUS_MSG_SIGNAL:           Treat this message as signal
479  */
480 enum kdbus_msg_flags {
481         KDBUS_MSG_EXPECT_REPLY  = 1ULL << 0,
482         KDBUS_MSG_NO_AUTO_START = 1ULL << 1,
483         KDBUS_MSG_SIGNAL        = 1ULL << 2,
484 };
485
486 /**
487  * enum kdbus_payload_type - type of payload carried by message
488  * @KDBUS_PAYLOAD_KERNEL:       Kernel-generated simple message
489  * @KDBUS_PAYLOAD_DBUS:         D-Bus marshalling "DBusDBus"
490  *
491  * Any payload-type is accepted. Common types will get added here once
492  * established.
493  */
494 enum kdbus_payload_type {
495         KDBUS_PAYLOAD_KERNEL,
496         KDBUS_PAYLOAD_DBUS      = 0x4442757344427573ULL,
497 };
498
499 /**
500  * struct kdbus_msg - the representation of a kdbus message
501  * @size:               Total size of the message
502  * @flags:              Message flags (KDBUS_MSG_*), userspace → kernel
503  * @priority:           Message queue priority value
504  * @dst_id:             64-bit ID of the destination connection
505  * @src_id:             64-bit ID of the source connection
506  * @payload_type:       Payload type (KDBUS_PAYLOAD_*)
507  * @cookie:             Userspace-supplied cookie, for the connection
508  *                      to identify its messages
509  * @timeout_ns:         The time to wait for a message reply from the peer.
510  *                      If there is no reply, a kernel-generated message
511  *                      with an attached KDBUS_ITEM_REPLY_TIMEOUT item
512  *                      is sent to @src_id. The timeout is expected in
513  *                      nanoseconds and as absolute CLOCK_MONOTONIC value.
514  * @cookie_reply:       A reply to the requesting message with the same
515  *                      cookie. The requesting connection can match its
516  *                      request and the reply with this value
517  * @items:              A list of kdbus_items containing the message payload
518  */
519 struct kdbus_msg {
520         __u64 size;
521         __u64 flags;
522         __s64 priority;
523         __u64 dst_id;
524         __u64 src_id;
525         __u64 payload_type;
526         __u64 cookie;
527         union {
528                 __u64 timeout_ns;
529                 __u64 cookie_reply;
530         };
531         struct kdbus_item items[0];
532 } __attribute__((__aligned__(8)));
533
534 /**
535  * struct kdbus_msg_info - returned message container
536  * @offset:             Offset of kdbus_msg slice in pool
537  * @msg_size:           Copy of the kdbus_msg.size field
538  * @return_flags:       Command return flags, kernel → userspace
539  */
540 struct kdbus_msg_info {
541         __u64 offset;
542         __u64 msg_size;
543         __u64 return_flags;
544 } __attribute__((__aligned__(8)));
545
546 /**
547  * enum kdbus_send_flags - flags for sending messages
548  * @KDBUS_SEND_SYNC_REPLY:      Wait for destination connection to
549  *                              reply to this message. The
550  *                              KDBUS_CMD_SEND ioctl() will block
551  *                              until the reply is received, and
552  *                              offset_reply in struct kdbus_msg will
553  *                              yield the offset in the sender's pool
554  *                              where the reply can be found.
555  *                              This flag is only valid if
556  *                              @KDBUS_MSG_EXPECT_REPLY is set as well.
557  */
558 enum kdbus_send_flags {
559         KDBUS_SEND_SYNC_REPLY           = 1ULL << 0,
560 };
561
562 /**
563  * struct kdbus_cmd_send - send message
564  * @size:               Overall size of this structure
565  * @flags:              Flags to change send behavior (KDBUS_SEND_*)
566  * @return_flags:       Command return flags, kernel → userspace
567  * @msg_address:        Storage address of the kdbus_msg to send
568  * @reply:              Storage for message reply if KDBUS_SEND_SYNC_REPLY
569  *                      was given
570  * @items:              Additional items for this command
571  */
572 struct kdbus_cmd_send {
573         __u64 size;
574         __u64 flags;
575         __u64 return_flags;
576         __u64 msg_address;
577         struct kdbus_msg_info reply;
578         struct kdbus_item items[0];
579 } __attribute__((__aligned__(8)));
580
581 /**
582  * enum kdbus_recv_flags - flags for de-queuing messages
583  * @KDBUS_RECV_PEEK:            Return the next queued message without
584  *                              actually de-queuing it, and without installing
585  *                              any file descriptors or other resources. It is
586  *                              usually used to determine the activating
587  *                              connection of a bus name.
588  * @KDBUS_RECV_DROP:            Drop and free the next queued message and all
589  *                              its resources without actually receiving it.
590  * @KDBUS_RECV_USE_PRIORITY:    Only de-queue messages with the specified or
591  *                              higher priority (lowest values); if not set,
592  *                              the priority value is ignored.
593  */
594 enum kdbus_recv_flags {
595         KDBUS_RECV_PEEK         = 1ULL <<  0,
596         KDBUS_RECV_DROP         = 1ULL <<  1,
597         KDBUS_RECV_USE_PRIORITY = 1ULL <<  2,
598 };
599
600 /**
601  * enum kdbus_recv_return_flags - return flags for message receive commands
602  * @KDBUS_RECV_RETURN_INCOMPLETE_FDS:   One or more file descriptors could not
603  *                                      be installed. These descriptors in
604  *                                      KDBUS_ITEM_FDS will carry the value -1.
605  */
606 enum kdbus_recv_return_flags {
607         KDBUS_RECV_RETURN_INCOMPLETE_FDS        = 1ULL <<  0,
608 };
609
610 /**
611  * struct kdbus_cmd_recv - struct to de-queue a buffered message
612  * @size:               Overall size of this object
613  * @flags:              KDBUS_RECV_* flags, userspace → kernel
614  * @return_flags:       Command return flags, kernel → userspace
615  * @priority:           Minimum priority of the messages to de-queue. Lowest
616  *                      values have the highest priority.
617  * @dropped_msgs:       In case the KDBUS_CMD_RECV ioctl returns
618  *                      -EOVERFLOW, this field will contain the number of
619  *                      broadcast messages that have been lost since the
620  *                      last call.
621  * @msg:                Return storage for received message.
622  * @items:              Additional items for this command.
623  *
624  * This struct is used with the KDBUS_CMD_RECV ioctl.
625  */
626 struct kdbus_cmd_recv {
627         __u64 size;
628         __u64 flags;
629         __u64 return_flags;
630         __s64 priority;
631         __u64 dropped_msgs;
632         struct kdbus_msg_info msg;
633         struct kdbus_item items[0];
634 } __attribute__((__aligned__(8)));
635
636 /**
637  * struct kdbus_cmd_free - struct to free a slice of memory in the pool
638  * @size:               Overall size of this structure
639  * @flags:              Flags for the free command, userspace → kernel
640  * @return_flags:       Command return flags, kernel → userspace
641  * @offset:             The offset of the memory slice, as returned by other
642  *                      ioctls
643  * @items:              Additional items to modify the behavior
644  *
645  * This struct is used with the KDBUS_CMD_FREE ioctl.
646  */
647 struct kdbus_cmd_free {
648         __u64 size;
649         __u64 flags;
650         __u64 return_flags;
651         __u64 offset;
652         struct kdbus_item items[0];
653 } __attribute__((__aligned__(8)));
654
655 /**
656  * enum kdbus_hello_flags - flags for struct kdbus_cmd_hello
657  * @KDBUS_HELLO_ACCEPT_FD:      The connection allows the reception of
658  *                              any passed file descriptors
659  * @KDBUS_HELLO_ACTIVATOR:      Special-purpose connection which registers
660  *                              a well-know name for a process to be started
661  *                              when traffic arrives
662  * @KDBUS_HELLO_POLICY_HOLDER:  Special-purpose connection which registers
663  *                              policy entries for a name. The provided name
664  *                              is not activated and not registered with the
665  *                              name database, it only allows unprivileged
666  *                              connections to acquire a name, talk or discover
667  *                              a service
668  * @KDBUS_HELLO_MONITOR:        Special-purpose connection to monitor
669  *                              bus traffic
670  */
671 enum kdbus_hello_flags {
672         KDBUS_HELLO_ACCEPT_FD           =  1ULL <<  0,
673         KDBUS_HELLO_ACTIVATOR           =  1ULL <<  1,
674         KDBUS_HELLO_POLICY_HOLDER       =  1ULL <<  2,
675         KDBUS_HELLO_MONITOR             =  1ULL <<  3,
676 };
677
678 /**
679  * struct kdbus_cmd_hello - struct to say hello to kdbus
680  * @size:               The total size of the structure
681  * @flags:              Connection flags (KDBUS_HELLO_*), userspace → kernel
682  * @return_flags:       Command return flags, kernel → userspace
683  * @attach_flags_send:  Mask of metadata to attach to each message sent
684  *                      off by this connection (KDBUS_ATTACH_*)
685  * @attach_flags_recv:  Mask of metadata to attach to each message receieved
686  *                      by the new connection (KDBUS_ATTACH_*)
687  * @bus_flags:          The flags field copied verbatim from the original
688  *                      KDBUS_CMD_BUS_MAKE ioctl. It's intended to be useful
689  *                      to do negotiation of features of the payload that is
690  *                      transferred (kernel → userspace)
691  * @id:                 The ID of this connection (kernel → userspace)
692  * @pool_size:          Size of the connection's buffer where the received
693  *                      messages are placed
694  * @offset:             Pool offset where additional items of type
695  *                      kdbus_item_list are stored. They contain information
696  *                      about the bus and the newly created connection.
697  * @items_size:         Copy of item_list.size stored in @offset.
698  * @id128:              Unique 128-bit ID of the bus (kernel → userspace)
699  * @items:              A list of items
700  *
701  * This struct is used with the KDBUS_CMD_HELLO ioctl.
702  */
703 struct kdbus_cmd_hello {
704         __u64 size;
705         __u64 flags;
706         __u64 return_flags;
707         __u64 attach_flags_send;
708         __u64 attach_flags_recv;
709         __u64 bus_flags;
710         __u64 id;
711         __u64 pool_size;
712         __u64 offset;
713         __u64 items_size;
714         __u8 id128[16];
715         struct kdbus_item items[0];
716 } __attribute__((__aligned__(8)));
717
718 /**
719  * struct kdbus_info - connection information
720  * @size:               total size of the struct
721  * @id:                 64bit object ID
722  * @flags:              object creation flags
723  * @items:              list of items
724  *
725  * Note that the user is responsible for freeing the allocated memory with
726  * the KDBUS_CMD_FREE ioctl.
727  */
728 struct kdbus_info {
729         __u64 size;
730         __u64 id;
731         __u64 flags;
732         struct kdbus_item items[0];
733 } __attribute__((__aligned__(8)));
734
735 /**
736  * enum kdbus_list_flags - what to include into the returned list
737  * @KDBUS_LIST_UNIQUE:          active connections
738  * @KDBUS_LIST_ACTIVATORS:      activator connections
739  * @KDBUS_LIST_NAMES:           known well-known names
740  * @KDBUS_LIST_QUEUED:          queued-up names
741  */
742 enum kdbus_list_flags {
743         KDBUS_LIST_UNIQUE               = 1ULL <<  0,
744         KDBUS_LIST_NAMES                = 1ULL <<  1,
745         KDBUS_LIST_ACTIVATORS           = 1ULL <<  2,
746         KDBUS_LIST_QUEUED               = 1ULL <<  3,
747 };
748
749 /**
750  * struct kdbus_cmd_list - list connections
751  * @size:               overall size of this object
752  * @flags:              flags for the query (KDBUS_LIST_*), userspace → kernel
753  * @return_flags:       command return flags, kernel → userspace
754  * @offset:             Offset in the caller's pool buffer where an array of
755  *                      kdbus_info objects is stored.
756  *                      The user must use KDBUS_CMD_FREE to free the
757  *                      allocated memory.
758  * @list_size:          size of returned list in bytes
759  * @items:              Items for the command. Reserved for future use.
760  *
761  * This structure is used with the KDBUS_CMD_LIST ioctl.
762  */
763 struct kdbus_cmd_list {
764         __u64 size;
765         __u64 flags;
766         __u64 return_flags;
767         __u64 offset;
768         __u64 list_size;
769         struct kdbus_item items[0];
770 } __attribute__((__aligned__(8)));
771
772 /**
773  * struct kdbus_cmd_info - struct used for KDBUS_CMD_CONN_INFO ioctl
774  * @size:               The total size of the struct
775  * @flags:              KDBUS_ATTACH_* flags, userspace → kernel
776  * @return_flags:       Command return flags, kernel → userspace
777  * @id:                 The 64-bit ID of the connection. If set to zero, passing
778  *                      @name is required. kdbus will look up the name to
779  *                      determine the ID in this case.
780  * @offset:             Returned offset in the caller's pool buffer where the
781  *                      kdbus_info struct result is stored. The user must
782  *                      use KDBUS_CMD_FREE to free the allocated memory.
783  * @info_size:          Output buffer to report size of data at @offset.
784  * @items:              The optional item list, containing the
785  *                      well-known name to look up as a KDBUS_ITEM_NAME.
786  *                      Only needed in case @id is zero.
787  *
788  * On success, the KDBUS_CMD_CONN_INFO ioctl will return 0 and @offset will
789  * tell the user the offset in the connection pool buffer at which to find the
790  * result in a struct kdbus_info.
791  */
792 struct kdbus_cmd_info {
793         __u64 size;
794         __u64 flags;
795         __u64 return_flags;
796         __u64 id;
797         __u64 offset;
798         __u64 info_size;
799         struct kdbus_item items[0];
800 } __attribute__((__aligned__(8)));
801
802 /**
803  * enum kdbus_cmd_match_flags - flags to control the KDBUS_CMD_MATCH_ADD ioctl
804  * @KDBUS_MATCH_REPLACE:        If entries with the supplied cookie already
805  *                              exists, remove them before installing the new
806  *                              matches.
807  */
808 enum kdbus_cmd_match_flags {
809         KDBUS_MATCH_REPLACE     = 1ULL <<  0,
810 };
811
812 /**
813  * struct kdbus_cmd_match - struct to add or remove matches
814  * @size:               The total size of the struct
815  * @flags:              Flags for match command (KDBUS_MATCH_*),
816  *                      userspace → kernel
817  * @return_flags:       Command return flags, kernel → userspace
818  * @cookie:             Userspace supplied cookie. When removing, the cookie
819  *                      identifies the match to remove
820  * @items:              A list of items for additional information
821  *
822  * This structure is used with the KDBUS_CMD_MATCH_ADD and
823  * KDBUS_CMD_MATCH_REMOVE ioctl.
824  */
825 struct kdbus_cmd_match {
826         __u64 size;
827         __u64 flags;
828         __u64 return_flags;
829         __u64 cookie;
830         struct kdbus_item items[0];
831 } __attribute__((__aligned__(8)));
832
833 /**
834  * enum kdbus_make_flags - Flags for KDBUS_CMD_{BUS,ENDPOINT}_MAKE
835  * @KDBUS_MAKE_ACCESS_GROUP:    Make the bus or endpoint node group-accessible
836  * @KDBUS_MAKE_ACCESS_WORLD:    Make the bus or endpoint node world-accessible
837  */
838 enum kdbus_make_flags {
839         KDBUS_MAKE_ACCESS_GROUP         = 1ULL <<  0,
840         KDBUS_MAKE_ACCESS_WORLD         = 1ULL <<  1,
841 };
842
843 /**
844  * enum kdbus_name_flags - flags for KDBUS_CMD_NAME_ACQUIRE
845  * @KDBUS_NAME_REPLACE_EXISTING:        Try to replace name of other connections
846  * @KDBUS_NAME_ALLOW_REPLACEMENT:       Allow the replacement of the name
847  * @KDBUS_NAME_QUEUE:                   Name should be queued if busy
848  * @KDBUS_NAME_IN_QUEUE:                Name is queued
849  * @KDBUS_NAME_ACTIVATOR:               Name is owned by a activator connection
850  */
851 enum kdbus_name_flags {
852         KDBUS_NAME_REPLACE_EXISTING     = 1ULL <<  0,
853         KDBUS_NAME_ALLOW_REPLACEMENT    = 1ULL <<  1,
854         KDBUS_NAME_QUEUE                = 1ULL <<  2,
855         KDBUS_NAME_IN_QUEUE             = 1ULL <<  3,
856         KDBUS_NAME_ACTIVATOR            = 1ULL <<  4,
857 };
858
859 /**
860  * struct kdbus_cmd - generic ioctl payload
861  * @size:               Overall size of this structure
862  * @flags:              Flags for this ioctl, userspace → kernel
863  * @return_flags:       Ioctl return flags, kernel → userspace
864  * @items:              Additional items to modify the behavior
865  *
866  * This is a generic ioctl payload object. It's used by all ioctls that only
867  * take flags and items as input.
868  */
869 struct kdbus_cmd {
870         __u64 size;
871         __u64 flags;
872         __u64 return_flags;
873         struct kdbus_item items[0];
874 } __attribute__((__aligned__(8)));
875
876 /**
877  * Ioctl API
878  *
879  * KDBUS_CMD_BUS_MAKE:          After opening the "control" node, this command
880  *                              creates a new bus with the specified
881  *                              name. The bus is immediately shut down and
882  *                              cleaned up when the opened file descriptor is
883  *                              closed.
884  *
885  * KDBUS_CMD_ENDPOINT_MAKE:     Creates a new named special endpoint to talk to
886  *                              the bus. Such endpoints usually carry a more
887  *                              restrictive policy and grant restricted access
888  *                              to specific applications.
889  * KDBUS_CMD_ENDPOINT_UPDATE:   Update the properties of a custom enpoint. Used
890  *                              to update the policy.
891  *
892  * KDBUS_CMD_HELLO:             By opening the bus node, a connection is
893  *                              created. After a HELLO the opened connection
894  *                              becomes an active peer on the bus.
895  * KDBUS_CMD_UPDATE:            Update the properties of a connection. Used to
896  *                              update the metadata subscription mask and
897  *                              policy.
898  * KDBUS_CMD_BYEBYE:            Disconnect a connection. If there are no
899  *                              messages queued up in the connection's pool,
900  *                              the call succeeds, and the handle is rendered
901  *                              unusable. Otherwise, -EBUSY is returned without
902  *                              any further side-effects.
903  * KDBUS_CMD_FREE:              Release the allocated memory in the receiver's
904  *                              pool.
905  * KDBUS_CMD_CONN_INFO:         Retrieve credentials and properties of the
906  *                              initial creator of the connection. The data was
907  *                              stored at registration time and does not
908  *                              necessarily represent the connected process or
909  *                              the actual state of the process.
910  * KDBUS_CMD_BUS_CREATOR_INFO:  Retrieve information of the creator of the bus
911  *                              a connection is attached to.
912  *
913  * KDBUS_CMD_SEND:              Send a message and pass data from userspace to
914  *                              the kernel.
915  * KDBUS_CMD_RECV:              Receive a message from the kernel which is
916  *                              placed in the receiver's pool.
917  *
918  * KDBUS_CMD_NAME_ACQUIRE:      Request a well-known bus name to associate with
919  *                              the connection. Well-known names are used to
920  *                              address a peer on the bus.
921  * KDBUS_CMD_NAME_RELEASE:      Release a well-known name the connection
922  *                              currently owns.
923  * KDBUS_CMD_LIST:              Retrieve the list of all currently registered
924  *                              well-known and unique names.
925  *
926  * KDBUS_CMD_MATCH_ADD:         Install a match which broadcast messages should
927  *                              be delivered to the connection.
928  * KDBUS_CMD_MATCH_REMOVE:      Remove a current match for broadcast messages.
929  */
930 enum kdbus_ioctl_type {
931         /* bus owner (00-0f) */
932         KDBUS_CMD_BUS_MAKE =            _IOW(KDBUS_IOCTL_MAGIC, 0x00,
933                                              struct kdbus_cmd),
934
935         /* endpoint owner (10-1f) */
936         KDBUS_CMD_ENDPOINT_MAKE =       _IOW(KDBUS_IOCTL_MAGIC, 0x10,
937                                              struct kdbus_cmd),
938         KDBUS_CMD_ENDPOINT_UPDATE =     _IOW(KDBUS_IOCTL_MAGIC, 0x11,
939                                              struct kdbus_cmd),
940
941         /* connection owner (80-ff) */
942         KDBUS_CMD_HELLO =               _IOWR(KDBUS_IOCTL_MAGIC, 0x80,
943                                               struct kdbus_cmd_hello),
944         KDBUS_CMD_UPDATE =              _IOW(KDBUS_IOCTL_MAGIC, 0x81,
945                                              struct kdbus_cmd),
946         KDBUS_CMD_BYEBYE =              _IOW(KDBUS_IOCTL_MAGIC, 0x82,
947                                              struct kdbus_cmd),
948         KDBUS_CMD_FREE =                _IOW(KDBUS_IOCTL_MAGIC, 0x83,
949                                              struct kdbus_cmd_free),
950         KDBUS_CMD_CONN_INFO =           _IOR(KDBUS_IOCTL_MAGIC, 0x84,
951                                              struct kdbus_cmd_info),
952         KDBUS_CMD_BUS_CREATOR_INFO =    _IOR(KDBUS_IOCTL_MAGIC, 0x85,
953                                              struct kdbus_cmd_info),
954         KDBUS_CMD_LIST =                _IOR(KDBUS_IOCTL_MAGIC, 0x86,
955                                              struct kdbus_cmd_list),
956
957         KDBUS_CMD_SEND =                _IOW(KDBUS_IOCTL_MAGIC, 0x90,
958                                              struct kdbus_cmd_send),
959         KDBUS_CMD_RECV =                _IOR(KDBUS_IOCTL_MAGIC, 0x91,
960                                              struct kdbus_cmd_recv),
961
962         KDBUS_CMD_NAME_ACQUIRE =        _IOW(KDBUS_IOCTL_MAGIC, 0xa0,
963                                              struct kdbus_cmd),
964         KDBUS_CMD_NAME_RELEASE =        _IOW(KDBUS_IOCTL_MAGIC, 0xa1,
965                                              struct kdbus_cmd),
966
967         KDBUS_CMD_MATCH_ADD =           _IOW(KDBUS_IOCTL_MAGIC, 0xb0,
968                                              struct kdbus_cmd_match),
969         KDBUS_CMD_MATCH_REMOVE =        _IOW(KDBUS_IOCTL_MAGIC, 0xb1,
970                                              struct kdbus_cmd_match),
971 };
972
973 #endif /* _KDBUS_UAPI_H_ */