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