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