]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/libsystemd-bus/PORTING-DBUS1
bus: PORTING-DBUS1 update
[thirdparty/systemd.git] / src / libsystemd-bus / PORTING-DBUS1
CommitLineData
6206f4b4 1A few hints on supporting kdbus as backend in your favorite D-Bus library.
00586799
LP
2
3~~~
4
5Before you read this, have a look at the DIFFERENCES and
6GVARIANT_SERIALIZATION texts, you find in the same directory where you
7found this.
8
6206f4b4 9We invite you to port your favorite D-Bus protocol implementation
00586799 10over to kdbus. However, there are a couple of complexities
6206f4b4
KS
11involved. On kdbus we only speak GVariant marshaling, kdbus clients
12ignore traffic in dbus1 marshaling. Thus, you need to add a second,
13GVariant compatible marshaler to your libary first.
00586799
LP
14
15After you have done that: here's the basic principle how kdbus works:
16
17You connect to a bus by opening its bus node in /dev/kdbus/. All
6206f4b4 18buses have a device node there, that starts with a numeric UID of the
00586799
LP
19owner of the bus, followed by a dash and a string identifying the
20bus. The system bus is thus called /dev/kdbus/0-system, and for user
6206f4b4 21buses the device node is /dev/kdbus/1000-user (if 1000 is your user
00586799
LP
22id).
23
24(Before we proceed, please always keep a copy of libsystemd-bus next
25to you, ultimately that's where the details are, this document simply
26is a rough overview to help you grok things.)
27
28CONNECTING
29
30To connect to a bus, simply open() its device node, and issue the
31KDBUS_CMD_HELLO call. That's it. Now you are connected. Do not send
32Hello messages or so (as you would on dbus1), that does not exist for
33kdbus.
34
35The structure you pass to the ioctl will contain a couple of
36parameters that you need to know to operate on the bus.
37
38There are two flags fields, one indicating features of the kdbus
39kernel side ("conn_flags"), the other one ("bus_flags") indicating
40features of the bus owner (i.e. systemd). Both flags fields are 64bit
41in width.
42
43When calling into the ioctl, you need to place your own supported
44feature bits into these fields. This tells the kernel about the
061eab67 45features you support. When the ioctl returns, it will contain the
00586799
LP
46features the kernel supports.
47
48If any of the higher 32bit are set on the two flags fields and your
49client does not know what they mean, it must disconnect. The upper
5032bit are used to indicate "incompatible" feature additions on the bus
51system, the lower 32bit indicate "compatible" feature additions. A
52client that does not support a "compatible" feature addition can go on
53communicating with the bus, however a client that does not support an
54"incompatible" feature must not proceed with the connection.
55
56The hello structure also contains another flags field "attach_flags"
061eab67 57which indicates meta data that is optionally attached to all incoming
00586799
LP
58messages. You probably want to set KDBUS_ATTACH_NAMES unconditionally
59in it. This has the effect that all well-known names of a sender are
60attached to all incoming messages. You need this information to
61implement matches that match on a message sender name correctly. Of
061eab67 62course, you should only request the attachment of as little metadata
00586799
LP
63fields as you need.
64
65The kernel will return in the "id" field your unique id. This is a
66simple numeric value. For compatibility with classic dbus1 simply
67format this as string and prefix ":0.".
68
69The kernel will also return the bloom filter size used for the signal
70broadcast bloom filter (see below).
71
72The kernel will also return the bus ID of the bus in an 128bit field.
73
061eab67 74The pool size field specifies the size of the memory mapped buffer,
6206f4b4 75where received messages are placed by the kernel.
00586799
LP
76
77After the calling the hello ioctl, you should memory map the kdbus
78fd. Use the pool size returned by the hello ioctl as map size. In this
79memory mapped region the kernel will place all your incoming messages.
80
81SENDING MESSAGES
82
83Use the MSG_SEND ioctl to send a message to another peer. The ioctl
84takes a structure that contains a variety of fields:
85
86The flags field corresponds closely to the old dbus1 message header
87flags field, though the DONT_EXPECT_REPLY field got inverted into
88EXPECT_REPLY.
89
90The dst_id/src_id field contains the unique id of the destination and
6206f4b4 91the sender. The sender field is overridden by the kernel usually, hence
00586799
LP
92you shouldn't fill it in. The destination field can also take the
93special value KDBUS_DST_ID_BROADCAST for broadcast messages. For
94messages intended to a well-known name set the field to
95KDBUS_DST_ID_NAME, and attach the name in a special "items" entry to
96the message (see below).
97
98The payload field indicates the payload. For all dbus traffic it
99should carry the value 0x4442757344427573ULL. (Which encodes
100'DBusDBus').
101
102The cookie field corresponds with the "serial" field of classic
103dbus1. We simply renamed it here (and extended it to 64bit) since we
104didn't want to imply the monotonicity of the assignment the way the
105word "serial" indicates it.
106
107When sending a message that expects a reply, you need to set the
108EXPECT_REPLY flag in the message flag field. In this case you should
109also fill out the "timeout_ns" value which indicates the timeout in
110nsec for this call. If the peer does not respond in this time you will
6206f4b4 111get a notification of a timeout. Note that this is also used for
00586799
LP
112security purposes: a single reply messages is only allowed through the
113bus as long as the timeout has not ended. With this timeout value you
114hence "open a time window" in which the peer might respond to your
115request and the policy allows the response to go through.
116
117When sending a message that is a reply, you need to fill in the
118cookie_reply field, which is similar to the reply_serial field of
119dbus1. Note that a message cannot have EXPECT_REPLY and a reply_serial
120at the same time!
121
122This pretty much explains the ioctl header. The actual payload of the
123data is now referenced in additional items that are attached to this
124ioctl header structure at the end. When sending a message, you attach
125items of the type PAYLOAD_VEC, PAYLOAD_MEMFD, FDS, BLOOM, DST_NAME to
126it:
127
128 KDBUS_ITEM_PAYLOAD_VEC: contains a pointer + length pair for
129 referencing arbitrary user memory. This is how you reference most
130 of your data. It's a lot like the good old iovec structure of glibc.
131
6206f4b4
KS
132 KDBUS_ITEM_PAYLOAD_MEMFD: for large data blocks it is preferable
133 to send prepared "memfds" (see below) over. This item contains an
00586799
LP
134 fd for a memfd plus a size.
135
136 KDBUS_ITEM_PAYLOAD_FDS: for sending over fds attach an item of this
137 type with an array of fds.
138
139 KDBUS_ITEM_BLOOM: the calculated bloom filter of this message, only
6206f4b4 140 for undirected (broadcast) message.
00586799
LP
141
142 KDBUS_DST_NAME: for messages that are directed to a well-known name
143 (instead of a unique name), this item contains the well-known name
144 field.
145
6206f4b4 146A single message may consists of no, one or more payload items of type
00586799
LP
147PAYLOAD_VEC or PAYLOAD_MEMFD. D-Bus protocol implementations should
148treat them as a single block that just happens to be split up into
149multiple items. Some restrictions apply however:
150
151 The message header in its entirety must be contained in a single
6206f4b4 152 PAYLOAD_VEC item.
00586799 153
6206f4b4 154 You may only split your message up right in front of each GVariant
061eab67 155 contained in the payload, as well is immediately before framing of a
00586799
LP
156 Gvariant, as well after as any padding bytes if there are any. The
157 padding bytes must be wholly contained in the preceding
158 PAYLOAD_VEC/PAYLOAD_MEMFD item. You may not split up simple types
159 nor arrays of trivial types. The latter is necessary to allow APIs
160 to return direct pointers to linear chunks of fixed size trivial
161 arrays. Examples: The simple types "u", "s", "t" have to be in the
162 same payload item. The array of simple types "ay", "ai" have to be
163 fully in contained in the same payload item. For an array "as" or
164 "a(si)" the only restriction however is to keep each string
165 individually in an uninterrupted item, to keep the framing of each
166 element and the array in a single uninterrupted item, however the
167 various strings might end up in different items.
168
061eab67 169Note again, that splitting up messages into separate items is up to the
00586799 170implementation. Also note that the kdbus kernel side might merge
6206f4b4 171separate items if it deems this to be useful. However, the order in
00586799
LP
172which items are contained in the message is left untouched.
173
174PAYLOAD_MEMFD items allow zero-copy data transfer (see below regarding
175the memfd concept). Note however that the overhead of mapping these
176makes them relatively expensive, and only worth the trouble for memory
177blocks > 128K (this value appears to be quite universal across
178architectures, as we tested). Thus we recommend sending PAYLOAD_VEC
179items over for small messages and restore to PAYLOAD_MEMFD items for
180messages > 128K. Since while building up the message you might not
181know yet whether it will grow beyond this boundary a good approach is
182to simply build the message unconditionally in a memfd
183object. However, when the message is sealed to be sent away check for
184the size limit. If the size of the message is < 128K, then simply send
185the data as PAYLOAD_VEC and reuse the memfd. If it is >= 128K, seal
186the memfd and send it as PAYLOAD_MEMFD, and allocate a new memfd for
187the next message.
188
189RECEIVING MESSAGES
190
191Use the MSG_RECV ioctl to read a message from kdbus. This will return
192an offset into the pool memory map, relative to its beginning.
193
194The received message structure more or less follows the structure of
195the message originally sent. However, certain changes have been
196made. In the header the src_id field will be filled in.
197
198The payload items might have gotten merged and PAYLOAD_VEC items are
061eab67 199not used. Instead, you will only find PAYLOAD_OFF and PAYLOAD_MEMFD
00586799
LP
200items. The former contain an offset and size into your memory mapped
201pool where you find the payload.
202
203If during the HELLO ioctl you asked for getting meta data attached to
061eab67 204your message, you will find additional KDBUS_ITEM_CREDS,
00586799
LP
205KDBUS_ITEM_PID_COMM, KDBUS_ITEM_TID_COMM, KDBUS_ITEM_TIMESTAMP,
206KDBUS_ITEM_EXE, KDBUS_ITEM_CMDLINE, KDBUS_ITEM_CGROUP,
207KDBUS_ITEM_CAPS, KDBUS_ITEM_SECLABEL, KDBUS_ITEM_AUDIT items that
061eab67
KS
208contain this metadata. This metadata will be gathered from the sender
209at the point in time it sends the message. This information is
210uncached, and since it is appended by the kernel, trustable. The
211KDBUS_ITEM_SECLABEL item usually contains the SELinux security label,
00586799
LP
212if it is used.
213
214After processing the message you need to call the KDBUS_CMD_FREE
215ioctl, which releases the message from the pool, and allows the kernel
216to store another message there. Note that the memory used by the pool
061eab67 217is ordinary anonymous, swappable memory that is backed by tmpfs. Hence
00586799
LP
218there is no need to copy the message out of it quickly, instead you
219can just leave it there as long as you need it and release it via the
220FREE ioctl only after that's done.
221
222BLOOM FILTERS
223
6206f4b4 224The kernel does not understand dbus marshaling, it will not look into
00586799 225the message payload. To allow clients to subscribe to specific subsets
6206f4b4 226of the broadcast matches we employ bloom filters.
00586799 227
061eab67 228When broadcasting messages, a bloom filter needs to be attached to the
00586799
LP
229message in a KDBUS_ITEM_BLOOM item (and only for broadcasting
230messages!). If you don't know what bloom filters are, read up now on
231Wikipedia. In short: they are a very efficient way how to
232probabilistically check whether a certain word is contained in a
233vocabulary. It knows no false negatives, but it does know false
234positives.
235
236The bloom filter that needs to be included has the parameters m=512
237(bits in the filter), k=8 (nr of hash functions). The underlying hash
238function is SipHash-2-4. We calculate two hash values for an input
239strings, one with the hash key b9660bf0467047c18875c49c54b9bd15 (this
240is supposed to be read as a series of 16 hexadecimially formatted
241bytes), and one with the hash key
242aaa154a2e0714b39bfe1dd2e9fc54a3b. This results in two 64bit hash
243values, A and B. The 8 hash functions for the bloom filter require a 9
244bit output each (since m=512=2^9), to generate these we XOR combine
245the first 8 bit of A shifted to the left by 1, with the first 8 bit of
246B. Then, for the next hash function we use the second 8 bit pair, and
247so on.
248
249For each message to send across the bus we populate the bloom filter
250with all possible matchable strings. If a client then wants to
061eab67 251subscribe to messages of this type, it simply tells the kernel to test
00586799
LP
252its own calculated bit mask against the bloom filter of each message.
253
061eab67
KS
254More specifically, the following strings are added to the bloom filter
255of each message that is broadcasted:
00586799
LP
256
257 The string "interface:" suffixed by the interface name
258
259 The string "member:" suffixed by the member name
260
261 The string "path:" suffixed by the path name
262
263 The string "path-slash-prefix:" suffixed with the path name, and
264 also all prefixes of the path name (cut off at "/"), also prefixed
265 with "path-slash-prefix".
266
267 The string "message-type:" suffixed with the strings "signal",
268 "method_call", "error" or "method_return" for the respective message
269 type of the message.
270
271 If the first argument of the message is a string, "arg0:" suffixed
272 with the first argument.
273
274 If the first argument of the message is a string, "arg0-dot-prefix"
275 suffixed with the first argument, and also all prefixes of the
276 argument (cut off at "."), also prefixed with "arg0-dot-prefix".
277
278 If the first argument of the message is a string,
279 "arg0-slash-prefix" suffixed with the first argument, and also all
280 prefixes of the argument (cut off at "/"), also prefixed with
281 "arg0-slash-prefix".
282
283 Similar for all further arguments that are strings up to 63, for the
284 arguments and their "dot" and "slash" prefixes. On the first
061eab67 285 argument that is not a string, addition to the bloom filter should be
00586799
LP
286 stopped however.
287
061eab67 288(Note that the bloom filter does not contain sender nor receiver
00586799
LP
289names!)
290
291When a client wants to subscribe to messages matching a certain
061eab67 292expression, it should calculate the bloom mask following the same
6206f4b4 293algorithm. The kernel will then simply test the mask against the
00586799
LP
294attached bloom filters.
295
296Note that bloom filters are probabilistic, which means that clients
6206f4b4 297might get messages they did not expect. Your bus protocol
00586799
LP
298implementation must be capable of dealing with these unexpected
299messages (which it needs to anyway, given that transfers are
300relatively unrestricted on kdbus and people can send you all kinds of
061eab67 301non-sense).
00586799
LP
302
303INSTALLING MATCHES
304
061eab67 305To install matches for broadcast messages, use the KDBUS_CMD_ADD_MATCH
00586799
LP
306ioctl. It takes a structure that contains an encoded match expression,
307and that is followed by one or more items, which are combined in an
061eab67 308AND way. (Meaning: a message is matched exactly when all items
00586799
LP
309attached to the original ioctl struct match).
310
311To match against other user messages add a KDBUS_ITEM_BLOOM item in
312the match (see above). Note that the bloom filter does not include
313matches to the sender names. To additionally check against sender
314names, use the KDBUS_ITEM_ID (for unique id matches) and
315KDBUS_ITEM_NAME (for well-known name matches) item types.
316
317To match against kernel generated messages (see below) you should add
318items of the same type as the kernel messages include,
319i.e. KDBUS_ITEM_NAME_ADD, KDBUS_ITEM_NAME_REMOVE,
320KDBUS_ITEM_NAME_CHANGE, KDBUS_ITEM_ID_ADD, KDBUS_ITEM_ID_REMOVE and
321fill them out. Note however, that you have some wildcards in this
322case, for example the .id field of KDBUS_ITEM_ADD/KDBUS_ITEM_REMOVE
323structures may be set to 0 to match against any id addition/removal.
324
325Note that dbus match strings do no map 1:1 to these ioctl() calls. In
326many cases (where the match string is "underspecified") you might need
327to issue up to six different ioctl() calls for the same match. For
328example, the empty match (which matches against all messages), would
329translate into one KDBUS_ITEM_BLOOM ioctl, one KDBUS_ITEM_NAME_ADD,
330one KDBUS_ITEM_NAME_CHANGE, one KDBUS_ITEM_NAME_REMOVE, one
331KDBUS_ITEM_ID_ADD and one KDBUS_ITEM_ID_REMOVE.
332
061eab67
KS
333When creating a match, you may attach a "cookie" value to them, which
334is used for deleting this match again. The cookie can be selected freely
335by the client. When issuing KDBUS_CMD_REMOVE_MATCH, simply pass the
00586799 336same cookie as before and all matches matching the same "cookie" value
6206f4b4 337will be removed. This is particularly handy for the case where multiple
00586799
LP
338ioctl()s are added for a single match strings.
339
340MEMFDS
341
342The "memfd" concept is used for zero-copy data transfers (see
343above). memfds are file descriptors to memory chunks of arbitrary
344sizes. If you have a memfd you can mmap() it to get access to the data
345it contains or write to it. They are comparable to file descriptors to
346unlinked files on a tmpfs, or to anonymous memory that one may refer
347to with an fd. They have one particular property: they can be
348"sealed". A memfd that is "sealed" is protected from alteration. Only
349memfds that are currently not mapped and to which a single fd refers
350may be sealed (they may also be unsealed in that case).
351
352The concept of "sealing" makes memfds useful for using them as
353transport for kdbus messages: only when the receiver knows that the
061eab67
KS
354message it has received cannot change while looking at, it can safely
355parse it without having to copy it to a safe memory area. memfds can also
00586799 356be reused in multiple messages. A sender may send the same memfd to
061eab67 357multiple peers, and since it is sealed, it can be sure that the receiver
00586799 358will not be able to modify it. "Sealing" hence provides both sides of
6206f4b4 359a transaction with the guarantee that the data stays constant and is
00586799
LP
360reusable.
361
362memfds are a generic concept that can be used outside of the immediate
363kdbus usecase. You can send them across AF_UNIX sockets too, sealed or
061eab67 364unsealed. In kdbus themselves, they can be used to send zero-copy
00586799
LP
365payloads, but may also be sent as normal fds.
366
061eab67
KS
367memfds are allocated with the KDBUS_CMD_MEMFD_NEW ioctl. After allocation,
368simply memory map them and write to them. To set their size, use
6206f4b4 369KDBUS_CMD_MEMFD_SIZE_SET. Note that memfds will be increased in size
00586799
LP
370automatically if you touch previously unallocated pages. However, the
371size will only be increased in multiples of the page size in that
372case. Thus, in almost all cases, an explicitl KDBUS_CMD_MEMFD_SIZE_SET
373is necessary, since it allows setting memfd sizes in finer
374granularity. To seal a memfd use the KDBUS_CMD_MEMFD_SEAL_SET ioctl
061eab67 375call. It will only succeed if the caller has the only fd reference to
00586799
LP
376the memfd open, and if the memfd is currently unmapped.
377
061eab67
KS
378If memfds are shared, keep in mind that the file pointer used by
379write/read/seek is shared too, only pread/pwrite are safe to use
380in that case.
381
00586799 382memfds may be sent across kdbus via KDBUS_ITEM_PAYLOAD_MEMFD items
061eab67 383attached to messages. If this is done, the data included in the memfd
00586799
LP
384is considered part of the payload stream of a message, and are treated
385the same way as KDBUS_ITEM_PAYLOAD_VEC by the receiving side. It is
386possible to interleave KDBUS_ITEM_PAYLOAD_MEMFD and
387KDBUS_ITEM_PAYLOAD_VEC items freely, by the reader they will be
388considered a single stream of bytes in the order these items appear in
389the message, that just happens to be split up at various places
390(regarding rules how they may be split up, see above). The kernel will
391refuse taking KDBUS_ITEM_PAYLOAD_MEMFD items that refer to memfds that
392are not sealed.
393
394Note that sealed memfds may be unsealed again if they are not mapped
395you have the only fd reference to them.
396
397Alternatively to sending memfds as KDBUS_ITEM_PAYLOAD_MEMFD items
061eab67
KS
398(where they are just a part of the payload stream of a message) you can
399also simply attach any memfd to a message using
400KDBUS_ITEM_PAYLOAD_FDS. In this case, the memfd contents is not
00586799 401considered part of the payload stream of the message, but simply fds
061eab67 402like any other, that happen to be attached to the message.
00586799
LP
403
404MESSAGES FROM THE KERNEL
405
6206f4b4 406A couple of messages previously generated by the dbus1 bus driver are
00586799 407now generated by the kernel. Since the kernel does not understand the
061eab67
KS
408payload marshaling, they are generated by the kernel in a different
409format. This is indicated with a the "payload type" field of the
00586799
LP
410messages set to 0. Library implementations should take these messages
411and synthesize traditional driver messages for them on reception.
412
413More specifically:
414
415 Instead of the NameOwnerChanged, NameLost, NameAcquired signals
416 there are kernel messages containing KDBUS_ITEM_NAME_ADD,
417 KDBUS_ITEM_NAME_REMOVE, KDBUS_ITEM_NAME_CHANGE, KDBUS_ITEM_ID_ADD,
418 KDBUS_ITEM_ID_REMOVE items are generated (each message will contain
061eab67 419 exactly one of these items). Note that in libsystemd-bus we have
00586799
LP
420 obsoleted NameLost/NameAcquired messages, since they are entirely
421 redundant to NameOwnerChanged. This library will hence only
422 synthesize NameOwnerChanged messages from these kernel messages,
061eab67 423 and never generate NameLost/NameAcquired. If your library needs to
00586799
LP
424 stay compatible to the old dbus1 userspace, you possibly might need
425 to synthesize both a NameOwnerChanged and NameLost/NameAcquired
426 message from the same kernel message.
427
061eab67 428 When a method call times out, a KDBUS_ITEM_REPLY_TIMEOUT message is
00586799
LP
429 generated. This should be synthesized into a method error reply
430 message to the original call.
431
432 When a method call fails because the peer terminated the connection
061eab67 433 before responding, a KDBUS_ITEM_REPLY_DEAD message is
6206f4b4 434 generated. Simiarly, it should be synthesized into a method error
00586799
LP
435 reply message.
436
437For synthesized messages we recommend setting the cookie field to
438(uint32_t) -1 (and not (uint64_t) -1!), so that the cookie is not 0
439(which the dbus1 spec does not allow), but clearly recognizable as
440synthetic.
441
442Note that the KDBUS_ITEM_NAME_XYZ messages will actually inform you
443about all kinds of names, including activatable ones. Classic dbus1
444NameOwnerChanged messages OTOH are only generated when a name is
445really acquired on the bus and not just simply activatable. This means
6206f4b4 446you must explicitly check for the case where an activatable name
00586799
LP
447becomes acquired or an acquired name is lost and returns to be
448activatable.
449
450NAME REGISTRY
451
061eab67 452To acquire names on the bus, use the KDBUS_CMD_NAME_ACQUIRE ioctl(). It
00586799
LP
453takes a flags field similar to dbus1's RequestName() bus driver call,
454however the NO_QUEUE flag got inverted into a QUEUE flag instead.
455
6206f4b4 456To release a previously acquired name use the KDBUS_CMD_NAME_RELEASE
00586799
LP
457ioctl().
458
459To list acquired names use the KDBUS_CMD_CONN_INFO ioctl. It may be
460used to list unique names, well known names as well as activatable
6206f4b4 461names and clients currently queuing for ownership of a well-known
00586799 462name. The ioctl will return an offset into the memory pool. After
061eab67 463reading all the data you need, you need to release this via the
00586799
LP
464KDBUS_CMD_FREE ioctl(), similar how you release a received message.
465
00586799
LP
466CREDENTIALS
467
061eab67 468kdbus can optionally attach various kinds of metadata about the sender at
00586799
LP
469the point of time of sending ("credentials") to messages, on request
470of the receiver. This is both supported on directed and undirected
471(broadcast) messages. The metadata to attach is selected at time of
472the HELLO ioctl of the receiver via a flags field (see above). Note
473that clients must be able to handle that messages contain more
474metadata than they asked for themselves, to simplify implementation of
475broadcasting in the kernel. The receiver should not rely on this data
476to be around though, even though it will be correct if it happens to
061eab67 477be attached. In order to avoid programming errors in applications, we
00586799
LP
478recommend though not to pass this data on to clients that did not
479explicitly ask for it.
480
481Credentials may also be queried for a well-known or unique name. Use
482the KDBUS_CMD_CONN_INFO for this. It will return an offset to the pool
483area again, which will contain the same credential items as messages
061eab67
KS
484have attached. Note that when issuing the ioctl, you can select a
485different set of credentials to gather, than what was originally requested
00586799
LP
486for being attached to incoming messages.
487
488Credentials are always specific to the sender namespace that was
6206f4b4 489current at the time of sending, and of the process that opened the
00586799
LP
490bus connection at the time of opening it. Note that this latter data
491is cached!
492
493POLICY
494
495The kernel enforces only very limited policy on names. It will not do
496access filtering by userspace payload, and thus not by interface or
497method name.
498
6206f4b4 499This ultimately means that most fine-grained policy enforcement needs
00586799
LP
500to be done by the receiving process. We recommend using PolicyKit for
501any more complex checks. However, libraries should make simple static
502policy decisions regarding privileged/unprivileged method calls
503easy. We recommend doing this by enabling KDBUS_ATTACH_CAPS and
504KDBUS_ATTACH_CREDS for incoming messages, and then discerning client
061eab67 505access by some capability, or if sender and receiver UIDs match.
00586799
LP
506
507BUS ADDRESSES
508
509When connecting to kdbus use the "kernel:" protocol prefix in DBus
510address strings. The device node path is encoded in its "path="
511parameter.
512
513Client libraries should use the following connection string when
514connecting to the system bus:
515
516 kernel:path=/dev/kdbus/0-system/bus;unix:path=/run/dbus/system_bus_socket
517
518This will ensure that kdbus is preferred over the legacy AF_UNIX
519socket, but compatibility is kept. For the user bus use:
520
521 kernel:path=/dev/kdbus/$UID-system/bus;unix:path=$XDG_RUNTIME_DIR/bus
522
523With $UID replaced by the callers numer user ID, and $XDG_RUNTIME_DIR
524following the XDG basedir spec.
525
526Of course the $DBUS_SYSTEM_BUS_ADDRESS and $DBUS_SESSION_BUS_ADDRESS
527variables should still take precedence.
528
9129246b
LP
529DBUS SERVICE FILES
530
531Activatable services for kdbus may not use classic dbus1 service
532activation files. Instead, programs should drop in native systemd
533.service and .busname unit files, so that they are treated uniformly
534with other types of units and activation of the system.
535
536Note that this results in a major difference to classic dbus1:
061eab67
KS
537activatable bus names can be established at any time in the boot process.
538This is unlike dbus1 where activatable names are unconditionally available
9129246b
LP
539as long as dbus-daemon is running. Being able to control when
540activatable names are established is essential to allow usage of kdbus
541during early boot and in initrds, without the risk of triggering
542services too early.
543
00586799
LP
544DISCLAIMER
545
061eab67 546This all is so far just the status quo. We are putting this together, because
00586799
LP
547we are quite confident that further API changes will be smaller, but
548to make this very clear: this is all subject to change, still!
549
6206f4b4 550We invite you to port over your favorite dbus library to this new
00586799
LP
551scheme, but please be prepared to make minor changes when we still
552change these interfaces!