6cbd01c5030be5c55d747d06b4f67aa739060ba9
[platform/upstream/glib.git] / gio / 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  * enum kdbus_msg_flags - type of message
461  * @KDBUS_MSG_EXPECT_REPLY:     Expect a reply message, used for
462  *                              method calls. The userspace-supplied
463  *                              cookie identifies the message and the
464  *                              respective reply carries the cookie
465  *                              in cookie_reply
466  * @KDBUS_MSG_NO_AUTO_START:    Do not start a service, if the addressed
467  *                              name is not currently active
468  * @KDBUS_MSG_SIGNAL:           Treat this message as signal
469  */
470 enum kdbus_msg_flags {
471         KDBUS_MSG_EXPECT_REPLY  = 1ULL << 0,
472         KDBUS_MSG_NO_AUTO_START = 1ULL << 1,
473         KDBUS_MSG_SIGNAL        = 1ULL << 2,
474 };
475
476 /**
477  * enum kdbus_payload_type - type of payload carried by message
478  * @KDBUS_PAYLOAD_KERNEL:       Kernel-generated simple message
479  * @KDBUS_PAYLOAD_DBUS:         D-Bus marshalling "DBusDBus"
480  *
481  * Any payload-type is accepted. Common types will get added here once
482  * established.
483  */
484 enum kdbus_payload_type {
485         KDBUS_PAYLOAD_KERNEL,
486         KDBUS_PAYLOAD_DBUS      = 0x4442757344427573ULL,
487 };
488
489 /**
490  * struct kdbus_msg - the representation of a kdbus message
491  * @size:               Total size of the message
492  * @flags:              Message flags (KDBUS_MSG_*), userspace → kernel
493  * @priority:           Message queue priority value
494  * @dst_id:             64-bit ID of the destination connection
495  * @src_id:             64-bit ID of the source connection
496  * @payload_type:       Payload type (KDBUS_PAYLOAD_*)
497  * @cookie:             Userspace-supplied cookie, for the connection
498  *                      to identify its messages
499  * @timeout_ns:         The time to wait for a message reply from the peer.
500  *                      If there is no reply, a kernel-generated message
501  *                      with an attached KDBUS_ITEM_REPLY_TIMEOUT item
502  *                      is sent to @src_id. The timeout is expected in
503  *                      nanoseconds and as absolute CLOCK_MONOTONIC value.
504  * @cookie_reply:       A reply to the requesting message with the same
505  *                      cookie. The requesting connection can match its
506  *                      request and the reply with this value
507  * @items:              A list of kdbus_items containing the message payload
508  */
509 struct kdbus_msg {
510         __u64 size;
511         __u64 flags;
512         __s64 priority;
513         __u64 dst_id;
514         __u64 src_id;
515         __u64 payload_type;
516         __u64 cookie;
517         union {
518                 __u64 timeout_ns;
519                 __u64 cookie_reply;
520         };
521         struct kdbus_item items[0];
522 } __attribute__((__aligned__(8)));
523
524 /**
525  * struct kdbus_msg_info - returned message container
526  * @offset:             Offset of kdbus_msg slice in pool
527  * @msg_size:           Copy of the kdbus_msg.size field
528  * @return_flags:       Command return flags, kernel → userspace
529  */
530 struct kdbus_msg_info {
531         __u64 offset;
532         __u64 msg_size;
533         __u64 return_flags;
534 } __attribute__((__aligned__(8)));
535
536 /**
537  * enum kdbus_send_flags - flags for sending messages
538  * @KDBUS_SEND_SYNC_REPLY:      Wait for destination connection to
539  *                              reply to this message. The
540  *                              KDBUS_CMD_SEND ioctl() will block
541  *                              until the reply is received, and
542  *                              offset_reply in struct kdbus_msg will
543  *                              yield the offset in the sender's pool
544  *                              where the reply can be found.
545  *                              This flag is only valid if
546  *                              @KDBUS_MSG_EXPECT_REPLY is set as well.
547  */
548 enum kdbus_send_flags {
549         KDBUS_SEND_SYNC_REPLY           = 1ULL << 0,
550 };
551
552 /**
553  * struct kdbus_cmd_send - send message
554  * @size:               Overall size of this structure
555  * @flags:              Flags to change send behavior (KDBUS_SEND_*)
556  * @return_flags:       Command return flags, kernel → userspace
557  * @msg_address:        Storage address of the kdbus_msg to send
558  * @reply:              Storage for message reply if KDBUS_SEND_SYNC_REPLY
559  *                      was given
560  * @items:              Additional items for this command
561  */
562 struct kdbus_cmd_send {
563         __u64 size;
564         __u64 flags;
565         __u64 return_flags;
566         __u64 msg_address;
567         struct kdbus_msg_info reply;
568         struct kdbus_item items[0];
569 } __attribute__((__aligned__(8)));
570
571 /**
572  * enum kdbus_recv_flags - flags for de-queuing messages
573  * @KDBUS_RECV_PEEK:            Return the next queued message without
574  *                              actually de-queuing it, and without installing
575  *                              any file descriptors or other resources. It is
576  *                              usually used to determine the activating
577  *                              connection of a bus name.
578  * @KDBUS_RECV_DROP:            Drop and free the next queued message and all
579  *                              its resources without actually receiving it.
580  * @KDBUS_RECV_USE_PRIORITY:    Only de-queue messages with the specified or
581  *                              higher priority (lowest values); if not set,
582  *                              the priority value is ignored.
583  */
584 enum kdbus_recv_flags {
585         KDBUS_RECV_PEEK         = 1ULL <<  0,
586         KDBUS_RECV_DROP         = 1ULL <<  1,
587         KDBUS_RECV_USE_PRIORITY = 1ULL <<  2,
588 };
589
590 /**
591  * enum kdbus_recv_return_flags - return flags for message receive commands
592  * @KDBUS_RECV_RETURN_INCOMPLETE_FDS:   One or more file descriptors could not
593  *                                      be installed. These descriptors in
594  *                                      KDBUS_ITEM_FDS will carry the value -1.
595  * @KDBUS_RECV_RETURN_DROPPED_MSGS:     There have been dropped messages since
596  *                                      the last time a message was received.
597  *                                      The 'dropped_msgs' counter contains the
598  *                                      number of messages dropped pool
599  *                                      overflows or other missed broadcasts.
600  */
601 enum kdbus_recv_return_flags {
602         KDBUS_RECV_RETURN_INCOMPLETE_FDS        = 1ULL <<  0,
603         KDBUS_RECV_RETURN_DROPPED_MSGS          = 1ULL <<  1,
604 };
605
606 /**
607  * struct kdbus_cmd_recv - struct to de-queue a buffered message
608  * @size:               Overall size of this object
609  * @flags:              KDBUS_RECV_* flags, userspace → kernel
610  * @return_flags:       Command return flags, kernel → userspace
611  * @priority:           Minimum priority of the messages to de-queue. Lowest
612  *                      values have the highest priority.
613  * @dropped_msgs:       In case there were any dropped messages since the last
614  *                      time a message was received, this will be set to the
615  *                      number of lost messages and
616  *                      KDBUS_RECV_RETURN_DROPPED_MSGS will be set in
617  *                      'return_flags'. This can only happen if the ioctl
618  *                      returns 0 or EAGAIN.
619  * @msg:                Return storage for received message.
620  * @items:              Additional items for this command.
621  *
622  * This struct is used with the KDBUS_CMD_RECV ioctl.
623  */
624 struct kdbus_cmd_recv {
625         __u64 size;
626         __u64 flags;
627         __u64 return_flags;
628         __s64 priority;
629         __u64 dropped_msgs;
630         struct kdbus_msg_info msg;
631         struct kdbus_item items[0];
632 } __attribute__((__aligned__(8)));
633
634 /**
635  * struct kdbus_cmd_free - struct to free a slice of memory in the pool
636  * @size:               Overall size of this structure
637  * @flags:              Flags for the free command, userspace → kernel
638  * @return_flags:       Command return flags, kernel → userspace
639  * @offset:             The offset of the memory slice, as returned by other
640  *                      ioctls
641  * @items:              Additional items to modify the behavior
642  *
643  * This struct is used with the KDBUS_CMD_FREE ioctl.
644  */
645 struct kdbus_cmd_free {
646         __u64 size;
647         __u64 flags;
648         __u64 return_flags;
649         __u64 offset;
650         struct kdbus_item items[0];
651 } __attribute__((__aligned__(8)));
652
653 /**
654  * enum kdbus_hello_flags - flags for struct kdbus_cmd_hello
655  * @KDBUS_HELLO_ACCEPT_FD:      The connection allows the reception of
656  *                              any passed file descriptors
657  * @KDBUS_HELLO_ACTIVATOR:      Special-purpose connection which registers
658  *                              a well-know name for a process to be started
659  *                              when traffic arrives
660  * @KDBUS_HELLO_POLICY_HOLDER:  Special-purpose connection which registers
661  *                              policy entries for a name. The provided name
662  *                              is not activated and not registered with the
663  *                              name database, it only allows unprivileged
664  *                              connections to acquire a name, talk or discover
665  *                              a service
666  * @KDBUS_HELLO_MONITOR:        Special-purpose connection to monitor
667  *                              bus traffic
668  */
669 enum kdbus_hello_flags {
670         KDBUS_HELLO_ACCEPT_FD           =  1ULL <<  0,
671         KDBUS_HELLO_ACTIVATOR           =  1ULL <<  1,
672         KDBUS_HELLO_POLICY_HOLDER       =  1ULL <<  2,
673         KDBUS_HELLO_MONITOR             =  1ULL <<  3,
674 };
675
676 /**
677  * struct kdbus_cmd_hello - struct to say hello to kdbus
678  * @size:               The total size of the structure
679  * @flags:              Connection flags (KDBUS_HELLO_*), userspace → kernel
680  * @return_flags:       Command return flags, kernel → userspace
681  * @attach_flags_send:  Mask of metadata to attach to each message sent
682  *                      off by this connection (KDBUS_ATTACH_*)
683  * @attach_flags_recv:  Mask of metadata to attach to each message receieved
684  *                      by the new connection (KDBUS_ATTACH_*)
685  * @bus_flags:          The flags field copied verbatim from the original
686  *                      KDBUS_CMD_BUS_MAKE ioctl. It's intended to be useful
687  *                      to do negotiation of features of the payload that is
688  *                      transferred (kernel → userspace)
689  * @id:                 The ID of this connection (kernel → userspace)
690  * @pool_size:          Size of the connection's buffer where the received
691  *                      messages are placed
692  * @offset:             Pool offset where items are returned to report
693  *                      additional information about the bus and the newly
694  *                      created connection.
695  * @items_size:         Size of buffer returned in the pool slice at @offset.
696  * @id128:              Unique 128-bit ID of the bus (kernel → userspace)
697  * @items:              A list of items
698  *
699  * This struct is used with the KDBUS_CMD_HELLO ioctl.
700  */
701 struct kdbus_cmd_hello {
702         __u64 size;
703         __u64 flags;
704         __u64 return_flags;
705         __u64 attach_flags_send;
706         __u64 attach_flags_recv;
707         __u64 bus_flags;
708         __u64 id;
709         __u64 pool_size;
710         __u64 offset;
711         __u64 items_size;
712         __u8 id128[16];
713         struct kdbus_item items[0];
714 } __attribute__((__aligned__(8)));
715
716 /**
717  * struct kdbus_info - connection information
718  * @size:               total size of the struct
719  * @id:                 64bit object ID
720  * @flags:              object creation flags
721  * @items:              list of items
722  *
723  * Note that the user is responsible for freeing the allocated memory with
724  * the KDBUS_CMD_FREE ioctl.
725  */
726 struct kdbus_info {
727         __u64 size;
728         __u64 id;
729         __u64 flags;
730         struct kdbus_item items[0];
731 } __attribute__((__aligned__(8)));
732
733 /**
734  * enum kdbus_list_flags - what to include into the returned list
735  * @KDBUS_LIST_UNIQUE:          active connections
736  * @KDBUS_LIST_ACTIVATORS:      activator connections
737  * @KDBUS_LIST_NAMES:           known well-known names
738  * @KDBUS_LIST_QUEUED:          queued-up names
739  */
740 enum kdbus_list_flags {
741         KDBUS_LIST_UNIQUE               = 1ULL <<  0,
742         KDBUS_LIST_NAMES                = 1ULL <<  1,
743         KDBUS_LIST_ACTIVATORS           = 1ULL <<  2,
744         KDBUS_LIST_QUEUED               = 1ULL <<  3,
745 };
746
747 /**
748  * struct kdbus_cmd_list - list connections
749  * @size:               overall size of this object
750  * @flags:              flags for the query (KDBUS_LIST_*), userspace → kernel
751  * @return_flags:       command return flags, kernel → userspace
752  * @offset:             Offset in the caller's pool buffer where an array of
753  *                      kdbus_info objects is stored.
754  *                      The user must use KDBUS_CMD_FREE to free the
755  *                      allocated memory.
756  * @list_size:          size of returned list in bytes
757  * @items:              Items for the command. Reserved for future use.
758  *
759  * This structure is used with the KDBUS_CMD_LIST ioctl.
760  */
761 struct kdbus_cmd_list {
762         __u64 size;
763         __u64 flags;
764         __u64 return_flags;
765         __u64 offset;
766         __u64 list_size;
767         struct kdbus_item items[0];
768 } __attribute__((__aligned__(8)));
769
770 /**
771  * struct kdbus_cmd_info - struct used for KDBUS_CMD_CONN_INFO ioctl
772  * @size:               The total size of the struct
773  * @flags:              Flags for this ioctl, userspace → kernel
774  * @return_flags:       Command return flags, kernel → userspace
775  * @id:                 The 64-bit ID of the connection. If set to zero, passing
776  *                      @name is required. kdbus will look up the name to
777  *                      determine the ID in this case.
778  * @attach_flags:       Set of attach flags to specify the set of information
779  *                      to receive, userspace → kernel
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 attach_flags;
798         __u64 offset;
799         __u64 info_size;
800         struct kdbus_item items[0];
801 } __attribute__((__aligned__(8)));
802
803 /**
804  * enum kdbus_cmd_match_flags - flags to control the KDBUS_CMD_MATCH_ADD ioctl
805  * @KDBUS_MATCH_REPLACE:        If entries with the supplied cookie already
806  *                              exists, remove them before installing the new
807  *                              matches.
808  */
809 enum kdbus_cmd_match_flags {
810         KDBUS_MATCH_REPLACE     = 1ULL <<  0,
811 };
812
813 /**
814  * struct kdbus_cmd_match - struct to add or remove matches
815  * @size:               The total size of the struct
816  * @flags:              Flags for match command (KDBUS_MATCH_*),
817  *                      userspace → kernel
818  * @return_flags:       Command return flags, kernel → userspace
819  * @cookie:             Userspace supplied cookie. When removing, the cookie
820  *                      identifies the match to remove
821  * @items:              A list of items for additional information
822  *
823  * This structure is used with the KDBUS_CMD_MATCH_ADD and
824  * KDBUS_CMD_MATCH_REMOVE ioctl.
825  */
826 struct kdbus_cmd_match {
827         __u64 size;
828         __u64 flags;
829         __u64 return_flags;
830         __u64 cookie;
831         struct kdbus_item items[0];
832 } __attribute__((__aligned__(8)));
833
834 /**
835  * enum kdbus_make_flags - Flags for KDBUS_CMD_{BUS,ENDPOINT}_MAKE
836  * @KDBUS_MAKE_ACCESS_GROUP:    Make the bus or endpoint node group-accessible
837  * @KDBUS_MAKE_ACCESS_WORLD:    Make the bus or endpoint node world-accessible
838  */
839 enum kdbus_make_flags {
840         KDBUS_MAKE_ACCESS_GROUP         = 1ULL <<  0,
841         KDBUS_MAKE_ACCESS_WORLD         = 1ULL <<  1,
842 };
843
844 /**
845  * enum kdbus_name_flags - flags for KDBUS_CMD_NAME_ACQUIRE
846  * @KDBUS_NAME_REPLACE_EXISTING:        Try to replace name of other connections
847  * @KDBUS_NAME_ALLOW_REPLACEMENT:       Allow the replacement of the name
848  * @KDBUS_NAME_QUEUE:                   Name should be queued if busy
849  * @KDBUS_NAME_IN_QUEUE:                Name is queued
850  * @KDBUS_NAME_ACTIVATOR:               Name is owned by a activator connection
851  */
852 enum kdbus_name_flags {
853         KDBUS_NAME_REPLACE_EXISTING     = 1ULL <<  0,
854         KDBUS_NAME_ALLOW_REPLACEMENT    = 1ULL <<  1,
855         KDBUS_NAME_QUEUE                = 1ULL <<  2,
856         KDBUS_NAME_IN_QUEUE             = 1ULL <<  3,
857         KDBUS_NAME_ACTIVATOR            = 1ULL <<  4,
858 };
859
860 /**
861  * struct kdbus_cmd - generic ioctl payload
862  * @size:               Overall size of this structure
863  * @flags:              Flags for this ioctl, userspace → kernel
864  * @return_flags:       Ioctl return flags, kernel → userspace
865  * @items:              Additional items to modify the behavior
866  *
867  * This is a generic ioctl payload object. It's used by all ioctls that only
868  * take flags and items as input.
869  */
870 struct kdbus_cmd {
871         __u64 size;
872         __u64 flags;
873         __u64 return_flags;
874         struct kdbus_item items[0];
875 } __attribute__((__aligned__(8)));
876
877 /**
878  * Ioctl API
879  *
880  * KDBUS_CMD_BUS_MAKE:          After opening the "control" node, this command
881  *                              creates a new bus with the specified
882  *                              name. The bus is immediately shut down and
883  *                              cleaned up when the opened file descriptor is
884  *                              closed.
885  *
886  * KDBUS_CMD_ENDPOINT_MAKE:     Creates a new named special endpoint to talk to
887  *                              the bus. Such endpoints usually carry a more
888  *                              restrictive policy and grant restricted access
889  *                              to specific applications.
890  * KDBUS_CMD_ENDPOINT_UPDATE:   Update the properties of a custom enpoint. Used
891  *                              to update the policy.
892  *
893  * KDBUS_CMD_HELLO:             By opening the bus node, a connection is
894  *                              created. After a HELLO the opened connection
895  *                              becomes an active peer on the bus.
896  * KDBUS_CMD_UPDATE:            Update the properties of a connection. Used to
897  *                              update the metadata subscription mask and
898  *                              policy.
899  * KDBUS_CMD_BYEBYE:            Disconnect a connection. If there are no
900  *                              messages queued up in the connection's pool,
901  *                              the call succeeds, and the handle is rendered
902  *                              unusable. Otherwise, -EBUSY is returned without
903  *                              any further side-effects.
904  * KDBUS_CMD_FREE:              Release the allocated memory in the receiver's
905  *                              pool.
906  * KDBUS_CMD_CONN_INFO:         Retrieve credentials and properties of the
907  *                              initial creator of the connection. The data was
908  *                              stored at registration time and does not
909  *                              necessarily represent the connected process or
910  *                              the actual state of the process.
911  * KDBUS_CMD_BUS_CREATOR_INFO:  Retrieve information of the creator of the bus
912  *                              a connection is attached to.
913  *
914  * KDBUS_CMD_SEND:              Send a message and pass data from userspace to
915  *                              the kernel.
916  * KDBUS_CMD_RECV:              Receive a message from the kernel which is
917  *                              placed in the receiver's pool.
918  *
919  * KDBUS_CMD_NAME_ACQUIRE:      Request a well-known bus name to associate with
920  *                              the connection. Well-known names are used to
921  *                              address a peer on the bus.
922  * KDBUS_CMD_NAME_RELEASE:      Release a well-known name the connection
923  *                              currently owns.
924  * KDBUS_CMD_LIST:              Retrieve the list of all currently registered
925  *                              well-known and unique names.
926  *
927  * KDBUS_CMD_MATCH_ADD:         Install a match which broadcast messages should
928  *                              be delivered to the connection.
929  * KDBUS_CMD_MATCH_REMOVE:      Remove a current match for broadcast messages.
930  */
931 enum kdbus_ioctl_type {
932         /* bus owner (00-0f) */
933         KDBUS_CMD_BUS_MAKE =            _IOW(KDBUS_IOCTL_MAGIC, 0x00,
934                                              struct kdbus_cmd),
935
936         /* endpoint owner (10-1f) */
937         KDBUS_CMD_ENDPOINT_MAKE =       _IOW(KDBUS_IOCTL_MAGIC, 0x10,
938                                              struct kdbus_cmd),
939         KDBUS_CMD_ENDPOINT_UPDATE =     _IOW(KDBUS_IOCTL_MAGIC, 0x11,
940                                              struct kdbus_cmd),
941
942         /* connection owner (80-ff) */
943         KDBUS_CMD_HELLO =               _IOWR(KDBUS_IOCTL_MAGIC, 0x80,
944                                               struct kdbus_cmd_hello),
945         KDBUS_CMD_UPDATE =              _IOW(KDBUS_IOCTL_MAGIC, 0x81,
946                                              struct kdbus_cmd),
947         KDBUS_CMD_BYEBYE =              _IOW(KDBUS_IOCTL_MAGIC, 0x82,
948                                              struct kdbus_cmd),
949         KDBUS_CMD_FREE =                _IOW(KDBUS_IOCTL_MAGIC, 0x83,
950                                              struct kdbus_cmd_free),
951         KDBUS_CMD_CONN_INFO =           _IOR(KDBUS_IOCTL_MAGIC, 0x84,
952                                              struct kdbus_cmd_info),
953         KDBUS_CMD_BUS_CREATOR_INFO =    _IOR(KDBUS_IOCTL_MAGIC, 0x85,
954                                              struct kdbus_cmd_info),
955         KDBUS_CMD_LIST =                _IOR(KDBUS_IOCTL_MAGIC, 0x86,
956                                              struct kdbus_cmd_list),
957
958         KDBUS_CMD_SEND =                _IOW(KDBUS_IOCTL_MAGIC, 0x90,
959                                              struct kdbus_cmd_send),
960         KDBUS_CMD_RECV =                _IOR(KDBUS_IOCTL_MAGIC, 0x91,
961                                              struct kdbus_cmd_recv),
962
963         KDBUS_CMD_NAME_ACQUIRE =        _IOW(KDBUS_IOCTL_MAGIC, 0xa0,
964                                              struct kdbus_cmd),
965         KDBUS_CMD_NAME_RELEASE =        _IOW(KDBUS_IOCTL_MAGIC, 0xa1,
966                                              struct kdbus_cmd),
967
968         KDBUS_CMD_MATCH_ADD =           _IOW(KDBUS_IOCTL_MAGIC, 0xb0,
969                                              struct kdbus_cmd_match),
970         KDBUS_CMD_MATCH_REMOVE =        _IOW(KDBUS_IOCTL_MAGIC, 0xb1,
971                                              struct kdbus_cmd_match),
972 };
973
974 #endif /* _KDBUS_UAPI_H_ */