Updated man docbook xml sources from man page source using doclifter.
[platform/upstream/dbus.git] / doc / dbus-daemon.1.xml.in
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.4//EN"
3                    "http://www.oasis-open.org/docbook/xml/4.4/docbookx.dtd">
4 <!-- lifted from troff+man by doclifter -->
5 <refentry id='dbusdaemon1in'>
6
7 <!--  dbus&bsol;-daemon manual page.
8  Copyright (C) 2003,2008 Red Hat, Inc. -->
9
10 <refmeta>
11 <refentrytitle>dbus-daemon</refentrytitle>
12 <manvolnum>1</manvolnum>
13 </refmeta>
14 <refnamediv>
15 <refname>dbus-daemon</refname>
16 <refpurpose>Message bus daemon</refpurpose>
17 </refnamediv>
18 <!-- body begins here -->
19 <refsynopsisdiv id='synopsis'>
20 <cmdsynopsis>
21   <command>dbus-daemon</command></cmdsynopsis>
22 <cmdsynopsis>
23   <command>dbus-daemon</command>    <arg choice='opt'>--version </arg>
24     <arg choice='opt'>--session </arg>
25     <arg choice='opt'>--system </arg>
26     <arg choice='opt'>--config-file=<replaceable>FILE</replaceable></arg>
27     <arg choice='opt'><arg choice='plain'>--print-address </arg><arg choice='opt'><replaceable>=DESCRIPTOR</replaceable></arg></arg>
28     <arg choice='opt'><arg choice='plain'>--print-pid </arg><arg choice='opt'><replaceable>=DESCRIPTOR</replaceable></arg></arg>
29     <arg choice='opt'>--fork </arg>
30     <sbr/>
31 </cmdsynopsis>
32 </refsynopsisdiv>
33
34
35 <refsect1 id='description'><title>DESCRIPTION</title>
36 <para><command>dbus-daemon</command> is the D-Bus message bus daemon. See
37 <ulink url='http://www.freedesktop.org/software/dbus/'>http://www.freedesktop.org/software/dbus/</ulink> for more information about
38 the big picture. D-Bus is first a library that provides one-to-one
39 communication between any two applications; <command>dbus-daemon</command> is an
40 application that uses this library to implement a message bus
41 daemon. Multiple programs connect to the message bus daemon and can
42 exchange messages with one another.</para>
43
44 <para>There are two standard message bus instances: the systemwide message bus
45 (installed on many systems as the "messagebus" init service) and the
46 per-user-login-session message bus (started each time a user logs in).
47 <command>dbus-daemon</command> is used for both of these instances, but with
48 a different configuration file.</para>
49
50 <para>The --session option is equivalent to
51 "--config-file=@EXPANDED_SYSCONFDIR@/dbus-1/session.conf" and the --system
52 option is equivalent to
53 "--config-file=@EXPANDED_SYSCONFDIR@/dbus-1/system.conf". By creating
54 additional configuration files and using the --config-file option,
55 additional special-purpose message bus daemons could be created.</para>
56
57 <para>The systemwide daemon is normally launched by an init script,
58 standardly called simply "messagebus".</para>
59
60 <para>The systemwide daemon is largely used for broadcasting system events,
61 such as changes to the printer queue, or adding/removing devices.</para>
62
63 <para>The per-session daemon is used for various interprocess communication
64 among desktop applications (however, it is not tied to X or the GUI
65 in any way).</para>
66
67 <para>SIGHUP will cause the D-Bus daemon to PARTIALLY reload its
68 configuration file and to flush its user/group information caches. Some
69 configuration changes would require kicking all apps off the bus; so they will
70 only take effect if you restart the daemon. Policy changes should take effect
71 with SIGHUP.</para>
72
73 </refsect1>
74
75 <refsect1 id='options'><title>OPTIONS</title>
76 <para>The following options are supported:</para>
77 <variablelist remap='TP'>
78   <varlistentry>
79   <term><option>--config-file=FILE</option></term>
80   <listitem>
81 <para>Use the given configuration file.</para>
82   </listitem>
83   </varlistentry>
84   <varlistentry>
85   <term><option>--fork</option></term>
86   <listitem>
87 <para>Force the message bus to fork and become a daemon, even if
88 the configuration file does not specify that it should.
89 In most contexts the configuration file already gets this
90 right, though.
91 <option>--nofork</option>
92 Force the message bus not to fork and become a daemon, even if
93 the configuration file specifies that it should.</para>
94   </listitem>
95   </varlistentry>
96   <varlistentry>
97   <term><option>--print-address[=DESCRIPTOR]</option></term>
98   <listitem>
99 <para>Print the address of the message bus to standard output, or
100 to the given file descriptor. This is used by programs that
101 launch the message bus.</para>
102   </listitem>
103   </varlistentry>
104   <varlistentry>
105   <term><option>--print-pid[=DESCRIPTOR]</option></term>
106   <listitem>
107 <para>Print the process ID of the message bus to standard output, or
108 to the given file descriptor. This is used by programs that
109 launch the message bus.</para>
110   </listitem>
111   </varlistentry>
112   <varlistentry>
113   <term><option>--session</option></term>
114   <listitem>
115 <para>Use the standard configuration file for the per-login-session message
116 bus.</para>
117   </listitem>
118   </varlistentry>
119   <varlistentry>
120   <term><option>--system</option></term>
121   <listitem>
122 <para>Use the standard configuration file for the systemwide message bus.</para>
123   </listitem>
124   </varlistentry>
125   <varlistentry>
126   <term><option>--version</option></term>
127   <listitem>
128 <para>Print the version of the daemon.</para>
129   </listitem>
130   </varlistentry>
131   <varlistentry>
132   <term><option>--introspect</option></term>
133   <listitem>
134 <para>Print the introspection information for all D-Bus internal interfaces.</para>
135   </listitem>
136   </varlistentry>
137   <varlistentry>
138   <term><option>--address[=ADDRESS]</option></term>
139   <listitem>
140 <para>Set the address to listen on. This option overrides the address
141 configured in the configuration file.</para>
142   </listitem>
143   </varlistentry>
144   <varlistentry>
145   <term><option>--systemd-activation</option></term>
146   <listitem>
147 <para>Enable systemd-style service activation. Only useful in conjunction
148 with the systemd system and session manager on Linux.</para>
149   </listitem>
150   </varlistentry>
151   <varlistentry>
152   <term><option>--nopidfile</option></term>
153   <listitem>
154 <para>Don't write a PID file even if one is configured in the configuration
155 files.</para>
156
157   </listitem>
158   </varlistentry>
159 </variablelist>
160 </refsect1>
161
162 <refsect1 id='configuration_file'><title>CONFIGURATION FILE</title>
163 <para>A message bus daemon has a configuration file that specializes it
164 for a particular application. For example, one configuration
165 file might set up the message bus to be a systemwide message bus,
166 while another might set it up to be a per-user-login-session bus.</para>
167
168 <para>The configuration file also establishes resource limits, security
169 parameters, and so forth.</para>
170
171 <para>The configuration file is not part of any interoperability
172 specification and its backward compatibility is not guaranteed; this
173 document is documentation, not specification.</para>
174
175 <para>The standard systemwide and per-session message bus setups are
176 configured in the files "@EXPANDED_SYSCONFDIR@/dbus-1/system.conf" and
177 "@EXPANDED_SYSCONFDIR@/dbus-1/session.conf".  These files normally
178 &lt;include&gt; a system-local.conf or session-local.conf; you can put local
179 overrides in those files to avoid modifying the primary configuration
180 files.</para>
181
182
183 <para>The configuration file is an XML document. It must have the following
184 doctype declaration:</para>
185 <literallayout remap='.nf'>
186
187    &lt;!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-Bus Bus Configuration 1.0//EN"
188     "<ulink url='http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd'>http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd</ulink>"&gt;
189
190 </literallayout> <!-- .fi -->
191
192
193 <para>The following elements may be present in the configuration file.</para>
194
195 <itemizedlist remap='TP'>
196
197   <listitem><para><emphasis remap='I'>&lt;busconfig&gt;</emphasis></para></listitem>
198
199
200 </itemizedlist>
201
202 <para>Root element.</para>
203
204 <itemizedlist remap='TP'>
205
206   <listitem><para><emphasis remap='I'>&lt;type&gt;</emphasis></para></listitem>
207
208
209 </itemizedlist>
210
211 <para>The well-known type of the message bus. Currently known values are
212 "system" and "session"; if other values are set, they should be
213 either added to the D-Bus specification, or namespaced.  The last
214 &lt;type&gt; element "wins" (previous values are ignored). This element
215 only controls which message bus specific environment variables are
216 set in activated clients.  Most of the policy that distinguishes a
217 session bus from the system bus is controlled from the other elements
218 in the configuration file.</para>
219
220
221 <para>If the well-known type of the message bus is "session", then the
222 DBUS_STARTER_BUS_TYPE environment variable will be set to "session"
223 and the DBUS_SESSION_BUS_ADDRESS environment variable will be set
224 to the address of the session bus.  Likewise, if the type of the
225 message bus is "system", then the DBUS_STARTER_BUS_TYPE environment
226 variable will be set to "system" and the DBUS_SESSION_BUS_ADDRESS
227 environment variable will be set to the address of the system bus
228 (which is normally well known anyway).</para>
229
230
231 <para>Example: &lt;type&gt;session&lt;/type&gt;</para>
232
233 <itemizedlist remap='TP'>
234
235   <listitem><para><emphasis remap='I'>&lt;include&gt;</emphasis></para></listitem>
236
237
238 </itemizedlist>
239
240 <para>Include a file &lt;include&gt;filename.conf&lt;/include&gt; at this point.  If the
241 filename is relative, it is located relative to the configuration file
242 doing the including.</para>
243
244
245 <para>&lt;include&gt; has an optional attribute "ignore_missing=(yes|no)"
246 which defaults to "no" if not provided. This attribute
247 controls whether it's a fatal error for the included file
248 to be absent.</para>
249
250 <itemizedlist remap='TP'>
251
252   <listitem><para><emphasis remap='I'>&lt;includedir&gt;</emphasis></para></listitem>
253
254
255 </itemizedlist>
256
257 <para>Include all files in &lt;includedir&gt;foo.d&lt;/includedir&gt; at this
258 point. Files in the directory are included in undefined order.
259 Only files ending in ".conf" are included.</para>
260
261
262 <para>This is intended to allow extension of the system bus by particular
263 packages. For example, if CUPS wants to be able to send out
264 notification of printer queue changes, it could install a file to
265 @EXPANDED_SYSCONFDIR@/dbus-1/system.d that allowed all apps to receive
266 this message and allowed the printer daemon user to send it.</para>
267
268 <itemizedlist remap='TP'>
269
270   <listitem><para><emphasis remap='I'>&lt;user&gt;</emphasis></para></listitem>
271
272
273 </itemizedlist>
274
275 <para>The user account the daemon should run as, as either a username or a
276 UID. If the daemon cannot change to this UID on startup, it will exit.
277 If this element is not present, the daemon will not change or care
278 about its UID.</para>
279
280
281 <para>The last &lt;user&gt; entry in the file "wins", the others are ignored.</para>
282
283
284 <para>The user is changed after the bus has completed initialization.  So
285 sockets etc. will be created before changing user, but no data will be
286 read from clients before changing user. This means that sockets
287 and PID files can be created in a location that requires root
288 privileges for writing.</para>
289
290 <itemizedlist remap='TP'>
291
292   <listitem><para><emphasis remap='I'>&lt;fork&gt;</emphasis></para></listitem>
293
294
295 </itemizedlist>
296
297 <para>If present, the bus daemon becomes a real daemon (forks
298 into the background, etc.). This is generally used
299 rather than the --fork command line option.</para>
300
301 <itemizedlist remap='TP'>
302
303   <listitem><para><emphasis remap='I'>&lt;keep_umask&gt;</emphasis></para></listitem>
304
305
306 </itemizedlist>
307
308 <para>If present, the bus daemon keeps its original umask when forking.
309 This may be useful to avoid affecting the behavior of child processes.</para>
310
311 <itemizedlist remap='TP'>
312
313   <listitem><para><emphasis remap='I'>&lt;listen&gt;</emphasis></para></listitem>
314
315
316 </itemizedlist>
317
318 <para>Add an address that the bus should listen on. The
319 address is in the standard D-Bus format that contains
320 a transport name plus possible parameters/options.</para>
321
322
323 <para>Example: &lt;listen&gt;unix:path=/tmp/foo&lt;/listen&gt;</para>
324
325
326 <para>Example: &lt;listen&gt;tcp:host=localhost,port=1234&lt;/listen&gt;</para>
327
328
329 <para>If there are multiple &lt;listen&gt; elements, then the bus listens
330 on multiple addresses. The bus will pass its address to
331 started services or other interested parties with
332 the last address given in &lt;listen&gt; first. That is,
333 apps will try to connect to the last &lt;listen&gt; address first.</para>
334
335
336 <para>tcp sockets can accept IPv4 addresses, IPv6 addresses or hostnames.
337 If a hostname resolves to multiple addresses, the server will bind
338 to all of them. The family=ipv4 or family=ipv6 options can be used
339 to force it to bind to a subset of addresses</para>
340
341
342 <para>Example: &lt;listen&gt;tcp:host=localhost,port=0,family=ipv4&lt;/listen&gt;</para>
343
344
345 <para>A special case is using a port number of zero (or omitting the port),
346 which means to choose an available port selected by the operating
347 system. The port number chosen can be obtained with the
348 --print-address command line parameter and will be present in other
349 cases where the server reports its own address, such as when
350 DBUS_SESSION_BUS_ADDRESS is set.</para>
351
352
353 <para>Example: &lt;listen&gt;tcp:host=localhost,port=0&lt;/listen&gt;</para>
354
355
356 <para>tcp addresses also allow a bind=hostname option, which will override
357 the host option specifying what address to bind to, without changing
358 the address reported by the bus. The bind option can also take a
359 special name '*' to cause the bus to listen on all local address
360 (INADDR_ANY). The specified host should be a valid name of the local
361 machine or weird stuff will happen.</para>
362
363
364 <para>Example: &lt;listen&gt;tcp:host=localhost,bind=*,port=0&lt;/listen&gt;</para>
365
366 <itemizedlist remap='TP'>
367
368   <listitem><para><emphasis remap='I'>&lt;auth&gt;</emphasis></para></listitem>
369
370
371 </itemizedlist>
372
373 <para>Lists permitted authorization mechanisms. If this element doesn't
374 exist, then all known mechanisms are allowed.  If there are multiple
375 &lt;auth&gt; elements, all the listed mechanisms are allowed.  The order in
376 which mechanisms are listed is not meaningful.</para>
377
378
379 <para>Example: &lt;auth&gt;EXTERNAL&lt;/auth&gt;</para>
380
381
382 <para>Example: &lt;auth&gt;DBUS_COOKIE_SHA1&lt;/auth&gt;</para>
383
384 <itemizedlist remap='TP'>
385
386   <listitem><para><emphasis remap='I'>&lt;servicedir&gt;</emphasis></para></listitem>
387
388
389 </itemizedlist>
390
391 <para>Adds a directory to scan for .service files. Directories are
392 scanned starting with the last to appear in the config file
393 (the first .service file found that provides a particular
394 service will be used).</para>
395
396
397 <para>Service files tell the bus how to automatically start a program.
398 They are primarily used with the per-user-session bus,
399 not the systemwide bus.</para>
400
401 <itemizedlist remap='TP'>
402
403   <listitem><para><emphasis remap='I'>&lt;standard_session_servicedirs/&gt;</emphasis></para></listitem>
404
405
406 </itemizedlist>
407
408 <para>&lt;standard_session_servicedirs/&gt; is equivalent to specifying a series
409 of &lt;servicedir/&gt; elements for each of the data directories in the "XDG
410 Base Directory Specification" with the subdirectory "dbus-1/services",
411 so for example "/usr/share/dbus-1/services" would be among the
412 directories searched.</para>
413
414
415 <para>The "XDG Base Directory Specification" can be found at
416 <ulink url='http://freedesktop.org/wiki/Standards/basedir-spec'>http://freedesktop.org/wiki/Standards/basedir-spec</ulink> if it hasn't moved,
417 otherwise try your favorite search engine.</para>
418
419
420 <para>The &lt;standard_session_servicedirs/&gt; option is only relevant to the
421 per-user-session bus daemon defined in
422 @EXPANDED_SYSCONFDIR@/dbus-1/session.conf. Putting it in any other
423 configuration file would probably be nonsense.</para>
424
425 <itemizedlist remap='TP'>
426
427   <listitem><para><emphasis remap='I'>&lt;standard_system_servicedirs/&gt;</emphasis></para></listitem>
428
429
430 </itemizedlist>
431
432 <para>&lt;standard_system_servicedirs/&gt; specifies the standard system-wide
433 activation directories that should be searched for service files.
434 This option defaults to @EXPANDED_DATADIR@/dbus-1/system-services.</para>
435
436
437 <para>The &lt;standard_system_servicedirs/&gt; option is only relevant to the
438 per-system bus daemon defined in
439 @EXPANDED_SYSCONFDIR@/dbus-1/system.conf. Putting it in any other
440 configuration file would probably be nonsense.</para>
441
442 <itemizedlist remap='TP'>
443
444   <listitem><para><emphasis remap='I'>&lt;servicehelper/&gt;</emphasis></para></listitem>
445
446
447 </itemizedlist>
448
449 <para>&lt;servicehelper/&gt; specifies the setuid helper that is used to launch
450 system daemons with an alternate user. Typically this should be
451 the dbus-daemon-launch-helper executable in located in libexec.</para>
452
453
454 <para>The &lt;servicehelper/&gt; option is only relevant to the per-system bus daemon
455 defined in @EXPANDED_SYSCONFDIR@/dbus-1/system.conf. Putting it in any other
456 configuration file would probably be nonsense.</para>
457
458 <itemizedlist remap='TP'>
459
460   <listitem><para><emphasis remap='I'>&lt;limit&gt;</emphasis></para></listitem>
461
462
463 </itemizedlist>
464
465 <para>&lt;limit&gt; establishes a resource limit. For example:</para>
466 <literallayout remap='.nf'>
467   &lt;limit name="max_message_size"&gt;64&lt;/limit&gt;
468   &lt;limit name="max_completed_connections"&gt;512&lt;/limit&gt;
469 </literallayout> <!-- .fi -->
470
471
472 <para>The name attribute is mandatory.
473 Available limit names are:</para>
474 <literallayout remap='.nf'>
475       "max_incoming_bytes"         : total size in bytes of messages
476                                      incoming from a single connection
477       "max_incoming_unix_fds"      : total number of unix fds of messages
478                                      incoming from a single connection
479       "max_outgoing_bytes"         : total size in bytes of messages
480                                      queued up for a single connection
481       "max_outgoing_unix_fds"      : total number of unix fds of messages
482                                      queued up for a single connection
483       "max_message_size"           : max size of a single message in
484                                      bytes
485       "max_message_unix_fds"       : max unix fds of a single message
486       "service_start_timeout"      : milliseconds (thousandths) until
487                                      a started service has to connect
488       "auth_timeout"               : milliseconds (thousandths) a
489                                      connection is given to
490                                      authenticate
491       "max_completed_connections"  : max number of authenticated connections
492       "max_incomplete_connections" : max number of unauthenticated
493                                      connections
494       "max_connections_per_user"   : max number of completed connections from
495                                      the same user
496       "max_pending_service_starts" : max number of service launches in
497                                      progress at the same time
498       "max_names_per_connection"   : max number of names a single
499                                      connection can own
500       "max_match_rules_per_connection": max number of match rules for a single
501                                         connection
502       "max_replies_per_connection" : max number of pending method
503                                      replies per connection
504                                      (number of calls-in-progress)
505       "reply_timeout"              : milliseconds (thousandths)
506                                      until a method call times out
507 </literallayout> <!-- .fi -->
508
509
510 <para>The max incoming/outgoing queue sizes allow a new message to be queued
511 if one byte remains below the max. So you can in fact exceed the max
512 by max_message_size.</para>
513
514
515 <para>max_completed_connections divided by max_connections_per_user is the
516 number of users that can work together to denial-of-service all other users by using
517 up all connections on the systemwide bus.</para>
518
519
520 <para>Limits are normally only of interest on the systemwide bus, not the user session
521 buses.</para>
522
523 <itemizedlist remap='TP'>
524
525   <listitem><para><emphasis remap='I'>&lt;policy&gt;</emphasis></para></listitem>
526
527
528 </itemizedlist>
529
530 <para>The &lt;policy&gt; element defines a security policy to be applied to a particular
531 set of connections to the bus. A policy is made up of
532 &lt;allow&gt; and &lt;deny&gt; elements. Policies are normally used with the systemwide bus;
533 they are analogous to a firewall in that they allow expected traffic
534 and prevent unexpected traffic.</para>
535
536
537 <para>Currently, the system bus has a default-deny policy for sending method calls
538 and owning bus names.  Everything else, in particular reply messages, receive
539 checks, and signals has a default allow policy.</para>
540
541
542 <para>In general, it is best to keep system services as small, targeted programs which
543 run in their own process and provide a single bus name.  Then, all that is needed
544 is an &lt;allow&gt; rule for the "own" permission to let the process claim the bus
545 name, and a "send_destination" rule to allow traffic from some or all uids to
546 your service.</para>
547
548
549 <para>The &lt;policy&gt; element has one of four attributes:</para>
550 <literallayout remap='.nf'>
551   context="(default|mandatory)"
552   at_console="(true|false)"
553   user="username or userid"
554   group="group name or gid"
555 </literallayout> <!-- .fi -->
556
557
558 <para>Policies are applied to a connection as follows:</para>
559 <literallayout remap='.nf'>
560    - all context="default" policies are applied
561    - all group="connection's user's group" policies are applied
562      in undefined order
563    - all user="connection's auth user" policies are applied
564      in undefined order
565    - all at_console="true" policies are applied
566    - all at_console="false" policies are applied
567    - all context="mandatory" policies are applied
568 </literallayout> <!-- .fi -->
569
570
571 <para>Policies applied later will override those applied earlier,
572 when the policies overlap. Multiple policies with the same
573 user/group/context are applied in the order they appear
574 in the config file.</para>
575
576 <variablelist remap='TP'>
577   <varlistentry>
578   <term><emphasis remap='I'>&lt;deny&gt;</emphasis></term>
579   <listitem>
580 <para><emphasis remap='I'>&lt;allow&gt;</emphasis></para>
581
582   </listitem>
583   </varlistentry>
584 </variablelist>
585
586 <para>A &lt;deny&gt; element appears below a &lt;policy&gt; element and prohibits some
587 action. The &lt;allow&gt; element makes an exception to previous &lt;deny&gt;
588 statements, and works just like &lt;deny&gt; but with the inverse meaning.</para>
589
590
591 <para>The possible attributes of these elements are:</para>
592 <literallayout remap='.nf'>
593    send_interface="interface_name"
594    send_member="method_or_signal_name"
595    send_error="error_name"
596    send_destination="name"
597    send_type="method_call" | "method_return" | "signal" | "error"
598    send_path="/path/name"
599
600    receive_interface="interface_name"
601    receive_member="method_or_signal_name"
602    receive_error="error_name"
603    receive_sender="name"
604    receive_type="method_call" | "method_return" | "signal" | "error"
605    receive_path="/path/name"
606
607    send_requested_reply="true" | "false"
608    receive_requested_reply="true" | "false"
609
610    eavesdrop="true" | "false"
611
612    own="name"
613    own_prefix="name"
614    user="username"
615    group="groupname"
616 </literallayout> <!-- .fi -->
617
618
619 <para>Examples:</para>
620 <literallayout remap='.nf'>
621    &lt;deny send_destination="org.freedesktop.Service" send_interface="org.freedesktop.System" send_member="Reboot"/&gt;
622    &lt;deny send_destination="org.freedesktop.System"/&gt;
623    &lt;deny receive_sender="org.freedesktop.System"/&gt;
624    &lt;deny user="john"/&gt;
625    &lt;deny group="enemies"/&gt;
626 </literallayout> <!-- .fi -->
627
628
629 <para>The &lt;deny&gt; element's attributes determine whether the deny "matches" a
630 particular action. If it matches, the action is denied (unless later
631 rules in the config file allow it).</para>
632
633 <para>send_destination and receive_sender rules mean that messages may not be
634 sent to or received from the *owner* of the given name, not that
635 they may not be sent *to that name*. That is, if a connection
636 owns services A, B, C, and sending to A is denied, sending to B or C
637 will not work either.</para>
638
639 <para>The other send_* and receive_* attributes are purely textual/by-value
640 matches against the given field in the message header.</para>
641
642 <para>"Eavesdropping" occurs when an application receives a message that
643 was explicitly addressed to a name the application does not own, or
644 is a reply to such a message. Eavesdropping thus only applies to
645 messages that are addressed to services and replies to such messages
646 (i.e. it does not apply to signals).</para>
647
648 <para>For &lt;allow&gt;, eavesdrop="true" indicates that the rule matches even
649 when eavesdropping. eavesdrop="false" is the default and means that
650 the rule only allows messages to go to their specified recipient.
651 For &lt;deny&gt;, eavesdrop="true" indicates that the rule matches
652 only when eavesdropping. eavesdrop="false" is the default for &lt;deny&gt;
653 also, but here it means that the rule applies always, even when
654 not eavesdropping. The eavesdrop attribute can only be combined with
655 send and receive rules (with send_* and receive_* attributes).</para>
656
657 <para>The [send|receive]_requested_reply attribute works similarly to the eavesdrop
658 attribute. It controls whether the &lt;deny&gt; or &lt;allow&gt; matches a reply
659 that is expected (corresponds to a previous method call message).
660 This attribute only makes sense for reply messages (errors and method
661 returns), and is ignored for other message types.</para>
662
663
664 <para>For &lt;allow&gt;, [send|receive]_requested_reply="true" is the default and indicates that
665 only requested replies are allowed by the
666 rule. [send|receive]_requested_reply="false" means that the rule allows any reply
667 even if unexpected.</para>
668
669
670 <para>For &lt;deny&gt;, [send|receive]_requested_reply="false" is the default but indicates that
671 the rule matches only when the reply was not
672 requested. [send|receive]_requested_reply="true" indicates that the rule applies
673 always, regardless of pending reply state.</para>
674
675
676 <para>user and group denials mean that the given user or group may
677 not connect to the message bus.</para>
678
679
680 <para>For "name", "username", "groupname", etc.
681 the character "*" can be substituted, meaning "any." Complex globs
682 like "foo.bar.*" aren't allowed for now because they'd be work to
683 implement and maybe encourage sloppy security anyway.</para>
684
685
686 <para>&lt;allow own_prefix="a.b"/&gt; allows you to own the name "a.b" or any
687 name whose first dot-separated elements are "a.b": in particular,
688 you can own "a.b.c" or "a.b.c.d", but not "a.bc" or "a.c".
689 This is useful when services like Telepathy and ReserveDevice
690 define a meaning for subtrees of well-known names, such as
691 org.freedesktop.Telepathy.ConnectionManager.(anything)
692 and org.freedesktop.ReserveDevice1.(anything).</para>
693
694
695 <para>It does not make sense to deny a user or group inside a &lt;policy&gt;
696 for a user or group; user/group denials can only be inside
697 context="default" or context="mandatory" policies.</para>
698
699
700 <para>A single &lt;deny&gt; rule may specify combinations of attributes such as
701 send_destination and send_interface and send_type. In this case, the
702 denial applies only if both attributes match the message being denied.
703 e.g. &lt;deny send_interface="foo.bar" send_destination="foo.blah"/&gt; would
704 deny messages with the given interface AND the given bus name.
705 To get an OR effect you specify multiple &lt;deny&gt; rules.</para>
706
707
708 <para>You can't include both send_ and receive_ attributes on the same
709 rule, since "whether the message can be sent" and "whether it can be
710 received" are evaluated separately.</para>
711
712
713 <para>Be careful with send_interface/receive_interface, because the
714 interface field in messages is optional.  In particular, do NOT
715 specify &lt;deny send_interface="org.foo.Bar"/&gt;!  This will cause
716 no-interface messages to be blocked for all services, which is
717 almost certainly not what you intended.  Always use rules of
718 the form: &lt;deny send_interface="org.foo.Bar" send_destination="org.foo.Service"/&gt;</para>
719
720 <itemizedlist remap='TP'>
721
722   <listitem><para><emphasis remap='I'>&lt;selinux&gt;</emphasis></para></listitem>
723
724
725 </itemizedlist>
726
727 <para>The &lt;selinux&gt; element contains settings related to Security Enhanced Linux.
728 More details below.</para>
729
730 <itemizedlist remap='TP'>
731
732   <listitem><para><emphasis remap='I'>&lt;associate&gt;</emphasis></para></listitem>
733
734
735 </itemizedlist>
736
737 <para>An &lt;associate&gt; element appears below an &lt;selinux&gt; element and
738 creates a mapping. Right now only one kind of association is possible:</para>
739 <literallayout remap='.nf'>
740    &lt;associate own="org.freedesktop.Foobar" context="foo_t"/&gt;
741 </literallayout> <!-- .fi -->
742
743
744 <para>This means that if a connection asks to own the name
745 "org.freedesktop.Foobar" then the source context will be the context
746 of the connection and the target context will be "foo_t" - see the
747 short discussion of SELinux below.</para>
748
749
750 <para>Note, the context here is the target context when requesting a name,
751 NOT the context of the connection owning the name.</para>
752
753
754 <para>There's currently no way to set a default for owning any name, if
755 we add this syntax it will look like:</para>
756 <literallayout remap='.nf'>
757    &lt;associate own="*" context="foo_t"/&gt;
758 </literallayout> <!-- .fi -->
759 <para>If you find a reason this is useful, let the developers know.
760 Right now the default will be the security context of the bus itself.</para>
761
762
763 <para>If two &lt;associate&gt; elements specify the same name, the element
764 appearing later in the configuration file will be used.</para>
765
766 </refsect1>
767
768 <refsect1 id='selinux'><title>SELinux</title>
769 <para>See <ulink url='http://www.nsa.gov/selinux/'>http://www.nsa.gov/selinux/</ulink> for full details on SELinux. Some useful excerpts:</para>
770
771
772 <para>Every subject (process) and object (e.g. file, socket, IPC object,
773 etc) in the system is assigned a collection of security attributes,
774 known as a security context. A security context contains all of the
775 security attributes associated with a particular subject or object
776 that are relevant to the security policy.</para>
777
778
779 <para>In order to better encapsulate security contexts and to provide
780 greater efficiency, the policy enforcement code of SELinux typically
781 handles security identifiers (SIDs) rather than security contexts. A
782 SID is an integer that is mapped by the security server to a security
783 context at runtime.</para>
784
785
786 <para>When a security decision is required, the policy enforcement code
787 passes a pair of SIDs (typically the SID of a subject and the SID of
788 an object, but sometimes a pair of subject SIDs or a pair of object
789 SIDs), and an object security class to the security server. The object
790 security class indicates the kind of object, e.g. a process, a regular
791 file, a directory, a TCP socket, etc.</para>
792
793
794 <para>Access decisions specify whether or not a permission is granted for a
795 given pair of SIDs and class. Each object class has a set of
796 associated permissions defined to control operations on objects with
797 that class.</para>
798
799
800 <para>D-Bus performs SELinux security checks in two places.</para>
801
802
803 <para>First, any time a message is routed from one connection to another
804 connection, the bus daemon will check permissions with the security context of
805 the first connection as source, security context of the second connection
806 as target, object class "dbus" and requested permission "send_msg".</para>
807
808
809 <para>If a security context is not available for a connection
810 (impossible when using UNIX domain sockets), then the target
811 context used is the context of the bus daemon itself.
812 There is currently no way to change this default, because we're
813 assuming that only UNIX domain sockets will be used to
814 connect to the systemwide bus. If this changes, we'll
815 probably add a way to set the default connection context.</para>
816
817
818 <para>Second, any time a connection asks to own a name,
819 the bus daemon will check permissions with the security
820 context of the connection as source, the security context specified
821 for the name in the config file as target, object
822 class "dbus" and requested permission "acquire_svc".</para>
823
824
825 <para>The security context for a bus name is specified with the
826 &lt;associate&gt; element described earlier in this document.
827 If a name has no security context associated in the
828 configuration file, the security context of the bus daemon
829 itself will be used.</para>
830
831 </refsect1>
832
833 <refsect1 id='debugging'><title>DEBUGGING</title>
834 <para>If you're trying to figure out where your messages are going or why
835 you aren't getting messages, there are several things you can try.</para>
836
837 <para>Remember that the system bus is heavily locked down and if you
838 haven't installed a security policy file to allow your message
839 through, it won't work. For the session bus, this is not a concern.</para>
840
841 <para>The simplest way to figure out what's happening on the bus is to run
842 the <emphasis remap='I'>dbus-monitor</emphasis> program, which comes with the D-Bus
843 package. You can also send test messages with <emphasis remap='I'>dbus-send</emphasis>. These
844 programs have their own man pages.</para>
845
846 <para>If you want to know what the daemon itself is doing, you might consider
847 running a separate copy of the daemon to test against. This will allow you
848 to put the daemon under a debugger, or run it with verbose output, without
849 messing up your real session and system daemons.</para>
850
851 <para>To run a separate test copy of the daemon, for example you might open a terminal
852 and type:</para>
853 <literallayout remap='.nf'>
854   DBUS_VERBOSE=1 dbus-daemon --session --print-address
855 </literallayout> <!-- .fi -->
856
857 <para>The test daemon address will be printed when the daemon starts. You will need
858 to copy-and-paste this address and use it as the value of the
859 DBUS_SESSION_BUS_ADDRESS environment variable when you launch the applications
860 you want to test. This will cause those applications to connect to your
861 test bus instead of the DBUS_SESSION_BUS_ADDRESS of your real session bus.</para>
862
863 <para>DBUS_VERBOSE=1 will have NO EFFECT unless your copy of D-Bus
864 was compiled with verbose mode enabled. This is not recommended in
865 production builds due to performance impact. You may need to rebuild
866 D-Bus if your copy was not built with debugging in mind. (DBUS_VERBOSE
867 also affects the D-Bus library and thus applications using D-Bus; it may
868 be useful to see verbose output on both the client side and from the daemon.)</para>
869
870 <para>If you want to get fancy, you can create a custom bus
871 configuration for your test bus (see the session.conf and system.conf
872 files that define the two default configurations for example). This
873 would allow you to specify a different directory for .service files,
874 for example.</para>
875
876 </refsect1>
877
878 <refsect1 id='author'><title>AUTHOR</title>
879 <para>See <ulink url='http://www.freedesktop.org/software/dbus/doc/AUTHORS'>http://www.freedesktop.org/software/dbus/doc/AUTHORS</ulink></para>
880
881 </refsect1>
882
883 <refsect1 id='bugs'><title>BUGS</title>
884 <para>Please send bug reports to the D-Bus mailing list or bug tracker,
885 see <ulink url='http://www.freedesktop.org/software/dbus/'>http://www.freedesktop.org/software/dbus/</ulink></para>
886 </refsect1>
887 </refentry>
888