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