Added documentation for autolaunch transport.
[platform/upstream/dbus.git] / doc / dbus-specification.xml
1 <?xml version="1.0" standalone="no" ?>
2 <!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd"
4 [
5 ]>
6
7 <article id="index">
8   <articleinfo>
9     <title>D-Bus Specification</title>
10     <releaseinfo>Version 0.15</releaseinfo>
11     <date>September 25, 2010</date>
12     <authorgroup>
13       <author>
14         <firstname>Havoc</firstname>
15         <surname>Pennington</surname>
16         <affiliation>
17           <orgname>Red Hat, Inc.</orgname>
18           <address>
19             <email>hp@pobox.com</email>
20           </address>
21         </affiliation>
22       </author>
23       <author>
24         <firstname>Anders</firstname>
25         <surname>Carlsson</surname>
26         <affiliation>
27           <orgname>CodeFactory AB</orgname>
28           <address>
29             <email>andersca@codefactory.se</email>
30           </address>
31         </affiliation>
32       </author>
33       <author>
34         <firstname>Alexander</firstname>
35         <surname>Larsson</surname>
36         <affiliation>
37           <orgname>Red Hat, Inc.</orgname>
38           <address>
39             <email>alexl@redhat.com</email>
40           </address>
41         </affiliation>
42       </author>
43     </authorgroup>
44   </articleinfo>
45
46   <sect1 id="introduction">
47     <title>Introduction</title>
48     <para>
49       D-Bus is a system for low-latency, low-overhead, easy to use
50       interprocess communication (IPC). In more detail:
51       <itemizedlist>
52         <listitem>
53           <para>
54             D-Bus is <emphasis>low-latency</emphasis> because it is designed 
55             to avoid round trips and allow asynchronous operation, much like 
56             the X protocol.
57           </para>
58         </listitem>
59         <listitem>
60           <para>
61             D-Bus is <emphasis>low-overhead</emphasis> because it uses a
62             binary protocol, and does not have to convert to and from a text
63             format such as XML. Because D-Bus is intended for potentially
64             high-resolution same-machine IPC, not primarily for Internet IPC,
65             this is an interesting optimization.
66           </para>
67         </listitem>
68         <listitem>
69           <para>
70             D-Bus is <emphasis>easy to use</emphasis> because it works in terms
71             of <firstterm>messages</firstterm> rather than byte streams, and
72             automatically handles a lot of the hard IPC issues. Also, the D-Bus
73             library is designed to be wrapped in a way that lets developers use
74             their framework's existing object/type system, rather than learning
75             a new one specifically for IPC.
76           </para>
77         </listitem>
78       </itemizedlist>
79     </para>
80
81     <para>
82       The base D-Bus protocol is a one-to-one (peer-to-peer or client-server)
83       protocol, specified in <xref linkend="message-protocol"/>. That is, it is
84       a system for one application to talk to a single other
85       application. However, the primary intended application of the protocol is the
86       D-Bus <firstterm>message bus</firstterm>, specified in <xref
87       linkend="message-bus"/>. The message bus is a special application that
88       accepts connections from multiple other applications, and forwards
89       messages among them.
90     </para>
91
92     <para>
93       Uses of D-Bus include notification of system changes (notification of when
94       a camera is plugged in to a computer, or a new version of some software
95       has been installed), or desktop interoperability, for example a file
96       monitoring service or a configuration service.
97     </para>
98
99     <para>
100       D-Bus is designed for two specific use cases:
101       <itemizedlist>
102         <listitem>
103           <para>
104             A "system bus" for notifications from the system to user sessions,
105             and to allow the system to request input from user sessions.
106           </para>
107         </listitem>
108         <listitem>
109           <para>
110             A "session bus" used to implement desktop environments such as 
111             GNOME and KDE.
112           </para>
113         </listitem>
114       </itemizedlist>
115       D-Bus is not intended to be a generic IPC system for any possible 
116       application, and intentionally omits many features found in other 
117       IPC systems for this reason.
118     </para>
119
120     <para>
121       At the same time, the bus daemons offer a number of features not found in
122       other IPC systems, such as single-owner "bus names" (similar to X
123       selections), on-demand startup of services, and security policies.
124       In many ways, these features are the primary motivation for developing 
125       D-Bus; other systems would have sufficed if IPC were the only goal.
126     </para>
127
128     <para>
129       D-Bus may turn out to be useful in unanticipated applications, but future
130       versions of this spec and the reference implementation probably will not
131       incorporate features that interfere with the core use cases.
132     </para>
133
134     <para>
135       The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
136       "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
137       document are to be interpreted as described in RFC 2119. However, the
138       document could use a serious audit to be sure it makes sense to do
139       so. Also, they are not capitalized.
140     </para>
141
142     <sect2 id="stability">
143       <title>Protocol and Specification Stability</title>
144       <para>
145         The D-Bus protocol is frozen (only compatible extensions are allowed) as
146         of November 8, 2006.  However, this specification could still use a fair
147         bit of work to make interoperable reimplementation possible without
148         reference to the D-Bus reference implementation. Thus, this
149         specification is not marked 1.0. To mark it 1.0, we'd like to see
150         someone invest significant effort in clarifying the specification
151         language, and growing the specification to cover more aspects of the
152         reference implementation's behavior.
153       </para>
154       <para>
155         Until this work is complete, any attempt to reimplement D-Bus will 
156         probably require looking at the reference implementation and/or asking
157         questions on the D-Bus mailing list about intended behavior. 
158         Questions on the list are very welcome.
159       </para>
160       <para>
161         Nonetheless, this document should be a useful starting point and is 
162         to our knowledge accurate, though incomplete.
163       </para>
164     </sect2>
165     
166   </sect1>
167
168   <sect1 id="message-protocol">
169     <title>Message Protocol</title>
170
171     <para>
172       A <firstterm>message</firstterm> consists of a
173       <firstterm>header</firstterm> and a <firstterm>body</firstterm>. If you
174       think of a message as a package, the header is the address, and the body
175       contains the package contents. The message delivery system uses the header
176       information to figure out where to send the message and how to interpret
177       it; the recipient interprets the body of the message.
178     </para>
179     
180     <para>
181       The body of the message is made up of zero or more
182       <firstterm>arguments</firstterm>, which are typed values, such as an
183       integer or a byte array.
184     </para>
185
186     <para>
187       Both header and body use the same type system and format for 
188       serializing data. Each type of value has a wire format. 
189       Converting a value from some other representation into the wire
190       format is called <firstterm>marshaling</firstterm> and converting
191       it back from the wire format is <firstterm>unmarshaling</firstterm>.
192     </para>
193
194     <sect2 id="message-protocol-signatures">
195       <title>Type Signatures</title>
196
197       <para>
198         The D-Bus protocol does not include type tags in the marshaled data; a
199         block of marshaled values must have a known <firstterm>type
200         signature</firstterm>.  The type signature is made up of <firstterm>type
201         codes</firstterm>. A type code is an ASCII character representing the
202         type of a value. Because ASCII characters are used, the type signature
203         will always form a valid ASCII string. A simple string compare 
204         determines whether two type signatures are equivalent.
205       </para>
206
207       <para>
208         As a simple example, the type code for 32-bit integer (<literal>INT32</literal>) is
209         the ASCII character 'i'. So the signature for a block of values 
210         containing a single <literal>INT32</literal> would be:
211         <programlisting>
212           "i"
213         </programlisting>
214         A block of values containing two <literal>INT32</literal> would have this signature:
215         <programlisting>
216           "ii"
217         </programlisting>        
218       </para>
219
220       <para>
221         All <firstterm>basic</firstterm> types work like 
222         <literal>INT32</literal> in this example. To marshal and unmarshal 
223         basic types, you simply read one value from the data
224         block corresponding to each type code in the signature.
225         In addition to basic types, there are four <firstterm>container</firstterm> 
226         types: <literal>STRUCT</literal>, <literal>ARRAY</literal>, <literal>VARIANT</literal>, 
227         and <literal>DICT_ENTRY</literal>.
228       </para>
229
230       <para>
231         <literal>STRUCT</literal> has a type code, ASCII character 'r', but this type 
232         code does not appear in signatures. Instead, ASCII characters
233         '(' and ')' are used to mark the beginning and end of the struct.
234         So for example, a struct containing two integers would have this 
235         signature:
236         <programlisting>
237           "(ii)"
238         </programlisting>
239         Structs can be nested, so for example a struct containing 
240         an integer and another struct:
241         <programlisting>
242           "(i(ii))"
243         </programlisting>
244         The value block storing that struct would contain three integers; the
245         type signature allows you to distinguish "(i(ii))" from "((ii)i)" or
246         "(iii)" or "iii".
247       </para>
248
249       <para>
250         The <literal>STRUCT</literal> type code 'r' is not currently used in the D-Bus protocol,
251         but is useful in code that implements the protocol. This type code 
252         is specified to allow such code to interoperate in non-protocol contexts.
253       </para>
254
255       <para>
256         Empty structures are not allowed; there must be at least one
257         type code between the parentheses.
258       </para>
259
260       <para>
261         <literal>ARRAY</literal> has ASCII character 'a' as type code. The array type code must be
262         followed by a <firstterm>single complete type</firstterm>. The single
263         complete type following the array is the type of each array element. So
264         the simple example is:
265         <programlisting>
266           "ai"
267         </programlisting>
268         which is an array of 32-bit integers. But an array can be of any type, 
269         such as this array-of-struct-with-two-int32-fields:
270         <programlisting>
271           "a(ii)"
272         </programlisting>
273         Or this array of array of integer:
274         <programlisting>
275           "aai"
276         </programlisting>
277       </para>
278
279       <para>
280         The phrase <firstterm>single complete type</firstterm> deserves some 
281         definition. A single complete type is a basic type code, a variant type code, 
282         an array with its element type, or a struct with its fields. 
283         So the following signatures are not single complete types:
284         <programlisting>
285           "aa"
286         </programlisting>
287         <programlisting>
288           "(ii"
289         </programlisting>
290         <programlisting>
291           "ii)"
292         </programlisting>
293         And the following signatures contain multiple complete types:
294         <programlisting>
295           "ii"
296         </programlisting>
297         <programlisting>
298           "aiai"
299         </programlisting>
300         <programlisting>
301           "(ii)(ii)"
302         </programlisting>
303         Note however that a single complete type may <emphasis>contain</emphasis>
304         multiple other single complete types.
305       </para>
306
307       <para>
308         <literal>VARIANT</literal> has ASCII character 'v' as its type code. A marshaled value of
309         type <literal>VARIANT</literal> will have the signature of a single complete type as part
310         of the <emphasis>value</emphasis>.  This signature will be followed by a
311         marshaled value of that type.
312       </para>
313
314       <para>
315         A <literal>DICT_ENTRY</literal> works exactly like a struct, but rather
316         than parentheses it uses curly braces, and it has more restrictions.
317         The restrictions are: it occurs only as an array element type; it has
318         exactly two single complete types inside the curly braces; the first
319         single complete type (the "key") must be a basic type rather than a
320         container type. Implementations must not accept dict entries outside of
321         arrays, must not accept dict entries with zero, one, or more than two
322         fields, and must not accept dict entries with non-basic-typed keys. A
323         dict entry is always a key-value pair.
324       </para>
325       
326       <para>
327         The first field in the <literal>DICT_ENTRY</literal> is always the key.
328         A message is considered corrupt if the same key occurs twice in the same
329         array of <literal>DICT_ENTRY</literal>. However, for performance reasons
330         implementations are not required to reject dicts with duplicate keys.
331       </para>
332
333       <para>
334         In most languages, an array of dict entry would be represented as a 
335         map, hash table, or dict object.
336       </para>
337
338       <para>
339         The following table summarizes the D-Bus types.
340         <informaltable>
341           <tgroup cols="3">
342             <thead>
343               <row>
344                 <entry>Conventional Name</entry>
345                 <entry>Code</entry>
346                 <entry>Description</entry>
347               </row>
348             </thead>
349             <tbody>
350               <row>
351                 <entry><literal>INVALID</literal></entry>
352                 <entry>0 (ASCII NUL)</entry>
353                 <entry>Not a valid type code, used to terminate signatures</entry>
354               </row><row>
355                 <entry><literal>BYTE</literal></entry>
356                 <entry>121 (ASCII 'y')</entry>
357                 <entry>8-bit unsigned integer</entry>
358               </row><row>
359                 <entry><literal>BOOLEAN</literal></entry>
360                 <entry>98 (ASCII 'b')</entry>
361                 <entry>Boolean value, 0 is <literal>FALSE</literal> and 1 is <literal>TRUE</literal>. Everything else is invalid.</entry>
362               </row><row>
363                 <entry><literal>INT16</literal></entry>
364                 <entry>110 (ASCII 'n')</entry>
365                 <entry>16-bit signed integer</entry>
366               </row><row>
367                 <entry><literal>UINT16</literal></entry>
368                 <entry>113 (ASCII 'q')</entry>
369                 <entry>16-bit unsigned integer</entry>
370               </row><row>
371                 <entry><literal>INT32</literal></entry>
372                 <entry>105 (ASCII 'i')</entry>
373                 <entry>32-bit signed integer</entry>
374               </row><row>
375                 <entry><literal>UINT32</literal></entry>
376                 <entry>117 (ASCII 'u')</entry>
377                 <entry>32-bit unsigned integer</entry>
378               </row><row>
379                 <entry><literal>INT64</literal></entry>
380                 <entry>120 (ASCII 'x')</entry>
381                 <entry>64-bit signed integer</entry>
382               </row><row>
383                 <entry><literal>UINT64</literal></entry>
384                 <entry>116 (ASCII 't')</entry>
385                 <entry>64-bit unsigned integer</entry>
386               </row><row>
387                 <entry><literal>DOUBLE</literal></entry>
388                 <entry>100 (ASCII 'd')</entry>
389                 <entry>IEEE 754 double</entry>
390               </row><row>
391                 <entry><literal>STRING</literal></entry>
392                 <entry>115 (ASCII 's')</entry>
393                 <entry>UTF-8 string (<emphasis>must</emphasis> be valid UTF-8). Must be nul terminated and contain no other nul bytes.</entry>
394               </row><row>
395                 <entry><literal>OBJECT_PATH</literal></entry>
396                 <entry>111 (ASCII 'o')</entry>
397                 <entry>Name of an object instance</entry>
398               </row><row>
399                 <entry><literal>SIGNATURE</literal></entry>
400                 <entry>103 (ASCII 'g')</entry>
401                 <entry>A type signature</entry>
402               </row><row>
403                 <entry><literal>ARRAY</literal></entry>
404                 <entry>97 (ASCII 'a')</entry>
405                 <entry>Array</entry>
406               </row><row>
407                 <entry><literal>STRUCT</literal></entry>
408                 <entry>114 (ASCII 'r'), 40 (ASCII '('), 41 (ASCII ')')</entry>
409                 <entry>Struct</entry>
410               </row><row>
411                 <entry><literal>VARIANT</literal></entry>
412                 <entry>118 (ASCII 'v') </entry>
413                 <entry>Variant type (the type of the value is part of the value itself)</entry>
414               </row><row>
415                 <entry><literal>DICT_ENTRY</literal></entry>
416                 <entry>101 (ASCII 'e'), 123 (ASCII '{'), 125 (ASCII '}') </entry>
417                 <entry>Entry in a dict or map (array of key-value pairs)</entry>
418               </row><row>
419                 <entry><literal>UNIX_FD</literal></entry>
420                 <entry>104 (ASCII 'h')</entry>
421                 <entry>Unix file descriptor</entry>
422               </row>
423             </tbody>
424           </tgroup>
425         </informaltable>
426       </para>
427
428     </sect2>
429
430     <sect2 id="message-protocol-marshaling">
431       <title>Marshaling (Wire Format)</title>
432
433       <para>
434         Given a type signature, a block of bytes can be converted into typed
435         values. This section describes the format of the block of bytes.  Byte
436         order and alignment issues are handled uniformly for all D-Bus types.
437       </para>
438
439       <para>
440         A block of bytes has an associated byte order. The byte order 
441         has to be discovered in some way; for D-Bus messages, the 
442         byte order is part of the message header as described in 
443         <xref linkend="message-protocol-messages"/>. For now, assume 
444         that the byte order is known to be either little endian or big 
445           endian.
446       </para>
447
448       <para>
449         Each value in a block of bytes is aligned "naturally," for example
450         4-byte values are aligned to a 4-byte boundary, and 8-byte values to an
451         8-byte boundary. To properly align a value, <firstterm>alignment
452         padding</firstterm> may be necessary. The alignment padding must always
453         be the minimum required padding to properly align the following value;
454         and it must always be made up of nul bytes. The alignment padding must
455         not be left uninitialized (it can't contain garbage), and more padding
456         than required must not be used.
457       </para>
458
459       <para>
460         Given all this, the types are marshaled on the wire as follows:
461         <informaltable>
462           <tgroup cols="3">
463             <thead>
464               <row>
465                 <entry>Conventional Name</entry>
466                 <entry>Encoding</entry>
467                 <entry>Alignment</entry>
468               </row>
469             </thead>
470             <tbody>
471               <row>
472                 <entry><literal>INVALID</literal></entry>
473                 <entry>Not applicable; cannot be marshaled.</entry>
474                 <entry>N/A</entry>
475               </row><row>
476                 <entry><literal>BYTE</literal></entry>
477                 <entry>A single 8-bit byte.</entry>
478                 <entry>1</entry>
479               </row><row>
480                 <entry><literal>BOOLEAN</literal></entry>
481                 <entry>As for <literal>UINT32</literal>, but only 0 and 1 are valid values.</entry>
482                 <entry>4</entry>
483               </row><row>
484                 <entry><literal>INT16</literal></entry>
485                 <entry>16-bit signed integer in the message's byte order.</entry>
486                 <entry>2</entry>
487               </row><row>
488                 <entry><literal>UINT16</literal></entry>
489                 <entry>16-bit unsigned integer in the message's byte order.</entry>
490                 <entry>2</entry>
491               </row><row>
492                 <entry><literal>INT32</literal></entry>
493                 <entry>32-bit signed integer in the message's byte order.</entry>
494                 <entry>4</entry>
495               </row><row>
496                 <entry><literal>UINT32</literal></entry>
497                 <entry>32-bit unsigned integer in the message's byte order.</entry>
498                 <entry>4</entry>
499               </row><row>
500                 <entry><literal>INT64</literal></entry>
501                 <entry>64-bit signed integer in the message's byte order.</entry>
502                 <entry>8</entry>
503               </row><row>
504                 <entry><literal>UINT64</literal></entry>
505                 <entry>64-bit unsigned integer in the message's byte order.</entry>
506                 <entry>8</entry>
507               </row><row>
508                 <entry><literal>DOUBLE</literal></entry>
509                 <entry>64-bit IEEE 754 double in the message's byte order.</entry>
510                 <entry>8</entry>
511               </row><row>
512                 <entry><literal>STRING</literal></entry>
513                 <entry>A <literal>UINT32</literal> indicating the string's 
514                   length in bytes excluding its terminating nul, followed by 
515                   non-nul string data of the given length, followed by a terminating nul 
516                   byte.
517                 </entry>
518                 <entry>
519                   4 (for the length)
520                 </entry>
521               </row><row>
522                 <entry><literal>OBJECT_PATH</literal></entry>
523                 <entry>Exactly the same as <literal>STRING</literal> except the 
524                   content must be a valid object path (see below).
525                 </entry>
526                 <entry>
527                   4 (for the length)
528                 </entry>
529               </row><row>
530                 <entry><literal>SIGNATURE</literal></entry>
531                 <entry>The same as <literal>STRING</literal> except the length is a single 
532                   byte (thus signatures have a maximum length of 255)
533                   and the content must be a valid signature (see below).
534                 </entry>
535                 <entry>
536                   1
537                 </entry>
538               </row><row>
539                 <entry><literal>ARRAY</literal></entry>
540                 <entry>
541                   A <literal>UINT32</literal> giving the length of the array data in bytes, followed by 
542                   alignment padding to the alignment boundary of the array element type, 
543                   followed by each array element. The array length is from the 
544                   end of the alignment padding to the end of the last element,
545                   i.e. it does not include the padding after the length,
546                   or any padding after the last element.
547                   Arrays have a maximum length defined to be 2 to the 26th power or
548                   67108864. Implementations must not send or accept arrays exceeding this
549                   length.
550                 </entry>
551                 <entry>
552                   4 (for the length)
553                 </entry>
554               </row><row>
555                 <entry><literal>STRUCT</literal></entry>
556                 <entry>
557                   A struct must start on an 8-byte boundary regardless of the
558                   type of the struct fields. The struct value consists of each
559                   field marshaled in sequence starting from that 8-byte
560                   alignment boundary.
561                 </entry>
562                 <entry>
563                   8
564                 </entry>
565               </row><row>
566                 <entry><literal>VARIANT</literal></entry>
567                 <entry>
568                   A variant type has a marshaled <literal>SIGNATURE</literal>
569                   followed by a marshaled value with the type
570                   given in the signature.
571                   Unlike a message signature, the variant signature 
572                   can contain only a single complete type.
573                   So "i", "ai" or "(ii)" is OK, but "ii" is not.
574                 </entry>
575                 <entry>
576                   1 (alignment of the signature)
577                 </entry>
578               </row><row>
579                 <entry><literal>DICT_ENTRY</literal></entry>
580                 <entry>
581                   Identical to STRUCT.
582                 </entry>
583                 <entry>
584                   8
585                 </entry>
586               </row><row>
587                 <entry><literal>UNIX_FD</literal></entry>
588                 <entry>32-bit unsigned integer in the message's byte
589                 order. The actual file descriptors need to be
590                 transferred out-of-band via some platform specific
591                 mechanism. On the wire, values of this type store the index to the
592                 file descriptor in the array of file descriptors that
593                 accompany the message.</entry>
594                 <entry>4</entry>
595               </row>
596             </tbody>
597           </tgroup>
598         </informaltable>
599       </para>
600       
601       <sect3 id="message-protocol-marshaling-object-path">
602         <title>Valid Object Paths</title>
603         
604         <para>
605           An object path is a name used to refer to an object instance.
606           Conceptually, each participant in a D-Bus message exchange may have
607           any number of object instances (think of C++ or Java objects) and each
608           such instance will have a path. Like a filesystem, the object
609           instances in an application form a hierarchical tree.
610         </para>
611         
612         <para>
613           The following rules define a valid object path. Implementations must 
614           not send or accept messages with invalid object paths.
615           <itemizedlist>
616             <listitem>
617               <para>
618                 The path may be of any length.
619               </para>
620             </listitem>
621             <listitem>
622               <para>
623                 The path must begin with an ASCII '/' (integer 47) character, 
624                 and must consist of elements separated by slash characters.
625               </para>
626             </listitem>
627             <listitem>
628               <para>
629                 Each element must only contain the ASCII characters 
630                 "[A-Z][a-z][0-9]_"
631               </para>
632             </listitem>
633             <listitem>
634               <para>
635                 No element may be the empty string.
636               </para>
637             </listitem>
638             <listitem>
639               <para>
640                 Multiple '/' characters cannot occur in sequence.
641               </para>
642             </listitem>
643             <listitem>
644               <para>
645                 A trailing '/' character is not allowed unless the 
646                 path is the root path (a single '/' character).
647               </para>
648             </listitem>
649           </itemizedlist>
650         </para>
651
652       </sect3>
653
654       
655       <sect3 id="message-protocol-marshaling-signature">
656         <title>Valid Signatures</title>
657         <para>
658           An implementation must not send or accept invalid signatures.
659           Valid signatures will conform to the following rules:
660           <itemizedlist>
661             <listitem>
662               <para>
663                 The signature ends with a nul byte.
664               </para>
665             </listitem>
666             <listitem>
667               <para>
668                 The signature is a list of single complete types. 
669                 Arrays must have element types, and structs must 
670                 have both open and close parentheses.
671               </para>
672             </listitem>
673             <listitem>
674               <para>
675                 Only type codes and open and close parentheses are 
676                 allowed in the signature. The <literal>STRUCT</literal> type code
677                 is not allowed in signatures, because parentheses
678                 are used instead.
679               </para>
680             </listitem>
681             <listitem>
682               <para>
683                 The maximum depth of container type nesting is 32 array type
684                 codes and 32 open parentheses. This implies that the maximum
685                 total depth of recursion is 64, for an "array of array of array
686                 of ... struct of struct of struct of ..."  where there are 32
687                 array and 32 struct.
688               </para>
689             </listitem>
690             <listitem>
691               <para>
692                 The maximum length of a signature is 255.
693               </para>
694             </listitem>
695             <listitem>
696               <para>
697                 Signatures must be nul-terminated.
698               </para>
699             </listitem>
700           </itemizedlist>
701         </para>
702       </sect3>
703       
704     </sect2>
705
706     <sect2 id="message-protocol-messages">
707       <title>Message Format</title>
708
709       <para>
710         A message consists of a header and a body. The header is a block of
711         values with a fixed signature and meaning.  The body is a separate block
712         of values, with a signature specified in the header.
713       </para>
714
715       <para>
716         The length of the header must be a multiple of 8, allowing the body to
717         begin on an 8-byte boundary when storing the entire message in a single
718         buffer. If the header does not naturally end on an 8-byte boundary 
719         up to 7 bytes of nul-initialized alignment padding must be added.
720       </para>
721
722       <para>
723         The message body need not end on an 8-byte boundary.
724       </para>
725
726       <para>
727         The maximum length of a message, including header, header alignment padding, 
728         and body is 2 to the 27th power or 134217728. Implementations must not 
729         send or accept messages exceeding this size.
730       </para>
731       
732       <para>
733         The signature of the header is:
734         <programlisting>
735           "yyyyuua(yv)"
736         </programlisting>
737         Written out more readably, this is:
738         <programlisting>
739           BYTE, BYTE, BYTE, BYTE, UINT32, UINT32, ARRAY of STRUCT of (BYTE,VARIANT)
740         </programlisting>
741       </para>
742
743       <para>
744         These values have the following meanings:
745         <informaltable>
746           <tgroup cols="2">
747             <thead>
748               <row>
749                 <entry>Value</entry>
750                 <entry>Description</entry>
751               </row>
752             </thead>
753             <tbody>
754               <row>
755                 <entry>1st <literal>BYTE</literal></entry>
756                 <entry>Endianness flag; ASCII 'l' for little-endian 
757                   or ASCII 'B' for big-endian. Both header and body are 
758                 in this endianness.</entry>
759               </row>
760               <row>
761                 <entry>2nd <literal>BYTE</literal></entry>
762                 <entry><firstterm>Message type</firstterm>. Unknown types must be ignored. 
763                   Currently-defined types are described below.
764                 </entry>
765               </row>
766               <row>
767                 <entry>3rd <literal>BYTE</literal></entry>
768                 <entry>Bitwise OR of flags. Unknown flags
769                   must be ignored. Currently-defined flags are described below.
770                 </entry>
771               </row>
772               <row>
773                 <entry>4th <literal>BYTE</literal></entry>
774                 <entry>Major protocol version of the sending application.  If
775                 the major protocol version of the receiving application does not
776                 match, the applications will not be able to communicate and the
777                 D-Bus connection must be disconnected. The major protocol
778                 version for this version of the specification is 1.
779                 </entry>
780               </row>
781               <row>
782                 <entry>1st <literal>UINT32</literal></entry>
783                 <entry>Length in bytes of the message body, starting 
784                   from the end of the header. The header ends after 
785                   its alignment padding to an 8-boundary.
786                 </entry>
787               </row>
788               <row>
789                 <entry>2nd <literal>UINT32</literal></entry>
790                 <entry>The serial of this message, used as a cookie 
791                   by the sender to identify the reply corresponding
792                   to this request. This must not be zero.
793                 </entry>
794               </row>      
795               <row>
796                 <entry><literal>ARRAY</literal> of <literal>STRUCT</literal> of (<literal>BYTE</literal>,<literal>VARIANT</literal>)</entry>
797                 <entry>An array of zero or more <firstterm>header
798                   fields</firstterm> where the byte is the field code, and the
799                   variant is the field value. The message type determines 
800                   which fields are required.
801                 </entry>
802               </row>
803             </tbody>
804           </tgroup>
805         </informaltable>
806       </para>
807       <para>
808         <firstterm>Message types</firstterm> that can appear in the second byte
809         of the header are:
810         <informaltable>
811           <tgroup cols="3">
812             <thead>
813               <row>
814                 <entry>Conventional name</entry>
815                 <entry>Decimal value</entry>
816                 <entry>Description</entry>
817               </row>
818             </thead>
819             <tbody>
820               <row>
821                 <entry><literal>INVALID</literal></entry>
822                 <entry>0</entry>
823                 <entry>This is an invalid type.</entry>
824               </row>
825               <row>
826                 <entry><literal>METHOD_CALL</literal></entry>
827                 <entry>1</entry>
828                 <entry>Method call.</entry>
829               </row>
830               <row>
831                 <entry><literal>METHOD_RETURN</literal></entry>
832                 <entry>2</entry>
833                 <entry>Method reply with returned data.</entry>
834               </row>
835               <row>
836                 <entry><literal>ERROR</literal></entry>
837                 <entry>3</entry>
838                 <entry>Error reply. If the first argument exists and is a
839                 string, it is an error message.</entry>
840               </row>
841               <row>
842                 <entry><literal>SIGNAL</literal></entry>
843                 <entry>4</entry>
844                 <entry>Signal emission.</entry>
845               </row>
846             </tbody>
847           </tgroup>
848         </informaltable>
849       </para>
850       <para>
851         Flags that can appear in the third byte of the header:
852         <informaltable>
853           <tgroup cols="3">
854             <thead>
855               <row>
856                 <entry>Conventional name</entry>
857                 <entry>Hex value</entry>
858                 <entry>Description</entry>
859               </row>
860             </thead>
861             <tbody>
862               <row>
863                 <entry><literal>NO_REPLY_EXPECTED</literal></entry>
864                 <entry>0x1</entry>
865                 <entry>This message does not expect method return replies or
866                 error replies; the reply can be omitted as an
867                 optimization. However, it is compliant with this specification
868                 to return the reply despite this flag and the only harm 
869                   from doing so is extra network traffic.
870                 </entry>
871               </row>
872               <row>
873                 <entry><literal>NO_AUTO_START</literal></entry>
874                 <entry>0x2</entry>
875                 <entry>The bus must not launch an owner
876                   for the destination name in response to this message.
877                 </entry>
878               </row>
879             </tbody>
880           </tgroup>
881         </informaltable>
882       </para>
883
884       <sect3 id="message-protocol-header-fields">
885         <title>Header Fields</title>
886
887         <para>
888           The array at the end of the header contains <firstterm>header
889           fields</firstterm>, where each field is a 1-byte field code followed
890           by a field value. A header must contain the required header fields for
891           its message type, and zero or more of any optional header
892           fields. Future versions of this protocol specification may add new
893           fields. Implementations must ignore fields they do not
894           understand. Implementations must not invent their own header fields;
895           only changes to this specification may introduce new header fields.
896         </para>
897
898         <para>
899           Again, if an implementation sees a header field code that it does not
900           expect, it must ignore that field, as it will be part of a new
901           (but compatible) version of this specification. This also applies 
902           to known header fields appearing in unexpected messages, for 
903           example: if a signal has a reply serial it must be ignored
904           even though it has no meaning as of this version of the spec.
905         </para>
906
907         <para>
908           However, implementations must not send or accept known header fields
909           with the wrong type stored in the field value. So for example a
910           message with an <literal>INTERFACE</literal> field of type
911           <literal>UINT32</literal> would be considered corrupt.
912         </para>
913
914         <para>
915           Here are the currently-defined header fields:
916           <informaltable>
917             <tgroup cols="5">
918               <thead>
919                 <row>
920                   <entry>Conventional Name</entry>
921                   <entry>Decimal Code</entry>
922                   <entry>Type</entry>
923                   <entry>Required In</entry>
924                   <entry>Description</entry>
925                 </row>
926               </thead>
927               <tbody>
928                 <row>
929                   <entry><literal>INVALID</literal></entry>
930                   <entry>0</entry>
931                   <entry>N/A</entry>
932                   <entry>not allowed</entry>
933                   <entry>Not a valid field name (error if it appears in a message)</entry>
934                 </row>
935                 <row>
936                   <entry><literal>PATH</literal></entry>
937                   <entry>1</entry>
938                   <entry><literal>OBJECT_PATH</literal></entry>
939                   <entry><literal>METHOD_CALL</literal>, <literal>SIGNAL</literal></entry>
940                   <entry>The object to send a call to,
941                     or the object a signal is emitted from.
942                     The special path
943                     <literal>/org/freedesktop/DBus/Local</literal> is reserved;
944                     implementations should not send messages with this path,
945                     and the reference implementation of the bus daemon will
946                     disconnect any application that attempts to do so.
947                   </entry>
948                 </row>
949                 <row>
950                   <entry><literal>INTERFACE</literal></entry>
951                   <entry>2</entry>
952                   <entry><literal>STRING</literal></entry>
953                   <entry><literal>SIGNAL</literal></entry>
954                   <entry>
955                     The interface to invoke a method call on, or 
956                     that a signal is emitted from. Optional for 
957                     method calls, required for signals.
958                     The special interface
959                     <literal>org.freedesktop.DBus.Local</literal> is reserved;
960                     implementations should not send messages with this
961                     interface, and the reference implementation of the bus
962                     daemon will disconnect any application that attempts to
963                     do so.
964                   </entry>
965                 </row>
966                 <row>
967                   <entry><literal>MEMBER</literal></entry>
968                   <entry>3</entry>
969                   <entry><literal>STRING</literal></entry>
970                   <entry><literal>METHOD_CALL</literal>, <literal>SIGNAL</literal></entry>
971                   <entry>The member, either the method name or signal name.</entry>
972                 </row>
973                 <row>
974                   <entry><literal>ERROR_NAME</literal></entry>
975                   <entry>4</entry>
976                   <entry><literal>STRING</literal></entry>
977                   <entry><literal>ERROR</literal></entry>
978                   <entry>The name of the error that occurred, for errors</entry>
979                 </row>
980                 <row>
981                   <entry><literal>REPLY_SERIAL</literal></entry>
982                   <entry>5</entry>
983                   <entry><literal>UINT32</literal></entry>
984                   <entry><literal>ERROR</literal>, <literal>METHOD_RETURN</literal></entry>
985                   <entry>The serial number of the message this message is a reply
986                     to. (The serial number is the second <literal>UINT32</literal> in the header.)</entry>
987                 </row>
988                 <row>
989                   <entry><literal>DESTINATION</literal></entry>
990                   <entry>6</entry>
991                   <entry><literal>STRING</literal></entry>
992                   <entry>optional</entry>
993                   <entry>The name of the connection this message is intended for.
994                     Only used in combination with the message bus, see 
995                     <xref linkend="message-bus"/>.</entry>
996                 </row>
997                 <row>
998                   <entry><literal>SENDER</literal></entry>
999                   <entry>7</entry>
1000                   <entry><literal>STRING</literal></entry>
1001                   <entry>optional</entry>
1002                   <entry>Unique name of the sending connection.
1003                     The message bus fills in this field so it is reliable; the field is
1004                     only meaningful in combination with the message bus.</entry>
1005                 </row>
1006                 <row>
1007                   <entry><literal>SIGNATURE</literal></entry>
1008                   <entry>8</entry>
1009                   <entry><literal>SIGNATURE</literal></entry>
1010                   <entry>optional</entry>
1011                   <entry>The signature of the message body.
1012                   If omitted, it is assumed to be the 
1013                   empty signature "" (i.e. the body must be 0-length).</entry>
1014                 </row>
1015                 <row>
1016                   <entry><literal>UNIX_FDS</literal></entry>
1017                   <entry>9</entry>
1018                   <entry><literal>UINT32</literal></entry>
1019                   <entry>optional</entry>
1020                   <entry>The number of Unix file descriptors that
1021                   accompany the message.  If omitted, it is assumed
1022                   that no Unix file descriptors accompany the
1023                   message. The actual file descriptors need to be
1024                   transferred via platform specific mechanism
1025                   out-of-band. They must be sent at the same time as
1026                   part of the message itself. They may not be sent
1027                   before the first byte of the message itself is
1028                   transferred or after the last byte of the message
1029                   itself.</entry>
1030                 </row>
1031               </tbody>
1032             </tgroup>
1033           </informaltable>
1034         </para>
1035       </sect3>
1036     </sect2>
1037
1038     <sect2 id="message-protocol-names">
1039       <title>Valid Names</title>
1040       <para>
1041         The various names in D-Bus messages have some restrictions.
1042       </para>
1043       <para>
1044         There is a <firstterm>maximum name length</firstterm> 
1045         of 255 which applies to bus names, interfaces, and members. 
1046       </para>
1047       <sect3 id="message-protocol-names-interface">
1048         <title>Interface names</title>
1049         <para>
1050           Interfaces have names with type <literal>STRING</literal>, meaning that 
1051           they must be valid UTF-8. However, there are also some 
1052           additional restrictions that apply to interface names 
1053           specifically:
1054           <itemizedlist>
1055             <listitem><para>Interface names are composed of 1 or more elements separated by
1056                 a period ('.') character. All elements must contain at least 
1057                 one character.
1058                 </para>
1059             </listitem>
1060             <listitem><para>Each element must only contain the ASCII characters 
1061                 "[A-Z][a-z][0-9]_" and must not begin with a digit.
1062                 </para>
1063             </listitem>
1064
1065             <listitem><para>Interface names must contain at least one '.' (period)
1066               character (and thus at least two elements).
1067               </para></listitem>
1068
1069             <listitem><para>Interface names must not begin with a '.' (period) character.</para></listitem>
1070             <listitem><para>Interface names must not exceed the maximum name length.</para></listitem>
1071           </itemizedlist>
1072         </para>
1073       </sect3>
1074       <sect3 id="message-protocol-names-bus">
1075         <title>Bus names</title>
1076         <para>
1077           Connections have one or more bus names associated with them.
1078           A connection has exactly one bus name that is a unique connection
1079           name. The unique connection name remains with the connection for
1080           its entire lifetime.
1081           A bus name is of type <literal>STRING</literal>,
1082           meaning that it must be valid UTF-8. However, there are also
1083           some additional restrictions that apply to bus names 
1084           specifically:
1085           <itemizedlist>
1086             <listitem><para>Bus names that start with a colon (':')
1087                 character are unique connection names.
1088                 </para>
1089             </listitem>
1090             <listitem><para>Bus names are composed of 1 or more elements separated by
1091                 a period ('.') character. All elements must contain at least 
1092                 one character.
1093                 </para>
1094             </listitem>
1095             <listitem><para>Each element must only contain the ASCII characters 
1096                 "[A-Z][a-z][0-9]_-". Only elements that are part of a unique
1097                 connection name may begin with a digit, elements in
1098                 other bus names must not begin with a digit.
1099                 </para>
1100             </listitem>
1101
1102             <listitem><para>Bus names must contain at least one '.' (period)
1103               character (and thus at least two elements).
1104               </para></listitem>
1105
1106             <listitem><para>Bus names must not begin with a '.' (period) character.</para></listitem>
1107             <listitem><para>Bus names must not exceed the maximum name length.</para></listitem>
1108           </itemizedlist>
1109         </para>
1110         <para>
1111           Note that the hyphen ('-') character is allowed in bus names but
1112           not in interface names.
1113         </para>
1114       </sect3>
1115       <sect3 id="message-protocol-names-member">
1116         <title>Member names</title>
1117         <para>
1118           Member (i.e. method or signal) names:
1119           <itemizedlist>
1120             <listitem><para>Must only contain the ASCII characters
1121                 "[A-Z][a-z][0-9]_" and may not begin with a
1122                 digit.</para></listitem>
1123             <listitem><para>Must not contain the '.' (period) character.</para></listitem>
1124             <listitem><para>Must not exceed the maximum name length.</para></listitem>
1125             <listitem><para>Must be at least 1 byte in length.</para></listitem>
1126           </itemizedlist>
1127         </para>
1128       </sect3>
1129       <sect3 id="message-protocol-names-error">
1130         <title>Error names</title>
1131         <para>
1132           Error names have the same restrictions as interface names.
1133         </para>
1134       </sect3>
1135     </sect2>
1136
1137     <sect2 id="message-protocol-types">
1138       <title>Message Types</title>
1139       <para>
1140         Each of the message types (<literal>METHOD_CALL</literal>, <literal>METHOD_RETURN</literal>, <literal>ERROR</literal>, and
1141         <literal>SIGNAL</literal>) has its own expected usage conventions and header fields.
1142         This section describes these conventions.
1143       </para>
1144       <sect3 id="message-protocol-types-method">
1145         <title>Method Calls</title>
1146         <para>
1147           Some messages invoke an operation on a remote object.  These are
1148           called method call messages and have the type tag <literal>METHOD_CALL</literal>. Such
1149           messages map naturally to methods on objects in a typical program.
1150         </para>
1151         <para>
1152           A method call message is required to have a <literal>MEMBER</literal> header field
1153           indicating the name of the method. Optionally, the message has an
1154           <literal>INTERFACE</literal> field giving the interface the method is a part of. In the
1155           absence of an <literal>INTERFACE</literal> field, if two interfaces on the same object have
1156           a method with the same name, it is undefined which of the two methods
1157           will be invoked. Implementations may also choose to return an error in
1158           this ambiguous case. However, if a method name is unique
1159           implementations must not require an interface field.
1160         </para>
1161         <para>
1162           Method call messages also include a <literal>PATH</literal> field
1163           indicating the object to invoke the method on. If the call is passing
1164           through a message bus, the message will also have a
1165           <literal>DESTINATION</literal> field giving the name of the connection
1166           to receive the message.
1167         </para>
1168         <para>
1169           When an application handles a method call message, it is required to
1170           return a reply. The reply is identified by a <literal>REPLY_SERIAL</literal> header field
1171           indicating the serial number of the <literal>METHOD_CALL</literal> being replied to. The
1172           reply can have one of two types; either <literal>METHOD_RETURN</literal> or <literal>ERROR</literal>.
1173         </para>
1174         <para>
1175           If the reply has type <literal>METHOD_RETURN</literal>, the arguments to the reply message 
1176           are the return value(s) or "out parameters" of the method call. 
1177           If the reply has type <literal>ERROR</literal>, then an "exception" has been thrown, 
1178           and the call fails; no return value will be provided. It makes 
1179           no sense to send multiple replies to the same method call.
1180         </para>
1181         <para>
1182           Even if a method call has no return values, a <literal>METHOD_RETURN</literal> 
1183           reply is required, so the caller will know the method 
1184           was successfully processed.
1185         </para>
1186         <para>
1187           The <literal>METHOD_RETURN</literal> or <literal>ERROR</literal> reply message must have the <literal>REPLY_SERIAL</literal> 
1188           header field.
1189         </para>
1190         <para>
1191           If a <literal>METHOD_CALL</literal> message has the flag <literal>NO_REPLY_EXPECTED</literal>, 
1192           then as an optimization the application receiving the method 
1193           call may choose to omit the reply message (regardless of 
1194           whether the reply would have been <literal>METHOD_RETURN</literal> or <literal>ERROR</literal>). 
1195           However, it is also acceptable to ignore the <literal>NO_REPLY_EXPECTED</literal>
1196           flag and reply anyway.
1197         </para>
1198         <para>
1199           Unless a message has the flag <literal>NO_AUTO_START</literal>, if the
1200           destination name does not exist then a program to own the destination
1201           name will be started before the message is delivered.  The message
1202           will be held until the new program is successfully started or has
1203           failed to start; in case of failure, an error will be returned. This
1204           flag is only relevant in the context of a message bus, it is ignored
1205           during one-to-one communication with no intermediate bus.
1206         </para>
1207         <sect4 id="message-protocol-types-method-apis">
1208           <title>Mapping method calls to native APIs</title>
1209           <para>
1210             APIs for D-Bus may map method calls to a method call in a specific
1211             programming language, such as C++, or may map a method call written
1212             in an IDL to a D-Bus message.
1213           </para>
1214           <para>
1215             In APIs of this nature, arguments to a method are often termed "in"
1216             (which implies sent in the <literal>METHOD_CALL</literal>), or "out" (which implies
1217             returned in the <literal>METHOD_RETURN</literal>). Some APIs such as CORBA also have
1218             "inout" arguments, which are both sent and received, i.e. the caller
1219             passes in a value which is modified. Mapped to D-Bus, an "inout"
1220             argument is equivalent to an "in" argument, followed by an "out"
1221             argument. You can't pass things "by reference" over the wire, so
1222             "inout" is purely an illusion of the in-process API.
1223           </para>
1224           <para>
1225             Given a method with zero or one return values, followed by zero or more
1226             arguments, where each argument may be "in", "out", or "inout", the
1227             caller constructs a message by appending each "in" or "inout" argument,
1228             in order. "out" arguments are not represented in the caller's message.
1229           </para>
1230           <para>
1231             The recipient constructs a reply by appending first the return value 
1232             if any, then each "out" or "inout" argument, in order. 
1233             "in" arguments are not represented in the reply message.
1234           </para>
1235           <para>
1236             Error replies are normally mapped to exceptions in languages that have
1237             exceptions.
1238           </para>
1239           <para>
1240             In converting from native APIs to D-Bus, it is perhaps nice to 
1241             map D-Bus naming conventions ("FooBar") to native conventions 
1242             such as "fooBar" or "foo_bar" automatically. This is OK 
1243             as long as you can say that the native API is one that 
1244             was specifically written for D-Bus. It makes the most sense
1245             when writing object implementations that will be exported 
1246             over the bus. Object proxies used to invoke remote D-Bus 
1247             objects probably need the ability to call any D-Bus method,
1248             and thus a magic name mapping like this could be a problem.
1249           </para>
1250           <para>
1251             This specification doesn't require anything of native API bindings;
1252             the preceding is only a suggested convention for consistency 
1253             among bindings.
1254           </para>
1255         </sect4>
1256       </sect3>
1257
1258       <sect3 id="message-protocol-types-signal">
1259         <title>Signal Emission</title>
1260         <para>
1261           Unlike method calls, signal emissions have no replies. 
1262           A signal emission is simply a single message of type <literal>SIGNAL</literal>.
1263           It must have three header fields: <literal>PATH</literal> giving the object 
1264           the signal was emitted from, plus <literal>INTERFACE</literal> and <literal>MEMBER</literal> giving
1265           the fully-qualified name of the signal. The <literal>INTERFACE</literal> header is required
1266           for signals, though it is optional for method calls.
1267         </para>
1268       </sect3>
1269
1270       <sect3 id="message-protocol-types-errors">
1271         <title>Errors</title>
1272         <para>
1273           Messages of type <literal>ERROR</literal> are most commonly replies 
1274           to a <literal>METHOD_CALL</literal>, but may be returned in reply 
1275           to any kind of message. The message bus for example
1276           will return an <literal>ERROR</literal> in reply to a signal emission if 
1277           the bus does not have enough memory to send the signal.
1278         </para>
1279         <para>
1280           An <literal>ERROR</literal> may have any arguments, but if the first 
1281           argument is a <literal>STRING</literal>, it must be an error message.
1282           The error message may be logged or shown to the user
1283           in some way.
1284         </para>
1285       </sect3>
1286
1287       <sect3 id="message-protocol-types-notation">
1288         <title>Notation in this document</title>
1289         <para>
1290           This document uses a simple pseudo-IDL to describe particular method 
1291           calls and signals. Here is an example of a method call:
1292           <programlisting>
1293             org.freedesktop.DBus.StartServiceByName (in STRING name, in UINT32 flags,
1294                                                      out UINT32 resultcode)
1295           </programlisting>
1296           This means <literal>INTERFACE</literal> = org.freedesktop.DBus, <literal>MEMBER</literal> = StartServiceByName, 
1297           <literal>METHOD_CALL</literal> arguments are <literal>STRING</literal> and <literal>UINT32</literal>, <literal>METHOD_RETURN</literal> argument
1298           is <literal>UINT32</literal>. Remember that the <literal>MEMBER</literal> field can't contain any '.' (period)
1299           characters so it's known that the last part of the name in
1300           the "IDL" is the member name.
1301         </para>
1302         <para>
1303           In C++ that might end up looking like this:
1304           <programlisting>
1305             unsigned int org::freedesktop::DBus::StartServiceByName (const char  *name,
1306                                                                      unsigned int flags);
1307           </programlisting>
1308           or equally valid, the return value could be done as an argument:
1309           <programlisting>
1310             void org::freedesktop::DBus::StartServiceByName (const char   *name, 
1311                                                              unsigned int  flags,
1312                                                              unsigned int *resultcode);
1313           </programlisting>
1314           It's really up to the API designer how they want to make 
1315           this look. You could design an API where the namespace wasn't used 
1316           in C++, using STL or Qt, using varargs, or whatever you wanted.
1317         </para>
1318         <para>
1319           Signals are written as follows:
1320           <programlisting>
1321             org.freedesktop.DBus.NameLost (STRING name)
1322           </programlisting>
1323           Signals don't specify "in" vs. "out" because only 
1324           a single direction is possible.
1325         </para>
1326         <para>
1327           It isn't especially encouraged to use this lame pseudo-IDL in actual
1328           API implementations; you might use the native notation for the
1329           language you're using, or you might use COM or CORBA IDL, for example.
1330         </para>
1331       </sect3>
1332     </sect2>
1333
1334     <sect2 id="message-protocol-handling-invalid">
1335       <title>Invalid Protocol and Spec Extensions</title>
1336       
1337       <para>
1338         For security reasons, the D-Bus protocol should be strictly parsed and
1339         validated, with the exception of defined extension points. Any invalid
1340         protocol or spec violations should result in immediately dropping the
1341         connection without notice to the other end. Exceptions should be
1342         carefully considered, e.g. an exception may be warranted for a
1343         well-understood idiosyncrasy of a widely-deployed implementation.  In
1344         cases where the other end of a connection is 100% trusted and known to
1345         be friendly, skipping validation for performance reasons could also make
1346         sense in certain cases.
1347       </para>
1348
1349       <para>
1350         Generally speaking violations of the "must" requirements in this spec 
1351         should be considered possible attempts to exploit security, and violations 
1352         of the "should" suggestions should be considered legitimate (though perhaps
1353         they should generate an error in some cases).
1354       </para>
1355
1356       <para>
1357         The following extension points are built in to D-Bus on purpose and must
1358         not be treated as invalid protocol. The extension points are intended
1359         for use by future versions of this spec, they are not intended for third
1360         parties.  At the moment, the only way a third party could extend D-Bus
1361         without breaking interoperability would be to introduce a way to negotiate new
1362         feature support as part of the auth protocol, using EXTENSION_-prefixed
1363         commands. There is not yet a standard way to negotiate features.
1364         <itemizedlist>
1365           <listitem>
1366             <para>
1367               In the authentication protocol (see <xref linkend="auth-protocol"/>) unknown 
1368                 commands result in an ERROR rather than a disconnect. This enables 
1369                 future extensions to the protocol. Commands starting with EXTENSION_ are 
1370                 reserved for third parties.
1371             </para>
1372           </listitem>
1373           <listitem>
1374             <para>
1375               The authentication protocol supports pluggable auth mechanisms.
1376             </para>
1377           </listitem>
1378           <listitem>
1379             <para>
1380               The address format (see <xref linkend="addresses"/>) supports new
1381               kinds of transport.
1382             </para>
1383           </listitem>
1384           <listitem>
1385             <para>
1386               Messages with an unknown type (something other than
1387               <literal>METHOD_CALL</literal>, <literal>METHOD_RETURN</literal>,
1388               <literal>ERROR</literal>, <literal>SIGNAL</literal>) are ignored. 
1389               Unknown-type messages must still be well-formed in the same way 
1390               as the known messages, however. They still have the normal 
1391               header and body.
1392             </para>
1393           </listitem>
1394           <listitem>
1395             <para>
1396               Header fields with an unknown or unexpected field code must be ignored, 
1397               though again they must still be well-formed.
1398             </para>
1399           </listitem>
1400           <listitem>
1401             <para>
1402               New standard interfaces (with new methods and signals) can of course be added.
1403             </para>
1404           </listitem>
1405         </itemizedlist>
1406       </para>
1407
1408     </sect2>
1409
1410   </sect1>
1411
1412   <sect1 id="auth-protocol">
1413     <title>Authentication Protocol</title>
1414     <para>
1415       Before the flow of messages begins, two applications must
1416       authenticate. A simple plain-text protocol is used for
1417       authentication; this protocol is a SASL profile, and maps fairly
1418       directly from the SASL specification. The message encoding is
1419       NOT used here, only plain text messages.
1420     </para>
1421     <para>
1422       In examples, "C:" and "S:" indicate lines sent by the client and
1423       server respectively.
1424     </para>
1425     <sect2 id="auth-protocol-overview">
1426       <title>Protocol Overview</title>
1427       <para>
1428         The protocol is a line-based protocol, where each line ends with
1429         \r\n. Each line begins with an all-caps ASCII command name containing
1430         only the character range [A-Z_], a space, then any arguments for the
1431         command, then the \r\n ending the line. The protocol is
1432         case-sensitive. All bytes must be in the ASCII character set.
1433
1434         Commands from the client to the server are as follows:
1435
1436         <itemizedlist>
1437           <listitem><para>AUTH [mechanism] [initial-response]</para></listitem>
1438           <listitem><para>CANCEL</para></listitem>
1439           <listitem><para>BEGIN</para></listitem>
1440           <listitem><para>DATA &lt;data in hex encoding&gt;</para></listitem>
1441           <listitem><para>ERROR [human-readable error explanation]</para></listitem>
1442           <listitem><para>NEGOTIATE_UNIX_FD</para></listitem>
1443         </itemizedlist>
1444
1445         From server to client are as follows:
1446
1447         <itemizedlist>
1448           <listitem><para>REJECTED &lt;space-separated list of mechanism names&gt;</para></listitem>
1449           <listitem><para>OK &lt;GUID in hex&gt;</para></listitem>
1450           <listitem><para>DATA &lt;data in hex encoding&gt;</para></listitem>
1451           <listitem><para>ERROR</para></listitem>
1452           <listitem><para>AGREE_UNIX_FD</para></listitem>
1453         </itemizedlist>
1454       </para>
1455       <para>
1456         Unofficial extensions to the command set must begin with the letters 
1457         "EXTENSION_", to avoid conflicts with future official commands.
1458         For example, "EXTENSION_COM_MYDOMAIN_DO_STUFF".
1459       </para>
1460     </sect2>
1461     <sect2 id="auth-nul-byte">
1462       <title>Special credentials-passing nul byte</title>
1463       <para>
1464         Immediately after connecting to the server, the client must send a
1465         single nul byte. This byte may be accompanied by credentials
1466         information on some operating systems that use sendmsg() with
1467         SCM_CREDS or SCM_CREDENTIALS to pass credentials over UNIX domain
1468         sockets. However, the nul byte must be sent even on other kinds of
1469         socket, and even on operating systems that do not require a byte to be
1470         sent in order to transmit credentials. The text protocol described in
1471         this document begins after the single nul byte. If the first byte
1472         received from the client is not a nul byte, the server may disconnect 
1473         that client.
1474       </para>
1475       <para>
1476         A nul byte in any context other than the initial byte is an error; 
1477         the protocol is ASCII-only.
1478       </para>
1479       <para>
1480         The credentials sent along with the nul byte may be used with the 
1481         SASL mechanism EXTERNAL.
1482       </para>
1483     </sect2>
1484     <sect2 id="auth-command-auth">
1485       <title>AUTH command</title>
1486       <para>
1487         If an AUTH command has no arguments, it is a request to list
1488         available mechanisms. The server must respond with a REJECTED
1489         command listing the mechanisms it understands, or with an error.
1490       </para>
1491       <para>
1492         If an AUTH command specifies a mechanism, and the server supports
1493         said mechanism, the server should begin exchanging SASL
1494         challenge-response data with the client using DATA commands.
1495       </para>
1496       <para>
1497         If the server does not support the mechanism given in the AUTH
1498         command, it must send either a REJECTED command listing the mechanisms
1499         it does support, or an error.
1500       </para>
1501       <para>
1502         If the [initial-response] argument is provided, it is intended for use
1503         with mechanisms that have no initial challenge (or an empty initial
1504         challenge), as if it were the argument to an initial DATA command. If
1505         the selected mechanism has an initial challenge and [initial-response]
1506         was provided, the server should reject authentication by sending
1507         REJECTED.
1508       </para>
1509       <para>
1510         If authentication succeeds after exchanging DATA commands, 
1511         an OK command must be sent to the client.
1512       </para>
1513       <para>
1514         The first octet received by the server after the \r\n of the BEGIN
1515         command from the client must be the first octet of the
1516         authenticated/encrypted stream of D-Bus messages.
1517       </para>
1518       <para>
1519         If BEGIN is received by the server, the first octet received
1520         by the client after the \r\n of the OK command must be the
1521         first octet of the authenticated/encrypted stream of D-Bus
1522         messages.
1523       </para>
1524     </sect2>
1525     <sect2 id="auth-command-cancel">
1526       <title>CANCEL Command</title>
1527       <para>
1528         At any time up to sending the BEGIN command, the client may send a
1529         CANCEL command. On receiving the CANCEL command, the server must
1530         send a REJECTED command and abort the current authentication
1531         exchange.
1532       </para>
1533     </sect2>
1534     <sect2 id="auth-command-data">
1535       <title>DATA Command</title>
1536       <para>
1537         The DATA command may come from either client or server, and simply 
1538         contains a hex-encoded block of data to be interpreted 
1539         according to the SASL mechanism in use.
1540       </para>
1541       <para>
1542         Some SASL mechanisms support sending an "empty string"; 
1543         FIXME we need some way to do this.
1544       </para>
1545     </sect2>
1546     <sect2 id="auth-command-begin">
1547       <title>BEGIN Command</title>
1548       <para>
1549         The BEGIN command acknowledges that the client has received an 
1550         OK command from the server, and that the stream of messages
1551         is about to begin. 
1552       </para>
1553       <para>
1554         The first octet received by the server after the \r\n of the BEGIN
1555         command from the client must be the first octet of the
1556         authenticated/encrypted stream of D-Bus messages.
1557       </para>
1558     </sect2>
1559     <sect2 id="auth-command-rejected">
1560       <title>REJECTED Command</title>
1561       <para>
1562         The REJECTED command indicates that the current authentication
1563         exchange has failed, and further exchange of DATA is inappropriate.
1564         The client would normally try another mechanism, or try providing
1565         different responses to challenges.
1566       </para><para>
1567         Optionally, the REJECTED command has a space-separated list of
1568         available auth mechanisms as arguments. If a server ever provides
1569         a list of supported mechanisms, it must provide the same list 
1570         each time it sends a REJECTED message. Clients are free to 
1571         ignore all lists received after the first.
1572       </para>
1573     </sect2>
1574     <sect2 id="auth-command-ok">
1575       <title>OK Command</title>
1576       <para>
1577         The OK command indicates that the client has been
1578         authenticated. The client may now proceed with negotiating
1579         Unix file descriptor passing. To do that it shall send
1580         NEGOTIATE_UNIX_FD to the server.
1581       </para>
1582       <para>
1583         Otherwise, the client must respond to the OK command by
1584         sending a BEGIN command, followed by its stream of messages,
1585         or by disconnecting.  The server must not accept additional
1586         commands using this protocol after the BEGIN command has been
1587         received. Further communication will be a stream of D-Bus
1588         messages (optionally encrypted, as negotiated) rather than
1589         this protocol.
1590       </para>
1591       <para>
1592         If a client sends BEGIN the first octet received by the client
1593         after the \r\n of the OK command must be the first octet of
1594         the authenticated/encrypted stream of D-Bus messages.
1595       </para>
1596       <para>
1597         The OK command has one argument, which is the GUID of the server.
1598         See <xref linkend="addresses"/> for more on server GUIDs.
1599       </para>
1600     </sect2>
1601     <sect2 id="auth-command-error">
1602       <title>ERROR Command</title>
1603       <para>
1604         The ERROR command indicates that either server or client did not
1605         know a command, does not accept the given command in the current
1606         context, or did not understand the arguments to the command. This
1607         allows the protocol to be extended; a client or server can send a
1608         command present or permitted only in new protocol versions, and if
1609         an ERROR is received instead of an appropriate response, fall back
1610         to using some other technique.
1611       </para>
1612       <para>
1613         If an ERROR is sent, the server or client that sent the
1614         error must continue as if the command causing the ERROR had never been
1615         received. However, the the server or client receiving the error 
1616         should try something other than whatever caused the error; 
1617         if only canceling/rejecting the authentication.
1618       </para>
1619       <para>
1620         If the D-Bus protocol changes incompatibly at some future time,
1621         applications implementing the new protocol would probably be able to
1622         check for support of the new protocol by sending a new command and
1623         receiving an ERROR from applications that don't understand it. Thus the
1624         ERROR feature of the auth protocol is an escape hatch that lets us
1625         negotiate extensions or changes to the D-Bus protocol in the future.
1626       </para>
1627     </sect2>
1628     <sect2 id="auth-command-negotiate-unix-fd">
1629       <title>NEGOTIATE_UNIX_FD Command</title>
1630       <para>
1631         The NEGOTIATE_UNIX_FD command indicates that the client
1632         supports Unix file descriptor passing. This command may only
1633         be sent after the connection is authenticated, i.e. after OK
1634         was received by the client. This command may only be sent on
1635         transports that support Unix file descriptor passing.
1636       </para>
1637       <para>
1638         On receiving NEGOTIATE_UNIX_FD the server must respond with
1639         either AGREE_UNIX_FD or ERROR. It shall respond the former if
1640         the transport chosen supports Unix file descriptor passing and
1641         the server supports this feature. It shall respond the latter
1642         if the transport does not support Unix file descriptor
1643         passing, the server does not support this feature, or the
1644         server decides not to enable file descriptor passing due to
1645         security or other reasons.
1646       </para>
1647     </sect2>
1648     <sect2 id="auth-command-agree-unix-fd">
1649       <title>AGREE_UNIX_FD Command</title>
1650       <para>
1651         The AGREE_UNIX_FD command indicates that the server supports
1652         Unix file descriptor passing. This command may only be sent
1653         after the connection is authenticated, and the client sent
1654         NEGOTIATE_UNIX_FD to enable Unix file descriptor passing. This
1655         command may only be sent on transports that support Unix file
1656         descriptor passing.
1657       </para>
1658       <para>
1659         On receiving AGREE_UNIX_FD the client must respond with BEGIN,
1660         followed by its stream of messages, or by disconnecting.  The
1661         server must not accept additional commands using this protocol
1662         after the BEGIN command has been received. Further
1663         communication will be a stream of D-Bus messages (optionally
1664         encrypted, as negotiated) rather than this protocol.
1665       </para>
1666     </sect2>
1667     <sect2 id="auth-command-future">
1668       <title>Future Extensions</title>
1669       <para>
1670         Future extensions to the authentication and negotiation
1671         protocol are possible. For that new commands may be
1672         introduced. If a client or server receives an unknown command
1673         it shall respond with ERROR and not consider this fatal. New
1674         commands may be introduced both before, and after
1675         authentication, i.e. both before and after the OK command.
1676       </para>
1677     </sect2>
1678     <sect2 id="auth-examples">
1679       <title>Authentication examples</title>
1680       
1681       <para>
1682         <figure>
1683           <title>Example of successful magic cookie authentication</title>
1684           <programlisting>
1685             (MAGIC_COOKIE is a made up mechanism)
1686
1687             C: AUTH MAGIC_COOKIE 3138363935333137393635383634
1688             S: OK 1234deadbeef
1689             C: BEGIN
1690           </programlisting>
1691         </figure>
1692         <figure>
1693           <title>Example of finding out mechanisms then picking one</title>
1694           <programlisting>
1695             C: AUTH
1696             S: REJECTED KERBEROS_V4 SKEY
1697             C: AUTH SKEY 7ab83f32ee
1698             S: DATA 8799cabb2ea93e
1699             C: DATA 8ac876e8f68ee9809bfa876e6f9876g8fa8e76e98f
1700             S: OK 1234deadbeef
1701             C: BEGIN
1702           </programlisting>
1703         </figure>
1704         <figure>
1705           <title>Example of client sends unknown command then falls back to regular auth</title>
1706           <programlisting>
1707             C: FOOBAR
1708             S: ERROR
1709             C: AUTH MAGIC_COOKIE 3736343435313230333039
1710             S: OK 1234deadbeef
1711             C: BEGIN
1712           </programlisting>
1713         </figure>
1714         <figure>
1715           <title>Example of server doesn't support initial auth mechanism</title>
1716           <programlisting>
1717             C: AUTH MAGIC_COOKIE 3736343435313230333039
1718             S: REJECTED KERBEROS_V4 SKEY
1719             C: AUTH SKEY 7ab83f32ee
1720             S: DATA 8799cabb2ea93e
1721             C: DATA 8ac876e8f68ee9809bfa876e6f9876g8fa8e76e98f
1722             S: OK 1234deadbeef
1723             C: BEGIN
1724           </programlisting>
1725         </figure>
1726         <figure>
1727           <title>Example of wrong password or the like followed by successful retry</title>
1728           <programlisting>
1729             C: AUTH MAGIC_COOKIE 3736343435313230333039
1730             S: REJECTED KERBEROS_V4 SKEY
1731             C: AUTH SKEY 7ab83f32ee
1732             S: DATA 8799cabb2ea93e
1733             C: DATA 8ac876e8f68ee9809bfa876e6f9876g8fa8e76e98f
1734             S: REJECTED
1735             C: AUTH SKEY 7ab83f32ee
1736             S: DATA 8799cabb2ea93e
1737             C: DATA 8ac876e8f68ee9809bfa876e6f9876g8fa8e76e98f
1738             S: OK 1234deadbeef
1739             C: BEGIN
1740           </programlisting>
1741         </figure>
1742         <figure>
1743           <title>Example of skey cancelled and restarted</title>
1744           <programlisting>
1745             C: AUTH MAGIC_COOKIE 3736343435313230333039
1746             S: REJECTED KERBEROS_V4 SKEY
1747             C: AUTH SKEY 7ab83f32ee
1748             S: DATA 8799cabb2ea93e
1749             C: CANCEL
1750             S: REJECTED
1751             C: AUTH SKEY 7ab83f32ee
1752             S: DATA 8799cabb2ea93e
1753             C: DATA 8ac876e8f68ee9809bfa876e6f9876g8fa8e76e98f
1754             S: OK 1234deadbeef
1755             C: BEGIN
1756           </programlisting>
1757         </figure>
1758         <figure>
1759           <title>Example of successful magic cookie authentication with successful negotiation of Unix FD passing</title>
1760           <programlisting>
1761             (MAGIC_COOKIE is a made up mechanism)
1762
1763             C: AUTH MAGIC_COOKIE 3138363935333137393635383634
1764             S: OK 1234deadbeef
1765             C: NEGOTIATE_UNIX_FD
1766             S: AGREE_UNIX_FD
1767             C: BEGIN
1768           </programlisting>
1769         </figure>
1770         <figure>
1771           <title>Example of successful magic cookie authentication with unsuccessful negotiation of Unix FD passing</title>
1772           <programlisting>
1773             (MAGIC_COOKIE is a made up mechanism)
1774
1775             C: AUTH MAGIC_COOKIE 3138363935333137393635383634
1776             S: OK 1234deadbeef
1777             C: NEGOTIATE_UNIX_FD
1778             S: ERROR
1779             C: BEGIN
1780           </programlisting>
1781         </figure>
1782       </para>
1783     </sect2>
1784     <sect2 id="auth-states">
1785       <title>Authentication state diagrams</title>
1786       
1787       <para>
1788         This section documents the auth protocol in terms of 
1789         a state machine for the client and the server. This is 
1790         probably the most robust way to implement the protocol.
1791       </para>
1792
1793       <sect3 id="auth-states-client">
1794         <title>Client states</title>
1795         
1796         <para>
1797           To more precisely describe the interaction between the
1798           protocol state machine and the authentication mechanisms the
1799           following notation is used: MECH(CHALL) means that the
1800           server challenge CHALL was fed to the mechanism MECH, which
1801           returns one of
1802
1803           <itemizedlist>
1804             <listitem>
1805               <para>
1806                 CONTINUE(RESP) means continue the auth conversation
1807                 and send RESP as the response to the server;
1808               </para>
1809             </listitem>
1810
1811             <listitem>
1812               <para>
1813                 OK(RESP) means that after sending RESP to the server
1814                 the client side of the auth conversation is finished
1815                 and the server should return "OK";
1816               </para>
1817             </listitem>
1818
1819             <listitem>
1820               <para>
1821                 ERROR means that CHALL was invalid and could not be
1822                 processed.
1823               </para>
1824             </listitem>
1825           </itemizedlist>
1826           
1827           Both RESP and CHALL may be empty.
1828         </para>
1829         
1830         <para>
1831           The Client starts by getting an initial response from the
1832           default mechanism and sends AUTH MECH RESP, or AUTH MECH if
1833           the mechanism did not provide an initial response.  If the
1834           mechanism returns CONTINUE, the client starts in state
1835           <emphasis>WaitingForData</emphasis>, if the mechanism
1836           returns OK the client starts in state
1837           <emphasis>WaitingForOK</emphasis>.
1838         </para>
1839         
1840         <para>
1841           The client should keep track of available mechanisms and
1842           which it mechanisms it has already attempted. This list is
1843           used to decide which AUTH command to send. When the list is
1844           exhausted, the client should give up and close the
1845           connection.
1846         </para>
1847
1848         <formalpara>
1849           <title><emphasis>WaitingForData</emphasis></title>
1850           <para>
1851             <itemizedlist>
1852               <listitem>
1853                 <para>
1854                   Receive DATA CHALL
1855                   <simplelist>
1856                     <member>
1857                       MECH(CHALL) returns CONTINUE(RESP) &rarr; send
1858                       DATA RESP, goto
1859                       <emphasis>WaitingForData</emphasis>
1860                     </member>
1861
1862                     <member>
1863                       MECH(CHALL) returns OK(RESP) &rarr; send DATA
1864                       RESP, goto <emphasis>WaitingForOK</emphasis>
1865                     </member>
1866
1867                     <member>
1868                       MECH(CHALL) returns ERROR &rarr; send ERROR
1869                       [msg], goto <emphasis>WaitingForData</emphasis>
1870                     </member>
1871                   </simplelist>
1872                 </para>
1873               </listitem>
1874
1875               <listitem>
1876                 <para>
1877                   Receive REJECTED [mechs] &rarr;
1878                   send AUTH [next mech], goto
1879                   WaitingForData or <emphasis>WaitingForOK</emphasis>
1880                 </para>
1881               </listitem>
1882               <listitem>
1883                 <para>
1884                   Receive ERROR &rarr; send
1885                   CANCEL, goto
1886                   <emphasis>WaitingForReject</emphasis>
1887                 </para>
1888               </listitem>
1889               <listitem>
1890                 <para>
1891                   Receive OK &rarr; send
1892                   BEGIN, terminate auth
1893                   conversation, authenticated
1894                 </para>
1895               </listitem>
1896               <listitem>
1897                 <para>
1898                   Receive anything else &rarr; send
1899                   ERROR, goto
1900                   <emphasis>WaitingForData</emphasis>
1901                 </para>
1902               </listitem>
1903             </itemizedlist>
1904           </para>
1905         </formalpara>
1906
1907         <formalpara>
1908           <title><emphasis>WaitingForOK</emphasis></title>
1909           <para>
1910             <itemizedlist>
1911               <listitem>
1912                 <para>
1913                   Receive OK &rarr; send BEGIN, terminate auth
1914                   conversation, <emphasis>authenticated</emphasis>
1915                 </para>
1916               </listitem>
1917               <listitem>
1918                 <para>
1919                   Receive REJECT [mechs] &rarr; send AUTH [next mech],
1920                   goto <emphasis>WaitingForData</emphasis> or
1921                   <emphasis>WaitingForOK</emphasis>
1922                 </para>
1923               </listitem>
1924
1925               <listitem>
1926                 <para>
1927                   Receive DATA &rarr; send CANCEL, goto
1928                   <emphasis>WaitingForReject</emphasis>
1929                 </para>
1930               </listitem>
1931
1932               <listitem>
1933                 <para>
1934                   Receive ERROR &rarr; send CANCEL, goto
1935                   <emphasis>WaitingForReject</emphasis>
1936                 </para>
1937               </listitem>
1938
1939               <listitem>
1940                 <para>
1941                   Receive anything else &rarr; send ERROR, goto
1942                   <emphasis>WaitingForOK</emphasis>
1943                 </para>
1944               </listitem>
1945             </itemizedlist>
1946           </para>
1947         </formalpara>
1948
1949         <formalpara>
1950           <title><emphasis>WaitingForReject</emphasis></title>
1951           <para>
1952             <itemizedlist>
1953               <listitem>
1954                 <para>
1955                   Receive REJECT [mechs] &rarr; send AUTH [next mech],
1956                   goto <emphasis>WaitingForData</emphasis> or
1957                   <emphasis>WaitingForOK</emphasis>
1958                 </para>
1959               </listitem>
1960
1961               <listitem>
1962                 <para>
1963                   Receive anything else &rarr; terminate auth
1964                   conversation, disconnect
1965                 </para>
1966               </listitem>
1967             </itemizedlist>
1968           </para>
1969         </formalpara>
1970
1971       </sect3>
1972
1973       <sect3 id="auth-states-server">
1974         <title>Server states</title>
1975  
1976         <para>
1977           For the server MECH(RESP) means that the client response
1978           RESP was fed to the the mechanism MECH, which returns one of
1979
1980           <itemizedlist>
1981             <listitem>
1982               <para>
1983                 CONTINUE(CHALL) means continue the auth conversation and
1984                 send CHALL as the challenge to the client;
1985               </para>
1986             </listitem>
1987
1988             <listitem>
1989               <para>
1990                 OK means that the client has been successfully
1991                 authenticated;
1992               </para>
1993             </listitem>
1994
1995             <listitem>
1996               <para>
1997                 REJECT means that the client failed to authenticate or
1998                 there was an error in RESP.
1999               </para>
2000             </listitem>
2001           </itemizedlist>
2002
2003           The server starts out in state
2004           <emphasis>WaitingForAuth</emphasis>.  If the client is
2005           rejected too many times the server must disconnect the
2006           client.
2007         </para>
2008
2009         <formalpara>
2010           <title><emphasis>WaitingForAuth</emphasis></title>
2011           <para>
2012             <itemizedlist>
2013
2014               <listitem>
2015                 <para>
2016                   Receive AUTH &rarr; send REJECTED [mechs], goto
2017                   <emphasis>WaitingForAuth</emphasis>
2018                 </para>
2019               </listitem>
2020
2021               <listitem>
2022                 <para>
2023                   Receive AUTH MECH RESP
2024
2025                   <simplelist>
2026                     <member>
2027                       MECH not valid mechanism &rarr; send REJECTED
2028                       [mechs], goto
2029                       <emphasis>WaitingForAuth</emphasis>
2030                     </member>
2031
2032                     <member>
2033                       MECH(RESP) returns CONTINUE(CHALL) &rarr; send
2034                       DATA CHALL, goto
2035                       <emphasis>WaitingForData</emphasis>
2036                     </member>
2037
2038                     <member>
2039                       MECH(RESP) returns OK &rarr; send OK, goto
2040                       <emphasis>WaitingForBegin</emphasis>
2041                     </member>
2042
2043                     <member>
2044                       MECH(RESP) returns REJECT &rarr; send REJECTED
2045                       [mechs], goto
2046                       <emphasis>WaitingForAuth</emphasis>
2047                     </member>
2048                   </simplelist>
2049                 </para>
2050               </listitem>
2051
2052               <listitem>
2053                 <para>
2054                   Receive BEGIN &rarr; terminate
2055                   auth conversation, disconnect
2056                 </para>
2057               </listitem>
2058
2059               <listitem>
2060                 <para>
2061                   Receive ERROR &rarr; send REJECTED [mechs], goto
2062                   <emphasis>WaitingForAuth</emphasis>
2063                 </para>
2064               </listitem>
2065
2066               <listitem>
2067                 <para>
2068                   Receive anything else &rarr; send
2069                   ERROR, goto
2070                   <emphasis>WaitingForAuth</emphasis>
2071                 </para>
2072               </listitem>
2073             </itemizedlist>
2074           </para>
2075         </formalpara>
2076
2077        
2078         <formalpara>
2079           <title><emphasis>WaitingForData</emphasis></title>
2080           <para>
2081             <itemizedlist>
2082               <listitem>
2083                 <para>
2084                   Receive DATA RESP
2085                   <simplelist>
2086                     <member>
2087                       MECH(RESP) returns CONTINUE(CHALL) &rarr; send
2088                       DATA CHALL, goto
2089                       <emphasis>WaitingForData</emphasis>
2090                     </member>
2091
2092                     <member>
2093                       MECH(RESP) returns OK &rarr; send OK, goto
2094                       <emphasis>WaitingForBegin</emphasis>
2095                     </member>
2096
2097                     <member>
2098                       MECH(RESP) returns REJECT &rarr; send REJECTED
2099                       [mechs], goto
2100                       <emphasis>WaitingForAuth</emphasis>
2101                     </member>
2102                   </simplelist>
2103                 </para>
2104               </listitem>
2105
2106               <listitem>
2107                 <para>
2108                   Receive BEGIN &rarr; terminate auth conversation,
2109                   disconnect
2110                 </para>
2111               </listitem>
2112
2113               <listitem>
2114                 <para>
2115                   Receive CANCEL &rarr; send REJECTED [mechs], goto
2116                   <emphasis>WaitingForAuth</emphasis>
2117                 </para>
2118               </listitem>
2119
2120               <listitem>
2121                 <para>
2122                   Receive ERROR &rarr; send REJECTED [mechs], goto
2123                   <emphasis>WaitingForAuth</emphasis>
2124                 </para>
2125               </listitem>
2126
2127               <listitem>
2128                 <para>
2129                   Receive anything else &rarr; send ERROR, goto
2130                   <emphasis>WaitingForData</emphasis>
2131                 </para>
2132               </listitem>
2133             </itemizedlist>
2134           </para>
2135         </formalpara>
2136
2137         <formalpara>
2138           <title><emphasis>WaitingForBegin</emphasis></title>
2139           <para>
2140             <itemizedlist>
2141               <listitem>
2142                 <para>
2143                   Receive BEGIN &rarr; terminate auth conversation,
2144                   client authenticated
2145                 </para>
2146               </listitem>
2147
2148               <listitem>
2149                 <para>
2150                   Receive CANCEL &rarr; send REJECTED [mechs], goto
2151                   <emphasis>WaitingForAuth</emphasis>
2152                 </para>
2153               </listitem>
2154
2155               <listitem>
2156                 <para>
2157                   Receive ERROR &rarr; send REJECTED [mechs], goto
2158                   <emphasis>WaitingForAuth</emphasis>
2159                 </para>
2160               </listitem>
2161
2162               <listitem>
2163                 <para>
2164                   Receive anything else &rarr; send ERROR, goto
2165                   <emphasis>WaitingForBegin</emphasis>
2166                 </para>
2167               </listitem>
2168             </itemizedlist>
2169           </para>
2170         </formalpara>
2171
2172       </sect3>
2173       
2174     </sect2>
2175     <sect2 id="auth-mechanisms">
2176       <title>Authentication mechanisms</title>
2177       <para>
2178         This section describes some new authentication mechanisms.
2179         D-Bus also allows any standard SASL mechanism of course.
2180       </para>
2181       <sect3 id="auth-mechanisms-sha">
2182         <title>DBUS_COOKIE_SHA1</title>
2183         <para>
2184           The DBUS_COOKIE_SHA1 mechanism is designed to establish that a client
2185           has the ability to read a private file owned by the user being
2186           authenticated. If the client can prove that it has access to a secret
2187           cookie stored in this file, then the client is authenticated. 
2188           Thus the security of DBUS_COOKIE_SHA1 depends on a secure home 
2189           directory.
2190         </para>
2191         <para>
2192           Throughout this description, "hex encoding" must output the digits
2193           from a to f in lower-case; the digits A to F must not be used
2194           in the DBUS_COOKIE_SHA1 mechanism.
2195         </para>
2196         <para>
2197           Authentication proceeds as follows:
2198           <itemizedlist>
2199             <listitem>
2200               <para>
2201                 The client sends the username it would like to authenticate 
2202                 as, hex-encoded.
2203               </para>
2204             </listitem>
2205             <listitem>
2206               <para>
2207                 The server sends the name of its "cookie context" (see below); a
2208                 space character; the integer ID of the secret cookie the client
2209                 must demonstrate knowledge of; a space character; then a
2210                 randomly-generated challenge string, all of this hex-encoded into
2211                 one, single string.
2212               </para>
2213             </listitem>
2214             <listitem>
2215               <para>
2216                 The client locates the cookie and generates its own
2217                 randomly-generated challenge string. The client then concatenates
2218                 the server's decoded challenge, a ":" character, its own challenge,
2219                 another ":" character, and the cookie. It computes the SHA-1 hash
2220                 of this composite string as a hex digest. It concatenates the
2221                 client's challenge string, a space character, and the SHA-1 hex
2222                 digest, hex-encodes the result and sends it back to the server.
2223               </para>
2224             </listitem>
2225             <listitem>
2226               <para>
2227                 The server generates the same concatenated string used by the
2228                 client and computes its SHA-1 hash. It compares the hash with
2229                 the hash received from the client; if the two hashes match, the
2230                 client is authenticated.
2231               </para>
2232             </listitem>
2233           </itemizedlist>
2234         </para>
2235         <para>
2236           Each server has a "cookie context," which is a name that identifies a
2237           set of cookies that apply to that server. A sample context might be
2238           "org_freedesktop_session_bus". Context names must be valid ASCII,
2239           nonzero length, and may not contain the characters slash ("/"),
2240           backslash ("\"), space (" "), newline ("\n"), carriage return ("\r"),
2241           tab ("\t"), or period ("."). There is a default context,
2242           "org_freedesktop_general" that's used by servers that do not specify
2243           otherwise.
2244         </para>
2245         <para>
2246           Cookies are stored in a user's home directory, in the directory
2247           <filename>~/.dbus-keyrings/</filename>. This directory must 
2248           not be readable or writable by other users. If it is, 
2249           clients and servers must ignore it. The directory 
2250           contains cookie files named after the cookie context.
2251         </para>
2252         <para>
2253           A cookie file contains one cookie per line. Each line 
2254           has three space-separated fields:
2255           <itemizedlist>
2256             <listitem>
2257               <para>
2258                 The cookie ID number, which must be a non-negative integer and
2259                 may not be used twice in the same file.
2260               </para>
2261             </listitem>
2262             <listitem>
2263               <para>
2264                 The cookie's creation time, in UNIX seconds-since-the-epoch
2265                 format.
2266               </para>
2267             </listitem>
2268             <listitem>
2269               <para>
2270                 The cookie itself, a hex-encoded random block of bytes. The cookie
2271                 may be of any length, though obviously security increases 
2272                 as the length increases.
2273               </para>
2274             </listitem>
2275           </itemizedlist>
2276         </para>
2277         <para>
2278           Only server processes modify the cookie file.
2279           They must do so with this procedure:
2280           <itemizedlist>
2281             <listitem>
2282               <para>
2283                 Create a lockfile name by appending ".lock" to the name of the
2284                 cookie file.  The server should attempt to create this file
2285                 using <literal>O_CREAT | O_EXCL</literal>.  If file creation
2286                 fails, the lock fails. Servers should retry for a reasonable
2287                 period of time, then they may choose to delete an existing lock
2288                 to keep users from having to manually delete a stale
2289                 lock. <footnote><para>Lockfiles are used instead of real file
2290                 locking <literal>fcntl()</literal> because real locking
2291                 implementations are still flaky on network
2292                 filesystems.</para></footnote>
2293               </para>
2294             </listitem>
2295             <listitem>
2296               <para>
2297                 Once the lockfile has been created, the server loads the cookie
2298                 file. It should then delete any cookies that are old (the
2299                 timeout can be fairly short), or more than a reasonable
2300                 time in the future (so that cookies never accidentally 
2301                 become permanent, if the clock was set far into the future 
2302                 at some point). If no recent keys remain, the 
2303                 server may generate a new key.
2304               </para>
2305             </listitem>
2306             <listitem>
2307               <para>
2308                 The pruned and possibly added-to cookie file 
2309                 must be resaved atomically (using a temporary 
2310                 file which is rename()'d).
2311               </para>
2312             </listitem>
2313             <listitem>
2314               <para>
2315                 The lock must be dropped by deleting the lockfile.
2316               </para>
2317             </listitem>
2318           </itemizedlist>
2319         </para>
2320         <para>
2321           Clients need not lock the file in order to load it, 
2322           because servers are required to save the file atomically.          
2323         </para>
2324       </sect3>
2325     </sect2>
2326   </sect1>
2327   <sect1 id="addresses">
2328     <title>Server Addresses</title>
2329     <para>
2330       Server addresses consist of a transport name followed by a colon, and
2331       then an optional, comma-separated list of keys and values in the form key=value.
2332       Each value is escaped.
2333     </para>
2334     <para>
2335       For example: 
2336       <programlisting>unix:path=/tmp/dbus-test</programlisting>
2337       Which is the address to a unix socket with the path /tmp/dbus-test.
2338     </para>
2339     <para>
2340       Value escaping is similar to URI escaping but simpler.
2341       <itemizedlist>
2342         <listitem>
2343           <para>
2344             The set of optionally-escaped bytes is:
2345             <literal>[0-9A-Za-z_-/.\]</literal>. To escape, each
2346             <emphasis>byte</emphasis> (note, not character) which is not in the
2347             set of optionally-escaped bytes must be replaced with an ASCII
2348             percent (<literal>%</literal>) and the value of the byte in hex.
2349             The hex value must always be two digits, even if the first digit is
2350             zero. The optionally-escaped bytes may be escaped if desired.
2351           </para>
2352         </listitem>
2353         <listitem>
2354           <para>
2355             To unescape, append each byte in the value; if a byte is an ASCII
2356             percent (<literal>%</literal>) character then append the following
2357             hex value instead. It is an error if a <literal>%</literal> byte
2358             does not have two hex digits following. It is an error if a
2359             non-optionally-escaped byte is seen unescaped.
2360           </para>
2361         </listitem>
2362       </itemizedlist>
2363       The set of optionally-escaped bytes is intended to preserve address 
2364       readability and convenience.
2365     </para>
2366
2367     <para>
2368       A server may specify a key-value pair with the key <literal>guid</literal>
2369       and the value a hex-encoded 16-byte sequence. <xref linkend="uuids"/>
2370       describes the format of the <literal>guid</literal> field.  If present,
2371       this UUID may be used to distinguish one server address from another. A
2372       server should use a different UUID for each address it listens on. For
2373       example, if a message bus daemon offers both UNIX domain socket and TCP
2374       connections, but treats clients the same regardless of how they connect,
2375       those two connections are equivalent post-connection but should have
2376       distinct UUIDs to distinguish the kinds of connection.
2377     </para>
2378     
2379     <para>
2380       The intent of the address UUID feature is to allow a client to avoid
2381       opening multiple identical connections to the same server, by allowing the
2382       client to check whether an address corresponds to an already-existing
2383       connection.  Comparing two addresses is insufficient, because addresses
2384       can be recycled by distinct servers, and equivalent addresses may look
2385       different if simply compared as strings (for example, the host in a TCP
2386       address can be given as an IP address or as a hostname).
2387     </para>
2388
2389     <para>
2390       Note that the address key is <literal>guid</literal> even though the 
2391       rest of the API and documentation says "UUID," for historical reasons.
2392     </para>
2393
2394     <para>
2395       [FIXME clarify if attempting to connect to each is a requirement 
2396       or just a suggestion]
2397       When connecting to a server, multiple server addresses can be
2398       separated by a semi-colon. The library will then try to connect
2399       to the first address and if that fails, it'll try to connect to
2400       the next one specified, and so forth. For example
2401       <programlisting>unix:path=/tmp/dbus-test;unix:path=/tmp/dbus-test2</programlisting>
2402     </para>
2403
2404   </sect1>
2405   
2406   <sect1 id="transports">
2407     <title>Transports</title>
2408     <para>
2409       [FIXME we need to specify in detail each transport and its possible arguments]
2410     
2411       Current transports include: unix domain sockets (including 
2412       abstract namespace on linux), TCP/IP, and a debug/testing transport using 
2413       in-process pipes. Future possible transports include one that 
2414       tunnels over X11 protocol.
2415     </para>
2416   
2417     <sect2 id="transports-unix-domain-sockets">
2418       <title>Unix Domain Sockets</title>
2419       <para>
2420         Unix domain sockets can be either paths in the file system or on Linux 
2421         kernels, they can be abstract which are similar to paths but
2422         do not show up in the file system.  
2423       </para>
2424
2425       <para>
2426         When a socket is opened by the D-Bus library it truncates the path 
2427         name right before the first trailing Nul byte.  This is true for both
2428         normal paths and abstract paths.  Note that this is a departure from
2429         previous versions of D-Bus that would create sockets with a fixed 
2430         length path name.  Names which were shorter than the fixed length
2431         would be padded by Nul bytes.
2432       </para>
2433       <para>
2434         Unix domain sockets are not available on windows. 
2435       </para>
2436       <sect3 id="transports-unix-domain-sockets-addresses">
2437         <title>Server Address Format</title>
2438         <para> 
2439           Unix domain socket addresses are identified by the "unix:" prefix 
2440           and support the following key/value pairs:
2441         </para>
2442         <informaltable>
2443          <tgroup cols="3">
2444           <thead>
2445            <row>
2446             <entry>Name</entry>
2447             <entry>Values</entry>
2448             <entry>Description</entry>
2449            </row>
2450           </thead>
2451           <tbody>
2452            <row>
2453             <entry>path</entry>
2454             <entry>(path)</entry>
2455             <entry>path of the unix domain socket. If set, the "tmpdir" and "abstract" key must not be set.</entry>
2456           </row>
2457           <row>
2458             <entry>tmpdir</entry>
2459             <entry>(path)</entry>
2460             <entry>temporary directory in which a socket file with a random file name starting with 'dbus-' will be created by the server. This key can only be used in server addresses, not in client addresses. If set, the "path" and "abstract" key must not be set.</entry>
2461           </row>
2462           <row>
2463             <entry>abstract</entry>
2464             <entry>(string)</entry>
2465             <entry>unique string (path) in the abstract namespace. If set, the "path" or "tempdir" key must not be set.</entry>
2466           </row>
2467         </tbody>
2468         </tgroup>
2469        </informaltable>
2470       </sect3>
2471     </sect2>
2472     <sect2 id="transports-tcp-sockets">
2473       <title>TCP Sockets</title>
2474       <para>
2475         The tcp transport provides TCP/IP based connections between clients
2476         located on the same or different hosts. 
2477       </para>
2478       <para>
2479         Using tcp transport without any additional secure authentification mechanismus 
2480         over a network is unsecure. 
2481       </para>
2482       <para>  
2483         Windows notes: Because of the tcp stack on windows does not provide sending 
2484         credentials over a tcp connection, the EXTERNAL authentification 
2485         mechanismus does not work. 
2486       </para>
2487       <sect3 id="transports-tcp-sockets-addresses">
2488         <title>Server Address Format</title>
2489         <para> 
2490          TCP/IP socket addresses are identified by the "tcp:" prefix 
2491          and support the following key/value pairs:
2492         </para>
2493         <informaltable>
2494          <tgroup cols="3">
2495           <thead>
2496            <row>
2497             <entry>Name</entry>
2498             <entry>Values</entry>
2499             <entry>Description</entry>
2500            </row>
2501           </thead>
2502           <tbody>
2503            <row>
2504             <entry>host</entry>
2505             <entry>(string)</entry>
2506             <entry>dns name or ip address</entry>
2507           </row>
2508           <row>
2509            <entry>port</entry>
2510            <entry>(number)</entry>
2511            <entry>The tcp port the server will open. A zero value let the server 
2512             choose a free port provided from the underlaying operating system. 
2513             libdbus is able to retrieve the real used port from the server.  
2514            </entry>
2515           </row>
2516           <row>
2517            <entry>family</entry>
2518            <entry>(string)</entry>
2519            <entry>If set, provide the type of socket family either "ipv4" or "ipv6". If unset, the family is unspecified.</entry>
2520           </row>
2521          </tbody>
2522         </tgroup>
2523        </informaltable>
2524       </sect3>
2525     </sect2>
2526     <sect2 id="transports-nonce-tcp-sockets">
2527       <title>Nonce-secured TCP Sockets</title>
2528       <para>
2529         The nonce-tcp transport provides a secured TCP transport, using a
2530         simple authentication mechanism to ensure that only clients with read
2531         access to a certain location in the filesystem can connect to the server.
2532         The server writes a secret, the nonce, to a file and an incoming client
2533         connection is only accepted if the client sends the nonce right after
2534         the connect. The nonce mechanism requires no setup and is orthogonal to
2535         the higher-level authentication mechanisms described in the
2536         Authentication section.
2537       </para>
2538
2539       <para>
2540         On start, the server generates a random 16 byte nonce and writes it
2541         to a file in the user's temporary directory. The nonce file location
2542         is published as part of the server's D-Bus address using the
2543         "noncefile" key-value pair.
2544
2545         After an accept, the server reads 16 bytes from the socket. If the
2546         read bytes do not match the nonce stored in the nonce file, the
2547         server MUST immediately drop the connection.
2548         If the nonce match the received byte sequence, the client is accepted
2549         and the transport behaves like an unsecured tcp transport.
2550       </para>
2551       <para>
2552         After a successful connect to the server socket, the client MUST read
2553         the nonce from the file published by the server via the noncefile=
2554         key-value pair and send it over the socket. After that, the
2555         transport behaves like an unsecured tcp transport.
2556       </para>
2557       <sect3 id="transports-nonce-tcp-sockets-addresses">
2558         <title>Server Address Format</title>
2559         <para> 
2560          Nonce TCP/IP socket addresses uses the "nonce-tcp:" prefix 
2561          and support the following key/value pairs:
2562         </para>
2563         <informaltable>
2564          <tgroup cols="3">
2565           <thead>
2566            <row>
2567             <entry>Name</entry>
2568             <entry>Values</entry>
2569             <entry>Description</entry>
2570            </row>
2571           </thead>
2572           <tbody>
2573            <row>
2574             <entry>host</entry>
2575             <entry>(string)</entry>
2576             <entry>dns name or ip address</entry>
2577           </row>
2578           <row>
2579            <entry>port</entry>
2580            <entry>(number)</entry>
2581            <entry>The tcp port the server will open. A zero value let the server 
2582             choose a free port provided from the underlaying operating system. 
2583             libdbus is able to retrieve the real used port from the server.  
2584            </entry>
2585           </row>
2586           <row>
2587            <entry>family</entry>
2588            <entry>(string)</entry>
2589            <entry>If set, provide the type of socket family either "ipv4" or "ipv6". If unset, the family is unspecified.</entry>
2590           </row>
2591           <row>
2592            <entry>noncefile</entry>
2593            <entry>(path)</entry>
2594            <entry>file location containing the secret</entry>
2595           </row>
2596          </tbody>
2597         </tgroup>
2598        </informaltable>
2599       </sect3>
2600     </sect2>
2601     <sect2 id="transports-autolaunch">
2602      <title>Autolaunch</title>
2603      <para>The autolaunch transport provides a way for dbus clients to autodetect
2604      a running dbus session bus and to autolaunch a session bus if not present.
2605      </para>
2606      <sect3 id="transports-autolaunch-addresses">
2607        <title>Server Address Format</title>
2608        <para>
2609         Autolaunch addresses uses the "autolaunch:" prefix and support the
2610         following key/value pairs:
2611        </para>
2612        <informaltable>
2613         <tgroup cols="3">
2614          <thead>
2615           <row>
2616            <entry>Name</entry>
2617            <entry>Values</entry>
2618            <entry>Description</entry>
2619           </row>
2620          </thead>
2621          <tbody>
2622           <row>
2623            <entry>scope</entry>
2624            <entry>(string)</entry>
2625            <entry>scope of autolaunch (Windows only)
2626             <itemizedlist>
2627              <listitem>
2628               <para>
2629                "install-path" - limit session bus to dbus installation path.
2630                The dbus installation path is determined from the location of
2631                the shared dbus library. If the library is located in a 'bin'
2632                subdirectory the installation root is the directory above,
2633                otherwise the directory where the library lives is taken as
2634                installation root.
2635                <programlisting>
2636                    &lt;install-root&gt;/bin/[lib]dbus-1.dll
2637                    &lt;install-root&gt;/[lib]dbus-1.dll
2638                </programlisting>
2639               </para>
2640              </listitem>
2641              <listitem>
2642               <para>
2643                other values - specify dedicated session bus like 'release',
2644                'debug' or other
2645               </para>
2646              </listitem>
2647             </itemizedlist>
2648            </entry>
2649          </row>
2650         </tbody>
2651        </tgroup>
2652       </informaltable>
2653      </sect3>
2654      <sect3 id="transports-autolaunch-unix-implementation-notes">
2655       <title>Unix implementation notes</title>
2656       <para>
2657       [FIXME add unix notes ]
2658       </para>
2659      </sect3>
2660      <sect3 id="transports-autolaunch-windows-implementation-notes">
2661       <title>Windows implementation notes</title>
2662       <para>
2663        On start, the server opens a transport, creates a mutex and a shared
2664        memory section containing the related session bus address. This mutex will be
2665        inspected by the dbus client library to detect a running dbus session bus.
2666        The access to the mutex and the shared memory section are protected by a
2667        global lock named "UniqueDBusInitMutex".
2668       </para>
2669       <para>
2670        The mutex and shared memory section name depends on the value of the scope
2671        attribute and are listed in the following table:
2672       </para>
2673       <informaltable>
2674        <tgroup cols="3">
2675         <thead>
2676          <row>
2677           <entry>Scope Attribute Values</entry>
2678           <entry>Mutex Name</entry>
2679           <entry>Shared Memory Section Name</entry>
2680           <entry>Description</entry>
2681          </row>
2682         </thead>
2683         <tbody>
2684          <row>
2685           <entry>not defined or empty</entry>
2686           <entry>cDBusDaemonMutex</entry>
2687           <entry>DBusDaemonAddressInfo</entry>
2688           <entry> </entry>
2689          </row>
2690          <row>
2691           <entry>"install-path"</entry>
2692           <entry>cDBusDaemonMutex-&lt;sha1-hash&gt;</entry>
2693           <entry>DBusDaemonAddressInfo-&lt;sha1-hash&gt;</entry>
2694           <entry>The term &lt;sha1-hash&gt; is a sha1 hash string build from the
2695           dbus installation root, which is specified in <xref linkend="transports-autolaunch-addresses"/>.
2696           Before creating the sha1 hash the installation root string is converted
2697           to lowercase.</entry>
2698          </row>
2699          <row>
2700           <entry>any other value</entry>
2701           <entry>cDBusDaemonMutex-&lt;scope&gt;</entry>
2702           <entry>DBusDaemonAddressInfo-&lt;scope&gt;</entry>
2703           <entry>The term &lt;scope&gt; is directly taken from the value of the
2704           scope attribute.</entry>
2705          </row>
2706         </tbody>
2707        </tgroup>
2708       </informaltable>
2709       <para>
2710        In the recent implementation the autolaunch transport uses a tcp transport
2711        on localhost with a port choosen from the operating system. This detail may
2712        change in the future.
2713       </para>
2714      </sect3>
2715     </sect2>
2716    </sect1>
2717
2718    <sect1 id="naming-conventions">
2719     <title>Naming Conventions</title>
2720     
2721     <para>
2722       D-Bus namespaces are all lowercase and correspond to reversed domain
2723       names, as with Java. e.g. "org.freedesktop"
2724     </para>
2725     <para>
2726       Interface, signal, method, and property names are "WindowsStyleCaps", note
2727       that the first letter is capitalized, unlike Java.
2728     </para>
2729     <para>
2730       Object paths are normally all lowercase with underscores used rather than
2731       hyphens.
2732     </para>
2733   </sect1>
2734
2735   <sect1 id="uuids">
2736     <title>UUIDs</title>
2737     <para>
2738       A working D-Bus implementation uses universally-unique IDs in two places.
2739       First, each server address has a UUID identifying the address, 
2740       as described in <xref linkend="addresses"/>. Second, each operating
2741       system kernel instance running a D-Bus client or server has a UUID
2742       identifying that kernel, retrieved by invoking the method
2743       org.freedesktop.DBus.Peer.GetMachineId() (see <xref
2744       linkend="standard-interfaces-peer"/>).
2745     </para>
2746     <para>
2747       The term "UUID" in this document is intended literally, i.e. an
2748       identifier that is universally unique. It is not intended to refer to
2749       RFC4122, and in fact the D-Bus UUID is not compatible with that RFC.
2750     </para>
2751     <para>
2752       The UUID must contain 128 bits of data and be hex-encoded.  The
2753       hex-encoded string may not contain hyphens or other non-hex-digit
2754       characters, and it must be exactly 32 characters long.  To generate a
2755       UUID, the current reference implementation concatenates 96 bits of random
2756       data followed by the 32-bit time in seconds since the UNIX epoch (in big
2757       endian byte order).
2758     </para>
2759     <para>
2760       It would also be acceptable and probably better to simply generate 128
2761       bits of random data, as long as the random number generator is of high
2762       quality. The timestamp could conceivably help if the random bits are not
2763       very random. With a quality random number generator, collisions are
2764       extremely unlikely even with only 96 bits, so it's somewhat academic.
2765     </para>
2766     <para>
2767       Implementations should, however, stick to random data for the first 96 bits
2768       of the UUID.
2769     </para>
2770   </sect1>
2771     
2772   <sect1 id="standard-interfaces">
2773     <title>Standard Interfaces</title>
2774     <para>
2775       See <xref linkend="message-protocol-types-notation"/> for details on 
2776        the notation used in this section. There are some standard interfaces
2777       that may be useful across various D-Bus applications.
2778     </para>
2779     <sect2 id="standard-interfaces-peer">
2780       <title><literal>org.freedesktop.DBus.Peer</literal></title>
2781       <para>
2782         The <literal>org.freedesktop.DBus.Peer</literal> interface 
2783         has two methods:
2784         <programlisting>
2785           org.freedesktop.DBus.Peer.Ping ()
2786           org.freedesktop.DBus.Peer.GetMachineId (out STRING machine_uuid)
2787         </programlisting>
2788       </para>
2789       <para>
2790         On receipt of the <literal>METHOD_CALL</literal> message
2791         <literal>org.freedesktop.DBus.Peer.Ping</literal>, an application should do
2792         nothing other than reply with a <literal>METHOD_RETURN</literal> as
2793         usual.  It does not matter which object path a ping is sent to.  The
2794         reference implementation handles this method automatically.
2795       </para>
2796       <para>
2797         On receipt of the <literal>METHOD_CALL</literal> message
2798         <literal>org.freedesktop.DBus.Peer.GetMachineId</literal>, an application should 
2799         reply with a <literal>METHOD_RETURN</literal> containing a hex-encoded 
2800         UUID representing the identity of the machine the process is running on.
2801         This UUID must be the same for all processes on a single system at least
2802         until that system next reboots. It should be the same across reboots 
2803         if possible, but this is not always possible to implement and is not 
2804         guaranteed.
2805         It does not matter which object path a GetMachineId is sent to.  The
2806         reference implementation handles this method automatically.
2807       </para>
2808       <para>
2809         The UUID is intended to be per-instance-of-the-operating-system, so may represent
2810         a virtual machine running on a hypervisor, rather than a physical machine.
2811         Basically if two processes see the same UUID, they should also see the same
2812         shared memory, UNIX domain sockets, process IDs, and other features that require 
2813         a running OS kernel in common between the processes.
2814       </para>
2815       <para>
2816         The UUID is often used where other programs might use a hostname. Hostnames 
2817         can change without rebooting, however, or just be "localhost" - so the UUID
2818         is more robust.
2819       </para>
2820       <para>
2821         <xref linkend="uuids"/> explains the format of the UUID.
2822       </para>
2823     </sect2>
2824
2825     <sect2 id="standard-interfaces-introspectable">
2826       <title><literal>org.freedesktop.DBus.Introspectable</literal></title>
2827       <para>
2828         This interface has one method:
2829         <programlisting>
2830           org.freedesktop.DBus.Introspectable.Introspect (out STRING xml_data)
2831         </programlisting>
2832       </para>
2833       <para>
2834         Objects instances may implement
2835         <literal>Introspect</literal> which returns an XML description of
2836         the object, including its interfaces (with signals and methods), objects
2837         below it in the object path tree, and its properties.
2838       </para>
2839       <para>
2840         <xref linkend="introspection-format"/> describes the format of this XML string.
2841       </para>
2842     </sect2>
2843     <sect2 id="standard-interfaces-properties">
2844       <title><literal>org.freedesktop.DBus.Properties</literal></title>
2845       <para>
2846         Many native APIs will have a concept of object <firstterm>properties</firstterm> 
2847         or <firstterm>attributes</firstterm>. These can be exposed via the 
2848         <literal>org.freedesktop.DBus.Properties</literal> interface.
2849       </para>
2850       <para>
2851         <programlisting>
2852               org.freedesktop.DBus.Properties.Get (in STRING interface_name,
2853                                                    in STRING property_name,
2854                                                    out VARIANT value);
2855               org.freedesktop.DBus.Properties.Set (in STRING interface_name,
2856                                                    in STRING property_name,
2857                                                    in VARIANT value);
2858               org.freedesktop.DBus.Properties.GetAll (in STRING interface_name,
2859                                                       out DICT&lt;STRING,VARIANT&gt; props);
2860         </programlisting>
2861       </para>
2862       <para>
2863         The available properties and whether they are writable can be determined
2864         by calling <literal>org.freedesktop.DBus.Introspectable.Introspect</literal>,
2865         see <xref linkend="standard-interfaces-introspectable"/>.
2866       </para>
2867       <para>
2868         An empty string may be provided for the interface name; in this case, 
2869         if there are multiple properties on an object with the same name, 
2870         the results are undefined (picking one by according to an arbitrary 
2871         deterministic rule, or returning an error, are the reasonable 
2872         possibilities).
2873       </para>
2874       <para>
2875         If one or more properties change on an object, the
2876         <literal>org.freedesktop.DBus.Properties.PropertiesChanged</literal>
2877         signal may be emitted (this signal was added in 0.14):
2878       </para>
2879       <para>
2880         <programlisting>
2881               org.freedesktop.DBus.Properties.PropertiesChanged (STRING interface_name,
2882                                                                  DICT&lt;STRING,VARIANT&gt; changed_properties,
2883                                                                  ARRAY&lt;STRING&gt; invalidated_properties);
2884         </programlisting>
2885       </para>
2886       <para>
2887         where <literal>changed_properties</literal> is a dictionary
2888         containing the changed properties with the new values and
2889         <literal>invalidated_properties</literal> is an array of
2890         properties that changed but the value is not conveyed.
2891       </para>
2892       <para>
2893         Whether the <literal>PropertiesChanged</literal> signal is
2894         supported can be determined by calling
2895         <literal>org.freedesktop.DBus.Introspectable.Introspect</literal>. Note
2896         that the signal may be supported for an object but it may
2897         differ how whether and how it is used on a per-property basis
2898         (for e.g. performance or security reasons). Each property (or
2899         the parent interface) must be annotated with the
2900         <literal>org.freedesktop.DBus.Property.EmitsChangedSignal</literal>
2901         annotation to convey this (usually the default value
2902         <literal>true</literal> is sufficient meaning that the
2903         annotation does not need to be used). See <xref
2904         linkend="introspection-format"/> for details on this
2905         annotation.
2906       </para>
2907     </sect2>
2908   </sect1>
2909
2910   <sect1 id="introspection-format">
2911     <title>Introspection Data Format</title>
2912     <para>
2913       As described in <xref linkend="standard-interfaces-introspectable"/>, 
2914       objects may be introspected at runtime, returning an XML string 
2915       that describes the object. The same XML format may be used in 
2916       other contexts as well, for example as an "IDL" for generating 
2917       static language bindings.
2918     </para>
2919     <para>
2920       Here is an example of introspection data:
2921       <programlisting>
2922         &lt;!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
2923          "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"&gt;
2924         &lt;node name="/org/freedesktop/sample_object"&gt;
2925           &lt;interface name="org.freedesktop.SampleInterface"&gt;
2926             &lt;method name="Frobate"&gt;
2927               &lt;arg name="foo" type="i" direction="in"/&gt;
2928               &lt;arg name="bar" type="s" direction="out"/&gt;
2929               &lt;arg name="baz" type="a{us}" direction="out"/&gt;
2930               &lt;annotation name="org.freedesktop.DBus.Deprecated" value="true"/&gt;
2931             &lt;/method&gt;
2932             &lt;method name="Bazify"&gt;
2933               &lt;arg name="bar" type="(iiu)" direction="in"/&gt;
2934               &lt;arg name="bar" type="v" direction="out"/&gt;
2935             &lt;/method&gt;
2936             &lt;method name="Mogrify"&gt;
2937               &lt;arg name="bar" type="(iiav)" direction="in"/&gt;
2938             &lt;/method&gt;
2939             &lt;signal name="Changed"&gt;
2940               &lt;arg name="new_value" type="b"/&gt;
2941             &lt;/signal&gt;
2942             &lt;property name="Bar" type="y" access="readwrite"/&gt;
2943           &lt;/interface&gt;
2944           &lt;node name="child_of_sample_object"/&gt;
2945           &lt;node name="another_child_of_sample_object"/&gt;
2946        &lt;/node&gt;
2947       </programlisting>
2948     </para>
2949     <para>
2950       A more formal DTD and spec needs writing, but here are some quick notes.
2951       <itemizedlist>
2952         <listitem>
2953           <para>
2954             Only the root &lt;node&gt; element can omit the node name, as it's
2955             known to be the object that was introspected.  If the root
2956             &lt;node&gt; does have a name attribute, it must be an absolute
2957             object path. If child &lt;node&gt; have object paths, they must be
2958             relative.
2959           </para>
2960         </listitem>
2961         <listitem>
2962           <para>
2963             If a child &lt;node&gt; has any sub-elements, then they 
2964             must represent a complete introspection of the child.
2965             If a child &lt;node&gt; is empty, then it may or may 
2966             not have sub-elements; the child must be introspected
2967             in order to find out. The intent is that if an object 
2968             knows that its children are "fast" to introspect
2969             it can go ahead and return their information, but 
2970             otherwise it can omit it.
2971           </para>
2972         </listitem>
2973         <listitem>
2974           <para>
2975             The direction element on &lt;arg&gt; may be omitted, 
2976             in which case it defaults to "in" for method calls 
2977             and "out" for signals. Signals only allow "out" 
2978             so while direction may be specified, it's pointless.
2979           </para>
2980         </listitem>
2981         <listitem>
2982           <para>
2983             The possible directions are "in" and "out", 
2984             unlike CORBA there is no "inout"
2985           </para>
2986         </listitem>
2987         <listitem>
2988           <para>
2989             The possible property access flags are 
2990             "readwrite", "read", and "write"
2991           </para>
2992         </listitem>
2993         <listitem>
2994           <para>
2995             Multiple interfaces can of course be listed for 
2996             one &lt;node&gt;.
2997           </para>
2998         </listitem>
2999         <listitem>
3000           <para>
3001             The "name" attribute on arguments is optional.
3002           </para>
3003         </listitem>
3004       </itemizedlist>
3005     </para>
3006     <para>
3007         Method, interface, property, and signal elements may have
3008         "annotations", which are generic key/value pairs of metadata.
3009         They are similar conceptually to Java's annotations and C# attributes.
3010         Well-known annotations:
3011      </para>
3012      <informaltable>
3013        <tgroup cols="3">
3014          <thead>
3015            <row>
3016              <entry>Name</entry>
3017              <entry>Values (separated by ,)</entry>
3018              <entry>Description</entry>
3019            </row>
3020          </thead>
3021          <tbody>
3022            <row>
3023              <entry>org.freedesktop.DBus.Deprecated</entry>
3024              <entry>true,false</entry>
3025              <entry>Whether or not the entity is deprecated; defaults to false</entry>
3026            </row>
3027            <row>
3028              <entry>org.freedesktop.DBus.GLib.CSymbol</entry>
3029              <entry>(string)</entry>
3030              <entry>The C symbol; may be used for methods and interfaces</entry>
3031            </row>
3032            <row>
3033              <entry>org.freedesktop.DBus.Method.NoReply</entry>
3034              <entry>true,false</entry>
3035              <entry>If set, don't expect a reply to the method call; defaults to false.</entry>
3036            </row>
3037            <row>
3038              <entry>org.freedesktop.DBus.Property.EmitsChangedSignal</entry>
3039              <entry>true,invalidates,false</entry>
3040              <entry>
3041                <para>
3042                  If set to <literal>false</literal>, the
3043                  <literal>org.freedesktop.DBus.Properties.PropertiesChanged</literal>
3044                  signal, see <xref
3045                  linkend="standard-interfaces-properties"/> is not
3046                  guaranteed to be emitted if the property changes.
3047                </para>
3048                <para>
3049                  If set to <literal>invalidates</literal> the signal
3050                  is emitted but the value is not included in the
3051                  signal.
3052                </para>
3053                <para>
3054                  If set to <literal>true</literal> the signal is
3055                  emitted with the value included.
3056                </para>
3057                <para>
3058                  The value for the annotation defaults to
3059                  <literal>true</literal> if the enclosing interface
3060                  element does not specify the annotation. Otherwise it
3061                  defaults to the value specified in the enclosing
3062                  interface element.
3063                </para>
3064              </entry>
3065            </row>
3066          </tbody>
3067        </tgroup>
3068      </informaltable>
3069   </sect1>
3070   <sect1 id="message-bus">
3071     <title>Message Bus Specification</title>
3072     <sect2 id="message-bus-overview">
3073       <title>Message Bus Overview</title>
3074       <para>
3075         The message bus accepts connections from one or more applications. 
3076         Once connected, applications can exchange messages with other 
3077         applications that are also connected to the bus.
3078       </para>
3079       <para>
3080         In order to route messages among connections, the message bus keeps a
3081         mapping from names to connections. Each connection has one
3082         unique-for-the-lifetime-of-the-bus name automatically assigned.
3083         Applications may request additional names for a connection. Additional
3084         names are usually "well-known names" such as
3085         "org.freedesktop.TextEditor". When a name is bound to a connection,
3086         that connection is said to <firstterm>own</firstterm> the name.
3087       </para>
3088       <para>
3089         The bus itself owns a special name, <literal>org.freedesktop.DBus</literal>. 
3090         This name routes messages to the bus, allowing applications to make 
3091         administrative requests. For example, applications can ask the bus 
3092         to assign a name to a connection.
3093       </para>
3094       <para>
3095         Each name may have <firstterm>queued owners</firstterm>.  When an
3096         application requests a name for a connection and the name is already in
3097         use, the bus will optionally add the connection to a queue waiting for 
3098         the name. If the current owner of the name disconnects or releases
3099         the name, the next connection in the queue will become the new owner.
3100       </para>
3101
3102       <para>
3103         This feature causes the right thing to happen if you start two text
3104         editors for example; the first one may request "org.freedesktop.TextEditor", 
3105         and the second will be queued as a possible owner of that name. When 
3106         the first exits, the second will take over.
3107       </para>
3108
3109       <para>
3110         Messages may have a <literal>DESTINATION</literal> field (see <xref
3111         linkend="message-protocol-header-fields"/>).  If the
3112         <literal>DESTINATION</literal> field is present, it specifies a message
3113         recipient by name. Method calls and replies normally specify this field.
3114         The message bus must send messages (of any type) with the
3115         <literal>DESTINATION</literal> field set to the specified recipient,
3116         regardless of whether the recipient has set up a match rule matching
3117         the message.
3118       </para>
3119
3120       <para>
3121         Signals normally do not specify a destination; they are sent to all
3122         applications with <firstterm>message matching rules</firstterm> that
3123         match the message.
3124       </para>
3125
3126       <para>
3127         When the message bus receives a method call, if the
3128         <literal>DESTINATION</literal> field is absent, the call is taken to be
3129         a standard one-to-one message and interpreted by the message bus
3130         itself. For example, sending an
3131         <literal>org.freedesktop.DBus.Peer.Ping</literal> message with no
3132         <literal>DESTINATION</literal> will cause the message bus itself to
3133         reply to the ping immediately; the message bus will not make this
3134         message visible to other applications.
3135       </para>
3136
3137       <para>
3138         Continuing the <literal>org.freedesktop.DBus.Peer.Ping</literal> example, if
3139         the ping message were sent with a <literal>DESTINATION</literal> name of
3140         <literal>com.yoyodyne.Screensaver</literal>, then the ping would be
3141         forwarded, and the Yoyodyne Corporation screensaver application would be
3142         expected to reply to the ping.
3143       </para>
3144     </sect2>
3145
3146     <sect2 id="message-bus-names">
3147       <title>Message Bus Names</title>
3148       <para>
3149         Each connection has at least one name, assigned at connection time and
3150         returned in response to the
3151         <literal>org.freedesktop.DBus.Hello</literal> method call.  This
3152         automatically-assigned name is called the connection's <firstterm>unique
3153         name</firstterm>.  Unique names are never reused for two different
3154         connections to the same bus.
3155       </para>
3156       <para>
3157         Ownership of a unique name is a prerequisite for interaction with 
3158         the message bus. It logically follows that the unique name is always 
3159         the first name that an application comes to own, and the last 
3160         one that it loses ownership of.
3161       </para>
3162       <para>
3163         Unique connection names must begin with the character ':' (ASCII colon
3164         character); bus names that are not unique names must not begin
3165         with this character. (The bus must reject any attempt by an application
3166         to manually request a name beginning with ':'.) This restriction
3167         categorically prevents "spoofing"; messages sent to a unique name
3168         will always go to the expected connection.
3169       </para>
3170       <para>
3171         When a connection is closed, all the names that it owns are deleted (or
3172         transferred to the next connection in the queue if any).
3173       </para>
3174       <para>
3175         A connection can request additional names to be associated with it using
3176         the <literal>org.freedesktop.DBus.RequestName</literal> message. <xref
3177         linkend="message-protocol-names-bus"/> describes the format of a valid
3178         name. These names can be released again using the
3179         <literal>org.freedesktop.DBus.ReleaseName</literal> message.
3180       </para>
3181
3182       <sect3 id="bus-messages-request-name">
3183         <title><literal>org.freedesktop.DBus.RequestName</literal></title>
3184         <para>
3185           As a method:
3186           <programlisting>
3187             UINT32 RequestName (in STRING name, in UINT32 flags)
3188           </programlisting>
3189           Message arguments:
3190           <informaltable>
3191             <tgroup cols="3">
3192               <thead>
3193                 <row>
3194                   <entry>Argument</entry>
3195                   <entry>Type</entry>
3196                   <entry>Description</entry>
3197                 </row>
3198               </thead>
3199               <tbody>
3200                 <row>
3201                   <entry>0</entry>
3202                   <entry>STRING</entry>
3203                   <entry>Name to request</entry>
3204                 </row>
3205                 <row>
3206                   <entry>1</entry>
3207                   <entry>UINT32</entry>
3208                   <entry>Flags</entry>
3209                 </row>
3210               </tbody>
3211             </tgroup>
3212           </informaltable>
3213           Reply arguments:
3214           <informaltable>
3215             <tgroup cols="3">
3216               <thead>
3217                 <row>
3218                   <entry>Argument</entry>
3219                   <entry>Type</entry>
3220                   <entry>Description</entry>
3221                 </row>
3222               </thead>
3223               <tbody>
3224                 <row>
3225                   <entry>0</entry>
3226                   <entry>UINT32</entry>
3227                   <entry>Return value</entry>
3228                 </row>
3229               </tbody>
3230             </tgroup>
3231           </informaltable>
3232         </para>
3233         <para>
3234           This method call should be sent to
3235           <literal>org.freedesktop.DBus</literal> and asks the message bus to
3236           assign the given name to the method caller. Each name maintains a
3237           queue of possible owners, where the head of the queue is the primary
3238           or current owner of the name. Each potential owner in the queue
3239           maintains the DBUS_NAME_FLAG_ALLOW_REPLACEMENT and
3240           DBUS_NAME_FLAG_DO_NOT_QUEUE settings from its latest RequestName
3241           call.  When RequestName is invoked the following occurs:
3242           <itemizedlist>
3243             <listitem>
3244               <para>
3245                 If the method caller is currently the primary owner of the name,
3246                 the DBUS_NAME_FLAG_ALLOW_REPLACEMENT and DBUS_NAME_FLAG_DO_NOT_QUEUE
3247                 values are updated with the values from the new RequestName call, 
3248                 and nothing further happens.
3249               </para>
3250             </listitem>
3251
3252             <listitem>
3253               <para>
3254                 If the current primary owner (head of the queue) has
3255                 DBUS_NAME_FLAG_ALLOW_REPLACEMENT set, and the RequestName
3256                 invocation has the DBUS_NAME_FLAG_REPLACE_EXISTING flag, then
3257                 the caller of RequestName replaces the current primary owner at
3258                 the head of the queue and the current primary owner moves to the
3259                 second position in the queue. If the caller of RequestName was 
3260                 in the queue previously its flags are updated with the values from 
3261                 the new RequestName in addition to moving it to the head of the queue.
3262               </para>
3263             </listitem>
3264
3265             <listitem>
3266               <para>
3267                 If replacement is not possible, and the method caller is
3268                 currently in the queue but not the primary owner, its flags are
3269                 updated with the values from the new RequestName call.
3270               </para>
3271             </listitem>
3272
3273             <listitem>
3274               <para>
3275                 If replacement is not possible, and the method caller is
3276                 currently not in the queue, the method caller is appended to the
3277                 queue.
3278               </para>
3279             </listitem>
3280
3281             <listitem>
3282               <para>
3283                 If any connection in the queue has DBUS_NAME_FLAG_DO_NOT_QUEUE
3284                 set and is not the primary owner, it is removed from the
3285                 queue. This can apply to the previous primary owner (if it
3286                 was replaced) or the method caller (if it updated the
3287                 DBUS_NAME_FLAG_DO_NOT_QUEUE flag while still stuck in the
3288                 queue, or if it was just added to the queue with that flag set).
3289               </para>
3290             </listitem>
3291           </itemizedlist>
3292         </para>
3293         <para>
3294           Note that DBUS_NAME_FLAG_REPLACE_EXISTING results in "jumping the
3295           queue," even if another application already in the queue had specified
3296           DBUS_NAME_FLAG_REPLACE_EXISTING.  This comes up if a primary owner
3297           that does not allow replacement goes away, and the next primary owner
3298           does allow replacement. In this case, queued items that specified
3299           DBUS_NAME_FLAG_REPLACE_EXISTING <emphasis>do not</emphasis>
3300           automatically replace the new primary owner. In other words,
3301           DBUS_NAME_FLAG_REPLACE_EXISTING is not saved, it is only used at the
3302           time RequestName is called. This is deliberate to avoid an infinite loop
3303           anytime two applications are both DBUS_NAME_FLAG_ALLOW_REPLACEMENT 
3304           and DBUS_NAME_FLAG_REPLACE_EXISTING.
3305         </para>
3306         <para>
3307           The flags argument contains any of the following values logically ORed
3308           together:
3309
3310           <informaltable>
3311             <tgroup cols="3">
3312               <thead>
3313                 <row>
3314                   <entry>Conventional Name</entry>
3315                   <entry>Value</entry>
3316                   <entry>Description</entry>
3317                 </row>
3318               </thead>
3319               <tbody>
3320                 <row>
3321                   <entry>DBUS_NAME_FLAG_ALLOW_REPLACEMENT</entry>
3322                   <entry>0x1</entry>
3323                   <entry>
3324
3325                     If an application A specifies this flag and succeeds in
3326                     becoming the owner of the name, and another application B
3327                     later calls RequestName with the
3328                     DBUS_NAME_FLAG_REPLACE_EXISTING flag, then application A
3329                     will lose ownership and receive a
3330                     <literal>org.freedesktop.DBus.NameLost</literal> signal, and
3331                     application B will become the new owner. If DBUS_NAME_FLAG_ALLOW_REPLACEMENT
3332                     is not specified by application A, or DBUS_NAME_FLAG_REPLACE_EXISTING
3333                     is not specified by application B, then application B will not replace
3334                     application A as the owner.
3335
3336                   </entry>
3337                 </row>
3338                 <row>
3339                   <entry>DBUS_NAME_FLAG_REPLACE_EXISTING</entry>
3340                   <entry>0x2</entry>
3341                   <entry>
3342
3343                     Try to replace the current owner if there is one. If this
3344                     flag is not set the application will only become the owner of
3345                     the name if there is no current owner. If this flag is set,
3346                     the application will replace the current owner if
3347                     the current owner specified DBUS_NAME_FLAG_ALLOW_REPLACEMENT.
3348
3349                   </entry>
3350                 </row>
3351                 <row>
3352                   <entry>DBUS_NAME_FLAG_DO_NOT_QUEUE</entry>
3353                   <entry>0x4</entry>
3354                   <entry>
3355
3356                     Without this flag, if an application requests a name that is
3357                     already owned, the application will be placed in a queue to
3358                     own the name when the current owner gives it up. If this
3359                     flag is given, the application will not be placed in the
3360                     queue, the request for the name will simply fail.  This flag
3361                     also affects behavior when an application is replaced as
3362                     name owner; by default the application moves back into the
3363                     waiting queue, unless this flag was provided when the application
3364                     became the name owner.
3365
3366                   </entry>
3367                 </row>
3368               </tbody>
3369             </tgroup>
3370           </informaltable>
3371
3372           The return code can be one of the following values:
3373
3374           <informaltable>
3375             <tgroup cols="3">
3376               <thead>
3377                 <row>
3378                   <entry>Conventional Name</entry>
3379                   <entry>Value</entry>
3380                   <entry>Description</entry>
3381                 </row>
3382               </thead>
3383               <tbody>
3384                 <row>
3385                   <entry>DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER</entry>
3386                   <entry>1</entry> <entry>The caller is now the primary owner of
3387                   the name, replacing any previous owner. Either the name had no
3388                   owner before, or the caller specified
3389                   DBUS_NAME_FLAG_REPLACE_EXISTING and the current owner specified
3390                   DBUS_NAME_FLAG_ALLOW_REPLACEMENT.</entry>
3391                 </row>
3392                 <row>
3393                   <entry>DBUS_REQUEST_NAME_REPLY_IN_QUEUE</entry>
3394                   <entry>2</entry>
3395
3396                   <entry>The name already had an owner,
3397                     DBUS_NAME_FLAG_DO_NOT_QUEUE was not specified, and either
3398                     the current owner did not specify
3399                     DBUS_NAME_FLAG_ALLOW_REPLACEMENT or the requesting
3400                     application did not specify DBUS_NAME_FLAG_REPLACE_EXISTING.
3401                     </entry>
3402                 </row>
3403                 <row>
3404                   <entry>DBUS_REQUEST_NAME_REPLY_EXISTS</entry> <entry>3</entry>
3405                   <entry>The name already has an owner,
3406                   DBUS_NAME_FLAG_DO_NOT_QUEUE was specified, and either
3407                   DBUS_NAME_FLAG_ALLOW_REPLACEMENT was not specified by the
3408                   current owner, or DBUS_NAME_FLAG_REPLACE_EXISTING was not
3409                   specified by the requesting application.</entry>
3410                 </row>
3411                 <row>
3412                   <entry>DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER</entry>
3413                   <entry>4</entry>
3414                   <entry>The application trying to request ownership of a name is already the owner of it.</entry>
3415                 </row>
3416               </tbody>
3417             </tgroup>
3418           </informaltable>
3419         </para>
3420        </sect3>
3421
3422        <sect3 id="bus-messages-release-name">
3423         <title><literal>org.freedesktop.DBus.ReleaseName</literal></title>
3424         <para>
3425           As a method:
3426           <programlisting>
3427             UINT32 ReleaseName (in STRING name)
3428           </programlisting>
3429           Message arguments:
3430           <informaltable>
3431             <tgroup cols="3">
3432               <thead>
3433                 <row>
3434                   <entry>Argument</entry>
3435                   <entry>Type</entry>
3436                   <entry>Description</entry>
3437                 </row>
3438               </thead>
3439               <tbody>
3440                 <row>
3441                   <entry>0</entry>
3442                   <entry>STRING</entry>
3443                   <entry>Name to release</entry>
3444                 </row>
3445               </tbody>
3446             </tgroup>
3447           </informaltable>
3448           Reply arguments:
3449           <informaltable>
3450             <tgroup cols="3">
3451               <thead>
3452                 <row>
3453                   <entry>Argument</entry>
3454                   <entry>Type</entry>
3455                   <entry>Description</entry>
3456                 </row>
3457               </thead>
3458               <tbody>
3459                 <row>
3460                   <entry>0</entry>
3461                   <entry>UINT32</entry>
3462                   <entry>Return value</entry>
3463                 </row>
3464               </tbody>
3465             </tgroup>
3466           </informaltable>
3467         </para>
3468         <para>
3469           This method call should be sent to
3470           <literal>org.freedesktop.DBus</literal> and asks the message bus to
3471           release the method caller's claim to the given name. If the caller is
3472           the primary owner, a new primary owner will be selected from the
3473           queue if any other owners are waiting. If the caller is waiting in
3474           the queue for the name, the caller will removed from the queue and
3475           will not be made an owner of the name if it later becomes available.
3476           If there are no other owners in the queue for the name, it will be
3477           removed from the bus entirely.
3478
3479           The return code can be one of the following values:
3480
3481           <informaltable>
3482             <tgroup cols="3">
3483               <thead>
3484                 <row>
3485                   <entry>Conventional Name</entry>
3486                   <entry>Value</entry>
3487                   <entry>Description</entry>
3488                 </row>
3489               </thead>
3490               <tbody>
3491                 <row>
3492                   <entry>DBUS_RELEASE_NAME_REPLY_RELEASED</entry>
3493                   <entry>1</entry> <entry>The caller has released his claim on
3494                   the given name. Either the caller was the primary owner of
3495                   the name, and the name is now unused or taken by somebody
3496                   waiting in the queue for the name, or the caller was waiting
3497                   in the queue for the name and has now been removed from the
3498                   queue.</entry>
3499                 </row>
3500                 <row>
3501                   <entry>DBUS_RELEASE_NAME_REPLY_NON_EXISTENT</entry>
3502                   <entry>2</entry>
3503                   <entry>The given name does not exist on this bus.</entry>
3504                 </row>
3505                 <row>
3506                   <entry>DBUS_RELEASE_NAME_REPLY_NOT_OWNER</entry>
3507                   <entry>3</entry>
3508                   <entry>The caller was not the primary owner of this name,
3509                   and was also not waiting in the queue to own this name.</entry>
3510                 </row>
3511               </tbody>
3512             </tgroup>
3513           </informaltable>
3514         </para>
3515        </sect3>
3516
3517        <sect3 id="bus-messages-list-queued-owners">
3518         <title><literal>org.freedesktop.DBus.ListQueuedOwners</literal></title>
3519         <para>
3520           As a method:
3521           <programlisting>
3522             ARRAY of STRING ListQueuedOwners (in STRING name)
3523           </programlisting>
3524           Message arguments:
3525           <informaltable>
3526             <tgroup cols="3">
3527               <thead>
3528                 <row>
3529                   <entry>Argument</entry>
3530                   <entry>Type</entry>
3531                   <entry>Description</entry>
3532                 </row>
3533               </thead>
3534               <tbody>
3535                 <row>
3536                   <entry>0</entry>
3537                   <entry>STRING</entry>
3538                   <entry>The well-known bus name to query, such as
3539                     <literal>com.example.cappuccino</literal></entry>
3540                 </row>
3541               </tbody>
3542             </tgroup>
3543           </informaltable>
3544           Reply arguments:
3545           <informaltable>
3546             <tgroup cols="3">
3547               <thead>
3548                 <row>
3549                   <entry>Argument</entry>
3550                   <entry>Type</entry>
3551                   <entry>Description</entry>
3552                 </row>
3553               </thead>
3554               <tbody>
3555                 <row>
3556                   <entry>0</entry>
3557                   <entry>ARRAY of STRING</entry>
3558                   <entry>The unique bus names of connections currently queued
3559                     for the name</entry>
3560                 </row>
3561               </tbody>
3562             </tgroup>
3563           </informaltable>
3564         </para>
3565         <para>
3566           This method call should be sent to
3567           <literal>org.freedesktop.DBus</literal> and lists the connections
3568           currently queued for a bus name (see
3569           <xref linkend="term-queued-owner"/>).
3570         </para>
3571        </sect3>
3572     </sect2>
3573
3574     <sect2 id="message-bus-routing">
3575       <title>Message Bus Message Routing</title>
3576       <para>
3577         FIXME 
3578       </para>
3579       <sect3 id="message-bus-routing-match-rules">
3580         <title>Match Rules</title>
3581         <para>
3582           An important part of the message bus routing protocol is match  
3583           rules. Match rules describe what messages can be sent to a client
3584           based on the contents of the message.  When a message is routed
3585           through the bus it is compared to clients' match rules.  If any
3586           of the rules match, the message is dispatched to the client.
3587           If none of the rules match the message never leaves the bus.  This
3588           is an effective way to control traffic over the bus and to make sure
3589           only relevant message need to be processed by the client.
3590         </para>
3591         <para>
3592           Match rules are added using the AddMatch bus method 
3593           (see <xref linkend="bus-messages-add-match"/>).  Rules are
3594           specified as a string of comma separated key/value pairs. 
3595           Excluding a key from the rule indicates a wildcard match.  
3596           For instance excluding the the member from a match rule but 
3597           adding a sender would let all messages from that sender through.
3598           An example of a complete rule would be 
3599           "type='signal',sender='org.freedesktop.DBus',interface='org.freedesktop.DBus',member='Foo',path='/bar/foo',destination=':452345.34',arg2='bar'"
3600         </para>
3601         <para>
3602           The following table describes the keys that can be used to create 
3603           a match rule:
3604           The following table summarizes the D-Bus types.
3605           <informaltable>
3606             <tgroup cols="3">
3607               <thead>
3608                 <row>
3609                   <entry>Key</entry>
3610                   <entry>Possible Values</entry>
3611                   <entry>Description</entry>
3612                 </row>
3613               </thead>
3614               <tbody>
3615                 <row>
3616                   <entry><literal>type</literal></entry>
3617                   <entry>'signal', 'method_call', 'method_return', 'error'</entry>
3618                   <entry>Match on the message type.  An example of a type match is type='signal'</entry>
3619                 </row>
3620                 <row>
3621                   <entry><literal>sender</literal></entry>
3622                   <entry>A bus or unique name (see <xref linkend="term-bus-name"/>
3623                   and <xref linkend="term-unique-name"/> respectively)
3624                   </entry>
3625                   <entry>Match messages sent by a particular sender.  An example of a sender match
3626                   is sender='org.freedesktop.Hal'</entry>
3627                 </row>
3628                 <row>
3629                   <entry><literal>interface</literal></entry>
3630                   <entry>An interface name (see <xref linkend="message-protocol-names-interface"/>)</entry>
3631                   <entry>Match messages sent over or to a particular interface.  An example of an
3632                   interface match is interface='org.freedesktop.Hal.Manager'.
3633                   If a message omits the interface header, it must not match any rule 
3634                   that specifies this key.</entry>
3635                 </row>
3636                 <row>
3637                   <entry><literal>member</literal></entry>
3638                   <entry>Any valid method or signal name</entry>
3639                   <entry>Matches messages which have the give method or signal name. An example of
3640                   a member match is member='NameOwnerChanged'</entry>
3641                 </row>
3642                 <row>
3643                   <entry><literal>path</literal></entry>
3644                   <entry>An object path (see <xref linkend="message-protocol-marshaling-object-path"/>)</entry>
3645                   <entry>Matches messages which are sent from or to the given object. An example of a
3646                   path match is path='/org/freedesktop/Hal/Manager'</entry>
3647                 </row>
3648                 <row>
3649                   <entry><literal>destination</literal></entry>
3650                   <entry>A unique name (see <xref linkend="term-unique-name"/>)</entry>
3651                   <entry>Matches messages which are being sent to the given unique name. An
3652                   example of a destination match is destination=':1.0'</entry>
3653                 </row>
3654                 <row>
3655                   <entry><literal>arg[0, 1, 2, 3, ...]</literal></entry>
3656                   <entry>Any string</entry>
3657                   <entry>Arg matches are special and are used for further restricting the 
3658                   match based on the arguments in the body of a message.  As of this time
3659                   only string arguments can be matched.  An example of an argument match 
3660                   would be arg3='Foo'. Only argument indexes from 0 to 63 should be 
3661                   accepted.</entry>
3662                 </row>
3663                 <row>
3664                   <entry><literal>arg[0, 1, 2, 3, ...]path</literal></entry>
3665                   <entry>Any string</entry>
3666                   <entry>Argument path matches provide a specialised form of wildcard
3667                   matching for path-like namespaces. As with normal argument matches,
3668                   if the argument is exactly equal to the string given in the match
3669                   rule then the rule is satisfied. Additionally, there is also a
3670                   match when either the string given in the match rule or the
3671                   appropriate message argument ends with '/' and is a prefix of the
3672                   other. An example argument path match is arg0path='/aa/bb/'. This
3673                   would match messages with first arguments of '/', '/aa/',
3674                   '/aa/bb/', '/aa/bb/cc/' and '/aa/bb/cc'. It would not match
3675                   messages with first arguments of '/aa/b', '/aa' or even '/aa/bb'.</entry>
3676                 </row>
3677               </tbody>
3678             </tgroup>
3679           </informaltable>
3680         </para>
3681       </sect3>
3682     </sect2>
3683     <sect2 id="message-bus-starting-services">
3684       <title>Message Bus Starting Services</title>
3685       <para>
3686         The message bus can start applications on behalf of other applications.
3687         In CORBA terms, this would be called <firstterm>activation</firstterm>.
3688         An application that can be started in this way is called a
3689         <firstterm>service</firstterm>.
3690       </para>
3691       <para>
3692         With D-Bus, starting a service is normally done by name. That is,
3693         applications ask the message bus to start some program that will own a
3694         well-known name, such as <literal>org.freedesktop.TextEditor</literal>.
3695         This implies a contract documented along with the name 
3696         <literal>org.freedesktop.TextEditor</literal> for which objects 
3697         the owner of that name will provide, and what interfaces those 
3698         objects will have.
3699       </para>
3700       <para>
3701         To find an executable corresponding to a particular name, the bus daemon
3702         looks for <firstterm>service description files</firstterm>.  Service
3703         description files define a mapping from names to executables. Different
3704         kinds of message bus will look for these files in different places, see
3705         <xref linkend="message-bus-types"/>.
3706       </para>
3707       <para>
3708         [FIXME the file format should be much better specified than "similar to
3709         .desktop entries" esp. since desktop entries are already
3710         badly-specified. ;-)] Service description files have the ".service" file
3711         extension. The message bus will only load service description files
3712         ending with .service; all other files will be ignored.  The file format
3713         is similar to that of <ulink
3714         url="http://www.freedesktop.org/standards/desktop-entry-spec/desktop-entry-spec.html">desktop
3715         entries</ulink>. All service description files must be in UTF-8
3716         encoding. To ensure that there will be no name collisions, service files
3717         must be namespaced using the same mechanism as messages and service
3718         names.
3719
3720         <figure>
3721           <title>Example service description file</title>
3722           <programlisting>
3723             # Sample service description file
3724             [D-BUS Service]
3725             Names=org.freedesktop.ConfigurationDatabase;org.gnome.GConf;
3726             Exec=/usr/libexec/gconfd-2
3727           </programlisting>
3728         </figure>
3729       </para>
3730       <para>
3731         When an application asks to start a service by name, the bus daemon tries to
3732         find a service that will own that name. It then tries to spawn the
3733         executable associated with it. If this fails, it will report an
3734         error. [FIXME what happens if two .service files offer the same service;
3735         what kind of error is reported, should we have a way for the client to
3736         choose one?]
3737       </para>
3738       <para>
3739         The executable launched will have the environment variable
3740         <literal>DBUS_STARTER_ADDRESS</literal> set to the address of the
3741         message bus so it can connect and request the appropriate names.
3742       </para>
3743       <para>
3744         The executable being launched may want to know whether the message bus
3745         starting it is one of the well-known message buses (see <xref
3746         linkend="message-bus-types"/>). To facilitate this, the bus must also set
3747         the <literal>DBUS_STARTER_BUS_TYPE</literal> environment variable if it is one
3748         of the well-known buses. The currently-defined values for this variable
3749         are <literal>system</literal> for the systemwide message bus,
3750         and <literal>session</literal> for the per-login-session message
3751         bus. The new executable must still connect to the address given
3752         in <literal>DBUS_STARTER_ADDRESS</literal>, but may assume that the
3753         resulting connection is to the well-known bus.
3754       </para>
3755       <para>
3756         [FIXME there should be a timeout somewhere, either specified
3757         in the .service file, by the client, or just a global value
3758         and if the client being activated fails to connect within that
3759         timeout, an error should be sent back.]
3760       </para>
3761
3762       <sect3 id="message-bus-starting-services-scope">
3763         <title>Message Bus Service Scope</title>
3764         <para>
3765           The "scope" of a service is its "per-", such as per-session,
3766           per-machine, per-home-directory, or per-display. The reference
3767           implementation doesn't yet support starting services in a different
3768           scope from the message bus itself. So e.g. if you start a service
3769           on the session bus its scope is per-session.
3770         </para>
3771         <para>
3772           We could add an optional scope to a bus name. For example, for
3773           per-(display,session pair), we could have a unique ID for each display
3774           generated automatically at login and set on screen 0 by executing a
3775           special "set display ID" binary. The ID would be stored in a
3776           <literal>_DBUS_DISPLAY_ID</literal> property and would be a string of
3777           random bytes. This ID would then be used to scope names.
3778           Starting/locating a service could be done by ID-name pair rather than
3779           only by name.
3780         </para>
3781         <para>
3782           Contrast this with a per-display scope. To achieve that, we would 
3783           want a single bus spanning all sessions using a given display.
3784           So we might set a <literal>_DBUS_DISPLAY_BUS_ADDRESS</literal> 
3785           property on screen 0 of the display, pointing to this bus.
3786         </para>
3787       </sect3>
3788     </sect2>
3789
3790     <sect2 id="message-bus-types">
3791       <title>Well-known Message Bus Instances</title>
3792       <para>
3793         Two standard message bus instances are defined here, along with how 
3794         to locate them and where their service files live.
3795       </para>
3796       <sect3 id="message-bus-types-login">
3797         <title>Login session message bus</title>
3798         <para>
3799           Each time a user logs in, a <firstterm>login session message
3800             bus</firstterm> may be started. All applications in the user's login
3801           session may interact with one another using this message bus.
3802         </para>
3803         <para>
3804           The address of the login session message bus is given 
3805           in the <literal>DBUS_SESSION_BUS_ADDRESS</literal> environment 
3806           variable. If that variable is not set, applications may 
3807           also try to read the address from the X Window System root 
3808           window property <literal>_DBUS_SESSION_BUS_ADDRESS</literal>.
3809           The root window property must have type <literal>STRING</literal>.
3810           The environment variable should have precedence over the 
3811           root window property.
3812         </para>
3813         <para>
3814           [FIXME specify location of .service files, probably using 
3815           DESKTOP_DIRS etc. from basedir specification, though login session 
3816           bus is not really desktop-specific]
3817         </para>
3818       </sect3>
3819       <sect3 id="message-bus-types-system">
3820         <title>System message bus</title>
3821         <para>
3822           A computer may have a <firstterm>system message bus</firstterm>,
3823           accessible to all applications on the system. This message bus may be
3824           used to broadcast system events, such as adding new hardware devices, 
3825           changes in the printer queue, and so forth.
3826         </para>
3827         <para>
3828           The address of the system message bus is given 
3829           in the <literal>DBUS_SYSTEM_BUS_ADDRESS</literal> environment 
3830           variable. If that variable is not set, applications should try 
3831           to connect to the well-known address
3832           <literal>unix:path=/var/run/dbus/system_bus_socket</literal>.
3833           <footnote>
3834             <para>
3835               The D-Bus reference implementation actually honors the 
3836               <literal>$(localstatedir)</literal> configure option 
3837               for this address, on both client and server side.
3838             </para>
3839           </footnote>
3840         </para>
3841         <para>
3842           [FIXME specify location of system bus .service files]
3843         </para>
3844       </sect3>
3845     </sect2>
3846
3847     <sect2 id="message-bus-messages">
3848       <title>Message Bus Messages</title>
3849       <para>
3850         The special message bus name <literal>org.freedesktop.DBus</literal>
3851         responds to a number of additional messages.
3852       </para>
3853
3854       <sect3 id="bus-messages-hello">
3855         <title><literal>org.freedesktop.DBus.Hello</literal></title>
3856         <para>
3857           As a method:
3858           <programlisting>
3859             STRING Hello ()
3860           </programlisting>
3861           Reply arguments:
3862           <informaltable>
3863             <tgroup cols="3">
3864               <thead>
3865                 <row>
3866                   <entry>Argument</entry>
3867                   <entry>Type</entry>
3868                   <entry>Description</entry>
3869                 </row>
3870               </thead>
3871               <tbody>
3872                 <row>
3873                   <entry>0</entry>
3874                   <entry>STRING</entry>
3875                   <entry>Unique name assigned to the connection</entry>
3876                 </row>
3877               </tbody>
3878             </tgroup>
3879           </informaltable>
3880         </para>
3881         <para>
3882           Before an application is able to send messages to other applications
3883           it must send the <literal>org.freedesktop.DBus.Hello</literal> message
3884           to the message bus to obtain a unique name. If an application without
3885           a unique name tries to send a message to another application, or a
3886           message to the message bus itself that isn't the
3887           <literal>org.freedesktop.DBus.Hello</literal> message, it will be
3888           disconnected from the bus.
3889         </para>
3890         <para>
3891           There is no corresponding "disconnect" request; if a client wishes to
3892           disconnect from the bus, it simply closes the socket (or other 
3893           communication channel).
3894         </para>
3895       </sect3>
3896       <sect3 id="bus-messages-list-names">
3897         <title><literal>org.freedesktop.DBus.ListNames</literal></title>
3898         <para>
3899           As a method:
3900           <programlisting>
3901             ARRAY of STRING ListNames ()
3902           </programlisting>
3903           Reply arguments:
3904           <informaltable>
3905             <tgroup cols="3">
3906               <thead>
3907                 <row>
3908                   <entry>Argument</entry>
3909                   <entry>Type</entry>
3910                   <entry>Description</entry>
3911                 </row>
3912               </thead>
3913               <tbody>
3914                 <row>
3915                   <entry>0</entry>
3916                   <entry>ARRAY of STRING</entry>
3917                   <entry>Array of strings where each string is a bus name</entry>
3918                 </row>
3919               </tbody>
3920             </tgroup>
3921           </informaltable>
3922         </para>
3923         <para>
3924           Returns a list of all currently-owned names on the bus.
3925         </para>
3926       </sect3>
3927       <sect3 id="bus-messages-list-activatable-names">
3928         <title><literal>org.freedesktop.DBus.ListActivatableNames</literal></title>
3929         <para>
3930           As a method:
3931           <programlisting>
3932             ARRAY of STRING ListActivatableNames ()
3933           </programlisting>
3934           Reply arguments:
3935           <informaltable>
3936             <tgroup cols="3">
3937               <thead>
3938                 <row>
3939                   <entry>Argument</entry>
3940                   <entry>Type</entry>
3941                   <entry>Description</entry>
3942                 </row>
3943               </thead>
3944               <tbody>
3945                 <row>
3946                   <entry>0</entry>
3947                   <entry>ARRAY of STRING</entry>
3948                   <entry>Array of strings where each string is a bus name</entry>
3949                 </row>
3950               </tbody>
3951             </tgroup>
3952           </informaltable>
3953         </para>
3954         <para>
3955           Returns a list of all names that can be activated on the bus.
3956         </para>
3957       </sect3>
3958       <sect3 id="bus-messages-name-exists">
3959         <title><literal>org.freedesktop.DBus.NameHasOwner</literal></title>
3960         <para>
3961           As a method:
3962           <programlisting>
3963             BOOLEAN NameHasOwner (in STRING name)
3964           </programlisting>
3965           Message arguments:
3966           <informaltable>
3967             <tgroup cols="3">
3968               <thead>
3969                 <row>
3970                   <entry>Argument</entry>
3971                   <entry>Type</entry>
3972                   <entry>Description</entry>
3973                 </row>
3974               </thead>
3975               <tbody>
3976                 <row>
3977                   <entry>0</entry>
3978                   <entry>STRING</entry>
3979                   <entry>Name to check</entry>
3980                 </row>
3981               </tbody>
3982             </tgroup>
3983           </informaltable>
3984           Reply arguments:
3985           <informaltable>
3986             <tgroup cols="3">
3987               <thead>
3988                 <row>
3989                   <entry>Argument</entry>
3990                   <entry>Type</entry>
3991                   <entry>Description</entry>
3992                 </row>
3993               </thead>
3994               <tbody>
3995                 <row>
3996                   <entry>0</entry>
3997                   <entry>BOOLEAN</entry>
3998                   <entry>Return value, true if the name exists</entry>
3999                 </row>
4000               </tbody>
4001             </tgroup>
4002           </informaltable>
4003         </para>
4004         <para>
4005           Checks if the specified name exists (currently has an owner).
4006         </para>
4007       </sect3>
4008
4009       <sect3 id="bus-messages-name-owner-changed">
4010         <title><literal>org.freedesktop.DBus.NameOwnerChanged</literal></title>
4011         <para>
4012           This is a signal:
4013           <programlisting>
4014             NameOwnerChanged (STRING name, STRING old_owner, STRING new_owner)
4015           </programlisting>
4016           Message arguments:
4017           <informaltable>
4018             <tgroup cols="3">
4019               <thead>
4020                 <row>
4021                   <entry>Argument</entry>
4022                   <entry>Type</entry>
4023                   <entry>Description</entry>
4024                 </row>
4025               </thead>
4026               <tbody>
4027                 <row>
4028                   <entry>0</entry>
4029                   <entry>STRING</entry>
4030                   <entry>Name with a new owner</entry>
4031                 </row>
4032                 <row>
4033                   <entry>1</entry>
4034                   <entry>STRING</entry>
4035                   <entry>Old owner or empty string if none</entry>
4036                 </row>
4037                 <row>
4038                   <entry>2</entry>
4039                   <entry>STRING</entry>
4040                   <entry>New owner or empty string if none</entry>
4041                 </row>
4042               </tbody>
4043             </tgroup>
4044           </informaltable>
4045         </para>
4046         <para>
4047           This signal indicates that the owner of a name has changed.
4048           It's also the signal to use to detect the appearance of 
4049           new names on the bus.
4050         </para>
4051       </sect3>
4052       <sect3 id="bus-messages-name-lost">
4053         <title><literal>org.freedesktop.DBus.NameLost</literal></title>
4054         <para>
4055           This is a signal:
4056           <programlisting>
4057             NameLost (STRING name)
4058           </programlisting>
4059           Message arguments:
4060           <informaltable>
4061             <tgroup cols="3">
4062               <thead>
4063                 <row>
4064                   <entry>Argument</entry>
4065                   <entry>Type</entry>
4066                   <entry>Description</entry>
4067                 </row>
4068               </thead>
4069               <tbody>
4070                 <row>
4071                   <entry>0</entry>
4072                   <entry>STRING</entry>
4073                   <entry>Name which was lost</entry>
4074                 </row>
4075               </tbody>
4076             </tgroup>
4077           </informaltable>
4078         </para>
4079         <para>
4080           This signal is sent to a specific application when it loses
4081           ownership of a name.
4082         </para>
4083       </sect3>
4084
4085       <sect3 id="bus-messages-name-acquired">
4086         <title><literal>org.freedesktop.DBus.NameAcquired</literal></title>
4087         <para>
4088           This is a signal:
4089           <programlisting>
4090             NameAcquired (STRING name)
4091           </programlisting>
4092           Message arguments:
4093           <informaltable>
4094             <tgroup cols="3">
4095               <thead>
4096                 <row>
4097                   <entry>Argument</entry>
4098                   <entry>Type</entry>
4099                   <entry>Description</entry>
4100                 </row>
4101               </thead>
4102               <tbody>
4103                 <row>
4104                   <entry>0</entry>
4105                   <entry>STRING</entry>
4106                   <entry>Name which was acquired</entry>
4107                 </row>
4108               </tbody>
4109             </tgroup>
4110           </informaltable>
4111         </para>
4112         <para>
4113           This signal is sent to a specific application when it gains
4114           ownership of a name.
4115         </para>
4116       </sect3>
4117
4118       <sect3 id="bus-messages-start-service-by-name">
4119         <title><literal>org.freedesktop.DBus.StartServiceByName</literal></title>
4120         <para>
4121           As a method:
4122           <programlisting>
4123             UINT32 StartServiceByName (in STRING name, in UINT32 flags)
4124           </programlisting>
4125           Message arguments:
4126           <informaltable>
4127             <tgroup cols="3">
4128               <thead>
4129                 <row>
4130                   <entry>Argument</entry>
4131                   <entry>Type</entry>
4132                   <entry>Description</entry>
4133                 </row>
4134               </thead>
4135               <tbody>
4136                 <row>
4137                   <entry>0</entry>
4138                   <entry>STRING</entry>
4139                   <entry>Name of the service to start</entry>
4140                 </row>
4141                 <row>
4142                   <entry>1</entry>
4143                   <entry>UINT32</entry>
4144                   <entry>Flags (currently not used)</entry>
4145                 </row>
4146               </tbody>
4147             </tgroup>
4148           </informaltable>
4149         Reply arguments:
4150         <informaltable>
4151           <tgroup cols="3">
4152             <thead>
4153               <row>
4154                 <entry>Argument</entry>
4155                 <entry>Type</entry>
4156                 <entry>Description</entry>
4157               </row>
4158             </thead>
4159             <tbody>
4160               <row>
4161                 <entry>0</entry>
4162                 <entry>UINT32</entry>
4163                 <entry>Return value</entry>
4164               </row>
4165             </tbody>
4166           </tgroup>
4167         </informaltable>
4168           Tries to launch the executable associated with a name. For more information, see <xref linkend="message-bus-starting-services"/>.
4169
4170         </para>
4171         <para>
4172           The return value can be one of the following values:
4173           <informaltable>
4174             <tgroup cols="3">
4175               <thead>
4176                 <row>
4177                   <entry>Identifier</entry>
4178                   <entry>Value</entry>
4179                   <entry>Description</entry>
4180                 </row>
4181               </thead>
4182               <tbody>
4183                 <row>
4184                   <entry>DBUS_START_REPLY_SUCCESS</entry>
4185                   <entry>1</entry>
4186                   <entry>The service was successfully started.</entry>
4187                 </row>
4188                 <row>
4189                   <entry>DBUS_START_REPLY_ALREADY_RUNNING</entry>
4190                   <entry>2</entry>
4191                   <entry>A connection already owns the given name.</entry>
4192                 </row>
4193               </tbody>
4194              </tgroup>
4195            </informaltable>
4196         </para>
4197
4198       </sect3>
4199
4200       <sect3 id="bus-messages-update-activation-environment">
4201         <title><literal>org.freedesktop.DBus.UpdateActivationEnvironment</literal></title>
4202         <para>
4203           As a method:
4204           <programlisting>
4205             UpdateActivationEnvironment (in ARRAY of DICT&lt;STRING,STRING&gt; environment)
4206           </programlisting>
4207           Message arguments:
4208           <informaltable>
4209             <tgroup cols="3">
4210               <thead>
4211                 <row>
4212                   <entry>Argument</entry>
4213                   <entry>Type</entry>
4214                   <entry>Description</entry>
4215                 </row>
4216               </thead>
4217               <tbody>
4218                 <row>
4219                   <entry>0</entry>
4220                   <entry>ARRAY of DICT&lt;STRING,STRING&gt;</entry>
4221                   <entry>Environment to add or update</entry>
4222                 </row>
4223               </tbody>
4224             </tgroup>
4225             </informaltable>
4226             Normally, session bus activated services inherit the environment of the bus daemon.  This method adds to or modifies that environment when activating services.
4227         </para>
4228         <para>
4229           Some bus instances, such as the standard system bus, may disable access to this method for some or all callers.
4230         </para>
4231         <para>
4232           Note, both the environment variable names and values must be valid UTF-8.  There's no way to update the activation environment with data that is invalid UTF-8.
4233         </para>
4234
4235       </sect3>
4236
4237       <sect3 id="bus-messages-get-name-owner">
4238         <title><literal>org.freedesktop.DBus.GetNameOwner</literal></title>
4239         <para>
4240           As a method:
4241           <programlisting>
4242             STRING GetNameOwner (in STRING name)
4243           </programlisting>
4244           Message arguments:
4245           <informaltable>
4246             <tgroup cols="3">
4247               <thead>
4248                 <row>
4249                   <entry>Argument</entry>
4250                   <entry>Type</entry>
4251                   <entry>Description</entry>
4252                 </row>
4253               </thead>
4254               <tbody>
4255                 <row>
4256                   <entry>0</entry>
4257                   <entry>STRING</entry>
4258                   <entry>Name to get the owner of</entry>
4259                 </row>
4260               </tbody>
4261             </tgroup>
4262           </informaltable>
4263         Reply arguments:
4264         <informaltable>
4265           <tgroup cols="3">
4266             <thead>
4267               <row>
4268                 <entry>Argument</entry>
4269                 <entry>Type</entry>
4270                 <entry>Description</entry>
4271               </row>
4272             </thead>
4273             <tbody>
4274               <row>
4275                 <entry>0</entry>
4276                 <entry>STRING</entry>
4277                 <entry>Return value, a unique connection name</entry>
4278               </row>
4279             </tbody>
4280           </tgroup>
4281         </informaltable>
4282         Returns the unique connection name of the primary owner of the name
4283         given. If the requested name doesn't have an owner, returns a
4284         <literal>org.freedesktop.DBus.Error.NameHasNoOwner</literal> error.
4285        </para>
4286       </sect3>
4287
4288       <sect3 id="bus-messages-get-connection-unix-user">
4289         <title><literal>org.freedesktop.DBus.GetConnectionUnixUser</literal></title>
4290         <para>
4291           As a method:
4292           <programlisting>
4293             UINT32 GetConnectionUnixUser (in STRING bus_name)
4294           </programlisting>
4295           Message arguments:
4296           <informaltable>
4297             <tgroup cols="3">
4298               <thead>
4299                 <row>
4300                   <entry>Argument</entry>
4301                   <entry>Type</entry>
4302                   <entry>Description</entry>
4303                 </row>
4304               </thead>
4305               <tbody>
4306                 <row>
4307                   <entry>0</entry>
4308                   <entry>STRING</entry>
4309                   <entry>Unique or well-known bus name of the connection to
4310                     query, such as <literal>:12.34</literal> or
4311                     <literal>com.example.tea</literal></entry>
4312                 </row>
4313               </tbody>
4314             </tgroup>
4315           </informaltable>
4316         Reply arguments:
4317         <informaltable>
4318           <tgroup cols="3">
4319             <thead>
4320               <row>
4321                 <entry>Argument</entry>
4322                 <entry>Type</entry>
4323                 <entry>Description</entry>
4324               </row>
4325             </thead>
4326             <tbody>
4327               <row>
4328                 <entry>0</entry>
4329                 <entry>UINT32</entry>
4330                 <entry>Unix user ID</entry>
4331               </row>
4332             </tbody>
4333           </tgroup>
4334         </informaltable>
4335         Returns the Unix user ID of the process connected to the server. If
4336         unable to determine it (for instance, because the process is not on the
4337         same machine as the bus daemon), an error is returned.
4338        </para>
4339       </sect3>
4340
4341       <sect3 id="bus-messages-get-connection-unix-process-id">
4342         <title><literal>org.freedesktop.DBus.GetConnectionUnixProcessID</literal></title>
4343         <para>
4344           As a method:
4345           <programlisting>
4346             UINT32 GetConnectionUnixProcessID (in STRING bus_name)
4347           </programlisting>
4348           Message arguments:
4349           <informaltable>
4350             <tgroup cols="3">
4351               <thead>
4352                 <row>
4353                   <entry>Argument</entry>
4354                   <entry>Type</entry>
4355                   <entry>Description</entry>
4356                 </row>
4357               </thead>
4358               <tbody>
4359                 <row>
4360                   <entry>0</entry>
4361                   <entry>STRING</entry>
4362                   <entry>Unique or well-known bus name of the connection to
4363                     query, such as <literal>:12.34</literal> or
4364                     <literal>com.example.tea</literal></entry>
4365                 </row>
4366               </tbody>
4367             </tgroup>
4368           </informaltable>
4369         Reply arguments:
4370         <informaltable>
4371           <tgroup cols="3">
4372             <thead>
4373               <row>
4374                 <entry>Argument</entry>
4375                 <entry>Type</entry>
4376                 <entry>Description</entry>
4377               </row>
4378             </thead>
4379             <tbody>
4380               <row>
4381                 <entry>0</entry>
4382                 <entry>UINT32</entry>
4383                 <entry>Unix process id</entry>
4384               </row>
4385             </tbody>
4386           </tgroup>
4387         </informaltable>
4388         Returns the Unix process ID of the process connected to the server. If
4389         unable to determine it (for instance, because the process is not on the
4390         same machine as the bus daemon), an error is returned.
4391        </para>
4392       </sect3>
4393
4394       <sect3 id="bus-messages-add-match">
4395         <title><literal>org.freedesktop.DBus.AddMatch</literal></title>
4396         <para>
4397           As a method:
4398           <programlisting>
4399             AddMatch (in STRING rule)
4400           </programlisting>
4401           Message arguments:
4402           <informaltable>
4403             <tgroup cols="3">
4404               <thead>
4405                 <row>
4406                   <entry>Argument</entry>
4407                   <entry>Type</entry>
4408                   <entry>Description</entry>
4409                 </row>
4410               </thead>
4411               <tbody>
4412                 <row>
4413                   <entry>0</entry>
4414                   <entry>STRING</entry>
4415                   <entry>Match rule to add to the connection</entry>
4416                 </row>
4417               </tbody>
4418             </tgroup>
4419           </informaltable>
4420         Adds a match rule to match messages going through the message bus (see <xref linkend='message-bus-routing-match-rules'/>). 
4421         If the bus does not have enough resources the <literal>org.freedesktop.DBus.Error.OOM</literal>
4422         error is returned.
4423        </para>
4424       </sect3>
4425       <sect3 id="bus-messages-remove-match">
4426         <title><literal>org.freedesktop.DBus.RemoveMatch</literal></title>
4427         <para>
4428           As a method:
4429           <programlisting>
4430             RemoveMatch (in STRING rule)
4431           </programlisting>
4432           Message arguments:
4433           <informaltable>
4434             <tgroup cols="3">
4435               <thead>
4436                 <row>
4437                   <entry>Argument</entry>
4438                   <entry>Type</entry>
4439                   <entry>Description</entry>
4440                 </row>
4441               </thead>
4442               <tbody>
4443                 <row>
4444                   <entry>0</entry>
4445                   <entry>STRING</entry>
4446                   <entry>Match rule to remove from the connection</entry>
4447                 </row>
4448               </tbody>
4449             </tgroup>
4450           </informaltable>
4451         Removes the first rule that matches (see <xref linkend='message-bus-routing-match-rules'/>). 
4452         If the rule is not found the <literal>org.freedesktop.DBus.Error.MatchRuleNotFound</literal>
4453         error is returned.
4454        </para>
4455       </sect3>
4456
4457       <sect3 id="bus-messages-get-id">
4458         <title><literal>org.freedesktop.DBus.GetId</literal></title>
4459         <para>
4460           As a method:
4461           <programlisting>
4462             GetId (out STRING id)
4463           </programlisting>
4464         Reply arguments:
4465         <informaltable>
4466           <tgroup cols="3">
4467             <thead>
4468               <row>
4469                 <entry>Argument</entry>
4470                 <entry>Type</entry>
4471                 <entry>Description</entry>
4472               </row>
4473             </thead>
4474             <tbody>
4475               <row>
4476                 <entry>0</entry>
4477                 <entry>STRING</entry>
4478                 <entry>Unique ID identifying the bus daemon</entry>
4479               </row>
4480             </tbody>
4481           </tgroup>
4482         </informaltable>
4483         Gets the unique ID of the bus. The unique ID here is shared among all addresses the 
4484         bus daemon is listening on (TCP, UNIX domain socket, etc.) and its format is described in 
4485         <xref linkend="uuids"/>. Each address the bus is listening on also has its own unique 
4486         ID, as described in <xref linkend="addresses"/>. The per-bus and per-address IDs are not related.
4487         There is also a per-machine ID, described in <xref linkend="standard-interfaces-peer"/> and returned
4488         by org.freedesktop.DBus.Peer.GetMachineId().
4489         For a desktop session bus, the bus ID can be used as a way to uniquely identify a user's session.
4490         </para>
4491       </sect3>
4492
4493     </sect2>
4494
4495   </sect1>
4496 <!--
4497   <appendix id="implementation-notes">
4498     <title>Implementation notes</title>
4499     <sect1 id="implementation-notes-subsection">
4500       <title></title>
4501       <para>
4502       </para>
4503     </sect1>
4504   </appendix>
4505 -->
4506
4507   <glossary><title>Glossary</title>
4508     <para>
4509       This glossary defines some of the terms used in this specification.
4510     </para>
4511
4512     <glossentry id="term-bus-name"><glossterm>Bus Name</glossterm>
4513       <glossdef>
4514         <para>
4515           The message bus maintains an association between names and
4516           connections. (Normally, there's one connection per application.)  A
4517           bus name is simply an identifier used to locate connections. For
4518           example, the hypothetical <literal>com.yoyodyne.Screensaver</literal>
4519           name might be used to send a message to a screensaver from Yoyodyne
4520           Corporation.  An application is said to <firstterm>own</firstterm> a
4521           name if the message bus has associated the application's connection
4522           with the name.  Names may also have <firstterm>queued
4523           owners</firstterm> (see <xref linkend="term-queued-owner"/>).
4524             The bus assigns a unique name to each connection, 
4525             see <xref linkend="term-unique-name"/>. Other names 
4526               can be thought of as "well-known names" and are 
4527               used to find applications that offer specific functionality.
4528         </para>
4529       </glossdef>
4530     </glossentry>
4531       
4532     <glossentry id="term-message"><glossterm>Message</glossterm>
4533       <glossdef>
4534         <para>
4535           A message is the atomic unit of communication via the D-Bus
4536           protocol. It consists of a <firstterm>header</firstterm> and a
4537           <firstterm>body</firstterm>; the body is made up of
4538           <firstterm>arguments</firstterm>.
4539         </para>
4540       </glossdef>
4541     </glossentry>
4542
4543     <glossentry id="term-message-bus"><glossterm>Message Bus</glossterm>
4544       <glossdef>
4545         <para>
4546           The message bus is a special application that forwards 
4547           or routes messages between a group of applications
4548           connected to the message bus. It also manages 
4549           <firstterm>names</firstterm> used for routing
4550           messages.
4551         </para>
4552       </glossdef>
4553     </glossentry>
4554
4555     <glossentry id="term-name"><glossterm>Name</glossterm>
4556       <glossdef>
4557         <para>
4558           See <xref linkend="term-bus-name"/>. "Name" may 
4559             also be used to refer to some of the other names
4560             in D-Bus, such as interface names.
4561         </para>
4562       </glossdef>
4563     </glossentry>
4564
4565     <glossentry id="namespace"><glossterm>Namespace</glossterm>
4566       <glossdef>
4567         <para>
4568           Used to prevent collisions when defining new interfaces or bus
4569           names. The convention used is the same one Java uses for defining
4570           classes: a reversed domain name.
4571         </para>
4572       </glossdef>
4573     </glossentry>
4574
4575     <glossentry id="term-object"><glossterm>Object</glossterm>
4576       <glossdef>
4577         <para>
4578           Each application contains <firstterm>objects</firstterm>, which have
4579           <firstterm>interfaces</firstterm> and
4580           <firstterm>methods</firstterm>. Objects are referred to by a name,
4581           called a <firstterm>path</firstterm>.
4582         </para>
4583       </glossdef>
4584     </glossentry>
4585
4586     <glossentry id="one-to-one"><glossterm>One-to-One</glossterm>
4587       <glossdef>
4588         <para>
4589           An application talking directly to another application, without going
4590           through a message bus. One-to-one connections may be "peer to peer" or
4591           "client to server." The D-Bus protocol has no concept of client
4592           vs. server after a connection has authenticated; the flow of messages
4593           is symmetrical (full duplex).
4594         </para>
4595       </glossdef>
4596     </glossentry>
4597
4598     <glossentry id="term-path"><glossterm>Path</glossterm>
4599       <glossdef>
4600         <para>
4601           Object references (object names) in D-Bus are organized into a
4602           filesystem-style hierarchy, so each object is named by a path. As in
4603           LDAP, there's no difference between "files" and "directories"; a path
4604           can refer to an object, while still having child objects below it.
4605         </para>
4606       </glossdef>
4607     </glossentry>
4608
4609     <glossentry id="term-queued-owner"><glossterm>Queued Name Owner</glossterm>
4610       <glossdef>
4611         <para>
4612           Each bus name has a primary owner; messages sent to the name go to the
4613           primary owner. However, certain names also maintain a queue of
4614           secondary owners "waiting in the wings." If the primary owner releases
4615           the name, then the first secondary owner in the queue automatically
4616           becomes the new owner of the name.
4617         </para>
4618       </glossdef>
4619     </glossentry>
4620
4621     <glossentry id="term-service"><glossterm>Service</glossterm>
4622       <glossdef>
4623         <para>
4624           A service is an executable that can be launched by the bus daemon.
4625           Services normally guarantee some particular features, for example they
4626           may guarantee that they will request a specific name such as
4627           "org.freedesktop.Screensaver", have a singleton object
4628           "/org/freedesktop/Application", and that object will implement the
4629           interface "org.freedesktop.ScreensaverControl".
4630         </para>
4631       </glossdef>
4632     </glossentry>
4633
4634     <glossentry id="term-service-description-files"><glossterm>Service Description Files</glossterm>
4635       <glossdef>
4636         <para>
4637           ".service files" tell the bus about service applications that can be
4638           launched (see <xref linkend="term-service"/>). Most importantly they
4639           provide a mapping from bus names to services that will request those
4640             names when they start up.
4641         </para>
4642       </glossdef>
4643     </glossentry>
4644
4645     <glossentry id="term-unique-name"><glossterm>Unique Connection Name</glossterm>
4646       <glossdef>
4647         <para>
4648           The special name automatically assigned to each connection by the
4649           message bus. This name will never change owner, and will be unique
4650           (never reused during the lifetime of the message bus).
4651           It will begin with a ':' character.
4652         </para>
4653       </glossdef>
4654     </glossentry>
4655
4656   </glossary>
4657 </article>