* configure.in: Add test/name-test/Makefile to the generated
[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.11</releaseinfo>
11     <date>6 February 2005</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. D-BUS may turn out to be useful 
118       in unanticipated applications, but future versions of this 
119       spec and the reference implementation probably will not 
120       incorporate features that interfere with the core use cases.
121     </para>
122
123     <para>
124       The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
125       "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
126       document are to be interpreted as described in RFC 2119. However, the
127       document could use a serious audit to be sure it makes sense to do
128       so. Also, they are not capitalized.
129     </para>
130     
131   </sect1>
132
133   <sect1 id="message-protocol">
134     <title>Message Protocol</title>
135
136     <para>
137       A <firstterm>message</firstterm> consists of a
138       <firstterm>header</firstterm> and a <firstterm>body</firstterm>. If you
139       think of a message as a package, the header is the address, and the body
140       contains the package contents. The message delivery system uses the header
141       information to figure out where to send the message and how to interpret
142       it; the recipient inteprets the body of the message.
143     </para>
144     
145     <para>
146       The body of the message is made up of zero or more
147       <firstterm>arguments</firstterm>, which are typed values, such as an
148       integer or a byte array.
149     </para>
150
151     <para>
152       Both header and body use the same type system and format for 
153       serializing data. Each type of value has a wire format. 
154       Converting a value from some other representation into the wire
155       format is called <firstterm>marshaling</firstterm> and converting
156       it back from the wire format is <firstterm>unmarshaling</firstterm>.
157     </para>
158
159     <sect2 id="message-protocol-signatures">
160       <title>Type Signatures</title>
161
162       <para>
163         The D-BUS protocol does not include type tags in the marshaled data; a
164         block of marshaled values must have a known <firstterm>type
165         signature</firstterm>.  The type signature is made up of <firstterm>type
166         codes</firstterm>. A type code is an ASCII character representing the
167         type of a value. Because ASCII characters are used, the type signature
168         will always form a valid ASCII string. A simple string compare 
169         determines whether two type signatures are equivalent.
170       </para>
171
172       <para>
173         As a simple example, the type code for 32-bit integer (<literal>INT32</literal>) is
174         the ASCII character 'i'. So the signature for a block of values 
175         containing a single <literal>INT32</literal> would be:
176         <programlisting>
177           "i"
178         </programlisting>
179         A block of values containing two <literal>INT32</literal> would have this signature:
180         <programlisting>
181           "ii"
182         </programlisting>        
183       </para>
184
185       <para>
186         All <firstterm>basic</firstterm> types work like 
187         <literal>INT32</literal> in this example. To marshal and unmarshal 
188         basic types, you simply read one value from the data
189         block corresponding to each type code in the signature.
190         In addition to basic types, there are four <firstterm>container</firstterm> 
191         types: <literal>STRUCT</literal>, <literal>ARRAY</literal>, <literal>VARIANT</literal>, 
192         and <literal>DICT_ENTRY</literal>.
193       </para>
194
195       <para>
196         <literal>STRUCT</literal> has a type code, ASCII character 'r', but this type 
197         code does not appear in signatures. Instead, ASCII characters
198         '(' and ')' are used to mark the beginning and end of the struct.
199         So for example, a struct containing two integers would have this 
200         signature:
201         <programlisting>
202           "(ii)"
203         </programlisting>
204         Structs can be nested, so for example a struct containing 
205         an integer and another struct:
206         <programlisting>
207           "(i(ii))"
208         </programlisting>
209         The value block storing that struct would contain three integers; the
210         type signature allows you to distinguish "(i(ii))" from "((ii)i)" or
211         "(iii)" or "iii".
212       </para>
213
214       <para>
215         The <literal>STRUCT</literal> type code 'r' is not currently used in the D-BUS protocol,
216         but is useful in code that implements the protocol. This type code 
217         is specified to allow such code to interoperate in non-protocol contexts.
218       </para>
219       
220       <para>
221         <literal>ARRAY</literal> has ASCII character 'a' as type code. The array type code must be
222         followed by a <firstterm>single complete type</firstterm>. The single
223         complete type following the array is the type of each array element. So
224         the simple example is:
225         <programlisting>
226           "ai"
227         </programlisting>
228         which is an array of 32-bit integers. But an array can be of any type, 
229         such as this array-of-struct-with-two-int32-fields:
230         <programlisting>
231           "a(ii)"
232         </programlisting>
233         Or this array of array of integer:
234         <programlisting>
235           "aai"
236         </programlisting>
237       </para>
238
239       <para>
240         The phrase <firstterm>single complete type</firstterm> deserves some 
241         definition. A single complete type is a basic type code, a variant type code, 
242         an array with its element type, or a struct with its fields. 
243         So the following signatures are not single complete types:
244         <programlisting>
245           "aa"
246         </programlisting>
247         <programlisting>
248           "(ii"
249         </programlisting>
250         <programlisting>
251           "ii)"
252         </programlisting>
253         And the following signatures contain multiple complete types:
254         <programlisting>
255           "ii"
256         </programlisting>
257         <programlisting>
258           "aiai"
259         </programlisting>
260         <programlisting>
261           "(ii)(ii)"
262         </programlisting>
263         Note however that a single complete type may <emphasis>contain</emphasis>
264         multiple other single complete types.
265       </para>
266
267       <para>
268         <literal>VARIANT</literal> has ASCII character 'v' as its type code. A marshaled value of
269         type <literal>VARIANT</literal> will have the signature of a single complete type as part
270         of the <emphasis>value</emphasis>.  This signature will be followed by a
271         marshaled value of that type.
272       </para>
273
274       <para>
275         A <literal>DICT_ENTRY</literal> works exactly like a struct, but rather
276         than parentheses it uses curly braces, and it has more restrictions.
277         The restrictions are: it occurs only as an array element type; it has
278         exactly two single complete types inside the curly braces; the first
279         single complete type (the "key") must be a basic type rather than a
280         container type. Implementations must not accept dict entries outside of
281         arrays, must not accept dict entries with zero, one, or more than two
282         fields, and must not accept dict entries with non-basic-typed keys. A
283         dict entry is always a key-value pair.
284       </para>
285       
286       <para>
287         The first field in the <literal>DICT_ENTRY</literal> is always the key.
288         A message is considered corrupt if the same key occurs twice in the same
289         array of <literal>DICT_ENTRY</literal>. However, for performance reasons
290         implementations are not required to reject dicts with duplicate keys.
291       </para>
292
293       <para>
294         In most languages, an array of dict entry would be represented as a 
295         map, hash table, or dict object.
296       </para>
297
298       <para>
299         The following table summarizes the D-BUS types.
300         <informaltable>
301           <tgroup cols="3">
302             <thead>
303               <row>
304                 <entry>Conventional Name</entry>
305                 <entry>Code</entry>
306                 <entry>Description</entry>
307               </row>
308             </thead>
309             <tbody>
310               <row>
311                 <entry><literal>INVALID</literal></entry>
312                 <entry>0 (ASCII NUL)</entry>
313                 <entry>Not a valid type code, used to terminate signatures</entry>
314               </row><row>
315                 <entry><literal>BYTE</literal></entry>
316                 <entry>121 (ASCII 'y')</entry>
317                 <entry>8-bit unsigned integer</entry>
318               </row><row>
319                 <entry><literal>BOOLEAN</literal></entry>
320                 <entry>98 (ASCII 'b')</entry>
321                 <entry>Boolean value, 0 is <literal>FALSE</literal> and 1 is <literal>TRUE</literal>. Everything else is invalid.</entry>
322               </row><row>
323                 <entry><literal>INT16</literal></entry>
324                 <entry>110 (ASCII 'n')</entry>
325                 <entry>16-bit signed integer</entry>
326               </row><row>
327                 <entry><literal>UINT16</literal></entry>
328                 <entry>113 (ASCII 'q')</entry>
329                 <entry>16-bit unsigned integer</entry>
330               </row><row>
331                 <entry><literal>INT32</literal></entry>
332                 <entry>105 (ASCII 'i')</entry>
333                 <entry>32-bit signed integer</entry>
334               </row><row>
335                 <entry><literal>UINT32</literal></entry>
336                 <entry>117 (ASCII 'u')</entry>
337                 <entry>32-bit unsigned integer</entry>
338               </row><row>
339                 <entry><literal>INT64</literal></entry>
340                 <entry>120 (ASCII 'x')</entry>
341                 <entry>64-bit signed integer</entry>
342               </row><row>
343                 <entry><literal>UINT64</literal></entry>
344                 <entry>116 (ASCII 't')</entry>
345                 <entry>64-bit unsigned integer</entry>
346               </row><row>
347                 <entry><literal>DOUBLE</literal></entry>
348                 <entry>100 (ASCII 'd')</entry>
349                 <entry>IEEE 754 double</entry>
350               </row><row>
351                 <entry><literal>STRING</literal></entry>
352                 <entry>115 (ASCII 's')</entry>
353                 <entry>UTF-8 string (<emphasis>must</emphasis> be valid UTF-8). Must be nul terminated.</entry>
354               </row><row>
355                 <entry><literal>OBJECT_PATH</literal></entry>
356                 <entry>111 (ASCII 'o')</entry>
357                 <entry>Name of an object instance</entry>
358               </row><row>
359                 <entry><literal>SIGNATURE</literal></entry>
360                 <entry>103 (ASCII 'g')</entry>
361                 <entry>A type signature</entry>
362               </row><row>
363                 <entry><literal>ARRAY</literal></entry>
364                 <entry>97 (ASCII 'a')</entry>
365                 <entry>Array</entry>
366               </row><row>
367                 <entry><literal>STRUCT</literal></entry>
368                 <entry>114 (ASCII 'r'), 40 (ASCII '('), 41 (ASCII ')')</entry>
369                 <entry>Struct</entry>
370               </row><row>
371                 <entry><literal>VARIANT</literal></entry>
372                 <entry>118 (ASCII 'v') </entry>
373                 <entry>Variant type (the type of the value is part of the value itself)</entry>
374               </row><row>
375                 <entry><literal>DICT_ENTRY</literal></entry>
376                 <entry>101 (ASCII 'e'), 123 (ASCII '{'), 125 (ASCII '}') </entry>
377                 <entry>Entry in a dict or map (array of key-value pairs)</entry>
378               </row>
379             </tbody>
380           </tgroup>
381         </informaltable>
382       </para>
383
384     </sect2>
385
386     <sect2 id="message-protocol-marshaling">
387       <title>Marshaling (Wire Format)</title>
388
389       <para>
390         Given a type signature, a block of bytes can be converted into typed
391         values. This section describes the format of the block of bytes.  Byte
392         order and alignment issues are handled uniformly for all D-BUS types.
393       </para>
394
395       <para>
396         A block of bytes has an associated byte order. The byte order 
397         has to be discovered in some way; for D-BUS messages, the 
398         byte order is part of the message header as described in 
399         <xref linkend="message-protocol-messages"/>. For now, assume 
400         that the byte order is known to be either little endian or big 
401           endian.
402       </para>
403
404       <para>
405         Each value in a block of bytes is aligned "naturally," for example
406         4-byte values are aligned to a 4-byte boundary, and 8-byte values to an
407         8-byte boundary. To properly align a value, <firstterm>alignment
408         padding</firstterm> may be necessary. The alignment padding must always
409         be the minimum required padding to properly align the following value;
410         and it must always be made up of nul bytes. The alignment padding must
411         not be left uninitialized (it can't contain garbage), and more padding
412         than required must not be used.
413       </para>
414
415       <para>
416         Given all this, the types are marshaled on the wire as follows:
417         <informaltable>
418           <tgroup cols="3">
419             <thead>
420               <row>
421                 <entry>Conventional Name</entry>
422                 <entry>Encoding</entry>
423                 <entry>Alignment</entry>
424               </row>
425             </thead>
426             <tbody>
427               <row>
428                 <entry><literal>INVALID</literal></entry>
429                 <entry>Not applicable; cannot be marshaled.</entry>
430                 <entry>N/A</entry>
431               </row><row>
432                 <entry><literal>BYTE</literal></entry>
433                 <entry>A single 8-bit byte.</entry>
434                 <entry>1</entry>
435               </row><row>
436                 <entry><literal>BOOLEAN</literal></entry>
437                 <entry>As for <literal>UINT32</literal>, but only 0 and 1 are valid values.</entry>
438                 <entry>4</entry>
439               </row><row>
440                 <entry><literal>INT16</literal></entry>
441                 <entry>16-bit signed integer in the message's byte order.</entry>
442                 <entry>2</entry>
443               </row><row>
444                 <entry><literal>UINT16</literal></entry>
445                 <entry>16-bit unsigned integer in the message's byte order.</entry>
446                 <entry>2</entry>
447               </row><row>
448                 <entry><literal>INT32</literal></entry>
449                 <entry>32-bit signed integer in the message's byte order.</entry>
450                 <entry>4</entry>
451               </row><row>
452                 <entry><literal>UINT32</literal></entry>
453                 <entry>32-bit unsigned integer in the message's byte order.</entry>
454                 <entry>4</entry>
455               </row><row>
456                 <entry><literal>INT64</literal></entry>
457                 <entry>64-bit signed integer in the message's byte order.</entry>
458                 <entry>8</entry>
459               </row><row>
460                 <entry><literal>UINT64</literal></entry>
461                 <entry>64-bit unsigned integer in the message's byte order.</entry>
462                 <entry>8</entry>
463               </row><row>
464                 <entry><literal>DOUBLE</literal></entry>
465                 <entry>64-bit IEEE 754 double in the message's byte order.</entry>
466                 <entry>8</entry>
467               </row><row>
468                 <entry><literal>STRING</literal></entry>
469                 <entry>A <literal>UINT32</literal> indicating the string's 
470                   length in bytes excluding its terminating nul, followed by 
471                   string data of the given length, followed by a terminating nul 
472                   byte.
473                 </entry>
474                 <entry>
475                   4 (for the length)
476                 </entry>
477               </row><row>
478                 <entry><literal>OBJECT_PATH</literal></entry>
479                 <entry>Exactly the same as <literal>STRING</literal> except the 
480                   content must be a valid object path (see below).
481                 </entry>
482                 <entry>
483                   4 (for the length)
484                 </entry>
485               </row><row>
486                 <entry><literal>SIGNATURE</literal></entry>
487                 <entry>The same as <literal>STRING</literal> except the length is a single 
488                   byte (thus signatures have a maximum length of 255)
489                   and the content must be a valid signature (see below).
490                 </entry>
491                 <entry>
492                   1
493                 </entry>
494               </row><row>
495                 <entry><literal>ARRAY</literal></entry>
496                 <entry>
497                   A <literal>UINT32</literal> giving the length of the array data in bytes, followed by 
498                   alignment padding to the alignment boundary of the array element type, 
499                   followed by each array element. The array length is from the 
500                   end of the alignment padding to the end of the last element,
501                   i.e. it does not include the padding after the length,
502                   or any padding after the last element.
503                   Arrays have a maximum length defined to be 2 to the 26th power or
504                   67108864. Implementations must not send or accept arrays exceeding this
505                   length.
506                 </entry>
507                 <entry>
508                   4 (for the length)
509                 </entry>
510               </row><row>
511                 <entry><literal>STRUCT</literal></entry>
512                 <entry>
513                   A struct must start on an 8-byte boundary regardless of the
514                   type of the struct fields. The struct value consists of each
515                   field marshaled in sequence starting from that 8-byte
516                   alignment boundary.
517                 </entry>
518                 <entry>
519                   8
520                 </entry>
521               </row><row>
522                 <entry><literal>VARIANT</literal></entry>
523                 <entry>
524                   A variant type has a marshaled <literal>SIGNATURE</literal>
525                   followed by a marshaled value with the type
526                   given in the signature.
527                   Unlike a message signature, the variant signature 
528                   can contain only a single complete type.
529                   So "i" is OK, "ii" is not.
530                 </entry>
531                 <entry>
532                   1 (alignment of the signature)
533                 </entry>
534               </row><row>
535                 <entry><literal>DICT_ENTRY</literal></entry>
536                 <entry>
537                   Identical to STRUCT.
538                 </entry>
539                 <entry>
540                   8
541                 </entry>
542               </row>
543             </tbody>
544           </tgroup>
545         </informaltable>
546       </para>
547       
548       <sect3 id="message-protocol-marshaling-object-path">
549         <title>Valid Object Paths</title>
550         
551         <para>
552           An object path is a name used to refer to an object instance.
553           Conceptually, each participant in a D-BUS message exchange may have
554           any number of object instances (think of C++ or Java objects) and each
555           such instance will have a path. Like a filesystem, the object
556           instances in an application form a hierarchical tree.
557         </para>
558         
559         <para>
560           The following rules define a valid object path. Implementations must 
561           not send or accept messages with invalid object paths.
562           <itemizedlist>
563             <listitem>
564               <para>
565                 The path may be of any length.
566               </para>
567             </listitem>
568             <listitem>
569               <para>
570                 The path must begin with an ASCII '/' (integer 47) character, 
571                 and must consist of elements separated by slash characters.
572               </para>
573             </listitem>
574             <listitem>
575               <para>
576                 Each element must only contain the ASCII characters 
577                 "[A-Z][a-z][0-9]_"
578               </para>
579             </listitem>
580             <listitem>
581               <para>
582                 No element may be the empty string.
583               </para>
584             </listitem>
585             <listitem>
586               <para>
587                 Multiple '/' characters cannot occur in sequence.
588               </para>
589             </listitem>
590             <listitem>
591               <para>
592                 A trailing '/' character is not allowed unless the 
593                 path is the root path (a single '/' character).
594               </para>
595             </listitem>
596           </itemizedlist>
597         </para>
598
599       </sect3>
600
601       
602       <sect3 id="message-protocol-marshaling-signature">
603         <title>Valid Signatures</title>
604         <para>
605           An implementation must not send or accept invalid signatures.
606           Valid signatures will conform to the following rules:
607           <itemizedlist>
608             <listitem>
609               <para>
610                 The signature ends with a nul byte.
611               </para>
612             </listitem>
613             <listitem>
614               <para>
615                 The signature is a list of single complete types. 
616                 Arrays must have element types, and structs must 
617                 have both open and close parentheses.
618               </para>
619             </listitem>
620             <listitem>
621               <para>
622                 Only type codes and open and close parentheses are 
623                 allowed in the signature. The <literal>STRUCT</literal> type code
624                 is not allowed in signatures, because parentheses
625                 are used instead.
626               </para>
627             </listitem>
628             <listitem>
629               <para>
630                 The maximum depth of container type nesting is 32 array type
631                 codes and 32 open parentheses. This implies that the maximum
632                 total depth of recursion is 64, for an "array of array of array
633                 of ... struct of struct of struct of ..."  where there are 32
634                 array and 32 struct.
635               </para>
636             </listitem>
637             <listitem>
638               <para>
639                 The maximum length of a signature is 255.
640               </para>
641             </listitem>
642             <listitem>
643               <para>
644                 Signatures must be nul-terminated.
645               </para>
646             </listitem>
647           </itemizedlist>
648         </para>
649       </sect3>
650       
651     </sect2>
652
653     <sect2 id="message-protocol-messages">
654       <title>Message Format</title>
655
656       <para>
657         A message consists of a header and a body. The header is a block of
658         values with a fixed signature and meaning.  The body is a separate block
659         of values, with a signature specified in the header.
660       </para>
661
662       <para>
663         The length of the header must be a multiple of 8, allowing the body to
664         begin on an 8-byte boundary when storing the entire message in a single
665         buffer. If the header does not naturally end on an 8-byte boundary 
666         up to 7 bytes of nul-initialized alignment padding must be added.
667       </para>
668
669       <para>
670         The message body need not end on an 8-byte boundary.
671       </para>
672
673       <para>
674         The maximum length of a message, including header, header alignment padding, 
675         and body is 2 to the 27th power or 134217728. Implementations must not 
676         send or accept messages exceeding this size.
677       </para>
678       
679       <para>
680         The signature of the header is:
681         <programlisting>
682           "yyyyuua(yv)"
683         </programlisting>
684         Written out more readably, this is:
685         <programlisting>
686           BYTE, BYTE, BYTE, BYTE, UINT32, UINT32, ARRAY of STRUCT of (BYTE,VARIANT)
687         </programlisting>
688       </para>
689
690       <para>
691         These values have the following meanings:
692         <informaltable>
693           <tgroup cols="2">
694             <thead>
695               <row>
696                 <entry>Value</entry>
697                 <entry>Description</entry>
698               </row>
699             </thead>
700             <tbody>
701               <row>
702                 <entry>1st <literal>BYTE</literal></entry>
703                 <entry>Endianness flag; ASCII 'l' for little-endian 
704                   or ASCII 'B' for big-endian. Both header and body are 
705                 in this endianness.</entry>
706               </row>
707               <row>
708                 <entry>2nd <literal>BYTE</literal></entry>
709                 <entry><firstterm>Message type</firstterm>. Unknown types must be ignored. 
710                   Currently-defined types are described below.
711                 </entry>
712               </row>
713               <row>
714                 <entry>3rd <literal>BYTE</literal></entry>
715                 <entry>Bitwise OR of flags. Unknown flags
716                   must be ignored. Currently-defined flags are described below.
717                 </entry>
718               </row>
719               <row>
720                 <entry>4th <literal>BYTE</literal></entry>
721                 <entry>Major protocol version of the sending application.  If
722                 the major protocol version of the receiving application does not
723                 match, the applications will not be able to communicate and the
724                 D-BUS connection must be disconnected. The major protocol
725                 version for this version of the specification is 0.
726                   FIXME this field is stupid and pointless to put in 
727                   every message.
728                 </entry>
729               </row>
730               <row>
731                 <entry>1st <literal>UINT32</literal></entry>
732                 <entry>Length in bytes of the message body, starting 
733                   from the end of the header. The header ends after 
734                   its alignment padding to an 8-boundary.
735                 </entry>
736               </row>
737               <row>
738                 <entry>2nd <literal>UINT32</literal></entry>
739                 <entry>The serial of this message, used as a cookie 
740                   by the sender to identify the reply corresponding
741                   to this request.
742                 </entry>
743               </row>      
744               <row>
745                 <entry><literal>ARRAY</literal> of <literal>STRUCT</literal> of (<literal>BYTE</literal>,<literal>VARIANT</literal>)</entry>
746                 <entry>An array of zero or more <firstterm>header
747                   fields</firstterm> where the byte is the field code, and the
748                   variant is the field value. The message type determines 
749                   which fields are required.
750                 </entry>
751               </row>
752             </tbody>
753           </tgroup>
754         </informaltable>
755       </para>
756       <para>
757         <firstterm>Message types</firstterm> that can appear in the second byte
758         of the header are:
759         <informaltable>
760           <tgroup cols="3">
761             <thead>
762               <row>
763                 <entry>Conventional name</entry>
764                 <entry>Decimal value</entry>
765                 <entry>Description</entry>
766               </row>
767             </thead>
768             <tbody>
769               <row>
770                 <entry><literal>INVALID</literal></entry>
771                 <entry>0</entry>
772                 <entry>This is an invalid type.</entry>
773               </row>
774               <row>
775                 <entry><literal>METHOD_CALL</literal></entry>
776                 <entry>1</entry>
777                 <entry>Method call.</entry>
778               </row>
779               <row>
780                 <entry><literal>METHOD_RETURN</literal></entry>
781                 <entry>2</entry>
782                 <entry>Method reply with returned data.</entry>
783               </row>
784               <row>
785                 <entry><literal>ERROR</literal></entry>
786                 <entry>3</entry>
787                 <entry>Error reply. If the first argument exists and is a
788                 string, it is an error message.</entry>
789               </row>
790               <row>
791                 <entry><literal>SIGNAL</literal></entry>
792                 <entry>4</entry>
793                 <entry>Signal emission.</entry>
794               </row>
795             </tbody>
796           </tgroup>
797         </informaltable>
798       </para>
799       <para>
800         Flags that can appear in the third byte of the header:
801         <informaltable>
802           <tgroup cols="3">
803             <thead>
804               <row>
805                 <entry>Conventional name</entry>
806                 <entry>Hex value</entry>
807                 <entry>Description</entry>
808               </row>
809             </thead>
810             <tbody>
811               <row>
812                 <entry><literal>NO_REPLY_EXPECTED</literal></entry>
813                 <entry>0x1</entry>
814                 <entry>This message does not expect method return replies or
815                 error replies; the reply can be omitted as an
816                 optimization. However, it is compliant with this specification
817                 to return the reply despite this flag and the only harm 
818                   from doing so is extra network traffic.
819                 </entry>
820               </row>
821               <row>
822                 <entry><literal>NO_AUTO_START</literal></entry>
823                 <entry>0x2</entry>
824                 <entry>The bus must not launch an owner
825                   for the destination name in response to this message.
826                 </entry>
827               </row>
828             </tbody>
829           </tgroup>
830         </informaltable>
831       </para>
832
833       <sect3 id="message-protocol-header-fields">
834         <title>Header Fields</title>
835
836         <para>
837           The array at the end of the header contains <firstterm>header
838           fields</firstterm>, where each field is a 1-byte field code followed
839           by a field value. A header must contain the required header fields for
840           its message type, and zero or more of any optional header
841           fields. Future versions of this protocol specification may add new
842           fields. Implementations must ignore fields they do not
843           understand. Implementations must not invent their own header fields;
844           only changes to this specification may introduce new header fields.
845         </para>
846
847         <para>
848           Again, if an implementation sees a header field code that it does not
849           expect, it must ignore that field, as it will be part of a new
850           (but compatible) version of this specification. This also applies 
851           to known header fields appearing in unexpected messages, for 
852           example: if a signal has a reply serial it must be ignored
853           even though it has no meaning as of this version of the spec.
854         </para>
855
856         <para>
857           However, implementations must not send or accept known header fields
858           with the wrong type stored in the field value. So for example a
859           message with an <literal>INTERFACE</literal> field of type
860           <literal>UINT32</literal> would be considered corrupt.
861         </para>
862
863         <para>
864           Here are the currently-defined header fields:
865           <informaltable>
866             <tgroup cols="5">
867               <thead>
868                 <row>
869                   <entry>Conventional Name</entry>
870                   <entry>Decimal Code</entry>
871                   <entry>Type</entry>
872                   <entry>Required In</entry>
873                   <entry>Description</entry>
874                 </row>
875               </thead>
876               <tbody>
877                 <row>
878                   <entry><literal>INVALID</literal></entry>
879                   <entry>0</entry>
880                   <entry>N/A</entry>
881                   <entry>not allowed</entry>
882                   <entry>Not a valid field name (error if it appears in a message)</entry>
883                 </row>
884                 <row>
885                   <entry><literal>PATH</literal></entry>
886                   <entry>1</entry>
887                   <entry><literal>OBJECT_PATH</literal></entry>
888                   <entry><literal>METHOD_CALL</literal>, <literal>SIGNAL</literal></entry>
889                   <entry>The object to send a call to, 
890                     or the object a signal is emitted from.
891                   </entry>
892                 </row>
893                 <row>
894                   <entry><literal>INTERFACE</literal></entry>
895                   <entry>2</entry>
896                   <entry><literal>STRING</literal></entry>
897                   <entry><literal>SIGNAL</literal></entry>
898                   <entry>
899                     The interface to invoke a method call on, or 
900                     that a signal is emitted from. Optional for 
901                     method calls, required for signals.
902                   </entry>
903                 </row>
904                 <row>
905                   <entry><literal>MEMBER</literal></entry>
906                   <entry>3</entry>
907                   <entry><literal>STRING</literal></entry>
908                   <entry><literal>METHOD_CALL</literal>, <literal>SIGNAL</literal></entry>
909                   <entry>The member, either the method name or signal name.</entry>
910                 </row>
911                 <row>
912                   <entry><literal>ERROR_NAME</literal></entry>
913                   <entry>4</entry>
914                   <entry><literal>STRING</literal></entry>
915                   <entry><literal>ERROR</literal></entry>
916                   <entry>The name of the error that occurred, for errors</entry>
917                 </row>
918                 <row>
919                   <entry><literal>REPLY_SERIAL</literal></entry>
920                   <entry>5</entry>
921                   <entry><literal>UINT32</literal></entry>
922                   <entry><literal>ERROR</literal>, <literal>METHOD_RETURN</literal></entry>
923                   <entry>The serial number of the message this message is a reply
924                     to. (The serial number is the second <literal>UINT32</literal> in the header.)</entry>
925                 </row>
926                 <row>
927                   <entry><literal>DESTINATION</literal></entry>
928                   <entry>6</entry>
929                   <entry><literal>STRING</literal></entry>
930                   <entry>optional</entry>
931                   <entry>The name of the connection this message is intended for.
932                     Only used in combination with the message bus, see 
933                     <xref linkend="message-bus"/>.</entry>
934                 </row>
935                 <row>
936                   <entry><literal>SENDER</literal></entry>
937                   <entry>7</entry>
938                   <entry><literal>STRING</literal></entry>
939                   <entry>optional</entry>
940                   <entry>Unique name of the sending connection.
941                     The message bus fills in this field so it is reliable; the field is
942                     only meaningful in combination with the message bus.</entry>
943                 </row>
944                 <row>
945                   <entry><literal>SIGNATURE</literal></entry>
946                   <entry>8</entry>
947                   <entry><literal>SIGNATURE</literal></entry>
948                   <entry>optional</entry>
949                   <entry>The signature of the message body.
950                   If omitted, it is assumed to be the 
951                   empty signature "" (i.e. the body must be 0-length).</entry>
952                 </row>
953               </tbody>
954             </tgroup>
955           </informaltable>
956         </para>
957       </sect3>
958     </sect2>
959
960     <sect2 id="message-protocol-names">
961       <title>Valid Names</title>
962       <para>
963         The various names in D-BUS messages have some restrictions.
964       </para>
965       <para>
966         There is a <firstterm>maximum name length</firstterm> 
967         of 255 which applies to bus names, interfaces, and members. 
968       </para>
969       <sect3 id="message-protocol-names-interface">
970         <title>Interface names</title>
971         <para>
972           Interfaces have names with type <literal>STRING</literal>, meaning that 
973           they must be valid UTF-8. However, there are also some 
974           additional restrictions that apply to interface names 
975           specifically:
976           <itemizedlist>
977             <listitem><para>Interface names are composed of 1 or more elements separated by
978                 a period ('.') character. All elements must contain at least 
979                 one character.
980                 </para>
981             </listitem>
982             <listitem><para>Each element must only contain the ASCII characters 
983                 "[A-Z][a-z][0-9]_" and must not begin with a digit.
984                 </para>
985             </listitem>
986
987             <listitem><para>Interface names must contain at least one '.' (period)
988               character (and thus at least two elements).
989               </para></listitem>
990
991             <listitem><para>Interface names must not begin with a '.' (period) character.</para></listitem>
992             <listitem><para>Interface names must not exceed the maximum name length.</para></listitem>
993           </itemizedlist>
994         </para>
995       </sect3>
996       <sect3 id="message-protocol-names-bus">
997         <title>Bus names</title>
998         <para>
999           Connections have one or more bus names associated with them.
1000           A connection has exactly one bus name that is a unique connection
1001           name. The unique connection name remains with the connection for
1002           its entire lifetime.
1003           A bus name is of type <literal>STRING</literal>,
1004           meaning that it must be valid UTF-8. However, there are also
1005           some additional restrictions that apply to bus names 
1006           specifically:
1007           <itemizedlist>
1008             <listitem><para>Bus names that start with a colon (':')
1009                 character are unique connection names.
1010                 </para>
1011             </listitem>
1012             <listitem><para>Bus names are composed of 1 or more elements separated by
1013                 a period ('.') character. All elements must contain at least 
1014                 one character.
1015                 </para>
1016             </listitem>
1017             <listitem><para>Each element must only contain the ASCII characters 
1018                 "[A-Z][a-z][0-9]_-". Only elements that are part of a unique
1019                 connection name may begin with a digit, elements in
1020                 other bus names must not begin with a digit.
1021                 </para>
1022             </listitem>
1023
1024             <listitem><para>Bus names must contain at least one '.' (period)
1025               character (and thus at least two elements).
1026               </para></listitem>
1027
1028             <listitem><para>Bus names must not begin with a '.' (period) character.</para></listitem>
1029             <listitem><para>Bus names must not exceed the maximum name length.</para></listitem>
1030           </itemizedlist>
1031         </para>
1032         <para>
1033           Note that the hyphen ('-') character is allowed in bus names but
1034           not in interface names.
1035         </para>
1036       </sect3>
1037       <sect3 id="message-protocol-names-member">
1038         <title>Member names</title>
1039         <para>
1040           Member (i.e. method or signal) names:
1041           <itemizedlist>
1042             <listitem><para>Must only contain the ASCII characters
1043                 "[A-Z][a-z][0-9]_" and may not begin with a
1044                 digit.</para></listitem>
1045             <listitem><para>Must not contain the '.' (period) character.</para></listitem>
1046             <listitem><para>Must not exceed the maximum name length.</para></listitem>
1047             <listitem><para>Must be at least 1 byte in length.</para></listitem>
1048           </itemizedlist>
1049         </para>
1050       </sect3>
1051       <sect3 id="message-protocol-names-error">
1052         <title>Error names</title>
1053         <para>
1054           Error names have the same restrictions as interface names.
1055         </para>
1056       </sect3>
1057     </sect2>
1058
1059     <sect2 id="message-protocol-types">
1060       <title>Message Types</title>
1061       <para>
1062         Each of the message types (<literal>METHOD_CALL</literal>, <literal>METHOD_RETURN</literal>, <literal>ERROR</literal>, and
1063         <literal>SIGNAL</literal>) has its own expected usage conventions and header fields.
1064         This section describes these conventions.
1065       </para>
1066       <sect3 id="message-protocol-types-method">
1067         <title>Method Calls</title>
1068         <para>
1069           Some messages invoke an operation on a remote object.  These are
1070           called method call messages and have the type tag <literal>METHOD_CALL</literal>. Such
1071           messages map naturally to methods on objects in a typical program.
1072         </para>
1073         <para>
1074           A method call message is required to have a <literal>MEMBER</literal> header field
1075           indicating the name of the method. Optionally, the message has an
1076           <literal>INTERFACE</literal> field giving the interface the method is a part of. In the
1077           absence of an <literal>INTERFACE</literal> field, if two interfaces on the same object have
1078           a method with the same name, it is undefined which of the two methods
1079           will be invoked. Implementations may also choose to return an error in
1080           this ambiguous case. However, if a method name is unique
1081           implementations must not require an interface field.
1082         </para>
1083         <para>
1084           Method call messages also include a <literal>PATH</literal> field
1085           indicating the object to invoke the method on. If the call is passing
1086           through a message bus, the message will also have a
1087           <literal>DESTINATION</literal> field giving the name of the connection
1088           to receive the message.
1089         </para>
1090         <para>
1091           When an application handles a method call message, it is required to
1092           return a reply. The reply is identified by a <literal>REPLY_SERIAL</literal> header field
1093           indicating the serial number of the <literal>METHOD_CALL</literal> being replied to. The
1094           reply can have one of two types; either <literal>METHOD_RETURN</literal> or <literal>ERROR</literal>.
1095         </para>
1096         <para>
1097           If the reply has type <literal>METHOD_RETURN</literal>, the arguments to the reply message 
1098           are the return value(s) or "out parameters" of the method call. 
1099           If the reply has type <literal>ERROR</literal>, then an "exception" has been thrown, 
1100           and the call fails; no return value will be provided. It makes 
1101           no sense to send multiple replies to the same method call.
1102         </para>
1103         <para>
1104           Even if a method call has no return values, a <literal>METHOD_RETURN</literal> 
1105           reply is required, so the caller will know the method 
1106           was successfully processed.
1107         </para>
1108         <para>
1109           The <literal>METHOD_RETURN</literal> or <literal>ERROR</literal> reply message must have the <literal>REPLY_SERIAL</literal> 
1110           header field.
1111         </para>
1112         <para>
1113           If a <literal>METHOD_CALL</literal> message has the flag <literal>NO_REPLY_EXPECTED</literal>, 
1114           then as an optimization the application receiving the method 
1115           call may choose to omit the reply message (regardless of 
1116           whether the reply would have been <literal>METHOD_RETURN</literal> or <literal>ERROR</literal>). 
1117           However, it is also acceptable to ignore the <literal>NO_REPLY_EXPECTED</literal>
1118           flag and reply anyway.
1119         </para>
1120         <para>
1121           Unless a message has the flag <literal>NO_AUTO_START</literal>, if the
1122           destination name does not exist then a program to own the destination
1123           name will be started before the message is delivered.  The message
1124           will be held until the new program is successfully started or has
1125           failed to start; in case of failure, an error will be returned. This
1126           flag is only relevant in the context of a message bus, it is ignored
1127           during one-to-one communication with no intermediate bus.
1128         </para>
1129         <sect4 id="message-protocol-types-method-apis">
1130           <title>Mapping method calls to native APIs</title>
1131           <para>
1132             APIs for D-BUS may map method calls to a method call in a specific
1133             programming language, such as C++, or may map a method call written
1134             in an IDL to a D-BUS message.
1135           </para>
1136           <para>
1137             In APIs of this nature, arguments to a method are often termed "in"
1138             (which implies sent in the <literal>METHOD_CALL</literal>), or "out" (which implies
1139             returned in the <literal>METHOD_RETURN</literal>). Some APIs such as CORBA also have
1140             "inout" arguments, which are both sent and received, i.e. the caller
1141             passes in a value which is modified. Mapped to D-BUS, an "inout"
1142             argument is equivalent to an "in" argument, followed by an "out"
1143             argument. You can't pass things "by reference" over the wire, so
1144             "inout" is purely an illusion of the in-process API.
1145           </para>
1146           <para>
1147             Given a method with zero or one return values, followed by zero or more
1148             arguments, where each argument may be "in", "out", or "inout", the
1149             caller constructs a message by appending each "in" or "inout" argument,
1150             in order. "out" arguments are not represented in the caller's message.
1151           </para>
1152           <para>
1153             The recipient constructs a reply by appending first the return value 
1154             if any, then each "out" or "inout" argument, in order. 
1155             "in" arguments are not represented in the reply message.
1156           </para>
1157           <para>
1158             Error replies are normally mapped to exceptions in languages that have
1159             exceptions.
1160           </para>
1161           <para>
1162             In converting from native APIs to D-BUS, it is perhaps nice to 
1163             map D-BUS naming conventions ("FooBar") to native conventions 
1164             such as "fooBar" or "foo_bar" automatically. This is OK 
1165             as long as you can say that the native API is one that 
1166             was specifically written for D-BUS. It makes the most sense
1167             when writing object implementations that will be exported 
1168             over the bus. Object proxies used to invoke remote D-BUS 
1169             objects probably need the ability to call any D-BUS method,
1170             and thus a magic name mapping like this could be a problem.
1171           </para>
1172           <para>
1173             This specification doesn't require anything of native API bindings;
1174             the preceding is only a suggested convention for consistency 
1175             among bindings.
1176           </para>
1177         </sect4>
1178       </sect3>
1179
1180       <sect3 id="message-protocol-types-signal">
1181         <title>Signal Emission</title>
1182         <para>
1183           Unlike method calls, signal emissions have no replies. 
1184           A signal emission is simply a single message of type <literal>SIGNAL</literal>.
1185           It must have three header fields: <literal>PATH</literal> giving the object 
1186           the signal was emitted from, plus <literal>INTERFACE</literal> and <literal>MEMBER</literal> giving
1187           the fully-qualified name of the signal.
1188         </para>
1189       </sect3>
1190
1191       <sect3 id="message-protocol-types-errors">
1192         <title>Errors</title>
1193         <para>
1194           Messages of type <literal>ERROR</literal> are most commonly replies 
1195           to a <literal>METHOD_CALL</literal>, but may be returned in reply 
1196           to any kind of message. The message bus for example
1197           will return an <literal>ERROR</literal> in reply to a signal emission if 
1198           the bus does not have enough memory to send the signal.
1199         </para>
1200         <para>
1201           An <literal>ERROR</literal> may have any arguments, but if the first 
1202           argument is a <literal>STRING</literal>, it must be an error message.
1203           The error message may be logged or shown to the user
1204           in some way.
1205         </para>
1206       </sect3>
1207
1208       <sect3 id="message-protocol-types-notation">
1209         <title>Notation in this document</title>
1210         <para>
1211           This document uses a simple pseudo-IDL to describe particular method 
1212           calls and signals. Here is an example of a method call:
1213           <programlisting>
1214             org.freedesktop.DBus.StartServiceByName (in STRING name, in UINT32 flags,
1215                                                      out UINT32 resultcode)
1216           </programlisting>
1217           This means <literal>INTERFACE</literal> = org.freedesktop.DBus, <literal>MEMBER</literal> = StartServiceByName, 
1218           <literal>METHOD_CALL</literal> arguments are <literal>STRING</literal> and <literal>UINT32</literal>, <literal>METHOD_RETURN</literal> argument
1219           is <literal>UINT32</literal>. Remember that the <literal>MEMBER</literal> field can't contain any '.' (period)
1220           characters so it's known that the last part of the name in
1221           the "IDL" is the member name.
1222         </para>
1223         <para>
1224           In C++ that might end up looking like this:
1225           <programlisting>
1226             unsigned int org::freedesktop::DBus::StartServiceByName (const char  *name,
1227                                                                      unsigned int flags);
1228           </programlisting>
1229           or equally valid, the return value could be done as an argument:
1230           <programlisting>
1231             void org::freedesktop::DBus::StartServiceByName (const char   *name, 
1232                                                              unsigned int  flags,
1233                                                              unsigned int *resultcode);
1234           </programlisting>
1235           It's really up to the API designer how they want to make 
1236           this look. You could design an API where the namespace wasn't used 
1237           in C++, using STL or Qt, using varargs, or whatever you wanted.
1238         </para>
1239         <para>
1240           Signals are written as follows:
1241           <programlisting>
1242             org.freedesktop.DBus.NameLost (STRING name)
1243           </programlisting>
1244           Signals don't specify "in" vs. "out" because only 
1245           a single direction is possible.
1246         </para>
1247         <para>
1248           It isn't especially encouraged to use this lame pseudo-IDL in actual
1249           API implementations; you might use the native notation for the
1250           language you're using, or you might use COM or CORBA IDL, for example.
1251         </para>
1252       </sect3>
1253     </sect2>
1254
1255     <sect2 id="message-protocol-handling-invalid">
1256       <title>Invalid Protocol and Spec Extensions</title>
1257       
1258       <para>
1259         For security reasons, the D-BUS protocol should be strictly parsed and
1260         validated, with the exception of defined extension points. Any invalid
1261         protocol or spec violations should result in immediately dropping the
1262         connection without notice to the other end. Exceptions should be
1263         carefully considered, e.g. an exception may be warranted for a
1264         well-understood idiosyncracy of a widely-deployed implementation.  In
1265         cases where the other end of a connection is 100% trusted and known to
1266         be friendly, skipping validation for performance reasons could also make
1267         sense in certain cases.
1268       </para>
1269
1270       <para>
1271         Generally speaking violations of the "must" requirements in this spec 
1272         should be considered possible attempts to exploit security, and violations 
1273         of the "should" suggestions should be considered legitimate (though perhaps
1274         they should generate an error in some cases).
1275       </para>
1276
1277       <para>
1278         The following extension points are built in to D-BUS on purpose and must
1279         not be treated as invalid protocol. The extension points are intended
1280         for use by future versions of this spec, they are not intended for third
1281         parties.  At the moment, the only way a third party could extend D-BUS
1282         without breaking interoperability would be to introduce a way to negotiate new
1283         feature support as part of the auth protocol, using EXTENSION_-prefixed
1284         commands. There is not yet a standard way to negotiate features.
1285         <itemizedlist>
1286           <listitem>
1287             <para>
1288               In the authentication protocol (see <xref linkend="auth-protocol"/>) unknown 
1289                 commands result in an ERROR rather than a disconnect. This enables 
1290                 future extensions to the protocol. Commands starting with EXTENSION_ are 
1291                 reserved for third parties.
1292             </para>
1293           </listitem>
1294           <listitem>
1295             <para>
1296               The authentication protocol supports pluggable auth mechanisms.
1297             </para>
1298           </listitem>
1299           <listitem>
1300             <para>
1301               The address format (see <xref linkend="addresses"/>) supports new
1302               kinds of transport.
1303             </para>
1304           </listitem>
1305           <listitem>
1306             <para>
1307               Messages with an unknown type (something other than
1308               <literal>METHOD_CALL</literal>, <literal>METHOD_RETURN</literal>,
1309               <literal>ERROR</literal>, <literal>SIGNAL</literal>) are ignored. 
1310               Unknown-type messages must still be well-formed in the same way 
1311               as the known messages, however. They still have the normal 
1312               header and body.
1313             </para>
1314           </listitem>
1315           <listitem>
1316             <para>
1317               Header fields with an unknown or unexpected field code must be ignored, 
1318               though again they must still be well-formed.
1319             </para>
1320           </listitem>
1321           <listitem>
1322             <para>
1323               New standard interfaces (with new methods and signals) can of course be added.
1324             </para>
1325           </listitem>
1326         </itemizedlist>
1327       </para>
1328
1329     </sect2>
1330
1331   </sect1>
1332
1333   <sect1 id="auth-protocol">
1334     <title>Authentication Protocol</title>
1335     <para>
1336       Before the flow of messages begins, two applications must
1337       authenticate. A simple plain-text protocol is used for
1338       authentication; this protocol is a SASL profile, and maps fairly
1339       directly from the SASL specification. The message encoding is
1340       NOT used here, only plain text messages.
1341     </para>
1342     <para>
1343       In examples, "C:" and "S:" indicate lines sent by the client and
1344       server respectively.
1345     </para>
1346     <sect2 id="auth-protocol-overview">
1347       <title>Protocol Overview</title>
1348       <para>
1349         The protocol is a line-based protocol, where each line ends with
1350         \r\n. Each line begins with an all-caps ASCII command name containing
1351         only the character range [A-Z_], a space, then any arguments for the
1352         command, then the \r\n ending the line. The protocol is
1353         case-sensitive. All bytes must be in the ASCII character set.
1354
1355         Commands from the client to the server are as follows:
1356
1357         <itemizedlist>
1358           <listitem><para>AUTH [mechanism] [initial-response]</para></listitem>
1359           <listitem><para>CANCEL</para></listitem>
1360           <listitem><para>BEGIN</para></listitem>
1361           <listitem><para>DATA &lt;data in hex encoding&gt;</para></listitem>
1362           <listitem><para>ERROR [human-readable error explanation]</para></listitem>
1363         </itemizedlist>
1364
1365         From server to client are as follows:
1366
1367         <itemizedlist>
1368           <listitem><para>REJECTED &lt;space-separated list of mechanism names&gt;</para></listitem>
1369           <listitem><para>OK &lt;GUID in hex&gt;</para></listitem>
1370           <listitem><para>DATA &lt;data in hex encoding&gt;</para></listitem>
1371           <listitem><para>ERROR</para></listitem>
1372         </itemizedlist>
1373       </para>
1374       <para>
1375         Unofficial extensions to the command set must begin with the letters 
1376         "EXTENSION_", to avoid conflicts with future official commands.
1377         For example, "EXTENSION_COM_MYDOMAIN_DO_STUFF".
1378       </para>
1379     </sect2>
1380     <sect2 id="auth-nul-byte">
1381       <title>Special credentials-passing nul byte</title>
1382       <para>
1383         Immediately after connecting to the server, the client must send a
1384         single nul byte. This byte may be accompanied by credentials
1385         information on some operating systems that use sendmsg() with
1386         SCM_CREDS or SCM_CREDENTIALS to pass credentials over UNIX domain
1387         sockets. However, the nul byte must be sent even on other kinds of
1388         socket, and even on operating systems that do not require a byte to be
1389         sent in order to transmit credentials. The text protocol described in
1390         this document begins after the single nul byte. If the first byte
1391         received from the client is not a nul byte, the server may disconnect 
1392         that client.
1393       </para>
1394       <para>
1395         A nul byte in any context other than the initial byte is an error; 
1396         the protocol is ASCII-only.
1397       </para>
1398       <para>
1399         The credentials sent along with the nul byte may be used with the 
1400         SASL mechanism EXTERNAL.
1401       </para>
1402     </sect2>
1403     <sect2 id="auth-command-auth">
1404       <title>AUTH command</title>
1405       <para>
1406         If an AUTH command has no arguments, it is a request to list
1407         available mechanisms. The server must respond with a REJECTED
1408         command listing the mechanisms it understands, or with an error.
1409       </para>
1410       <para>
1411         If an AUTH command specifies a mechanism, and the server supports
1412         said mechanism, the server should begin exchanging SASL
1413         challenge-response data with the client using DATA commands.
1414       </para>
1415       <para>
1416         If the server does not support the mechanism given in the AUTH
1417         command, it must send either a REJECTED command listing the mechanisms
1418         it does support, or an error.
1419       </para>
1420       <para>
1421         If the [initial-response] argument is provided, it is intended for use
1422         with mechanisms that have no initial challenge (or an empty initial
1423         challenge), as if it were the argument to an initial DATA command. If
1424         the selected mechanism has an initial challenge and [initial-response]
1425         was provided, the server should reject authentication by sending
1426         REJECTED.
1427       </para>
1428       <para>
1429         If authentication succeeds after exchanging DATA commands, 
1430         an OK command must be sent to the client.
1431       </para>
1432       <para>
1433         The first octet received by the client after the \r\n of the OK
1434         command must be the first octet of the authenticated/encrypted 
1435         stream of D-BUS messages.
1436       </para>
1437       <para>
1438         The first octet received by the server after the \r\n of the BEGIN
1439         command from the client must be the first octet of the
1440         authenticated/encrypted stream of D-BUS messages.
1441       </para>
1442     </sect2>
1443     <sect2 id="auth-command-cancel">
1444       <title>CANCEL Command</title>
1445       <para>
1446         At any time up to sending the BEGIN command, the client may send a
1447         CANCEL command. On receiving the CANCEL command, the server must
1448         send a REJECTED command and abort the current authentication
1449         exchange.
1450       </para>
1451     </sect2>
1452     <sect2 id="auth-command-data">
1453       <title>DATA Command</title>
1454       <para>
1455         The DATA command may come from either client or server, and simply 
1456         contains a hex-encoded block of data to be interpreted 
1457         according to the SASL mechanism in use.
1458       </para>
1459       <para>
1460         Some SASL mechanisms support sending an "empty string"; 
1461         FIXME we need some way to do this.
1462       </para>
1463     </sect2>
1464     <sect2 id="auth-command-begin">
1465       <title>BEGIN Command</title>
1466       <para>
1467         The BEGIN command acknowledges that the client has received an 
1468         OK command from the server, and that the stream of messages
1469         is about to begin. 
1470       </para>
1471       <para>
1472         The first octet received by the server after the \r\n of the BEGIN
1473         command from the client must be the first octet of the
1474         authenticated/encrypted stream of D-BUS messages.
1475       </para>
1476     </sect2>
1477     <sect2 id="auth-command-rejected">
1478       <title>REJECTED Command</title>
1479       <para>
1480         The REJECTED command indicates that the current authentication
1481         exchange has failed, and further exchange of DATA is inappropriate.
1482         The client would normally try another mechanism, or try providing
1483         different responses to challenges.
1484       </para><para>
1485         Optionally, the REJECTED command has a space-separated list of
1486         available auth mechanisms as arguments. If a server ever provides
1487         a list of supported mechanisms, it must provide the same list 
1488         each time it sends a REJECTED message. Clients are free to 
1489         ignore all lists received after the first.
1490       </para>
1491     </sect2>
1492     <sect2 id="auth-command-ok">
1493       <title>OK Command</title>
1494       <para>
1495         The OK command indicates that the client has been authenticated,
1496         and that further communication will be a stream of D-BUS messages
1497         (optionally encrypted, as negotiated) rather than this protocol.
1498       </para>
1499       <para>
1500         The first octet received by the client after the \r\n of the OK
1501         command must be the first octet of the authenticated/encrypted 
1502         stream of D-BUS messages.
1503       </para>
1504       <para>
1505         The client must respond to the OK command by sending a BEGIN
1506         command, followed by its stream of messages, or by disconnecting.
1507         The server must not accept additional commands using this protocol 
1508         after the OK command has been sent.
1509       </para>
1510       <para>
1511         The OK command has one argument, which is the GUID of the server.
1512         See <xref linkend="addresses"/> for more on server GUIDs.
1513       </para>
1514     </sect2>
1515     <sect2 id="auth-command-error">
1516       <title>ERROR Command</title>
1517       <para>
1518         The ERROR command indicates that either server or client did not
1519         know a command, does not accept the given command in the current
1520         context, or did not understand the arguments to the command. This
1521         allows the protocol to be extended; a client or server can send a
1522         command present or permitted only in new protocol versions, and if
1523         an ERROR is received instead of an appropriate response, fall back
1524         to using some other technique.
1525       </para>
1526       <para>
1527         If an ERROR is sent, the server or client that sent the
1528         error must continue as if the command causing the ERROR had never been
1529         received. However, the the server or client receiving the error 
1530         should try something other than whatever caused the error; 
1531         if only canceling/rejecting the authentication.
1532       </para>
1533       <para>
1534         If the D-BUS protocol changes incompatibly at some future time,
1535         applications implementing the new protocol would probably be able to
1536         check for support of the new protocol by sending a new command and
1537         receiving an ERROR from applications that don't understand it. Thus the
1538         ERROR feature of the auth protocol is an escape hatch that lets us
1539         negotiate extensions or changes to the D-BUS protocol in the future.
1540       </para>
1541     </sect2>
1542     <sect2 id="auth-examples">
1543       <title>Authentication examples</title>
1544       
1545       <para>
1546         <figure>
1547           <title>Example of successful magic cookie authentication</title>
1548           <programlisting>
1549             (MAGIC_COOKIE is a made up mechanism)
1550
1551             C: AUTH MAGIC_COOKIE 3138363935333137393635383634
1552             S: OK 1234deadbeef
1553             C: BEGIN
1554           </programlisting>
1555         </figure>
1556         <figure>
1557           <title>Example of finding out mechanisms then picking one</title>
1558           <programlisting>
1559             C: AUTH
1560             S: REJECTED KERBEROS_V4 SKEY
1561             C: AUTH SKEY 7ab83f32ee
1562             S: DATA 8799cabb2ea93e
1563             C: DATA 8ac876e8f68ee9809bfa876e6f9876g8fa8e76e98f
1564             S: OK 1234deadbeef
1565             C: BEGIN
1566           </programlisting>
1567         </figure>
1568         <figure>
1569           <title>Example of client sends unknown command then falls back to regular auth</title>
1570           <programlisting>
1571             C: FOOBAR
1572             S: ERROR
1573             C: AUTH MAGIC_COOKIE 3736343435313230333039
1574             S: OK 1234deadbeef
1575             C: BEGIN
1576           </programlisting>
1577         </figure>
1578         <figure>
1579           <title>Example of server doesn't support initial auth mechanism</title>
1580           <programlisting>
1581             C: AUTH MAGIC_COOKIE 3736343435313230333039
1582             S: REJECTED KERBEROS_V4 SKEY
1583             C: AUTH SKEY 7ab83f32ee
1584             S: DATA 8799cabb2ea93e
1585             C: DATA 8ac876e8f68ee9809bfa876e6f9876g8fa8e76e98f
1586             S: OK 1234deadbeef
1587             C: BEGIN
1588           </programlisting>
1589         </figure>
1590         <figure>
1591           <title>Example of wrong password or the like followed by successful retry</title>
1592           <programlisting>
1593             C: AUTH MAGIC_COOKIE 3736343435313230333039
1594             S: REJECTED KERBEROS_V4 SKEY
1595             C: AUTH SKEY 7ab83f32ee
1596             S: DATA 8799cabb2ea93e
1597             C: DATA 8ac876e8f68ee9809bfa876e6f9876g8fa8e76e98f
1598             S: REJECTED
1599             C: AUTH SKEY 7ab83f32ee
1600             S: DATA 8799cabb2ea93e
1601             C: DATA 8ac876e8f68ee9809bfa876e6f9876g8fa8e76e98f
1602             S: OK 1234deadbeef
1603             C: BEGIN
1604           </programlisting>
1605         </figure>
1606         <figure>
1607           <title>Example of skey cancelled and restarted</title>
1608           <programlisting>
1609             C: AUTH MAGIC_COOKIE 3736343435313230333039
1610             S: REJECTED KERBEROS_V4 SKEY
1611             C: AUTH SKEY 7ab83f32ee
1612             S: DATA 8799cabb2ea93e
1613             C: CANCEL
1614             S: REJECTED
1615             C: AUTH SKEY 7ab83f32ee
1616             S: DATA 8799cabb2ea93e
1617             C: DATA 8ac876e8f68ee9809bfa876e6f9876g8fa8e76e98f
1618             S: OK 1234deadbeef
1619             C: BEGIN
1620           </programlisting>
1621         </figure>
1622       </para>
1623     </sect2>
1624     <sect2 id="auth-states">
1625       <title>Authentication state diagrams</title>
1626       
1627       <para>
1628         This section documents the auth protocol in terms of 
1629         a state machine for the client and the server. This is 
1630         probably the most robust way to implement the protocol.
1631       </para>
1632
1633       <sect3 id="auth-states-client">
1634         <title>Client states</title>
1635         
1636         <para>
1637           To more precisely describe the interaction between the
1638           protocol state machine and the authentication mechanisms the
1639           following notation is used: MECH(CHALL) means that the
1640           server challenge CHALL was fed to the mechanism MECH, which
1641           returns one of
1642
1643           <itemizedlist>
1644             <listitem>
1645               <para>
1646                 CONTINUE(RESP) means continue the auth conversation
1647                 and send RESP as the response to the server;
1648               </para>
1649             </listitem>
1650
1651             <listitem>
1652               <para>
1653                 OK(RESP) means that after sending RESP to the server
1654                 the client side of the auth conversation is finished
1655                 and the server should return "OK";
1656               </para>
1657             </listitem>
1658
1659             <listitem>
1660               <para>
1661                 ERROR means that CHALL was invalid and could not be
1662                 processed.
1663               </para>
1664             </listitem>
1665           </itemizedlist>
1666           
1667           Both RESP and CHALL may be empty.
1668         </para>
1669         
1670         <para>
1671           The Client starts by getting an initial response from the
1672           default mechanism and sends AUTH MECH RESP, or AUTH MECH if
1673           the mechanism did not provide an initial response.  If the
1674           mechanism returns CONTINUE, the client starts in state
1675           <emphasis>WaitingForData</emphasis>, if the mechanism
1676           returns OK the client starts in state
1677           <emphasis>WaitingForOK</emphasis>.
1678         </para>
1679         
1680         <para>
1681           The client should keep track of available mechanisms and
1682           which it mechanisms it has already attempted. This list is
1683           used to decide which AUTH command to send. When the list is
1684           exhausted, the client should give up and close the
1685           connection.
1686         </para>
1687
1688         <formalpara>
1689           <title><emphasis>WaitingForData</emphasis></title>
1690           <para>
1691             <itemizedlist>
1692               <listitem>
1693                 <para>
1694                   Receive DATA CHALL
1695                   <simplelist>
1696                     <member>
1697                       MECH(CHALL) returns CONTINUE(RESP) &rarr; send
1698                       DATA RESP, goto
1699                       <emphasis>WaitingForData</emphasis>
1700                     </member>
1701
1702                     <member>
1703                       MECH(CHALL) returns OK(RESP) &rarr; send DATA
1704                       RESP, goto <emphasis>WaitingForOK</emphasis>
1705                     </member>
1706
1707                     <member>
1708                       MECH(CHALL) returns ERROR &rarr; send ERROR
1709                       [msg], goto <emphasis>WaitingForData</emphasis>
1710                     </member>
1711                   </simplelist>
1712                 </para>
1713               </listitem>
1714
1715               <listitem>
1716                 <para>
1717                   Receive REJECTED [mechs] &rarr;
1718                   send AUTH [next mech], goto
1719                   WaitingForData or <emphasis>WaitingForOK</emphasis>
1720                 </para>
1721               </listitem>
1722               <listitem>
1723                 <para>
1724                   Receive ERROR &rarr; send
1725                   CANCEL, goto
1726                   <emphasis>WaitingForReject</emphasis>
1727                 </para>
1728               </listitem>
1729               <listitem>
1730                 <para>
1731                   Receive OK &rarr; send
1732                   BEGIN, terminate auth
1733                   conversation, authenticated
1734                 </para>
1735               </listitem>
1736               <listitem>
1737                 <para>
1738                   Receive anything else &rarr; send
1739                   ERROR, goto
1740                   <emphasis>WaitingForData</emphasis>
1741                 </para>
1742               </listitem>
1743             </itemizedlist>
1744           </para>
1745         </formalpara>
1746
1747         <formalpara>
1748           <title><emphasis>WaitingForOK</emphasis></title>
1749           <para>
1750             <itemizedlist>
1751               <listitem>
1752                 <para>
1753                   Receive OK &rarr; send BEGIN, terminate auth
1754                   conversation, <emphasis>authenticated</emphasis>
1755                 </para>
1756               </listitem>
1757               <listitem>
1758                 <para>
1759                   Receive REJECT [mechs] &rarr; send AUTH [next mech],
1760                   goto <emphasis>WaitingForData</emphasis> or
1761                   <emphasis>WaitingForOK</emphasis>
1762                 </para>
1763               </listitem>
1764
1765               <listitem>
1766                 <para>
1767                   Receive DATA &rarr; send CANCEL, goto
1768                   <emphasis>WaitingForReject</emphasis>
1769                 </para>
1770               </listitem>
1771
1772               <listitem>
1773                 <para>
1774                   Receive ERROR &rarr; send CANCEL, goto
1775                   <emphasis>WaitingForReject</emphasis>
1776                 </para>
1777               </listitem>
1778
1779               <listitem>
1780                 <para>
1781                   Receive anything else &rarr; send ERROR, goto
1782                   <emphasis>WaitingForOK</emphasis>
1783                 </para>
1784               </listitem>
1785             </itemizedlist>
1786           </para>
1787         </formalpara>
1788
1789         <formalpara>
1790           <title><emphasis>WaitingForReject</emphasis></title>
1791           <para>
1792             <itemizedlist>
1793               <listitem>
1794                 <para>
1795                   Receive REJECT [mechs] &rarr; send AUTH [next mech],
1796                   goto <emphasis>WaitingForData</emphasis> or
1797                   <emphasis>WaitingForOK</emphasis>
1798                 </para>
1799               </listitem>
1800
1801               <listitem>
1802                 <para>
1803                   Receive anything else &rarr; terminate auth
1804                   conversation, disconnect
1805                 </para>
1806               </listitem>
1807             </itemizedlist>
1808           </para>
1809         </formalpara>
1810
1811       </sect3>
1812
1813       <sect3 id="auth-states-server">
1814         <title>Server states</title>
1815  
1816         <para>
1817           For the server MECH(RESP) means that the client response
1818           RESP was fed to the the mechanism MECH, which returns one of
1819
1820           <itemizedlist>
1821             <listitem>
1822               <para>
1823                 CONTINUE(CHALL) means continue the auth conversation and
1824                 send CHALL as the challenge to the client;
1825               </para>
1826             </listitem>
1827
1828             <listitem>
1829               <para>
1830                 OK means that the client has been successfully
1831                 authenticated;
1832               </para>
1833             </listitem>
1834
1835             <listitem>
1836               <para>
1837                 REJECT means that the client failed to authenticate or
1838                 there was an error in RESP.
1839               </para>
1840             </listitem>
1841           </itemizedlist>
1842
1843           The server starts out in state
1844           <emphasis>WaitingForAuth</emphasis>.  If the client is
1845           rejected too many times the server must disconnect the
1846           client.
1847         </para>
1848
1849         <formalpara>
1850           <title><emphasis>WaitingForAuth</emphasis></title>
1851           <para>
1852             <itemizedlist>
1853
1854               <listitem>
1855                 <para>
1856                   Receive AUTH &rarr; send REJECTED [mechs], goto
1857                   <emphasis>WaitingForAuth</emphasis>
1858                 </para>
1859               </listitem>
1860
1861               <listitem>
1862                 <para>
1863                   Receive AUTH MECH RESP
1864
1865                   <simplelist>
1866                     <member>
1867                       MECH not valid mechanism &rarr; send REJECTED
1868                       [mechs], goto
1869                       <emphasis>WaitingForAuth</emphasis>
1870                     </member>
1871
1872                     <member>
1873                       MECH(RESP) returns CONTINUE(CHALL) &rarr; send
1874                       DATA CHALL, goto
1875                       <emphasis>WaitingForData</emphasis>
1876                     </member>
1877
1878                     <member>
1879                       MECH(RESP) returns OK &rarr; send OK, goto
1880                       <emphasis>WaitingForBegin</emphasis>
1881                     </member>
1882
1883                     <member>
1884                       MECH(RESP) returns REJECT &rarr; send REJECTED
1885                       [mechs], goto
1886                       <emphasis>WaitingForAuth</emphasis>
1887                     </member>
1888                   </simplelist>
1889                 </para>
1890               </listitem>
1891
1892               <listitem>
1893                 <para>
1894                   Receive BEGIN &rarr; terminate
1895                   auth conversation, disconnect
1896                 </para>
1897               </listitem>
1898
1899               <listitem>
1900                 <para>
1901                   Receive ERROR &rarr; send REJECTED [mechs], goto
1902                   <emphasis>WaitingForAuth</emphasis>
1903                 </para>
1904               </listitem>
1905
1906               <listitem>
1907                 <para>
1908                   Receive anything else &rarr; send
1909                   ERROR, goto
1910                   <emphasis>WaitingForAuth</emphasis>
1911                 </para>
1912               </listitem>
1913             </itemizedlist>
1914           </para>
1915         </formalpara>
1916
1917        
1918         <formalpara>
1919           <title><emphasis>WaitingForData</emphasis></title>
1920           <para>
1921             <itemizedlist>
1922               <listitem>
1923                 <para>
1924                   Receive DATA RESP
1925                   <simplelist>
1926                     <member>
1927                       MECH(RESP) returns CONTINUE(CHALL) &rarr; send
1928                       DATA CHALL, goto
1929                       <emphasis>WaitingForData</emphasis>
1930                     </member>
1931
1932                     <member>
1933                       MECH(RESP) returns OK &rarr; send OK, goto
1934                       <emphasis>WaitingForBegin</emphasis>
1935                     </member>
1936
1937                     <member>
1938                       MECH(RESP) returns REJECT &rarr; send REJECTED
1939                       [mechs], goto
1940                       <emphasis>WaitingForAuth</emphasis>
1941                     </member>
1942                   </simplelist>
1943                 </para>
1944               </listitem>
1945
1946               <listitem>
1947                 <para>
1948                   Receive BEGIN &rarr; terminate auth conversation,
1949                   disconnect
1950                 </para>
1951               </listitem>
1952
1953               <listitem>
1954                 <para>
1955                   Receive CANCEL &rarr; send REJECTED [mechs], goto
1956                   <emphasis>WaitingForAuth</emphasis>
1957                 </para>
1958               </listitem>
1959
1960               <listitem>
1961                 <para>
1962                   Receive ERROR &rarr; send REJECTED [mechs], goto
1963                   <emphasis>WaitingForAuth</emphasis>
1964                 </para>
1965               </listitem>
1966
1967               <listitem>
1968                 <para>
1969                   Receive anything else &rarr; send ERROR, goto
1970                   <emphasis>WaitingForData</emphasis>
1971                 </para>
1972               </listitem>
1973             </itemizedlist>
1974           </para>
1975         </formalpara>
1976
1977         <formalpara>
1978           <title><emphasis>WaitingForBegin</emphasis></title>
1979           <para>
1980             <itemizedlist>
1981               <listitem>
1982                 <para>
1983                   Receive BEGIN &rarr; terminate auth conversation,
1984                   client authenticated
1985                 </para>
1986               </listitem>
1987
1988               <listitem>
1989                 <para>
1990                   Receive CANCEL &rarr; send REJECTED [mechs], goto
1991                   <emphasis>WaitingForAuth</emphasis>
1992                 </para>
1993               </listitem>
1994
1995               <listitem>
1996                 <para>
1997                   Receive ERROR &rarr; send REJECTED [mechs], goto
1998                   <emphasis>WaitingForAuth</emphasis>
1999                 </para>
2000               </listitem>
2001
2002               <listitem>
2003                 <para>
2004                   Receive anything else &rarr; send ERROR, goto
2005                   <emphasis>WaitingForBegin</emphasis>
2006                 </para>
2007               </listitem>
2008             </itemizedlist>
2009           </para>
2010         </formalpara>
2011
2012       </sect3>
2013       
2014     </sect2>
2015     <sect2 id="auth-mechanisms">
2016       <title>Authentication mechanisms</title>
2017       <para>
2018         This section describes some new authentication mechanisms.
2019         D-BUS also allows any standard SASL mechanism of course.
2020       </para>
2021       <sect3 id="auth-mechanisms-sha">
2022         <title>DBUS_COOKIE_SHA1</title>
2023         <para>
2024           The DBUS_COOKIE_SHA1 mechanism is designed to establish that a client
2025           has the ability to read a private file owned by the user being
2026           authenticated. If the client can prove that it has access to a secret
2027           cookie stored in this file, then the client is authenticated. 
2028           Thus the security of DBUS_COOKIE_SHA1 depends on a secure home 
2029           directory.
2030         </para>
2031         <para>
2032           Authentication proceeds as follows:
2033           <itemizedlist>
2034             <listitem>
2035               <para>
2036                 The client sends the username it would like to authenticate 
2037                 as.
2038               </para>
2039             </listitem>
2040             <listitem>
2041               <para>
2042                 The server sends the name of its "cookie context" (see below); a
2043                 space character; the integer ID of the secret cookie the client
2044                 must demonstrate knowledge of; a space character; then a
2045                 hex-encoded randomly-generated challenge string.
2046               </para>
2047             </listitem>
2048             <listitem>
2049               <para>
2050                 The client locates the cookie, and generates its own hex-encoded
2051                 randomly-generated challenge string.  The client then
2052                 concatentates the server's hex-encoded challenge, a ":"
2053                 character, its own hex-encoded challenge, another ":" character,
2054                 and the hex-encoded cookie.  It computes the SHA-1 hash of this
2055                 composite string.  It sends back to the server the client's
2056                 hex-encoded challenge string, a space character, and the SHA-1
2057                 hash.
2058               </para>
2059             </listitem>
2060             <listitem>
2061               <para>
2062                 The server generates the same concatenated string used by the
2063                 client and computes its SHA-1 hash. It compares the hash with
2064                 the hash received from the client; if the two hashes match, the
2065                 client is authenticated.
2066               </para>
2067             </listitem>
2068           </itemizedlist>
2069         </para>
2070         <para>
2071           Each server has a "cookie context," which is a name that identifies a
2072           set of cookies that apply to that server. A sample context might be
2073           "org_freedesktop_session_bus". Context names must be valid ASCII,
2074           nonzero length, and may not contain the characters slash ("/"),
2075           backslash ("\"), space (" "), newline ("\n"), carriage return ("\r"),
2076           tab ("\t"), or period ("."). There is a default context,
2077           "org_freedesktop_general" that's used by servers that do not specify
2078           otherwise.
2079         </para>
2080         <para>
2081           Cookies are stored in a user's home directory, in the directory
2082           <filename>~/.dbus-keyrings/</filename>. This directory must 
2083           not be readable or writable by other users. If it is, 
2084           clients and servers must ignore it. The directory 
2085           contains cookie files named after the cookie context.
2086         </para>
2087         <para>
2088           A cookie file contains one cookie per line. Each line 
2089           has three space-separated fields:
2090           <itemizedlist>
2091             <listitem>
2092               <para>
2093                 The cookie ID number, which must be a non-negative integer and
2094                 may not be used twice in the same file.
2095               </para>
2096             </listitem>
2097             <listitem>
2098               <para>
2099                 The cookie's creation time, in UNIX seconds-since-the-epoch
2100                 format.
2101               </para>
2102             </listitem>
2103             <listitem>
2104               <para>
2105                 The cookie itself, a hex-encoded random block of bytes. The cookie
2106                 may be of any length, though obviously security increases 
2107                 as the length increases.
2108               </para>
2109             </listitem>
2110           </itemizedlist>
2111         </para>
2112         <para>
2113           Only server processes modify the cookie file.
2114           They must do so with this procedure:
2115           <itemizedlist>
2116             <listitem>
2117               <para>
2118                 Create a lockfile name by appending ".lock" to the name of the
2119                 cookie file.  The server should attempt to create this file
2120                 using <literal>O_CREAT | O_EXCL</literal>.  If file creation
2121                 fails, the lock fails. Servers should retry for a reasonable
2122                 period of time, then they may choose to delete an existing lock
2123                 to keep users from having to manually delete a stale
2124                 lock. <footnote><para>Lockfiles are used instead of real file
2125                 locking <literal>fcntl()</literal> because real locking
2126                 implementations are still flaky on network
2127                 filesystems.</para></footnote>
2128               </para>
2129             </listitem>
2130             <listitem>
2131               <para>
2132                 Once the lockfile has been created, the server loads the cookie
2133                 file. It should then delete any cookies that are old (the
2134                 timeout can be fairly short), or more than a reasonable
2135                 time in the future (so that cookies never accidentally 
2136                 become permanent, if the clock was set far into the future 
2137                 at some point). If no recent keys remain, the 
2138                 server may generate a new key.
2139               </para>
2140             </listitem>
2141             <listitem>
2142               <para>
2143                 The pruned and possibly added-to cookie file 
2144                 must be resaved atomically (using a temporary 
2145                 file which is rename()'d).
2146               </para>
2147             </listitem>
2148             <listitem>
2149               <para>
2150                 The lock must be dropped by deleting the lockfile.
2151               </para>
2152             </listitem>
2153           </itemizedlist>
2154         </para>
2155         <para>
2156           Clients need not lock the file in order to load it, 
2157           because servers are required to save the file atomically.          
2158         </para>
2159       </sect3>
2160     </sect2>
2161   </sect1>
2162   <sect1 id="addresses">
2163     <title>Server Addresses</title>
2164     <para>
2165       Server addresses consist of a transport name followed by a colon, and
2166       then an optional, comma-separated list of keys and values in the form key=value.
2167       Each value is escaped.
2168     </para>
2169     <para>
2170       For example: 
2171       <programlisting>unix:path=/tmp/dbus-test</programlisting>
2172       Which is the address to a unix socket with the path /tmp/dbus-test.
2173     </para>
2174     <para>
2175       Value escaping is similar to URI escaping but simpler.
2176       <itemizedlist>
2177         <listitem>
2178           <para>
2179             The set of optionally-escaped bytes is:
2180             <literal>[0-9A-Za-z_-/.\]</literal>. To escape, each
2181             <emphasis>byte</emphasis> (note, not character) which is not in the
2182             set of optionally-escaped bytes must be replaced with an ASCII
2183             percent (<literal>%</literal>) and the value of the byte in hex.
2184             The hex value must always be two digits, even if the first digit is
2185             zero. The optionally-escaped bytes may be escaped if desired.
2186           </para>
2187         </listitem>
2188         <listitem>
2189           <para>
2190             To unescape, append each byte in the value; if a byte is an ASCII
2191             percent (<literal>%</literal>) character then append the following
2192             hex value instead. It is an error if a <literal>%</literal> byte
2193             does not have two hex digits following. It is an error if a
2194             non-optionally-escaped byte is seen unescaped.
2195           </para>
2196         </listitem>
2197       </itemizedlist>
2198       The set of optionally-escaped bytes is intended to preserve address 
2199       readability and convenience.
2200     </para>
2201
2202     <para>
2203       A server may specify a key-value pair with the key <literal>guid</literal>
2204       and the value a hex-encoded 16-byte sequence. This globally unique ID must
2205       be created by filling the first 4 bytes with a 32-bit UNIX time since the
2206       epoch, and the remaining 12 bytes with random bytes. If present, the GUID
2207       may be used to distinguish one server from another. A server should use a
2208       different GUID for each address it listens on. For example, if a message
2209       bus daemon offers both UNIX domain socket and TCP connections, but treats
2210       clients the same regardless of how they connect, those two connections are
2211       equivalent post-connection but should have distinct GUIDs to distinguish
2212       the kinds of connection.
2213     </para>
2214     
2215     <para>
2216       The intent of the GUID feature is to allow a client to avoid opening
2217       multiple identical connections to the same server, by allowing the client
2218       to check whether an address corresponds to an already-existing connection.
2219       Comparing two addresses is insufficient, because addresses can be recycled
2220       by distinct servers.
2221     </para>
2222
2223     <para>
2224       [FIXME clarify if attempting to connect to each is a requirement 
2225       or just a suggestion]
2226       When connecting to a server, multiple server addresses can be
2227       separated by a semi-colon. The library will then try to connect
2228       to the first address and if that fails, it'll try to connect to
2229       the next one specified, and so forth. For example
2230       <programlisting>unix:path=/tmp/dbus-test;unix:path=/tmp/dbus-test2</programlisting>
2231     </para>
2232
2233   </sect1>
2234   
2235   <sect1 id="transports">
2236     <title>Transports</title>
2237     <para>
2238       [FIXME we need to specify in detail each transport and its possible arguments]
2239     
2240       Current transports include: unix domain sockets (including 
2241       abstract namespace on linux), TCP/IP, and a debug/testing transport using 
2242       in-process pipes. Future possible transports include one that 
2243       tunnels over X11 protocol.
2244     </para>
2245   
2246     <sect2 id="transports-unix-domain-sockets">
2247       <title>Unix Domain Sockets</title>
2248       <para>
2249         Unix domain sockets can be either paths in the file system or on Linux 
2250         kernels, they can be abstract which are similar to paths but i
2251         do not show up in the file system.  
2252       </para>
2253
2254       <para>
2255         When a socket is opened by the D-Bus library it truncates the path 
2256         name right befor the first trailing Nul byte.  This is true for both
2257         normal paths and abstract paths.  Note that this is a departure from
2258         previous versions of D-Bus that would create sockets with a fixed 
2259         length path name.  Names which were shorter than the fixed length
2260         would be padded by Nul bytes.
2261       </para>
2262     </sect2>
2263   </sect1>
2264
2265   <sect1 id="naming-conventions">
2266     <title>Naming Conventions</title>
2267     
2268     <para>
2269       D-BUS namespaces are all lowercase and correspond to reversed domain
2270       names, as with Java. e.g. "org.freedesktop"
2271     </para>
2272     <para>
2273       Interface, signal, method, and property names are "WindowsStyleCaps", note
2274       that the first letter is capitalized, unlike Java.
2275     </para>
2276     <para>
2277       Object paths are normally all lowercase with underscores used rather than
2278       hyphens.
2279     </para>
2280   </sect1>
2281     
2282   <sect1 id="standard-interfaces">
2283     <title>Standard Interfaces</title>
2284     <para>
2285       See <xref linkend="message-protocol-types-notation"/> for details on 
2286        the notation used in this section. There are some standard interfaces
2287       that may be useful across various D-BUS applications.
2288     </para>
2289     <sect2 id="standard-interfaces-peer">
2290       <title><literal>org.freedesktop.DBus.Peer</literal></title>
2291       <para>
2292         The <literal>org.freedesktop.DBus.Peer</literal> interface 
2293         has one method:
2294         <programlisting>
2295           org.freedesktop.DBus.Peer.Ping ()
2296         </programlisting>
2297       </para>
2298       <para>
2299         On receipt of the <literal>METHOD_CALL</literal> message
2300         <literal>org.freedesktop.DBus.Peer.Ping</literal>, an application should do
2301         nothing other than reply with a <literal>METHOD_RETURN</literal> as
2302         usual.  It does not matter which object path a ping is sent to.  The
2303         reference implementation should simply handle this method on behalf of
2304         all objects, though it doesn't yet. (The point is, you're really pinging
2305         the peer process, not a specific object.)
2306       </para>
2307     </sect2>
2308
2309     <sect2 id="standard-interfaces-introspectable">
2310       <title><literal>org.freedesktop.DBus.Introspectable</literal></title>
2311       <para>
2312         This interface has one method:
2313         <programlisting>
2314           org.freedesktop.DBus.Introspectable.Introspect (out STRING xml_data)
2315         </programlisting>
2316       </para>
2317       <para>
2318         Objects instances may implement
2319         <literal>Introspect</literal> which returns an XML description of
2320         the object, including its interfaces (with signals and methods), objects
2321         below it in the object path tree, and its properties.
2322       </para>
2323       <para>
2324         <xref linkend="introspection-format"/> describes the format of this XML string.
2325       </para>
2326     </sect2>
2327     <sect2 id="standard-interfaces-properties">
2328       <title><literal>org.freedesktop.DBus.Properties</literal></title>
2329       <para>
2330         Many native APIs will have a concept of object <firstterm>properties</firstterm> 
2331         or <firstterm>attributes</firstterm>. These can be exposed via the 
2332         <literal>org.freedesktop.DBus.Properties</literal> interface.
2333       </para>
2334       <para>
2335         <programlisting>
2336               org.freedesktop.DBus.Properties.Get (in STRING interface_name,
2337                                                    in STRING property_name,
2338                                                    out VARIANT value);
2339               org.freedesktop.DBus.Properties.Set (in STRING interface_name,
2340                                                    in STRING property_name,
2341                                                    in VARIANT value);
2342         </programlisting>
2343       </para>
2344       <para>
2345         The available properties and whether they are writable can be determined
2346         by calling <literal>org.freedesktop.DBus.Introspectable.Introspect</literal>,
2347         see <xref linkend="standard-interfaces-introspectable"/>.
2348       </para>
2349       <para>
2350         An empty string may be provided for the interface name; in this case, 
2351         if there are multiple properties on an object with the same name, 
2352         the results are undefined (picking one by according to an arbitrary 
2353         deterministic rule, or returning an error, are the reasonable 
2354         possibilities).
2355       </para>
2356     </sect2>
2357   </sect1>
2358
2359   <sect1 id="introspection-format">
2360     <title>Introspection Data Format</title>
2361     <para>
2362       As described in <xref linkend="standard-interfaces-introspectable"/>, 
2363       objects may be introspected at runtime, returning an XML string 
2364       that describes the object. The same XML format may be used in 
2365       other contexts as well, for example as an "IDL" for generating 
2366       static language bindings.
2367     </para>
2368     <para>
2369       Here is an example of introspection data:
2370       <programlisting>
2371         &lt;!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
2372          "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"&gt;
2373         &lt;node name="/org/freedesktop/sample_object"&gt;
2374           &lt;interface name="org.freedesktop.SampleInterface"&gt;
2375             &lt;method name="Frobate"&gt;
2376               &lt;arg name="foo" type="i" direction="in"/&gt;
2377               &lt;arg name="bar" type="s" direction="out"/&gt;
2378               &lt;arg name="baz" type="a{us}" direction="out"/&gt;
2379               &lt;annotation name="org.freedesktop.DBus.Deprecated" value="true"/&gt;
2380             &lt;/method&gt;
2381             &lt;method name="Bazify"&gt;
2382               &lt;arg name="bar" type="(iiu)" direction="in"/&gt;
2383               &lt;arg name="bar" type="v" direction="out"/&gt;
2384             &lt;/method&gt;
2385             &lt;method name="Mogrify"&gt;
2386               &lt;arg name="bar" type="(iiav)" direction="in"/&gt;
2387             &lt;/method&gt;
2388             &lt;signal name="Changed"&gt;
2389               &lt;arg name="new_value" type="b"/&gt;
2390             &lt;/signal&gt;
2391             &lt;property name="Bar" type="y" access="readwrite"/&gt;
2392           &lt;/interface&gt;
2393           &lt;node name="child_of_sample_object"/&gt;
2394           &lt;node name="another_child_of_sample_object"/&gt;
2395        &lt;/node&gt;
2396       </programlisting>
2397     </para>
2398     <para>
2399       A more formal DTD and spec needs writing, but here are some quick notes.
2400       <itemizedlist>
2401         <listitem>
2402           <para>
2403             Only the root &lt;node&gt; element can omit the node name, as it's
2404             known to be the object that was introspected.  If the root
2405             &lt;node&gt; does have a name attribute, it must be an absolute
2406             object path. If child &lt;node&gt; have object paths, they must be
2407             relative.
2408           </para>
2409         </listitem>
2410         <listitem>
2411           <para>
2412             If a child &lt;node&gt; has any sub-elements, then they 
2413             must represent a complete introspection of the child.
2414             If a child &lt;node&gt; is empty, then it may or may 
2415             not have sub-elements; the child must be introspected
2416             in order to find out. The intent is that if an object 
2417             knows that its children are "fast" to introspect
2418             it can go ahead and return their information, but 
2419             otherwise it can omit it.
2420           </para>
2421         </listitem>
2422         <listitem>
2423           <para>
2424             The direction element on &lt;arg&gt; may be omitted, 
2425             in which case it defaults to "in" for method calls 
2426             and "out" for signals. Signals only allow "out" 
2427             so while direction may be specified, it's pointless.
2428           </para>
2429         </listitem>
2430         <listitem>
2431           <para>
2432             The possible directions are "in" and "out", 
2433             unlike CORBA there is no "inout"
2434           </para>
2435         </listitem>
2436         <listitem>
2437           <para>
2438             The possible property access flags are 
2439             "readwrite", "read", and "write"
2440           </para>
2441         </listitem>
2442         <listitem>
2443           <para>
2444             Multiple interfaces can of course be listed for 
2445             one &lt;node&gt;.
2446           </para>
2447         </listitem>
2448         <listitem>
2449           <para>
2450             The "name" attribute on arguments is optional.
2451           </para>
2452         </listitem>
2453       </itemizedlist>
2454     </para>
2455     <para>
2456         Method, interface, property, and signal elements may have
2457         "annotations", which are generic key/value pairs of metadata.
2458         They are similar conceptually to Java's annotations and C# attributes.
2459         Well-known annotations:
2460      </para>
2461      <informaltable>
2462        <tgroup cols="3">
2463          <thead>
2464            <row>
2465              <entry>Name</entry>
2466              <entry>Values (separated by ,)</entry>
2467              <entry>Description</entry>
2468            </row>
2469          </thead>
2470          <tbody>
2471            <row>
2472              <entry>org.freedesktop.DBus.Deprecated</entry>
2473              <entry>true,false</entry>
2474              <entry>Whether or not the entity is deprecated; defaults to false</entry>
2475            </row>
2476            <row>
2477              <entry>org.freedesktop.DBus.GLib.CSymbol</entry>
2478              <entry>(string)</entry>
2479              <entry>The C symbol; may be used for methods and interfaces</entry>
2480            </row>
2481            <row>
2482              <entry>org.freedesktop.DBus.Method.NoReply</entry>
2483              <entry>true,false</entry>
2484              <entry>If set, don't expect a reply to the method call; defaults to false.</entry>
2485            </row>
2486          </tbody>
2487        </tgroup>
2488      </informaltable>
2489   </sect1>
2490   <sect1 id="message-bus">
2491     <title>Message Bus Specification</title>
2492     <sect2 id="message-bus-overview">
2493       <title>Message Bus Overview</title>
2494       <para>
2495         The message bus accepts connections from one or more applications. 
2496         Once connected, applications can exchange messages with other 
2497         applications that are also connected to the bus.
2498       </para>
2499       <para>
2500         In order to route messages among connections, the message bus keeps a
2501         mapping from names to connections. Each connection has one
2502         unique-for-the-lifetime-of-the-bus name automatically assigned.
2503         Applications may request additional names for a connection. Additional
2504         names are usually "well-known names" such as
2505         "org.freedesktop.TextEditor". When a name is bound to a connection,
2506         that connection is said to <firstterm>own</firstterm> the name.
2507       </para>
2508       <para>
2509         The bus itself owns a special name, <literal>org.freedesktop.DBus</literal>. 
2510         This name routes messages to the bus, allowing applications to make 
2511         administrative requests. For example, applications can ask the bus 
2512         to assign a name to a connection.
2513       </para>
2514       <para>
2515         Each name may have <firstterm>queued owners</firstterm>.  When an
2516         application requests a name for a connection and the name is already in
2517         use, the bus will optionally add the connection to a queue waiting for 
2518         the name. If the current owner of the name disconnects or releases
2519         the name, the next connection in the queue will become the new owner.
2520       </para>
2521
2522       <para>
2523         This feature causes the right thing to happen if you start two text
2524         editors for example; the first one may request "org.freedesktop.TextEditor", 
2525         and the second will be queued as a possible owner of that name. When 
2526         the first exits, the second will take over.
2527       </para>
2528
2529       <para>
2530         Messages may have a <literal>DESTINATION</literal> field (see <xref
2531         linkend="message-protocol-header-fields"/>).  If the
2532         <literal>DESTINATION</literal> field is present, it specifies a message
2533         recipient by name. Method calls and replies normally specify this field.
2534       </para>
2535
2536       <para>
2537         Signals normally do not specify a destination; they are sent to all
2538         applications with <firstterm>message matching rules</firstterm> that
2539         match the message.
2540       </para>
2541
2542       <para>
2543         When the message bus receives a method call, if the
2544         <literal>DESTINATION</literal> field is absent, the call is taken to be
2545         a standard one-to-one message and interpreted by the message bus
2546         itself. For example, sending an
2547         <literal>org.freedesktop.DBus.Peer.Ping</literal> message with no
2548         <literal>DESTINATION</literal> will cause the message bus itself to
2549         reply to the ping immediately; the message bus will not make this
2550         message visible to other applications.
2551       </para>
2552
2553       <para>
2554         Continuing the <literal>org.freedesktop.DBus.Peer.Ping</literal> example, if
2555         the ping message were sent with a <literal>DESTINATION</literal> name of
2556         <literal>com.yoyodyne.Screensaver</literal>, then the ping would be
2557         forwarded, and the Yoyodyne Corporation screensaver application would be
2558         expected to reply to the ping.
2559       </para>
2560     </sect2>
2561
2562     <sect2 id="message-bus-names">
2563       <title>Message Bus Names</title>
2564       <para>
2565         Each connection has at least one name, assigned at connection time and
2566         returned in response to the
2567         <literal>org.freedesktop.DBus.Hello</literal> method call.  This
2568         automatically-assigned name is called the connection's <firstterm>unique
2569         name</firstterm>.  Unique names are never reused for two different
2570         connections to the same bus.
2571       </para>
2572       <para>
2573         Ownership of a unique name is a prerequisite for interaction with 
2574         the message bus. It logically follows that the unique name is always 
2575         the first name that an application comes to own, and the last 
2576         one that it loses ownership of.
2577       </para>
2578       <para>
2579         Unique connection names must begin with the character ':' (ASCII colon
2580         character); bus names that are not unique names must not begin
2581         with this character. (The bus must reject any attempt by an application
2582         to manually request a name beginning with ':'.) This restriction
2583         categorically prevents "spoofing"; messages sent to a unique name
2584         will always go to the expected connection.
2585       </para>
2586       <para>
2587         When a connection is closed, all the names that it owns are deleted (or
2588         transferred to the next connection in the queue if any).
2589       </para>
2590       <para>
2591         A connection can request additional names to be associated with it using
2592         the <literal>org.freedesktop.DBus.RequestName</literal> message. <xref
2593         linkend="message-protocol-names-bus"/> describes the format of a valid
2594         name. These names can be released again using the
2595         <literal>org.freedesktop.DBus.ReleaseName</literal> message.
2596       </para>
2597
2598       <sect3 id="bus-messages-request-name">
2599         <title><literal>org.freedesktop.DBus.RequestName</literal></title>
2600         <para>
2601           As a method:
2602           <programlisting>
2603             UINT32 RequestName (in STRING name, in UINT32 flags)
2604           </programlisting>
2605           Message arguments:
2606           <informaltable>
2607             <tgroup cols="3">
2608               <thead>
2609                 <row>
2610                   <entry>Argument</entry>
2611                   <entry>Type</entry>
2612                   <entry>Description</entry>
2613                 </row>
2614               </thead>
2615               <tbody>
2616                 <row>
2617                   <entry>0</entry>
2618                   <entry>STRING</entry>
2619                   <entry>Name to request</entry>
2620                 </row>
2621                 <row>
2622                   <entry>1</entry>
2623                   <entry>UINT32</entry>
2624                   <entry>Flags</entry>
2625                 </row>
2626               </tbody>
2627             </tgroup>
2628           </informaltable>
2629           Reply arguments:
2630           <informaltable>
2631             <tgroup cols="3">
2632               <thead>
2633                 <row>
2634                   <entry>Argument</entry>
2635                   <entry>Type</entry>
2636                   <entry>Description</entry>
2637                 </row>
2638               </thead>
2639               <tbody>
2640                 <row>
2641                   <entry>0</entry>
2642                   <entry>UINT32</entry>
2643                   <entry>Return value</entry>
2644                 </row>
2645               </tbody>
2646             </tgroup>
2647           </informaltable>
2648         </para>
2649         <para>
2650           This method call should be sent to
2651           <literal>org.freedesktop.DBus</literal> and asks the message bus to
2652           assign the given name to the method caller. Each name maintains a
2653           queue of possible owners, where the head of the queue is the primary
2654           or current owner of the name. Each potential owner in the queue
2655           maintains the DBUS_NAME_FLAG_ALLOW_REPLACEMENT and
2656           DBUS_NAME_FLAG_DO_NOT_QUEUE settings from its latest RequestName
2657           call.  When RequestName is invoked the following occurs:
2658           <itemizedlist>
2659             <listitem>
2660               <para>
2661                 If the method caller is currently the primary owner of the name,
2662                 the DBUS_NAME_FLAG_ALLOW_REPLACEMENT and DBUS_NAME_FLAG_DO_NOT_QUEUE
2663                 values are updated with the values from the new RequestName call, 
2664                 and nothing further happens.
2665               </para>
2666             </listitem>
2667
2668             <listitem>
2669               <para>
2670                 If the current primary owner (head of the queue) has
2671                 DBUS_NAME_FLAG_ALLOW_REPLACEMENT set, and the RequestName
2672                 invocation has the DBUS_NAME_FLAG_REPLACE_EXISTING flag, then
2673                 the caller of RequestName replaces the current primary owner at
2674                 the head of the queue and the current primary owner moves to the
2675                 second position in the queue. If the caller of RequestName was 
2676                 in the queue previously its flags are updated with the values from 
2677                 the new RequestName in addition to moving it to the head of the queue.
2678               </para>
2679             </listitem>
2680
2681             <listitem>
2682               <para>
2683                 If replacement is not possible, and the method caller is
2684                 currently in the queue but not the primary owner, its flags are
2685                 updated with the values from the new RequestName call.
2686               </para>
2687             </listitem>
2688
2689             <listitem>
2690               <para>
2691                 If replacement is not possible, and the method caller is
2692                 currently not in the queue, the method caller is appended to the
2693                 queue.
2694               </para>
2695             </listitem>
2696
2697             <listitem>
2698               <para>
2699                 If any connection in the queue has DBUS_NAME_FLAG_DO_NOT_QUEUE
2700                 set and is not the primary owner, it is removed from the
2701                 queue. This can apply to the previous primary owner (if it
2702                 was replaced) or the method caller (if it updated the
2703                 DBUS_NAME_FLAG_DO_NOT_QUEUE flag while still stuck in the
2704                 queue, or if it was just added to the queue with that flag set).
2705               </para>
2706             </listitem>
2707           </itemizedlist>
2708         </para>
2709         <para>
2710           Note that DBUS_NAME_FLAG_REPLACE_EXISTING results in "jumping the
2711           queue," even if another application already in the queue had specified
2712           DBUS_NAME_FLAG_REPLACE_EXISTING.  This comes up if a primary owner
2713           that does not allow replacement goes away, and the next primary owner
2714           does allow replacement. In this case, queued items that specified
2715           DBUS_NAME_FLAG_REPLACE_EXISTING <emphasis>do not</emphasis>
2716           automatically replace the new primary owner. In other words,
2717           DBUS_NAME_FLAG_REPLACE_EXISTING is not saved, it is only used at the
2718           time RequestName is called. This is deliberate to avoid an infinite loop
2719           anytime two applications are both DBUS_NAME_FLAG_ALLOW_REPLACEMENT 
2720           and DBUS_NAME_FLAG_REPLACE_EXISTING.
2721         </para>
2722         <para>
2723           The flags argument contains any of the following values logically ORed
2724           together:
2725
2726           <informaltable>
2727             <tgroup cols="3">
2728               <thead>
2729                 <row>
2730                   <entry>Conventional Name</entry>
2731                   <entry>Value</entry>
2732                   <entry>Description</entry>
2733                 </row>
2734               </thead>
2735               <tbody>
2736                 <row>
2737                   <entry>DBUS_NAME_FLAG_ALLOW_REPLACEMENT</entry>
2738                   <entry>0x1</entry>
2739                   <entry>
2740
2741                     If an application A specifies this flag and succeeds in
2742                     becoming the owner of the name, and another application B
2743                     later calls RequestName with the
2744                     DBUS_NAME_FLAG_REPLACE_EXISTING flag, then application A
2745                     will lose ownership and receive a
2746                     <literal>org.freedesktop.DBus.NameLost</literal> signal, and
2747                     application B will become the new owner. If DBUS_NAME_FLAG_ALLOW_REPLACEMENT
2748                     is not specified by application A, or DBUS_NAME_FLAG_REPLACE_EXISTING
2749                     is not specified by application B, then application B will not replace
2750                     application A as the owner.
2751
2752                   </entry>
2753                 </row>
2754                 <row>
2755                   <entry>DBUS_NAME_FLAG_REPLACE_EXISTING</entry>
2756                   <entry>0x2</entry>
2757                   <entry>
2758
2759                     Try to replace the current owner if there is one. If this
2760                     flag is not set the application will only become the owner of
2761                     the name if there is no current owner. If this flag is set,
2762                     the application will replace the current owner if
2763                     the current owner specified DBUS_NAME_FLAG_ALLOW_REPLACEMENT.
2764
2765                   </entry>
2766                 </row>
2767                 <row>
2768                   <entry>DBUS_NAME_FLAG_DO_NOT_QUEUE</entry>
2769                   <entry>0x4</entry>
2770                   <entry>
2771
2772                     Without this flag, if an application requests a name that is
2773                     already owned, the application will be placed in a queue to
2774                     own the name when the current owner gives it up. If this
2775                     flag is given, the application will not be placed in the
2776                     queue, the request for the name will simply fail.  This flag
2777                     also affects behavior when an application is replaced as
2778                     name owner; by default the application moves back into the
2779                     waiting queue, unless this flag was provided when the application
2780                     became the name owner.
2781
2782                   </entry>
2783                 </row>
2784               </tbody>
2785             </tgroup>
2786           </informaltable>
2787
2788           The return code can be one of the following values:
2789
2790           <informaltable>
2791             <tgroup cols="3">
2792               <thead>
2793                 <row>
2794                   <entry>Conventional Name</entry>
2795                   <entry>Value</entry>
2796                   <entry>Description</entry>
2797                 </row>
2798               </thead>
2799               <tbody>
2800                 <row>
2801                   <entry>DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER</entry>
2802                   <entry>1</entry> <entry>The caller is now the primary owner of
2803                   the name, replacing any previous owner. Either the name had no
2804                   owner before, or the caller specified
2805                   DBUS_NAME_FLAG_REPLACE_EXISTING and the current owner specified
2806                   DBUS_NAME_FLAG_ALLOW_REPLACEMENT.</entry>
2807                 </row>
2808                 <row>
2809                   <entry>DBUS_REQUEST_NAME_REPLY_IN_QUEUE</entry>
2810                   <entry>2</entry>
2811
2812                   <entry>The name already had an owner,
2813                     DBUS_NAME_FLAG_DO_NOT_QUEUE was not specified, and either
2814                     the current owner did not specify
2815                     DBUS_NAME_FLAG_ALLOW_REPLACEMENT or the requesting
2816                     application did not specify DBUS_NAME_FLAG_REPLACE_EXISTING.
2817                     </entry>
2818                 </row>
2819                 <row>
2820                   <entry>DBUS_REQUEST_NAME_REPLY_EXISTS</entry> <entry>3</entry>
2821                   <entry>The name already has an owner,
2822                   DBUS_NAME_FLAG_DO_NOT_QUEUE was specified, and either
2823                   DBUS_NAME_FLAG_ALLOW_REPLACEMENT was not specified by the
2824                   current owner, or DBUS_NAME_FLAG_REPLACE_EXISTING was not
2825                   specified by the requesting application.</entry>
2826                 </row>
2827                 <row>
2828                   <entry>DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER</entry>
2829                   <entry>4</entry>
2830                   <entry>The application trying to request ownership of a name is already the owner of it.</entry>
2831                 </row>
2832               </tbody>
2833             </tgroup>
2834           </informaltable>
2835         </para>
2836        </sect3>
2837
2838        <sect3 id="bus-messages-release-name">
2839         <title><literal>org.freedesktop.DBus.ReleaseName</literal></title>
2840         <para>
2841           As a method:
2842           <programlisting>
2843             UINT32 ReleaseName (in STRING name)
2844           </programlisting>
2845           Message arguments:
2846           <informaltable>
2847             <tgroup cols="3">
2848               <thead>
2849                 <row>
2850                   <entry>Argument</entry>
2851                   <entry>Type</entry>
2852                   <entry>Description</entry>
2853                 </row>
2854               </thead>
2855               <tbody>
2856                 <row>
2857                   <entry>0</entry>
2858                   <entry>STRING</entry>
2859                   <entry>Name to release</entry>
2860                 </row>
2861               </tbody>
2862             </tgroup>
2863           </informaltable>
2864           Reply arguments:
2865           <informaltable>
2866             <tgroup cols="3">
2867               <thead>
2868                 <row>
2869                   <entry>Argument</entry>
2870                   <entry>Type</entry>
2871                   <entry>Description</entry>
2872                 </row>
2873               </thead>
2874               <tbody>
2875                 <row>
2876                   <entry>0</entry>
2877                   <entry>UINT32</entry>
2878                   <entry>Return value</entry>
2879                 </row>
2880               </tbody>
2881             </tgroup>
2882           </informaltable>
2883         </para>
2884         <para>
2885           This method call should be sent to
2886           <literal>org.freedesktop.DBus</literal> and asks the message bus to
2887           release the method caller's claim to the given name. If the caller is
2888           the primary owner, a new primary owner will be selected from the
2889           queue if any other owners are waiting. If the caller is waiting in
2890           the queue for the name, the caller will removed from the queue and
2891           will not be made an owner of the name if it later becomes available.
2892           If there are no other owners in the queue for the name, it will be
2893           removed from the bus entirely.
2894
2895           The return code can be one of the following values:
2896
2897           <informaltable>
2898             <tgroup cols="3">
2899               <thead>
2900                 <row>
2901                   <entry>Conventional Name</entry>
2902                   <entry>Value</entry>
2903                   <entry>Description</entry>
2904                 </row>
2905               </thead>
2906               <tbody>
2907                 <row>
2908                   <entry>DBUS_RELEASE_NAME_REPLY_RELEASED</entry>
2909                   <entry>1</entry> <entry>The caller has released his claim on
2910                   the given name. Either the caller was the primary owner of
2911                   the name, and the name is now unused or taken by somebody
2912                   waiting in the queue for the name, or the caller was waiting
2913                   in the queue for the name and has now been removed from the
2914                   queue.</entry>
2915                 </row>
2916                 <row>
2917                   <entry>DBUS_RELEASE_NAME_REPLY_NON_EXISTENT</entry>
2918                   <entry>2</entry>
2919                   <entry>The given name does not exist on this bus.</entry>
2920                 </row>
2921                 <row>
2922                   <entry>DBUS_RELEASE_NAME_REPLY_NOT_OWNER</entry>
2923                   <entry>3</entry>
2924                   <entry>The caller was not the primary owner of this name,
2925                   and was also not waiting in the queue to own this name.</entry>
2926                 </row>
2927               </tbody>
2928             </tgroup>
2929           </informaltable>
2930         </para>
2931       </sect3>
2932     </sect2>
2933
2934     <sect2 id="message-bus-routing">
2935       <title>Message Bus Message Routing</title>
2936       <para>
2937         FIXME 
2938       </para>
2939     </sect2>
2940     <sect2 id="message-bus-starting-services">
2941       <title>Message Bus Starting Services</title>
2942       <para>
2943         The message bus can start applications on behalf of other applications.
2944         In CORBA terms, this would be called <firstterm>activation</firstterm>.
2945         An application that can be started in this way is called a
2946         <firstterm>service</firstterm>.
2947       </para>
2948       <para>
2949         With D-BUS, starting a service is normally done by name. That is,
2950         applications ask the message bus to start some program that will own a
2951         well-known name, such as <literal>org.freedesktop.TextEditor</literal>.
2952         This implies a contract documented along with the name 
2953         <literal>org.freedesktop.TextEditor</literal> for which objects 
2954         the owner of that name will provide, and what interfaces those 
2955         objects will have.
2956       </para>
2957       <para>
2958         To find an executable corresponding to a particular name, the bus daemon
2959         looks for <firstterm>service description files</firstterm>.  Service
2960         description files define a mapping from names to executables. Different
2961         kinds of message bus will look for these files in different places, see
2962         <xref linkend="message-bus-types"/>.
2963       </para>
2964       <para>
2965         [FIXME the file format should be much better specified than "similar to
2966         .desktop entries" esp. since desktop entries are already
2967         badly-specified. ;-)] Service description files have the ".service" file
2968         extension. The message bus will only load service description files
2969         ending with .service; all other files will be ignored.  The file format
2970         is similar to that of <ulink
2971         url="http://www.freedesktop.org/standards/desktop-entry-spec/desktop-entry-spec.html">desktop
2972         entries</ulink>. All service description files must be in UTF-8
2973         encoding. To ensure that there will be no name collisions, service files
2974         must be namespaced using the same mechanism as messages and service
2975         names.
2976
2977         <figure>
2978           <title>Example service description file</title>
2979           <programlisting>
2980             # Sample service description file
2981             [D-BUS Service]
2982             Names=org.freedesktop.ConfigurationDatabase;org.gnome.GConf;
2983             Exec=/usr/libexec/gconfd-2
2984           </programlisting>
2985         </figure>
2986       </para>
2987       <para>
2988         When an application asks to start a service by name, the bus daemon tries to
2989         find a service that will own that name. It then tries to spawn the
2990         executable associated with it. If this fails, it will report an
2991         error. [FIXME what happens if two .service files offer the same service;
2992         what kind of error is reported, should we have a way for the client to
2993         choose one?]
2994       </para>
2995       <para>
2996         The executable launched will have the environment variable
2997         <literal>DBUS_STARTER_ADDRESS</literal> set to the address of the
2998         message bus so it can connect and request the appropriate names.
2999       </para>
3000       <para>
3001         The executable being launched may want to know whether the message bus
3002         starting it is one of the well-known message buses (see <xref
3003         linkend="message-bus-types"/>). To facilitate this, the bus must also set
3004         the <literal>DBUS_STARTER_BUS_TYPE</literal> environment variable if it is one
3005         of the well-known buses. The currently-defined values for this variable
3006         are <literal>system</literal> for the systemwide message bus,
3007         and <literal>session</literal> for the per-login-session message
3008         bus. The new executable must still connect to the address given
3009         in <literal>DBUS_STARTER_ADDRESS</literal>, but may assume that the
3010         resulting connection is to the well-known bus.
3011       </para>
3012       <para>
3013         [FIXME there should be a timeout somewhere, either specified
3014         in the .service file, by the client, or just a global value
3015         and if the client being activated fails to connect within that
3016         timeout, an error should be sent back.]
3017       </para>
3018
3019       <sect3 id="message-bus-starting-services-scope">
3020         <title>Message Bus Service Scope</title>
3021         <para>
3022           The "scope" of a service is its "per-", such as per-session,
3023           per-machine, per-home-directory, or per-display. The reference
3024           implementation doesn't yet support starting services in a different
3025           scope from the message bus itself. So e.g. if you start a service
3026           on the session bus its scope is per-session.
3027         </para>
3028         <para>
3029           We could add an optional scope to a bus name. For example, for
3030           per-(display,session pair), we could have a unique ID for each display
3031           generated automatically at login and set on screen 0 by executing a
3032           special "set display ID" binary. The ID would be stored in a
3033           <literal>_DBUS_DISPLAY_ID</literal> property and would be a string of
3034           random bytes. This ID would then be used to scope names.
3035           Starting/locating a service could be done by ID-name pair rather than
3036           only by name.
3037         </para>
3038         <para>
3039           Contrast this with a per-display scope. To achieve that, we would 
3040           want a single bus spanning all sessions using a given display.
3041           So we might set a <literal>_DBUS_DISPLAY_BUS_ADDRESS</literal> 
3042           property on screen 0 of the display, pointing to this bus.
3043         </para>
3044       </sect3>
3045     </sect2>
3046
3047     <sect2 id="message-bus-types">
3048       <title>Well-known Message Bus Instances</title>
3049       <para>
3050         Two standard message bus instances are defined here, along with how 
3051         to locate them and where their service files live.
3052       </para>
3053       <sect3 id="message-bus-types-login">
3054         <title>Login session message bus</title>
3055         <para>
3056           Each time a user logs in, a <firstterm>login session message
3057             bus</firstterm> may be started. All applications in the user's login
3058           session may interact with one another using this message bus.
3059         </para>
3060         <para>
3061           The address of the login session message bus is given 
3062           in the <literal>DBUS_SESSION_BUS_ADDRESS</literal> environment 
3063           variable. If that variable is not set, applications may 
3064           also try to read the address from the X Window System root 
3065           window property <literal>_DBUS_SESSION_BUS_ADDRESS</literal>.
3066           The root window property must have type <literal>STRING</literal>.
3067           The environment variable should have precedence over the 
3068           root window property.
3069         </para>
3070         <para>
3071           [FIXME specify location of .service files, probably using 
3072           DESKTOP_DIRS etc. from basedir specification, though login session 
3073           bus is not really desktop-specific]
3074         </para>
3075       </sect3>
3076       <sect3 id="message-bus-types-system">
3077         <title>System message bus</title>
3078         <para>
3079           A computer may have a <firstterm>system message bus</firstterm>,
3080           accessible to all applications on the system. This message bus may be
3081           used to broadcast system events, such as adding new hardware devices, 
3082           changes in the printer queue, and so forth.
3083         </para>
3084         <para>
3085           The address of the system message bus is given 
3086           in the <literal>DBUS_SYSTEM_BUS_ADDRESS</literal> environment 
3087           variable. If that variable is not set, applications should try 
3088           to connect to the well-known address
3089           <literal>unix:path=/var/run/dbus/system_bus_socket</literal>.
3090           <footnote>
3091             <para>
3092               The D-BUS reference implementation actually honors the 
3093               <literal>$(localstatedir)</literal> configure option 
3094               for this address, on both client and server side.
3095             </para>
3096           </footnote>
3097         </para>
3098         <para>
3099           [FIXME specify location of system bus .service files]
3100         </para>
3101       </sect3>
3102     </sect2>
3103
3104     <sect2 id="message-bus-messages">
3105       <title>Message Bus Messages</title>
3106       <para>
3107         The special message bus name <literal>org.freedesktop.DBus</literal>
3108         responds to a number of additional messages.
3109       </para>
3110
3111       <sect3 id="bus-messages-hello">
3112         <title><literal>org.freedesktop.DBus.Hello</literal></title>
3113         <para>
3114           As a method:
3115           <programlisting>
3116             STRING Hello ()
3117           </programlisting>
3118           Reply arguments:
3119           <informaltable>
3120             <tgroup cols="3">
3121               <thead>
3122                 <row>
3123                   <entry>Argument</entry>
3124                   <entry>Type</entry>
3125                   <entry>Description</entry>
3126                 </row>
3127               </thead>
3128               <tbody>
3129                 <row>
3130                   <entry>0</entry>
3131                   <entry>STRING</entry>
3132                   <entry>Unique name assigned to the connection</entry>
3133                 </row>
3134               </tbody>
3135             </tgroup>
3136           </informaltable>
3137         </para>
3138         <para>
3139           Before an application is able to send messages to other applications
3140           it must send the <literal>org.freedesktop.DBus.Hello</literal> message
3141           to the message bus to obtain a unique name. If an application without
3142           a unique name tries to send a message to another application, or a
3143           message to the message bus itself that isn't the
3144           <literal>org.freedesktop.DBus.Hello</literal> message, it will be
3145           disconnected from the bus.
3146         </para>
3147         <para>
3148           There is no corresponding "disconnect" request; if a client wishes to
3149           disconnect from the bus, it simply closes the socket (or other 
3150           communication channel).
3151         </para>
3152       </sect3>
3153       <sect3 id="bus-messages-list-names">
3154         <title><literal>org.freedesktop.DBus.ListNames</literal></title>
3155         <para>
3156           As a method:
3157           <programlisting>
3158             ARRAY of STRING ListNames ()
3159           </programlisting>
3160           Reply arguments:
3161           <informaltable>
3162             <tgroup cols="3">
3163               <thead>
3164                 <row>
3165                   <entry>Argument</entry>
3166                   <entry>Type</entry>
3167                   <entry>Description</entry>
3168                 </row>
3169               </thead>
3170               <tbody>
3171                 <row>
3172                   <entry>0</entry>
3173                   <entry>ARRAY of STRING</entry>
3174                   <entry>Array of strings where each string is a bus name</entry>
3175                 </row>
3176               </tbody>
3177             </tgroup>
3178           </informaltable>
3179         </para>
3180         <para>
3181           Returns a list of all currently-owned names on the bus.
3182         </para>
3183       </sect3>
3184       <sect3 id="bus-messages-name-exists">
3185         <title><literal>org.freedesktop.DBus.NameHasOwner</literal></title>
3186         <para>
3187           As a method:
3188           <programlisting>
3189             BOOLEAN NameHasOwner (in STRING name)
3190           </programlisting>
3191           Message arguments:
3192           <informaltable>
3193             <tgroup cols="3">
3194               <thead>
3195                 <row>
3196                   <entry>Argument</entry>
3197                   <entry>Type</entry>
3198                   <entry>Description</entry>
3199                 </row>
3200               </thead>
3201               <tbody>
3202                 <row>
3203                   <entry>0</entry>
3204                   <entry>STRING</entry>
3205                   <entry>Name to check</entry>
3206                 </row>
3207               </tbody>
3208             </tgroup>
3209           </informaltable>
3210           Reply arguments:
3211           <informaltable>
3212             <tgroup cols="3">
3213               <thead>
3214                 <row>
3215                   <entry>Argument</entry>
3216                   <entry>Type</entry>
3217                   <entry>Description</entry>
3218                 </row>
3219               </thead>
3220               <tbody>
3221                 <row>
3222                   <entry>0</entry>
3223                   <entry>BOOLEAN</entry>
3224                   <entry>Return value, true if the name exists</entry>
3225                 </row>
3226               </tbody>
3227             </tgroup>
3228           </informaltable>
3229         </para>
3230         <para>
3231           Checks if the specified name exists (currently has an owner).
3232         </para>
3233       </sect3>
3234
3235       <sect3 id="bus-messages-name-owner-changed">
3236         <title><literal>org.freedesktop.DBus.NameOwnerChanged</literal></title>
3237         <para>
3238           This is a signal:
3239           <programlisting>
3240             NameOwnerChanged (STRING name, STRING old_owner, STRING new_owner)
3241           </programlisting>
3242           Message arguments:
3243           <informaltable>
3244             <tgroup cols="3">
3245               <thead>
3246                 <row>
3247                   <entry>Argument</entry>
3248                   <entry>Type</entry>
3249                   <entry>Description</entry>
3250                 </row>
3251               </thead>
3252               <tbody>
3253                 <row>
3254                   <entry>0</entry>
3255                   <entry>STRING</entry>
3256                   <entry>Name with a new owner</entry>
3257                 </row>
3258                 <row>
3259                   <entry>1</entry>
3260                   <entry>STRING</entry>
3261                   <entry>Old owner or empty string if none</entry>
3262                 </row>
3263                 <row>
3264                   <entry>2</entry>
3265                   <entry>STRING</entry>
3266                   <entry>New owner or empty string if none</entry>
3267                 </row>
3268               </tbody>
3269             </tgroup>
3270           </informaltable>
3271         </para>
3272         <para>
3273           This signal indicates that the owner of a name has changed.
3274           It's also the signal to use to detect the appearance of 
3275           new names on the bus.
3276         </para>
3277       </sect3>
3278       <sect3 id="bus-messages-name-lost">
3279         <title><literal>org.freedesktop.DBus.NameLost</literal></title>
3280         <para>
3281           This is a signal:
3282           <programlisting>
3283             NameLost (STRING name)
3284           </programlisting>
3285           Message arguments:
3286           <informaltable>
3287             <tgroup cols="3">
3288               <thead>
3289                 <row>
3290                   <entry>Argument</entry>
3291                   <entry>Type</entry>
3292                   <entry>Description</entry>
3293                 </row>
3294               </thead>
3295               <tbody>
3296                 <row>
3297                   <entry>0</entry>
3298                   <entry>STRING</entry>
3299                   <entry>Name which was lost</entry>
3300                 </row>
3301               </tbody>
3302             </tgroup>
3303           </informaltable>
3304         </para>
3305         <para>
3306           This signal is sent to a specific application when it loses
3307           ownership of a name.
3308         </para>
3309       </sect3>
3310
3311       <sect3 id="bus-messages-name-acquired">
3312         <title><literal>org.freedesktop.DBus.NameAcquired</literal></title>
3313         <para>
3314           This is a signal:
3315           <programlisting>
3316             NameAcquired (STRING name)
3317           </programlisting>
3318           Message arguments:
3319           <informaltable>
3320             <tgroup cols="3">
3321               <thead>
3322                 <row>
3323                   <entry>Argument</entry>
3324                   <entry>Type</entry>
3325                   <entry>Description</entry>
3326                 </row>
3327               </thead>
3328               <tbody>
3329                 <row>
3330                   <entry>0</entry>
3331                   <entry>STRING</entry>
3332                   <entry>Name which was acquired</entry>
3333                 </row>
3334               </tbody>
3335             </tgroup>
3336           </informaltable>
3337         </para>
3338         <para>
3339           This signal is sent to a specific application when it gains
3340           ownership of a name.
3341         </para>
3342       </sect3>
3343
3344       <sect3 id="bus-messages-start-service-by-name">
3345         <title><literal>org.freedesktop.DBus.StartServiceByName</literal></title>
3346         <para>
3347           As a method:
3348           <programlisting>
3349             UINT32 StartServiceByName (in STRING name, in UINT32 flags)
3350           </programlisting>
3351           Message arguments:
3352           <informaltable>
3353             <tgroup cols="3">
3354               <thead>
3355                 <row>
3356                   <entry>Argument</entry>
3357                   <entry>Type</entry>
3358                   <entry>Description</entry>
3359                 </row>
3360               </thead>
3361               <tbody>
3362                 <row>
3363                   <entry>0</entry>
3364                   <entry>STRING</entry>
3365                   <entry>Name of the service to start</entry>
3366                 </row>
3367                 <row>
3368                   <entry>1</entry>
3369                   <entry>UINT32</entry>
3370                   <entry>Flags (currently not used)</entry>
3371                 </row>
3372               </tbody>
3373             </tgroup>
3374           </informaltable>
3375         Reply arguments:
3376         <informaltable>
3377           <tgroup cols="3">
3378             <thead>
3379               <row>
3380                 <entry>Argument</entry>
3381                 <entry>Type</entry>
3382                 <entry>Description</entry>
3383               </row>
3384             </thead>
3385             <tbody>
3386               <row>
3387                 <entry>0</entry>
3388                 <entry>UINT32</entry>
3389                 <entry>Return value</entry>
3390               </row>
3391             </tbody>
3392           </tgroup>
3393         </informaltable>
3394           Tries to launch the executable associated with a name. For more information, see <xref linkend="message-bus-starting-services"/>.
3395
3396         </para>
3397         <para>
3398           The return value can be one of the following values:
3399           <informaltable>
3400             <tgroup cols="3">
3401               <thead>
3402                 <row>
3403                   <entry>Identifier</entry>
3404                   <entry>Value</entry>
3405                   <entry>Description</entry>
3406                 </row>
3407               </thead>
3408               <tbody>
3409                 <row>
3410                   <entry>DBUS_START_REPLY_SUCCESS</entry>
3411                   <entry>1</entry>
3412                   <entry>The service was successfully started.</entry>
3413                 </row>
3414                 <row>
3415                   <entry>DBUS_START_REPLY_ALREADY_RUNNING</entry>
3416                   <entry>2</entry>
3417                   <entry>A connection already owns the given name.</entry>
3418                 </row>
3419               </tbody>
3420              </tgroup>
3421            </informaltable>
3422         </para>
3423
3424       </sect3>
3425
3426       <sect3 id="bus-messages-get-name-owner">
3427         <title><literal>org.freedesktop.DBus.GetNameOwner</literal></title>
3428         <para>
3429           As a method:
3430           <programlisting>
3431             STRING GetNameOwner (in STRING name)
3432           </programlisting>
3433           Message arguments:
3434           <informaltable>
3435             <tgroup cols="3">
3436               <thead>
3437                 <row>
3438                   <entry>Argument</entry>
3439                   <entry>Type</entry>
3440                   <entry>Description</entry>
3441                 </row>
3442               </thead>
3443               <tbody>
3444                 <row>
3445                   <entry>0</entry>
3446                   <entry>STRING</entry>
3447                   <entry>Name to get the owner of</entry>
3448                 </row>
3449               </tbody>
3450             </tgroup>
3451           </informaltable>
3452         Reply arguments:
3453         <informaltable>
3454           <tgroup cols="3">
3455             <thead>
3456               <row>
3457                 <entry>Argument</entry>
3458                 <entry>Type</entry>
3459                 <entry>Description</entry>
3460               </row>
3461             </thead>
3462             <tbody>
3463               <row>
3464                 <entry>0</entry>
3465                 <entry>STRING</entry>
3466                 <entry>Return value, a unique connection name</entry>
3467               </row>
3468             </tbody>
3469           </tgroup>
3470         </informaltable>
3471         Returns the unique connection name of the primary owner of the name
3472         given. If the requested name doesn't have an owner, returns a
3473         <literal>org.freedesktop.DBus.Error.NameHasNoOwner</literal> error.
3474        </para>
3475       </sect3>
3476
3477       <sect3 id="bus-messages-get-connection-unix-user">
3478         <title><literal>org.freedesktop.DBus.GetConnectionUnixUser</literal></title>
3479         <para>
3480           As a method:
3481           <programlisting>
3482             UINT32 GetConnectionUnixUser (in STRING connection_name)
3483           </programlisting>
3484           Message arguments:
3485           <informaltable>
3486             <tgroup cols="3">
3487               <thead>
3488                 <row>
3489                   <entry>Argument</entry>
3490                   <entry>Type</entry>
3491                   <entry>Description</entry>
3492                 </row>
3493               </thead>
3494               <tbody>
3495                 <row>
3496                   <entry>0</entry>
3497                   <entry>STRING</entry>
3498                   <entry>Name of the connection to query</entry>
3499                 </row>
3500               </tbody>
3501             </tgroup>
3502           </informaltable>
3503         Reply arguments:
3504         <informaltable>
3505           <tgroup cols="3">
3506             <thead>
3507               <row>
3508                 <entry>Argument</entry>
3509                 <entry>Type</entry>
3510                 <entry>Description</entry>
3511               </row>
3512             </thead>
3513             <tbody>
3514               <row>
3515                 <entry>0</entry>
3516                 <entry>UINT32</entry>
3517                 <entry>unix user id</entry>
3518               </row>
3519             </tbody>
3520           </tgroup>
3521         </informaltable>
3522         Returns the unix uid of the process connected to the server. If unable to
3523         determine it, a <literal>org.freedesktop.DBus.Error.Failed</literal>
3524         error is returned.
3525        </para>
3526       </sect3>
3527
3528     </sect2>
3529
3530   </sect1>
3531 <!--
3532   <appendix id="implementation-notes">
3533     <title>Implementation notes</title>
3534     <sect1 id="implementation-notes-subsection">
3535       <title></title>
3536       <para>
3537       </para>
3538     </sect1>
3539   </appendix>
3540 -->
3541
3542   <glossary><title>Glossary</title>
3543     <para>
3544       This glossary defines some of the terms used in this specification.
3545     </para>
3546
3547     <glossentry id="term-bus-name"><glossterm>Bus Name</glossterm>
3548       <glossdef>
3549         <para>
3550           The message bus maintains an association between names and
3551           connections. (Normally, there's one connection per application.)  A
3552           bus name is simply an identifier used to locate connections. For
3553           example, the hypothetical <literal>com.yoyodyne.Screensaver</literal>
3554           name might be used to send a message to a screensaver from Yoyodyne
3555           Corporation.  An application is said to <firstterm>own</firstterm> a
3556           name if the message bus has associated the application's connection
3557           with the name.  Names may also have <firstterm>queued
3558           owners</firstterm> (see <xref linkend="term-queued-owner"/>).
3559             The bus assigns a unique name to each connection, 
3560             see <xref linkend="term-unique-name"/>. Other names 
3561               can be thought of as "well-known names" and are 
3562               used to find applications that offer specific functionality.
3563         </para>
3564       </glossdef>
3565     </glossentry>
3566       
3567     <glossentry id="term-message"><glossterm>Message</glossterm>
3568       <glossdef>
3569         <para>
3570           A message is the atomic unit of communication via the D-BUS
3571           protocol. It consists of a <firstterm>header</firstterm> and a
3572           <firstterm>body</firstterm>; the body is made up of
3573           <firstterm>arguments</firstterm>.
3574         </para>
3575       </glossdef>
3576     </glossentry>
3577
3578     <glossentry id="term-message-bus"><glossterm>Message Bus</glossterm>
3579       <glossdef>
3580         <para>
3581           The message bus is a special application that forwards 
3582           or routes messages between a group of applications
3583           connected to the message bus. It also manages 
3584           <firstterm>names</firstterm> used for routing
3585           messages.
3586         </para>
3587       </glossdef>
3588     </glossentry>
3589
3590     <glossentry id="term-name"><glossterm>Name</glossterm>
3591       <glossdef>
3592         <para>
3593           See <xref linkend="term-bus-name"/>. "Name" may 
3594             also be used to refer to some of the other names
3595             in D-BUS, such as interface names.
3596         </para>
3597       </glossdef>
3598     </glossentry>
3599
3600     <glossentry id="namespace"><glossterm>Namespace</glossterm>
3601       <glossdef>
3602         <para>
3603           Used to prevent collisions when defining new interfaces or bus
3604           names. The convention used is the same one Java uses for defining
3605           classes: a reversed domain name.
3606         </para>
3607       </glossdef>
3608     </glossentry>
3609
3610     <glossentry id="term-object"><glossterm>Object</glossterm>
3611       <glossdef>
3612         <para>
3613           Each application contains <firstterm>objects</firstterm>, which have
3614           <firstterm>interfaces</firstterm> and
3615           <firstterm>methods</firstterm>. Objects are referred to by a name,
3616           called a <firstterm>path</firstterm>.
3617         </para>
3618       </glossdef>
3619     </glossentry>
3620
3621     <glossentry id="one-to-one"><glossterm>One-to-One</glossterm>
3622       <glossdef>
3623         <para>
3624           An application talking directly to another application, without going
3625           through a message bus. One-to-one connections may be "peer to peer" or
3626           "client to server." The D-BUS protocol has no concept of client
3627           vs. server after a connection has authenticated; the flow of messages
3628           is symmetrical (full duplex).
3629         </para>
3630       </glossdef>
3631     </glossentry>
3632
3633     <glossentry id="term-path"><glossterm>Path</glossterm>
3634       <glossdef>
3635         <para>
3636           Object references (object names) in D-BUS are organized into a
3637           filesystem-style hierarchy, so each object is named by a path. As in
3638           LDAP, there's no difference between "files" and "directories"; a path
3639           can refer to an object, while still having child objects below it.
3640         </para>
3641       </glossdef>
3642     </glossentry>
3643
3644     <glossentry id="term-queued-owner"><glossterm>Queued Name Owner</glossterm>
3645       <glossdef>
3646         <para>
3647           Each bus name has a primary owner; messages sent to the name go to the
3648           primary owner. However, certain names also maintain a queue of
3649           secondary owners "waiting in the wings." If the primary owner releases
3650           the name, then the first secondary owner in the queue automatically
3651           becomes the new owner of the name.
3652         </para>
3653       </glossdef>
3654     </glossentry>
3655
3656     <glossentry id="term-service"><glossterm>Service</glossterm>
3657       <glossdef>
3658         <para>
3659           A service is an executable that can be launched by the bus daemon.
3660           Services normally guarantee some particular features, for example they
3661           may guarantee that they will request a specific name such as
3662           "org.freedesktop.Screensaver", have a singleton object
3663           "/org/freedesktop/Application", and that object will implement the
3664           interface "org.freedesktop.ScreensaverControl".
3665         </para>
3666       </glossdef>
3667     </glossentry>
3668
3669     <glossentry id="term-service-description-files"><glossterm>Service Description Files</glossterm>
3670       <glossdef>
3671         <para>
3672           ".service files" tell the bus about service applications that can be
3673           launched (see <xref linkend="term-service"/>). Most importantly they
3674           provide a mapping from bus names to services that will request those
3675             names when they start up.
3676         </para>
3677       </glossdef>
3678     </glossentry>
3679
3680     <glossentry id="term-unique-name"><glossterm>Unique Connection Name</glossterm>
3681       <glossdef>
3682         <para>
3683           The special name automatically assigned to each connection by the
3684           message bus. This name will never change owner, and will be unique
3685           (never reused during the lifetime of the message bus).
3686           It will begin with a ':' character.
3687         </para>
3688       </glossdef>
3689     </glossentry>
3690
3691   </glossary>
3692 </article>
3693