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 <refentry id='dbusdaemon1'>
6 <!-- dbus\-daemon manual page.
7 Copyright (C) 2003,2008 Red Hat, Inc. -->
10 <refentrytitle>dbus-daemon</refentrytitle>
11 <manvolnum>1</manvolnum>
12 <refmiscinfo class="manual">User Commands</refmiscinfo>
13 <refmiscinfo class="source">D-Bus</refmiscinfo>
14 <refmiscinfo class="version">@DBUS_VERSION@</refmiscinfo>
17 <refname>dbus-daemon</refname>
18 <refpurpose>Message bus daemon</refpurpose>
20 <!-- body begins here -->
21 <refsynopsisdiv id='synopsis'>
23 <command>dbus-daemon</command></cmdsynopsis>
25 <command>dbus-daemon</command> <arg choice='opt'>--version </arg>
26 <arg choice='opt'>--session </arg>
27 <arg choice='opt'>--system </arg>
28 <arg choice='opt'>--config-file=<replaceable>FILE</replaceable></arg>
29 <arg choice='opt'><arg choice='plain'>--print-address </arg><arg choice='opt'><replaceable>=DESCRIPTOR</replaceable></arg></arg>
30 <arg choice='opt'><arg choice='plain'>--print-pid </arg><arg choice='opt'><replaceable>=DESCRIPTOR</replaceable></arg></arg>
31 <arg choice='opt'>--fork </arg>
37 <refsect1 id='description'><title>DESCRIPTION</title>
38 <para><command>dbus-daemon</command> is the D-Bus message bus daemon. See
39 <ulink url='http://www.freedesktop.org/software/dbus/'>http://www.freedesktop.org/software/dbus/</ulink> for more information about
40 the big picture. D-Bus is first a library that provides one-to-one
41 communication between any two applications; <command>dbus-daemon</command> is an
42 application that uses this library to implement a message bus
43 daemon. Multiple programs connect to the message bus daemon and can
44 exchange messages with one another.</para>
46 <para>There are two standard message bus instances: the systemwide message bus
47 (installed on many systems as the "messagebus" init service) and the
48 per-user-login-session message bus (started each time a user logs in).
49 <command>dbus-daemon</command> is used for both of these instances, but with
50 a different configuration file.</para>
52 <para>The --session option is equivalent to
53 "--config-file=@EXPANDED_SYSCONFDIR@/dbus-1/session.conf" and the --system
54 option is equivalent to
55 "--config-file=@EXPANDED_SYSCONFDIR@/dbus-1/system.conf". By creating
56 additional configuration files and using the --config-file option,
57 additional special-purpose message bus daemons could be created.</para>
59 <para>The systemwide daemon is normally launched by an init script,
60 standardly called simply "messagebus".</para>
62 <para>The systemwide daemon is largely used for broadcasting system events,
63 such as changes to the printer queue, or adding/removing devices.</para>
65 <para>The per-session daemon is used for various interprocess communication
66 among desktop applications (however, it is not tied to X or the GUI
69 <para>SIGHUP will cause the D-Bus daemon to PARTIALLY reload its
70 configuration file and to flush its user/group information caches. Some
71 configuration changes would require kicking all apps off the bus; so they will
72 only take effect if you restart the daemon. Policy changes should take effect
77 <refsect1 id='options'><title>OPTIONS</title>
78 <para>The following options are supported:</para>
79 <variablelist remap='TP'>
81 <term><option>--config-file=FILE</option></term>
83 <para>Use the given configuration file.</para>
87 <term><option>--fork</option></term>
89 <para>Force the message bus to fork and become a daemon, even if
90 the configuration file does not specify that it should.
91 In most contexts the configuration file already gets this
93 <option>--nofork</option>
94 Force the message bus not to fork and become a daemon, even if
95 the configuration file specifies that it should.</para>
99 <term><option>--print-address[=DESCRIPTOR]</option></term>
101 <para>Print the address of the message bus to standard output, or
102 to the given file descriptor. This is used by programs that
103 launch the message bus.</para>
107 <term><option>--print-pid[=DESCRIPTOR]</option></term>
109 <para>Print the process ID of the message bus to standard output, or
110 to the given file descriptor. This is used by programs that
111 launch the message bus.</para>
115 <term><option>--session</option></term>
117 <para>Use the standard configuration file for the per-login-session message
122 <term><option>--system</option></term>
124 <para>Use the standard configuration file for the systemwide message bus.</para>
128 <term><option>--version</option></term>
130 <para>Print the version of the daemon.</para>
134 <term><option>--introspect</option></term>
136 <para>Print the introspection information for all D-Bus internal interfaces.</para>
140 <term><option>--address[=ADDRESS]</option></term>
142 <para>Set the address to listen on. This option overrides the address
143 configured in the configuration file.</para>
147 <term><option>--systemd-activation</option></term>
149 <para>Enable systemd-style service activation. Only useful in conjunction
150 with the systemd system and session manager on Linux.</para>
154 <term><option>--nopidfile</option></term>
156 <para>Don't write a PID file even if one is configured in the configuration
164 <refsect1 id='configuration_file'><title>CONFIGURATION FILE</title>
165 <para>A message bus daemon has a configuration file that specializes it
166 for a particular application. For example, one configuration
167 file might set up the message bus to be a systemwide message bus,
168 while another might set it up to be a per-user-login-session bus.</para>
170 <para>The configuration file also establishes resource limits, security
171 parameters, and so forth.</para>
173 <para>The configuration file is not part of any interoperability
174 specification and its backward compatibility is not guaranteed; this
175 document is documentation, not specification.</para>
177 <para>The standard systemwide and per-session message bus setups are
178 configured in the files "@EXPANDED_SYSCONFDIR@/dbus-1/system.conf" and
179 "@EXPANDED_SYSCONFDIR@/dbus-1/session.conf". These files normally
180 <include> a system-local.conf or session-local.conf; you can put local
181 overrides in those files to avoid modifying the primary configuration
185 <para>The configuration file is an XML document. It must have the following
186 doctype declaration:</para>
187 <literallayout remap='.nf'>
189 <!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-Bus Bus Configuration 1.0//EN"
190 "<ulink url='http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd'>http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd</ulink>">
192 </literallayout> <!-- .fi -->
195 <para>The following elements may be present in the configuration file.</para>
197 <itemizedlist remap='TP'>
199 <listitem><para><emphasis remap='I'><busconfig></emphasis></para></listitem>
204 <para>Root element.</para>
206 <itemizedlist remap='TP'>
208 <listitem><para><emphasis remap='I'><type></emphasis></para></listitem>
213 <para>The well-known type of the message bus. Currently known values are
214 "system" and "session"; if other values are set, they should be
215 either added to the D-Bus specification, or namespaced. The last
216 <type> element "wins" (previous values are ignored). This element
217 only controls which message bus specific environment variables are
218 set in activated clients. Most of the policy that distinguishes a
219 session bus from the system bus is controlled from the other elements
220 in the configuration file.</para>
223 <para>If the well-known type of the message bus is "session", then the
224 DBUS_STARTER_BUS_TYPE environment variable will be set to "session"
225 and the DBUS_SESSION_BUS_ADDRESS environment variable will be set
226 to the address of the session bus. Likewise, if the type of the
227 message bus is "system", then the DBUS_STARTER_BUS_TYPE environment
228 variable will be set to "system" and the DBUS_SESSION_BUS_ADDRESS
229 environment variable will be set to the address of the system bus
230 (which is normally well known anyway).</para>
233 <para>Example: <type>session</type></para>
235 <itemizedlist remap='TP'>
237 <listitem><para><emphasis remap='I'><include></emphasis></para></listitem>
242 <para>Include a file <include>filename.conf</include> at this point. If the
243 filename is relative, it is located relative to the configuration file
244 doing the including.</para>
247 <para><include> has an optional attribute "ignore_missing=(yes|no)"
248 which defaults to "no" if not provided. This attribute
249 controls whether it's a fatal error for the included file
252 <itemizedlist remap='TP'>
254 <listitem><para><emphasis remap='I'><includedir></emphasis></para></listitem>
259 <para>Include all files in <includedir>foo.d</includedir> at this
260 point. Files in the directory are included in undefined order.
261 Only files ending in ".conf" are included.</para>
264 <para>This is intended to allow extension of the system bus by particular
265 packages. For example, if CUPS wants to be able to send out
266 notification of printer queue changes, it could install a file to
267 @EXPANDED_SYSCONFDIR@/dbus-1/system.d that allowed all apps to receive
268 this message and allowed the printer daemon user to send it.</para>
270 <itemizedlist remap='TP'>
272 <listitem><para><emphasis remap='I'><user></emphasis></para></listitem>
277 <para>The user account the daemon should run as, as either a username or a
278 UID. If the daemon cannot change to this UID on startup, it will exit.
279 If this element is not present, the daemon will not change or care
280 about its UID.</para>
283 <para>The last <user> entry in the file "wins", the others are ignored.</para>
286 <para>The user is changed after the bus has completed initialization. So
287 sockets etc. will be created before changing user, but no data will be
288 read from clients before changing user. This means that sockets
289 and PID files can be created in a location that requires root
290 privileges for writing.</para>
292 <itemizedlist remap='TP'>
294 <listitem><para><emphasis remap='I'><fork></emphasis></para></listitem>
299 <para>If present, the bus daemon becomes a real daemon (forks
300 into the background, etc.). This is generally used
301 rather than the --fork command line option.</para>
303 <itemizedlist remap='TP'>
305 <listitem><para><emphasis remap='I'><keep_umask></emphasis></para></listitem>
310 <para>If present, the bus daemon keeps its original umask when forking.
311 This may be useful to avoid affecting the behavior of child processes.</para>
313 <itemizedlist remap='TP'>
315 <listitem><para><emphasis remap='I'><listen></emphasis></para></listitem>
320 <para>Add an address that the bus should listen on. The
321 address is in the standard D-Bus format that contains
322 a transport name plus possible parameters/options.</para>
325 <para>Example: <listen>unix:path=/tmp/foo</listen></para>
328 <para>Example: <listen>tcp:host=localhost,port=1234</listen></para>
331 <para>If there are multiple <listen> elements, then the bus listens
332 on multiple addresses. The bus will pass its address to
333 started services or other interested parties with
334 the last address given in <listen> first. That is,
335 apps will try to connect to the last <listen> address first.</para>
338 <para>tcp sockets can accept IPv4 addresses, IPv6 addresses or hostnames.
339 If a hostname resolves to multiple addresses, the server will bind
340 to all of them. The family=ipv4 or family=ipv6 options can be used
341 to force it to bind to a subset of addresses</para>
344 <para>Example: <listen>tcp:host=localhost,port=0,family=ipv4</listen></para>
347 <para>A special case is using a port number of zero (or omitting the port),
348 which means to choose an available port selected by the operating
349 system. The port number chosen can be obtained with the
350 --print-address command line parameter and will be present in other
351 cases where the server reports its own address, such as when
352 DBUS_SESSION_BUS_ADDRESS is set.</para>
355 <para>Example: <listen>tcp:host=localhost,port=0</listen></para>
358 <para>tcp addresses also allow a bind=hostname option, which will override
359 the host option specifying what address to bind to, without changing
360 the address reported by the bus. The bind option can also take a
361 special name '*' to cause the bus to listen on all local address
362 (INADDR_ANY). The specified host should be a valid name of the local
363 machine or weird stuff will happen.</para>
366 <para>Example: <listen>tcp:host=localhost,bind=*,port=0</listen></para>
368 <itemizedlist remap='TP'>
370 <listitem><para><emphasis remap='I'><auth></emphasis></para></listitem>
375 <para>Lists permitted authorization mechanisms. If this element doesn't
376 exist, then all known mechanisms are allowed. If there are multiple
377 <auth> elements, all the listed mechanisms are allowed. The order in
378 which mechanisms are listed is not meaningful.</para>
381 <para>Example: <auth>EXTERNAL</auth></para>
384 <para>Example: <auth>DBUS_COOKIE_SHA1</auth></para>
386 <itemizedlist remap='TP'>
388 <listitem><para><emphasis remap='I'><servicedir></emphasis></para></listitem>
393 <para>Adds a directory to scan for .service files. Directories are
394 scanned starting with the last to appear in the config file
395 (the first .service file found that provides a particular
396 service will be used).</para>
399 <para>Service files tell the bus how to automatically start a program.
400 They are primarily used with the per-user-session bus,
401 not the systemwide bus.</para>
403 <itemizedlist remap='TP'>
405 <listitem><para><emphasis remap='I'><standard_session_servicedirs/></emphasis></para></listitem>
410 <para><standard_session_servicedirs/> is equivalent to specifying a series
411 of <servicedir/> elements for each of the data directories in the "XDG
412 Base Directory Specification" with the subdirectory "dbus-1/services",
413 so for example "/usr/share/dbus-1/services" would be among the
414 directories searched.</para>
417 <para>The "XDG Base Directory Specification" can be found at
418 <ulink url='http://freedesktop.org/wiki/Standards/basedir-spec'>http://freedesktop.org/wiki/Standards/basedir-spec</ulink> if it hasn't moved,
419 otherwise try your favorite search engine.</para>
422 <para>The <standard_session_servicedirs/> option is only relevant to the
423 per-user-session bus daemon defined in
424 @EXPANDED_SYSCONFDIR@/dbus-1/session.conf. Putting it in any other
425 configuration file would probably be nonsense.</para>
427 <itemizedlist remap='TP'>
429 <listitem><para><emphasis remap='I'><standard_system_servicedirs/></emphasis></para></listitem>
434 <para><standard_system_servicedirs/> specifies the standard system-wide
435 activation directories that should be searched for service files.
436 This option defaults to @EXPANDED_DATADIR@/dbus-1/system-services.</para>
439 <para>The <standard_system_servicedirs/> option is only relevant to the
440 per-system bus daemon defined in
441 @EXPANDED_SYSCONFDIR@/dbus-1/system.conf. Putting it in any other
442 configuration file would probably be nonsense.</para>
444 <itemizedlist remap='TP'>
446 <listitem><para><emphasis remap='I'><servicehelper/></emphasis></para></listitem>
451 <para><servicehelper/> specifies the setuid helper that is used to launch
452 system daemons with an alternate user. Typically this should be
453 the dbus-daemon-launch-helper executable in located in libexec.</para>
456 <para>The <servicehelper/> option is only relevant to the per-system bus daemon
457 defined in @EXPANDED_SYSCONFDIR@/dbus-1/system.conf. Putting it in any other
458 configuration file would probably be nonsense.</para>
460 <itemizedlist remap='TP'>
462 <listitem><para><emphasis remap='I'><limit></emphasis></para></listitem>
467 <para><limit> establishes a resource limit. For example:</para>
468 <literallayout remap='.nf'>
469 <limit name="max_message_size">64</limit>
470 <limit name="max_completed_connections">512</limit>
471 </literallayout> <!-- .fi -->
474 <para>The name attribute is mandatory.
475 Available limit names are:</para>
476 <literallayout remap='.nf'>
477 "max_incoming_bytes" : total size in bytes of messages
478 incoming from a single connection
479 "max_incoming_unix_fds" : total number of unix fds of messages
480 incoming from a single connection
481 "max_outgoing_bytes" : total size in bytes of messages
482 queued up for a single connection
483 "max_outgoing_unix_fds" : total number of unix fds of messages
484 queued up for a single connection
485 "max_message_size" : max size of a single message in
487 "max_message_unix_fds" : max unix fds of a single message
488 "service_start_timeout" : milliseconds (thousandths) until
489 a started service has to connect
490 "auth_timeout" : milliseconds (thousandths) a
491 connection is given to
493 "max_completed_connections" : max number of authenticated connections
494 "max_incomplete_connections" : max number of unauthenticated
496 "max_connections_per_user" : max number of completed connections from
498 "max_pending_service_starts" : max number of service launches in
499 progress at the same time
500 "max_names_per_connection" : max number of names a single
502 "max_match_rules_per_connection": max number of match rules for a single
504 "max_replies_per_connection" : max number of pending method
505 replies per connection
506 (number of calls-in-progress)
507 "reply_timeout" : milliseconds (thousandths)
508 until a method call times out
509 </literallayout> <!-- .fi -->
512 <para>The max incoming/outgoing queue sizes allow a new message to be queued
513 if one byte remains below the max. So you can in fact exceed the max
514 by max_message_size.</para>
517 <para>max_completed_connections divided by max_connections_per_user is the
518 number of users that can work together to denial-of-service all other users by using
519 up all connections on the systemwide bus.</para>
522 <para>Limits are normally only of interest on the systemwide bus, not the user session
525 <itemizedlist remap='TP'>
527 <listitem><para><emphasis remap='I'><policy></emphasis></para></listitem>
532 <para>The <policy> element defines a security policy to be applied to a particular
533 set of connections to the bus. A policy is made up of
534 <allow> and <deny> elements. Policies are normally used with the systemwide bus;
535 they are analogous to a firewall in that they allow expected traffic
536 and prevent unexpected traffic.</para>
539 <para>Currently, the system bus has a default-deny policy for sending method calls
540 and owning bus names. Everything else, in particular reply messages, receive
541 checks, and signals has a default allow policy.</para>
544 <para>In general, it is best to keep system services as small, targeted programs which
545 run in their own process and provide a single bus name. Then, all that is needed
546 is an <allow> rule for the "own" permission to let the process claim the bus
547 name, and a "send_destination" rule to allow traffic from some or all uids to
551 <para>The <policy> element has one of four attributes:</para>
552 <literallayout remap='.nf'>
553 context="(default|mandatory)"
554 at_console="(true|false)"
555 user="username or userid"
556 group="group name or gid"
557 </literallayout> <!-- .fi -->
560 <para>Policies are applied to a connection as follows:</para>
561 <literallayout remap='.nf'>
562 - all context="default" policies are applied
563 - all group="connection's user's group" policies are applied
565 - all user="connection's auth user" policies are applied
567 - all at_console="true" policies are applied
568 - all at_console="false" policies are applied
569 - all context="mandatory" policies are applied
570 </literallayout> <!-- .fi -->
573 <para>Policies applied later will override those applied earlier,
574 when the policies overlap. Multiple policies with the same
575 user/group/context are applied in the order they appear
576 in the config file.</para>
578 <variablelist remap='TP'>
580 <term><emphasis remap='I'><deny></emphasis></term>
582 <para><emphasis remap='I'><allow></emphasis></para>
588 <para>A <deny> element appears below a <policy> element and prohibits some
589 action. The <allow> element makes an exception to previous <deny>
590 statements, and works just like <deny> but with the inverse meaning.</para>
593 <para>The possible attributes of these elements are:</para>
594 <literallayout remap='.nf'>
595 send_interface="interface_name"
596 send_member="method_or_signal_name"
597 send_error="error_name"
598 send_destination="name"
599 send_type="method_call" | "method_return" | "signal" | "error"
600 send_path="/path/name"
602 receive_interface="interface_name"
603 receive_member="method_or_signal_name"
604 receive_error="error_name"
605 receive_sender="name"
606 receive_type="method_call" | "method_return" | "signal" | "error"
607 receive_path="/path/name"
609 send_requested_reply="true" | "false"
610 receive_requested_reply="true" | "false"
612 eavesdrop="true" | "false"
618 </literallayout> <!-- .fi -->
621 <para>Examples:</para>
622 <literallayout remap='.nf'>
623 <deny send_destination="org.freedesktop.Service" send_interface="org.freedesktop.System" send_member="Reboot"/>
624 <deny send_destination="org.freedesktop.System"/>
625 <deny receive_sender="org.freedesktop.System"/>
626 <deny user="john"/>
627 <deny group="enemies"/>
628 </literallayout> <!-- .fi -->
631 <para>The <deny> element's attributes determine whether the deny "matches" a
632 particular action. If it matches, the action is denied (unless later
633 rules in the config file allow it).</para>
635 <para>send_destination and receive_sender rules mean that messages may not be
636 sent to or received from the *owner* of the given name, not that
637 they may not be sent *to that name*. That is, if a connection
638 owns services A, B, C, and sending to A is denied, sending to B or C
639 will not work either.</para>
641 <para>The other send_* and receive_* attributes are purely textual/by-value
642 matches against the given field in the message header.</para>
644 <para>"Eavesdropping" occurs when an application receives a message that
645 was explicitly addressed to a name the application does not own, or
646 is a reply to such a message. Eavesdropping thus only applies to
647 messages that are addressed to services and replies to such messages
648 (i.e. it does not apply to signals).</para>
650 <para>For <allow>, eavesdrop="true" indicates that the rule matches even
651 when eavesdropping. eavesdrop="false" is the default and means that
652 the rule only allows messages to go to their specified recipient.
653 For <deny>, eavesdrop="true" indicates that the rule matches
654 only when eavesdropping. eavesdrop="false" is the default for <deny>
655 also, but here it means that the rule applies always, even when
656 not eavesdropping. The eavesdrop attribute can only be combined with
657 send and receive rules (with send_* and receive_* attributes).</para>
659 <para>The [send|receive]_requested_reply attribute works similarly to the eavesdrop
660 attribute. It controls whether the <deny> or <allow> matches a reply
661 that is expected (corresponds to a previous method call message).
662 This attribute only makes sense for reply messages (errors and method
663 returns), and is ignored for other message types.</para>
666 <para>For <allow>, [send|receive]_requested_reply="true" is the default and indicates that
667 only requested replies are allowed by the
668 rule. [send|receive]_requested_reply="false" means that the rule allows any reply
669 even if unexpected.</para>
672 <para>For <deny>, [send|receive]_requested_reply="false" is the default but indicates that
673 the rule matches only when the reply was not
674 requested. [send|receive]_requested_reply="true" indicates that the rule applies
675 always, regardless of pending reply state.</para>
678 <para>user and group denials mean that the given user or group may
679 not connect to the message bus.</para>
682 <para>For "name", "username", "groupname", etc.
683 the character "*" can be substituted, meaning "any." Complex globs
684 like "foo.bar.*" aren't allowed for now because they'd be work to
685 implement and maybe encourage sloppy security anyway.</para>
688 <para><allow own_prefix="a.b"/> allows you to own the name "a.b" or any
689 name whose first dot-separated elements are "a.b": in particular,
690 you can own "a.b.c" or "a.b.c.d", but not "a.bc" or "a.c".
691 This is useful when services like Telepathy and ReserveDevice
692 define a meaning for subtrees of well-known names, such as
693 org.freedesktop.Telepathy.ConnectionManager.(anything)
694 and org.freedesktop.ReserveDevice1.(anything).</para>
697 <para>It does not make sense to deny a user or group inside a <policy>
698 for a user or group; user/group denials can only be inside
699 context="default" or context="mandatory" policies.</para>
702 <para>A single <deny> rule may specify combinations of attributes such as
703 send_destination and send_interface and send_type. In this case, the
704 denial applies only if both attributes match the message being denied.
705 e.g. <deny send_interface="foo.bar" send_destination="foo.blah"/> would
706 deny messages with the given interface AND the given bus name.
707 To get an OR effect you specify multiple <deny> rules.</para>
710 <para>You can't include both send_ and receive_ attributes on the same
711 rule, since "whether the message can be sent" and "whether it can be
712 received" are evaluated separately.</para>
715 <para>Be careful with send_interface/receive_interface, because the
716 interface field in messages is optional. In particular, do NOT
717 specify <deny send_interface="org.foo.Bar"/>! This will cause
718 no-interface messages to be blocked for all services, which is
719 almost certainly not what you intended. Always use rules of
720 the form: <deny send_interface="org.foo.Bar" send_destination="org.foo.Service"/></para>
722 <itemizedlist remap='TP'>
724 <listitem><para><emphasis remap='I'><selinux></emphasis></para></listitem>
729 <para>The <selinux> element contains settings related to Security Enhanced Linux.
730 More details below.</para>
732 <itemizedlist remap='TP'>
734 <listitem><para><emphasis remap='I'><associate></emphasis></para></listitem>
739 <para>An <associate> element appears below an <selinux> element and
740 creates a mapping. Right now only one kind of association is possible:</para>
741 <literallayout remap='.nf'>
742 <associate own="org.freedesktop.Foobar" context="foo_t"/>
743 </literallayout> <!-- .fi -->
746 <para>This means that if a connection asks to own the name
747 "org.freedesktop.Foobar" then the source context will be the context
748 of the connection and the target context will be "foo_t" - see the
749 short discussion of SELinux below.</para>
752 <para>Note, the context here is the target context when requesting a name,
753 NOT the context of the connection owning the name.</para>
756 <para>There's currently no way to set a default for owning any name, if
757 we add this syntax it will look like:</para>
758 <literallayout remap='.nf'>
759 <associate own="*" context="foo_t"/>
760 </literallayout> <!-- .fi -->
761 <para>If you find a reason this is useful, let the developers know.
762 Right now the default will be the security context of the bus itself.</para>
765 <para>If two <associate> elements specify the same name, the element
766 appearing later in the configuration file will be used.</para>
770 <refsect1 id='selinux'><title>SELinux</title>
771 <para>See <ulink url='http://www.nsa.gov/selinux/'>http://www.nsa.gov/selinux/</ulink> for full details on SELinux. Some useful excerpts:</para>
774 <para>Every subject (process) and object (e.g. file, socket, IPC object,
775 etc) in the system is assigned a collection of security attributes,
776 known as a security context. A security context contains all of the
777 security attributes associated with a particular subject or object
778 that are relevant to the security policy.</para>
781 <para>In order to better encapsulate security contexts and to provide
782 greater efficiency, the policy enforcement code of SELinux typically
783 handles security identifiers (SIDs) rather than security contexts. A
784 SID is an integer that is mapped by the security server to a security
785 context at runtime.</para>
788 <para>When a security decision is required, the policy enforcement code
789 passes a pair of SIDs (typically the SID of a subject and the SID of
790 an object, but sometimes a pair of subject SIDs or a pair of object
791 SIDs), and an object security class to the security server. The object
792 security class indicates the kind of object, e.g. a process, a regular
793 file, a directory, a TCP socket, etc.</para>
796 <para>Access decisions specify whether or not a permission is granted for a
797 given pair of SIDs and class. Each object class has a set of
798 associated permissions defined to control operations on objects with
802 <para>D-Bus performs SELinux security checks in two places.</para>
805 <para>First, any time a message is routed from one connection to another
806 connection, the bus daemon will check permissions with the security context of
807 the first connection as source, security context of the second connection
808 as target, object class "dbus" and requested permission "send_msg".</para>
811 <para>If a security context is not available for a connection
812 (impossible when using UNIX domain sockets), then the target
813 context used is the context of the bus daemon itself.
814 There is currently no way to change this default, because we're
815 assuming that only UNIX domain sockets will be used to
816 connect to the systemwide bus. If this changes, we'll
817 probably add a way to set the default connection context.</para>
820 <para>Second, any time a connection asks to own a name,
821 the bus daemon will check permissions with the security
822 context of the connection as source, the security context specified
823 for the name in the config file as target, object
824 class "dbus" and requested permission "acquire_svc".</para>
827 <para>The security context for a bus name is specified with the
828 <associate> element described earlier in this document.
829 If a name has no security context associated in the
830 configuration file, the security context of the bus daemon
831 itself will be used.</para>
835 <refsect1 id='debugging'><title>DEBUGGING</title>
836 <para>If you're trying to figure out where your messages are going or why
837 you aren't getting messages, there are several things you can try.</para>
839 <para>Remember that the system bus is heavily locked down and if you
840 haven't installed a security policy file to allow your message
841 through, it won't work. For the session bus, this is not a concern.</para>
843 <para>The simplest way to figure out what's happening on the bus is to run
844 the <emphasis remap='I'>dbus-monitor</emphasis> program, which comes with the D-Bus
845 package. You can also send test messages with <emphasis remap='I'>dbus-send</emphasis>. These
846 programs have their own man pages.</para>
848 <para>If you want to know what the daemon itself is doing, you might consider
849 running a separate copy of the daemon to test against. This will allow you
850 to put the daemon under a debugger, or run it with verbose output, without
851 messing up your real session and system daemons.</para>
853 <para>To run a separate test copy of the daemon, for example you might open a terminal
855 <literallayout remap='.nf'>
856 DBUS_VERBOSE=1 dbus-daemon --session --print-address
857 </literallayout> <!-- .fi -->
859 <para>The test daemon address will be printed when the daemon starts. You will need
860 to copy-and-paste this address and use it as the value of the
861 DBUS_SESSION_BUS_ADDRESS environment variable when you launch the applications
862 you want to test. This will cause those applications to connect to your
863 test bus instead of the DBUS_SESSION_BUS_ADDRESS of your real session bus.</para>
865 <para>DBUS_VERBOSE=1 will have NO EFFECT unless your copy of D-Bus
866 was compiled with verbose mode enabled. This is not recommended in
867 production builds due to performance impact. You may need to rebuild
868 D-Bus if your copy was not built with debugging in mind. (DBUS_VERBOSE
869 also affects the D-Bus library and thus applications using D-Bus; it may
870 be useful to see verbose output on both the client side and from the daemon.)</para>
872 <para>If you want to get fancy, you can create a custom bus
873 configuration for your test bus (see the session.conf and system.conf
874 files that define the two default configurations for example). This
875 would allow you to specify a different directory for .service files,
880 <refsect1 id='author'><title>AUTHOR</title>
881 <para>See <ulink url='http://www.freedesktop.org/software/dbus/doc/AUTHORS'>http://www.freedesktop.org/software/dbus/doc/AUTHORS</ulink></para>
885 <refsect1 id='bugs'><title>BUGS</title>
886 <para>Please send bug reports to the D-Bus mailing list or bug tracker,
887 see <ulink url='http://www.freedesktop.org/software/dbus/'>http://www.freedesktop.org/software/dbus/</ulink></para>