2006-09-30 Havoc Pennington <hp@redhat.com>
[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 interprets 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 idiosyncrasy 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                 concatenates 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
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 before 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 two methods:
2294         <programlisting>
2295           org.freedesktop.DBus.Peer.Ping ()
2296           org.freedesktop.DBus.Peer.GetMachineId (out STRING machine_uuid)
2297         </programlisting>
2298       </para>
2299       <para>
2300         On receipt of the <literal>METHOD_CALL</literal> message
2301         <literal>org.freedesktop.DBus.Peer.Ping</literal>, an application should do
2302         nothing other than reply with a <literal>METHOD_RETURN</literal> as
2303         usual.  It does not matter which object path a ping is sent to.  The
2304         reference implementation handles this method automatically.
2305       </para>
2306       <para>
2307         On receipt of the <literal>METHOD_CALL</literal> message
2308         <literal>org.freedesktop.DBus.Peer.GetMachineId</literal>, an application should 
2309         reply with a <literal>METHOD_RETURN</literal> containing a hex-encoded 
2310         UUID representing the identity of the machine the process is running on.
2311         This UUID must be the same for all processes on a single system at least
2312         until that system next reboots. It should be the same across reboots 
2313         if possible, but may change due to reconfiguration or hardware changes.
2314         It does not matter which object path a GetMachineId is sent to.  The
2315         reference implementation handles this method automatically.
2316       </para>
2317       <para>
2318         The UUID must contain 128 bits of data and be hex-encoded (meaning, the hex 
2319         string contains 32 ASCII characters). The hex-encoded string may not contain 
2320         hyphens or other non-hex-digit characters, and it must be exactly 32 characters long.
2321         To generate a UUID, the recommended algorithm is to put the current time in seconds
2322         since the UNIX epoch in the last 32 bits of the UUID, and to put randomly-generated bits
2323         in the first 96 bits of the UUID.
2324       </para>
2325       <para>
2326         The UUID is intended to be per-instance-of-the-operating-system, so may represent
2327         a virtual machine running on a hypervisor, rather than a physical machine.
2328         Basically if two processes see the same UUID, they should also see the same
2329         shared memory, UNIX domain sockets, process IDs, and other features that require 
2330         a running OS kernel in common between the processes.
2331       </para>
2332     </sect2>
2333
2334     <sect2 id="standard-interfaces-introspectable">
2335       <title><literal>org.freedesktop.DBus.Introspectable</literal></title>
2336       <para>
2337         This interface has one method:
2338         <programlisting>
2339           org.freedesktop.DBus.Introspectable.Introspect (out STRING xml_data)
2340         </programlisting>
2341       </para>
2342       <para>
2343         Objects instances may implement
2344         <literal>Introspect</literal> which returns an XML description of
2345         the object, including its interfaces (with signals and methods), objects
2346         below it in the object path tree, and its properties.
2347       </para>
2348       <para>
2349         <xref linkend="introspection-format"/> describes the format of this XML string.
2350       </para>
2351     </sect2>
2352     <sect2 id="standard-interfaces-properties">
2353       <title><literal>org.freedesktop.DBus.Properties</literal></title>
2354       <para>
2355         Many native APIs will have a concept of object <firstterm>properties</firstterm> 
2356         or <firstterm>attributes</firstterm>. These can be exposed via the 
2357         <literal>org.freedesktop.DBus.Properties</literal> interface.
2358       </para>
2359       <para>
2360         <programlisting>
2361               org.freedesktop.DBus.Properties.Get (in STRING interface_name,
2362                                                    in STRING property_name,
2363                                                    out VARIANT value);
2364               org.freedesktop.DBus.Properties.Set (in STRING interface_name,
2365                                                    in STRING property_name,
2366                                                    in VARIANT value);
2367         </programlisting>
2368       </para>
2369       <para>
2370         The available properties and whether they are writable can be determined
2371         by calling <literal>org.freedesktop.DBus.Introspectable.Introspect</literal>,
2372         see <xref linkend="standard-interfaces-introspectable"/>.
2373       </para>
2374       <para>
2375         An empty string may be provided for the interface name; in this case, 
2376         if there are multiple properties on an object with the same name, 
2377         the results are undefined (picking one by according to an arbitrary 
2378         deterministic rule, or returning an error, are the reasonable 
2379         possibilities).
2380       </para>
2381     </sect2>
2382   </sect1>
2383
2384   <sect1 id="introspection-format">
2385     <title>Introspection Data Format</title>
2386     <para>
2387       As described in <xref linkend="standard-interfaces-introspectable"/>, 
2388       objects may be introspected at runtime, returning an XML string 
2389       that describes the object. The same XML format may be used in 
2390       other contexts as well, for example as an "IDL" for generating 
2391       static language bindings.
2392     </para>
2393     <para>
2394       Here is an example of introspection data:
2395       <programlisting>
2396         &lt;!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN"
2397          "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd"&gt;
2398         &lt;node name="/org/freedesktop/sample_object"&gt;
2399           &lt;interface name="org.freedesktop.SampleInterface"&gt;
2400             &lt;method name="Frobate"&gt;
2401               &lt;arg name="foo" type="i" direction="in"/&gt;
2402               &lt;arg name="bar" type="s" direction="out"/&gt;
2403               &lt;arg name="baz" type="a{us}" direction="out"/&gt;
2404               &lt;annotation name="org.freedesktop.DBus.Deprecated" value="true"/&gt;
2405             &lt;/method&gt;
2406             &lt;method name="Bazify"&gt;
2407               &lt;arg name="bar" type="(iiu)" direction="in"/&gt;
2408               &lt;arg name="bar" type="v" direction="out"/&gt;
2409             &lt;/method&gt;
2410             &lt;method name="Mogrify"&gt;
2411               &lt;arg name="bar" type="(iiav)" direction="in"/&gt;
2412             &lt;/method&gt;
2413             &lt;signal name="Changed"&gt;
2414               &lt;arg name="new_value" type="b"/&gt;
2415             &lt;/signal&gt;
2416             &lt;property name="Bar" type="y" access="readwrite"/&gt;
2417           &lt;/interface&gt;
2418           &lt;node name="child_of_sample_object"/&gt;
2419           &lt;node name="another_child_of_sample_object"/&gt;
2420        &lt;/node&gt;
2421       </programlisting>
2422     </para>
2423     <para>
2424       A more formal DTD and spec needs writing, but here are some quick notes.
2425       <itemizedlist>
2426         <listitem>
2427           <para>
2428             Only the root &lt;node&gt; element can omit the node name, as it's
2429             known to be the object that was introspected.  If the root
2430             &lt;node&gt; does have a name attribute, it must be an absolute
2431             object path. If child &lt;node&gt; have object paths, they must be
2432             relative.
2433           </para>
2434         </listitem>
2435         <listitem>
2436           <para>
2437             If a child &lt;node&gt; has any sub-elements, then they 
2438             must represent a complete introspection of the child.
2439             If a child &lt;node&gt; is empty, then it may or may 
2440             not have sub-elements; the child must be introspected
2441             in order to find out. The intent is that if an object 
2442             knows that its children are "fast" to introspect
2443             it can go ahead and return their information, but 
2444             otherwise it can omit it.
2445           </para>
2446         </listitem>
2447         <listitem>
2448           <para>
2449             The direction element on &lt;arg&gt; may be omitted, 
2450             in which case it defaults to "in" for method calls 
2451             and "out" for signals. Signals only allow "out" 
2452             so while direction may be specified, it's pointless.
2453           </para>
2454         </listitem>
2455         <listitem>
2456           <para>
2457             The possible directions are "in" and "out", 
2458             unlike CORBA there is no "inout"
2459           </para>
2460         </listitem>
2461         <listitem>
2462           <para>
2463             The possible property access flags are 
2464             "readwrite", "read", and "write"
2465           </para>
2466         </listitem>
2467         <listitem>
2468           <para>
2469             Multiple interfaces can of course be listed for 
2470             one &lt;node&gt;.
2471           </para>
2472         </listitem>
2473         <listitem>
2474           <para>
2475             The "name" attribute on arguments is optional.
2476           </para>
2477         </listitem>
2478       </itemizedlist>
2479     </para>
2480     <para>
2481         Method, interface, property, and signal elements may have
2482         "annotations", which are generic key/value pairs of metadata.
2483         They are similar conceptually to Java's annotations and C# attributes.
2484         Well-known annotations:
2485      </para>
2486      <informaltable>
2487        <tgroup cols="3">
2488          <thead>
2489            <row>
2490              <entry>Name</entry>
2491              <entry>Values (separated by ,)</entry>
2492              <entry>Description</entry>
2493            </row>
2494          </thead>
2495          <tbody>
2496            <row>
2497              <entry>org.freedesktop.DBus.Deprecated</entry>
2498              <entry>true,false</entry>
2499              <entry>Whether or not the entity is deprecated; defaults to false</entry>
2500            </row>
2501            <row>
2502              <entry>org.freedesktop.DBus.GLib.CSymbol</entry>
2503              <entry>(string)</entry>
2504              <entry>The C symbol; may be used for methods and interfaces</entry>
2505            </row>
2506            <row>
2507              <entry>org.freedesktop.DBus.Method.NoReply</entry>
2508              <entry>true,false</entry>
2509              <entry>If set, don't expect a reply to the method call; defaults to false.</entry>
2510            </row>
2511          </tbody>
2512        </tgroup>
2513      </informaltable>
2514   </sect1>
2515   <sect1 id="message-bus">
2516     <title>Message Bus Specification</title>
2517     <sect2 id="message-bus-overview">
2518       <title>Message Bus Overview</title>
2519       <para>
2520         The message bus accepts connections from one or more applications. 
2521         Once connected, applications can exchange messages with other 
2522         applications that are also connected to the bus.
2523       </para>
2524       <para>
2525         In order to route messages among connections, the message bus keeps a
2526         mapping from names to connections. Each connection has one
2527         unique-for-the-lifetime-of-the-bus name automatically assigned.
2528         Applications may request additional names for a connection. Additional
2529         names are usually "well-known names" such as
2530         "org.freedesktop.TextEditor". When a name is bound to a connection,
2531         that connection is said to <firstterm>own</firstterm> the name.
2532       </para>
2533       <para>
2534         The bus itself owns a special name, <literal>org.freedesktop.DBus</literal>. 
2535         This name routes messages to the bus, allowing applications to make 
2536         administrative requests. For example, applications can ask the bus 
2537         to assign a name to a connection.
2538       </para>
2539       <para>
2540         Each name may have <firstterm>queued owners</firstterm>.  When an
2541         application requests a name for a connection and the name is already in
2542         use, the bus will optionally add the connection to a queue waiting for 
2543         the name. If the current owner of the name disconnects or releases
2544         the name, the next connection in the queue will become the new owner.
2545       </para>
2546
2547       <para>
2548         This feature causes the right thing to happen if you start two text
2549         editors for example; the first one may request "org.freedesktop.TextEditor", 
2550         and the second will be queued as a possible owner of that name. When 
2551         the first exits, the second will take over.
2552       </para>
2553
2554       <para>
2555         Messages may have a <literal>DESTINATION</literal> field (see <xref
2556         linkend="message-protocol-header-fields"/>).  If the
2557         <literal>DESTINATION</literal> field is present, it specifies a message
2558         recipient by name. Method calls and replies normally specify this field.
2559       </para>
2560
2561       <para>
2562         Signals normally do not specify a destination; they are sent to all
2563         applications with <firstterm>message matching rules</firstterm> that
2564         match the message.
2565       </para>
2566
2567       <para>
2568         When the message bus receives a method call, if the
2569         <literal>DESTINATION</literal> field is absent, the call is taken to be
2570         a standard one-to-one message and interpreted by the message bus
2571         itself. For example, sending an
2572         <literal>org.freedesktop.DBus.Peer.Ping</literal> message with no
2573         <literal>DESTINATION</literal> will cause the message bus itself to
2574         reply to the ping immediately; the message bus will not make this
2575         message visible to other applications.
2576       </para>
2577
2578       <para>
2579         Continuing the <literal>org.freedesktop.DBus.Peer.Ping</literal> example, if
2580         the ping message were sent with a <literal>DESTINATION</literal> name of
2581         <literal>com.yoyodyne.Screensaver</literal>, then the ping would be
2582         forwarded, and the Yoyodyne Corporation screensaver application would be
2583         expected to reply to the ping.
2584       </para>
2585     </sect2>
2586
2587     <sect2 id="message-bus-names">
2588       <title>Message Bus Names</title>
2589       <para>
2590         Each connection has at least one name, assigned at connection time and
2591         returned in response to the
2592         <literal>org.freedesktop.DBus.Hello</literal> method call.  This
2593         automatically-assigned name is called the connection's <firstterm>unique
2594         name</firstterm>.  Unique names are never reused for two different
2595         connections to the same bus.
2596       </para>
2597       <para>
2598         Ownership of a unique name is a prerequisite for interaction with 
2599         the message bus. It logically follows that the unique name is always 
2600         the first name that an application comes to own, and the last 
2601         one that it loses ownership of.
2602       </para>
2603       <para>
2604         Unique connection names must begin with the character ':' (ASCII colon
2605         character); bus names that are not unique names must not begin
2606         with this character. (The bus must reject any attempt by an application
2607         to manually request a name beginning with ':'.) This restriction
2608         categorically prevents "spoofing"; messages sent to a unique name
2609         will always go to the expected connection.
2610       </para>
2611       <para>
2612         When a connection is closed, all the names that it owns are deleted (or
2613         transferred to the next connection in the queue if any).
2614       </para>
2615       <para>
2616         A connection can request additional names to be associated with it using
2617         the <literal>org.freedesktop.DBus.RequestName</literal> message. <xref
2618         linkend="message-protocol-names-bus"/> describes the format of a valid
2619         name. These names can be released again using the
2620         <literal>org.freedesktop.DBus.ReleaseName</literal> message.
2621       </para>
2622
2623       <sect3 id="bus-messages-request-name">
2624         <title><literal>org.freedesktop.DBus.RequestName</literal></title>
2625         <para>
2626           As a method:
2627           <programlisting>
2628             UINT32 RequestName (in STRING name, in UINT32 flags)
2629           </programlisting>
2630           Message arguments:
2631           <informaltable>
2632             <tgroup cols="3">
2633               <thead>
2634                 <row>
2635                   <entry>Argument</entry>
2636                   <entry>Type</entry>
2637                   <entry>Description</entry>
2638                 </row>
2639               </thead>
2640               <tbody>
2641                 <row>
2642                   <entry>0</entry>
2643                   <entry>STRING</entry>
2644                   <entry>Name to request</entry>
2645                 </row>
2646                 <row>
2647                   <entry>1</entry>
2648                   <entry>UINT32</entry>
2649                   <entry>Flags</entry>
2650                 </row>
2651               </tbody>
2652             </tgroup>
2653           </informaltable>
2654           Reply arguments:
2655           <informaltable>
2656             <tgroup cols="3">
2657               <thead>
2658                 <row>
2659                   <entry>Argument</entry>
2660                   <entry>Type</entry>
2661                   <entry>Description</entry>
2662                 </row>
2663               </thead>
2664               <tbody>
2665                 <row>
2666                   <entry>0</entry>
2667                   <entry>UINT32</entry>
2668                   <entry>Return value</entry>
2669                 </row>
2670               </tbody>
2671             </tgroup>
2672           </informaltable>
2673         </para>
2674         <para>
2675           This method call should be sent to
2676           <literal>org.freedesktop.DBus</literal> and asks the message bus to
2677           assign the given name to the method caller. Each name maintains a
2678           queue of possible owners, where the head of the queue is the primary
2679           or current owner of the name. Each potential owner in the queue
2680           maintains the DBUS_NAME_FLAG_ALLOW_REPLACEMENT and
2681           DBUS_NAME_FLAG_DO_NOT_QUEUE settings from its latest RequestName
2682           call.  When RequestName is invoked the following occurs:
2683           <itemizedlist>
2684             <listitem>
2685               <para>
2686                 If the method caller is currently the primary owner of the name,
2687                 the DBUS_NAME_FLAG_ALLOW_REPLACEMENT and DBUS_NAME_FLAG_DO_NOT_QUEUE
2688                 values are updated with the values from the new RequestName call, 
2689                 and nothing further happens.
2690               </para>
2691             </listitem>
2692
2693             <listitem>
2694               <para>
2695                 If the current primary owner (head of the queue) has
2696                 DBUS_NAME_FLAG_ALLOW_REPLACEMENT set, and the RequestName
2697                 invocation has the DBUS_NAME_FLAG_REPLACE_EXISTING flag, then
2698                 the caller of RequestName replaces the current primary owner at
2699                 the head of the queue and the current primary owner moves to the
2700                 second position in the queue. If the caller of RequestName was 
2701                 in the queue previously its flags are updated with the values from 
2702                 the new RequestName in addition to moving it to the head of the queue.
2703               </para>
2704             </listitem>
2705
2706             <listitem>
2707               <para>
2708                 If replacement is not possible, and the method caller is
2709                 currently in the queue but not the primary owner, its flags are
2710                 updated with the values from the new RequestName call.
2711               </para>
2712             </listitem>
2713
2714             <listitem>
2715               <para>
2716                 If replacement is not possible, and the method caller is
2717                 currently not in the queue, the method caller is appended to the
2718                 queue.
2719               </para>
2720             </listitem>
2721
2722             <listitem>
2723               <para>
2724                 If any connection in the queue has DBUS_NAME_FLAG_DO_NOT_QUEUE
2725                 set and is not the primary owner, it is removed from the
2726                 queue. This can apply to the previous primary owner (if it
2727                 was replaced) or the method caller (if it updated the
2728                 DBUS_NAME_FLAG_DO_NOT_QUEUE flag while still stuck in the
2729                 queue, or if it was just added to the queue with that flag set).
2730               </para>
2731             </listitem>
2732           </itemizedlist>
2733         </para>
2734         <para>
2735           Note that DBUS_NAME_FLAG_REPLACE_EXISTING results in "jumping the
2736           queue," even if another application already in the queue had specified
2737           DBUS_NAME_FLAG_REPLACE_EXISTING.  This comes up if a primary owner
2738           that does not allow replacement goes away, and the next primary owner
2739           does allow replacement. In this case, queued items that specified
2740           DBUS_NAME_FLAG_REPLACE_EXISTING <emphasis>do not</emphasis>
2741           automatically replace the new primary owner. In other words,
2742           DBUS_NAME_FLAG_REPLACE_EXISTING is not saved, it is only used at the
2743           time RequestName is called. This is deliberate to avoid an infinite loop
2744           anytime two applications are both DBUS_NAME_FLAG_ALLOW_REPLACEMENT 
2745           and DBUS_NAME_FLAG_REPLACE_EXISTING.
2746         </para>
2747         <para>
2748           The flags argument contains any of the following values logically ORed
2749           together:
2750
2751           <informaltable>
2752             <tgroup cols="3">
2753               <thead>
2754                 <row>
2755                   <entry>Conventional Name</entry>
2756                   <entry>Value</entry>
2757                   <entry>Description</entry>
2758                 </row>
2759               </thead>
2760               <tbody>
2761                 <row>
2762                   <entry>DBUS_NAME_FLAG_ALLOW_REPLACEMENT</entry>
2763                   <entry>0x1</entry>
2764                   <entry>
2765
2766                     If an application A specifies this flag and succeeds in
2767                     becoming the owner of the name, and another application B
2768                     later calls RequestName with the
2769                     DBUS_NAME_FLAG_REPLACE_EXISTING flag, then application A
2770                     will lose ownership and receive a
2771                     <literal>org.freedesktop.DBus.NameLost</literal> signal, and
2772                     application B will become the new owner. If DBUS_NAME_FLAG_ALLOW_REPLACEMENT
2773                     is not specified by application A, or DBUS_NAME_FLAG_REPLACE_EXISTING
2774                     is not specified by application B, then application B will not replace
2775                     application A as the owner.
2776
2777                   </entry>
2778                 </row>
2779                 <row>
2780                   <entry>DBUS_NAME_FLAG_REPLACE_EXISTING</entry>
2781                   <entry>0x2</entry>
2782                   <entry>
2783
2784                     Try to replace the current owner if there is one. If this
2785                     flag is not set the application will only become the owner of
2786                     the name if there is no current owner. If this flag is set,
2787                     the application will replace the current owner if
2788                     the current owner specified DBUS_NAME_FLAG_ALLOW_REPLACEMENT.
2789
2790                   </entry>
2791                 </row>
2792                 <row>
2793                   <entry>DBUS_NAME_FLAG_DO_NOT_QUEUE</entry>
2794                   <entry>0x4</entry>
2795                   <entry>
2796
2797                     Without this flag, if an application requests a name that is
2798                     already owned, the application will be placed in a queue to
2799                     own the name when the current owner gives it up. If this
2800                     flag is given, the application will not be placed in the
2801                     queue, the request for the name will simply fail.  This flag
2802                     also affects behavior when an application is replaced as
2803                     name owner; by default the application moves back into the
2804                     waiting queue, unless this flag was provided when the application
2805                     became the name owner.
2806
2807                   </entry>
2808                 </row>
2809               </tbody>
2810             </tgroup>
2811           </informaltable>
2812
2813           The return code can be one of the following values:
2814
2815           <informaltable>
2816             <tgroup cols="3">
2817               <thead>
2818                 <row>
2819                   <entry>Conventional Name</entry>
2820                   <entry>Value</entry>
2821                   <entry>Description</entry>
2822                 </row>
2823               </thead>
2824               <tbody>
2825                 <row>
2826                   <entry>DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER</entry>
2827                   <entry>1</entry> <entry>The caller is now the primary owner of
2828                   the name, replacing any previous owner. Either the name had no
2829                   owner before, or the caller specified
2830                   DBUS_NAME_FLAG_REPLACE_EXISTING and the current owner specified
2831                   DBUS_NAME_FLAG_ALLOW_REPLACEMENT.</entry>
2832                 </row>
2833                 <row>
2834                   <entry>DBUS_REQUEST_NAME_REPLY_IN_QUEUE</entry>
2835                   <entry>2</entry>
2836
2837                   <entry>The name already had an owner,
2838                     DBUS_NAME_FLAG_DO_NOT_QUEUE was not specified, and either
2839                     the current owner did not specify
2840                     DBUS_NAME_FLAG_ALLOW_REPLACEMENT or the requesting
2841                     application did not specify DBUS_NAME_FLAG_REPLACE_EXISTING.
2842                     </entry>
2843                 </row>
2844                 <row>
2845                   <entry>DBUS_REQUEST_NAME_REPLY_EXISTS</entry> <entry>3</entry>
2846                   <entry>The name already has an owner,
2847                   DBUS_NAME_FLAG_DO_NOT_QUEUE was specified, and either
2848                   DBUS_NAME_FLAG_ALLOW_REPLACEMENT was not specified by the
2849                   current owner, or DBUS_NAME_FLAG_REPLACE_EXISTING was not
2850                   specified by the requesting application.</entry>
2851                 </row>
2852                 <row>
2853                   <entry>DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER</entry>
2854                   <entry>4</entry>
2855                   <entry>The application trying to request ownership of a name is already the owner of it.</entry>
2856                 </row>
2857               </tbody>
2858             </tgroup>
2859           </informaltable>
2860         </para>
2861        </sect3>
2862
2863        <sect3 id="bus-messages-release-name">
2864         <title><literal>org.freedesktop.DBus.ReleaseName</literal></title>
2865         <para>
2866           As a method:
2867           <programlisting>
2868             UINT32 ReleaseName (in STRING name)
2869           </programlisting>
2870           Message arguments:
2871           <informaltable>
2872             <tgroup cols="3">
2873               <thead>
2874                 <row>
2875                   <entry>Argument</entry>
2876                   <entry>Type</entry>
2877                   <entry>Description</entry>
2878                 </row>
2879               </thead>
2880               <tbody>
2881                 <row>
2882                   <entry>0</entry>
2883                   <entry>STRING</entry>
2884                   <entry>Name to release</entry>
2885                 </row>
2886               </tbody>
2887             </tgroup>
2888           </informaltable>
2889           Reply arguments:
2890           <informaltable>
2891             <tgroup cols="3">
2892               <thead>
2893                 <row>
2894                   <entry>Argument</entry>
2895                   <entry>Type</entry>
2896                   <entry>Description</entry>
2897                 </row>
2898               </thead>
2899               <tbody>
2900                 <row>
2901                   <entry>0</entry>
2902                   <entry>UINT32</entry>
2903                   <entry>Return value</entry>
2904                 </row>
2905               </tbody>
2906             </tgroup>
2907           </informaltable>
2908         </para>
2909         <para>
2910           This method call should be sent to
2911           <literal>org.freedesktop.DBus</literal> and asks the message bus to
2912           release the method caller's claim to the given name. If the caller is
2913           the primary owner, a new primary owner will be selected from the
2914           queue if any other owners are waiting. If the caller is waiting in
2915           the queue for the name, the caller will removed from the queue and
2916           will not be made an owner of the name if it later becomes available.
2917           If there are no other owners in the queue for the name, it will be
2918           removed from the bus entirely.
2919
2920           The return code can be one of the following values:
2921
2922           <informaltable>
2923             <tgroup cols="3">
2924               <thead>
2925                 <row>
2926                   <entry>Conventional Name</entry>
2927                   <entry>Value</entry>
2928                   <entry>Description</entry>
2929                 </row>
2930               </thead>
2931               <tbody>
2932                 <row>
2933                   <entry>DBUS_RELEASE_NAME_REPLY_RELEASED</entry>
2934                   <entry>1</entry> <entry>The caller has released his claim on
2935                   the given name. Either the caller was the primary owner of
2936                   the name, and the name is now unused or taken by somebody
2937                   waiting in the queue for the name, or the caller was waiting
2938                   in the queue for the name and has now been removed from the
2939                   queue.</entry>
2940                 </row>
2941                 <row>
2942                   <entry>DBUS_RELEASE_NAME_REPLY_NON_EXISTENT</entry>
2943                   <entry>2</entry>
2944                   <entry>The given name does not exist on this bus.</entry>
2945                 </row>
2946                 <row>
2947                   <entry>DBUS_RELEASE_NAME_REPLY_NOT_OWNER</entry>
2948                   <entry>3</entry>
2949                   <entry>The caller was not the primary owner of this name,
2950                   and was also not waiting in the queue to own this name.</entry>
2951                 </row>
2952               </tbody>
2953             </tgroup>
2954           </informaltable>
2955         </para>
2956       </sect3>
2957     </sect2>
2958
2959     <sect2 id="message-bus-routing">
2960       <title>Message Bus Message Routing</title>
2961       <para>
2962         FIXME 
2963       </para>
2964       <sect3 id="message-bus-routing-match-rules">
2965         <title>Match Rules</title>
2966         <para>
2967           An important part of the message bus routing protocol is match  
2968           rules. Match rules describe what messages can be sent to a client
2969           based on the contents of the message.  When a message is routed
2970           through the bus it is compared to clients' match rules.  If any
2971           of the rules match, the message is dispatched to the client.
2972           If none of the rules match the message never leaves the bus.  This
2973           is an effective way to control traffic over the bus and to make sure
2974           only relevant message need to be processed by the client.
2975         </para>
2976         <para>
2977           Match rules are added using the AddMatch bus method 
2978           (see xref linkend="bus-messages-add-match"/>).  Rules are 
2979           specified as a string of comma separated key/value pairs. 
2980           Excluding a key from the rule indicates a wildcard match.  
2981           For instance excluding the the member from a match rule but 
2982           adding a sender would let all messages from that sender through.
2983           An example of a complete rule would be 
2984           "type='signal',sender='org.freedesktop.DBus',interface='org.freedesktop.DBus',member='Foo',path='/bar/foo',destination=':452345.34',arg2='bar'"
2985         </para>
2986         <para>
2987           The following table describes the keys that can be used to create 
2988           a match rule:
2989           The following table summarizes the D-Bus types.
2990           <informaltable>
2991             <tgroup cols="3">
2992               <thead>
2993                 <row>
2994                   <entry>Key</entry>
2995                   <entry>Possible Values</entry>
2996                   <entry>Description</entry>
2997                 </row>
2998               </thead>
2999               <tbody>
3000                 <row>
3001                   <entry><literal>type</literal></entry>
3002                   <entry>'signal', 'method_call', 'method_return', 'error'</entry>
3003                   <entry>Match on the message type.  An example of a type match is type='signal'</entry>
3004                 </row>
3005                 <row>
3006                   <entry><literal>sender</literal></entry>
3007                   <entry>A bus or unique name (see <xref linkend="term-bus-name"/>
3008                   and <xref linkend="term-unique-name"/> respectively)
3009                   </entry>
3010                   <entry>Match messages sent by a particular sender.  An example of a sender match
3011                   is sender='org.freedesktop.Hal'</entry>
3012                 </row>
3013                 <row>
3014                   <entry><literal>interface</literal></entry>
3015                   <entry>An interface name (see <xref linkend="message-protocol-names-interface"/>)</entry>
3016                   <entry>Match messages sent over or to a particular interface.  An example of an
3017                   interface match is interface='org.freedesktop.Hal.Manager'</entry>
3018                 </row>
3019                 <row>
3020                   <entry><literal>member</literal></entry>
3021                   <entry>Any valid method or signal name</entry>
3022                   <entry>Matches messages which have the give method or signal name. An example of
3023                   a member match is member='NameOwnerChanged'</entry>
3024                 </row>
3025                 <row>
3026                   <entry><literal>path</literal></entry>
3027                   <entry>An object path (see <xref linkend="message-protocol-marshaling-object-path"/>)</entry>
3028                   <entry>Matches messages which are sent from or to the given object. An example of a
3029                   path match is path='/org/freedesktop/Hal/Manager'</entry>
3030                 </row>
3031                 <row>
3032                   <entry><literal>destination</literal></entry>
3033                   <entry>A unique name (see <xref linkend="term-unique-name"/>)</entry>
3034                   <entry>Matches messages which are being sent to the given unique name. An
3035                   example of a destination match is destination=':1.0'</entry>
3036                 </row>
3037                 <row>
3038                   <entry><literal>arg[1, 2, 3, ...]</literal></entry>
3039                   <entry>Any string</entry>
3040                   <entry>Arg matches are special and are used for further restricting the 
3041                   match based on the arguments in the body of a message.  As of this time
3042                   only string arguments can be matched.  An example of an argument match 
3043                   would be arg3='Foo'.</entry>
3044                 </row>
3045               </tbody>
3046             </tgroup>
3047           </informaltable>
3048         </para>
3049       </sect3>
3050     </sect2>
3051     <sect2 id="message-bus-starting-services">
3052       <title>Message Bus Starting Services</title>
3053       <para>
3054         The message bus can start applications on behalf of other applications.
3055         In CORBA terms, this would be called <firstterm>activation</firstterm>.
3056         An application that can be started in this way is called a
3057         <firstterm>service</firstterm>.
3058       </para>
3059       <para>
3060         With D-Bus, starting a service is normally done by name. That is,
3061         applications ask the message bus to start some program that will own a
3062         well-known name, such as <literal>org.freedesktop.TextEditor</literal>.
3063         This implies a contract documented along with the name 
3064         <literal>org.freedesktop.TextEditor</literal> for which objects 
3065         the owner of that name will provide, and what interfaces those 
3066         objects will have.
3067       </para>
3068       <para>
3069         To find an executable corresponding to a particular name, the bus daemon
3070         looks for <firstterm>service description files</firstterm>.  Service
3071         description files define a mapping from names to executables. Different
3072         kinds of message bus will look for these files in different places, see
3073         <xref linkend="message-bus-types"/>.
3074       </para>
3075       <para>
3076         [FIXME the file format should be much better specified than "similar to
3077         .desktop entries" esp. since desktop entries are already
3078         badly-specified. ;-)] Service description files have the ".service" file
3079         extension. The message bus will only load service description files
3080         ending with .service; all other files will be ignored.  The file format
3081         is similar to that of <ulink
3082         url="http://www.freedesktop.org/standards/desktop-entry-spec/desktop-entry-spec.html">desktop
3083         entries</ulink>. All service description files must be in UTF-8
3084         encoding. To ensure that there will be no name collisions, service files
3085         must be namespaced using the same mechanism as messages and service
3086         names.
3087
3088         <figure>
3089           <title>Example service description file</title>
3090           <programlisting>
3091             # Sample service description file
3092             [D-BUS Service]
3093             Names=org.freedesktop.ConfigurationDatabase;org.gnome.GConf;
3094             Exec=/usr/libexec/gconfd-2
3095           </programlisting>
3096         </figure>
3097       </para>
3098       <para>
3099         When an application asks to start a service by name, the bus daemon tries to
3100         find a service that will own that name. It then tries to spawn the
3101         executable associated with it. If this fails, it will report an
3102         error. [FIXME what happens if two .service files offer the same service;
3103         what kind of error is reported, should we have a way for the client to
3104         choose one?]
3105       </para>
3106       <para>
3107         The executable launched will have the environment variable
3108         <literal>DBUS_STARTER_ADDRESS</literal> set to the address of the
3109         message bus so it can connect and request the appropriate names.
3110       </para>
3111       <para>
3112         The executable being launched may want to know whether the message bus
3113         starting it is one of the well-known message buses (see <xref
3114         linkend="message-bus-types"/>). To facilitate this, the bus must also set
3115         the <literal>DBUS_STARTER_BUS_TYPE</literal> environment variable if it is one
3116         of the well-known buses. The currently-defined values for this variable
3117         are <literal>system</literal> for the systemwide message bus,
3118         and <literal>session</literal> for the per-login-session message
3119         bus. The new executable must still connect to the address given
3120         in <literal>DBUS_STARTER_ADDRESS</literal>, but may assume that the
3121         resulting connection is to the well-known bus.
3122       </para>
3123       <para>
3124         [FIXME there should be a timeout somewhere, either specified
3125         in the .service file, by the client, or just a global value
3126         and if the client being activated fails to connect within that
3127         timeout, an error should be sent back.]
3128       </para>
3129
3130       <sect3 id="message-bus-starting-services-scope">
3131         <title>Message Bus Service Scope</title>
3132         <para>
3133           The "scope" of a service is its "per-", such as per-session,
3134           per-machine, per-home-directory, or per-display. The reference
3135           implementation doesn't yet support starting services in a different
3136           scope from the message bus itself. So e.g. if you start a service
3137           on the session bus its scope is per-session.
3138         </para>
3139         <para>
3140           We could add an optional scope to a bus name. For example, for
3141           per-(display,session pair), we could have a unique ID for each display
3142           generated automatically at login and set on screen 0 by executing a
3143           special "set display ID" binary. The ID would be stored in a
3144           <literal>_DBUS_DISPLAY_ID</literal> property and would be a string of
3145           random bytes. This ID would then be used to scope names.
3146           Starting/locating a service could be done by ID-name pair rather than
3147           only by name.
3148         </para>
3149         <para>
3150           Contrast this with a per-display scope. To achieve that, we would 
3151           want a single bus spanning all sessions using a given display.
3152           So we might set a <literal>_DBUS_DISPLAY_BUS_ADDRESS</literal> 
3153           property on screen 0 of the display, pointing to this bus.
3154         </para>
3155       </sect3>
3156     </sect2>
3157
3158     <sect2 id="message-bus-types">
3159       <title>Well-known Message Bus Instances</title>
3160       <para>
3161         Two standard message bus instances are defined here, along with how 
3162         to locate them and where their service files live.
3163       </para>
3164       <sect3 id="message-bus-types-login">
3165         <title>Login session message bus</title>
3166         <para>
3167           Each time a user logs in, a <firstterm>login session message
3168             bus</firstterm> may be started. All applications in the user's login
3169           session may interact with one another using this message bus.
3170         </para>
3171         <para>
3172           The address of the login session message bus is given 
3173           in the <literal>DBUS_SESSION_BUS_ADDRESS</literal> environment 
3174           variable. If that variable is not set, applications may 
3175           also try to read the address from the X Window System root 
3176           window property <literal>_DBUS_SESSION_BUS_ADDRESS</literal>.
3177           The root window property must have type <literal>STRING</literal>.
3178           The environment variable should have precedence over the 
3179           root window property.
3180         </para>
3181         <para>
3182           [FIXME specify location of .service files, probably using 
3183           DESKTOP_DIRS etc. from basedir specification, though login session 
3184           bus is not really desktop-specific]
3185         </para>
3186       </sect3>
3187       <sect3 id="message-bus-types-system">
3188         <title>System message bus</title>
3189         <para>
3190           A computer may have a <firstterm>system message bus</firstterm>,
3191           accessible to all applications on the system. This message bus may be
3192           used to broadcast system events, such as adding new hardware devices, 
3193           changes in the printer queue, and so forth.
3194         </para>
3195         <para>
3196           The address of the system message bus is given 
3197           in the <literal>DBUS_SYSTEM_BUS_ADDRESS</literal> environment 
3198           variable. If that variable is not set, applications should try 
3199           to connect to the well-known address
3200           <literal>unix:path=/var/run/dbus/system_bus_socket</literal>.
3201           <footnote>
3202             <para>
3203               The D-Bus reference implementation actually honors the 
3204               <literal>$(localstatedir)</literal> configure option 
3205               for this address, on both client and server side.
3206             </para>
3207           </footnote>
3208         </para>
3209         <para>
3210           [FIXME specify location of system bus .service files]
3211         </para>
3212       </sect3>
3213     </sect2>
3214
3215     <sect2 id="message-bus-messages">
3216       <title>Message Bus Messages</title>
3217       <para>
3218         The special message bus name <literal>org.freedesktop.DBus</literal>
3219         responds to a number of additional messages.
3220       </para>
3221
3222       <sect3 id="bus-messages-hello">
3223         <title><literal>org.freedesktop.DBus.Hello</literal></title>
3224         <para>
3225           As a method:
3226           <programlisting>
3227             STRING Hello ()
3228           </programlisting>
3229           Reply arguments:
3230           <informaltable>
3231             <tgroup cols="3">
3232               <thead>
3233                 <row>
3234                   <entry>Argument</entry>
3235                   <entry>Type</entry>
3236                   <entry>Description</entry>
3237                 </row>
3238               </thead>
3239               <tbody>
3240                 <row>
3241                   <entry>0</entry>
3242                   <entry>STRING</entry>
3243                   <entry>Unique name assigned to the connection</entry>
3244                 </row>
3245               </tbody>
3246             </tgroup>
3247           </informaltable>
3248         </para>
3249         <para>
3250           Before an application is able to send messages to other applications
3251           it must send the <literal>org.freedesktop.DBus.Hello</literal> message
3252           to the message bus to obtain a unique name. If an application without
3253           a unique name tries to send a message to another application, or a
3254           message to the message bus itself that isn't the
3255           <literal>org.freedesktop.DBus.Hello</literal> message, it will be
3256           disconnected from the bus.
3257         </para>
3258         <para>
3259           There is no corresponding "disconnect" request; if a client wishes to
3260           disconnect from the bus, it simply closes the socket (or other 
3261           communication channel).
3262         </para>
3263       </sect3>
3264       <sect3 id="bus-messages-list-names">
3265         <title><literal>org.freedesktop.DBus.ListNames</literal></title>
3266         <para>
3267           As a method:
3268           <programlisting>
3269             ARRAY of STRING ListNames ()
3270           </programlisting>
3271           Reply arguments:
3272           <informaltable>
3273             <tgroup cols="3">
3274               <thead>
3275                 <row>
3276                   <entry>Argument</entry>
3277                   <entry>Type</entry>
3278                   <entry>Description</entry>
3279                 </row>
3280               </thead>
3281               <tbody>
3282                 <row>
3283                   <entry>0</entry>
3284                   <entry>ARRAY of STRING</entry>
3285                   <entry>Array of strings where each string is a bus name</entry>
3286                 </row>
3287               </tbody>
3288             </tgroup>
3289           </informaltable>
3290         </para>
3291         <para>
3292           Returns a list of all currently-owned names on the bus.
3293         </para>
3294       </sect3>
3295       <sect3 id="bus-messages-list-activatable-names">
3296         <title><literal>org.freedesktop.DBus.ListActivatableNames</literal></title>
3297         <para>
3298           As a method:
3299           <programlisting>
3300             ARRAY of STRING ListActivatableNames ()
3301           </programlisting>
3302           Reply arguments:
3303           <informaltable>
3304             <tgroup cols="3">
3305               <thead>
3306                 <row>
3307                   <entry>Argument</entry>
3308                   <entry>Type</entry>
3309                   <entry>Description</entry>
3310                 </row>
3311               </thead>
3312               <tbody>
3313                 <row>
3314                   <entry>0</entry>
3315                   <entry>ARRAY of STRING</entry>
3316                   <entry>Array of strings where each string is a bus name</entry>
3317                 </row>
3318               </tbody>
3319             </tgroup>
3320           </informaltable>
3321         </para>
3322         <para>
3323           Returns a list of all names that can be activated on the bus.
3324         </para>
3325       </sect3>
3326       <sect3 id="bus-messages-name-exists">
3327         <title><literal>org.freedesktop.DBus.NameHasOwner</literal></title>
3328         <para>
3329           As a method:
3330           <programlisting>
3331             BOOLEAN NameHasOwner (in STRING name)
3332           </programlisting>
3333           Message arguments:
3334           <informaltable>
3335             <tgroup cols="3">
3336               <thead>
3337                 <row>
3338                   <entry>Argument</entry>
3339                   <entry>Type</entry>
3340                   <entry>Description</entry>
3341                 </row>
3342               </thead>
3343               <tbody>
3344                 <row>
3345                   <entry>0</entry>
3346                   <entry>STRING</entry>
3347                   <entry>Name to check</entry>
3348                 </row>
3349               </tbody>
3350             </tgroup>
3351           </informaltable>
3352           Reply arguments:
3353           <informaltable>
3354             <tgroup cols="3">
3355               <thead>
3356                 <row>
3357                   <entry>Argument</entry>
3358                   <entry>Type</entry>
3359                   <entry>Description</entry>
3360                 </row>
3361               </thead>
3362               <tbody>
3363                 <row>
3364                   <entry>0</entry>
3365                   <entry>BOOLEAN</entry>
3366                   <entry>Return value, true if the name exists</entry>
3367                 </row>
3368               </tbody>
3369             </tgroup>
3370           </informaltable>
3371         </para>
3372         <para>
3373           Checks if the specified name exists (currently has an owner).
3374         </para>
3375       </sect3>
3376
3377       <sect3 id="bus-messages-name-owner-changed">
3378         <title><literal>org.freedesktop.DBus.NameOwnerChanged</literal></title>
3379         <para>
3380           This is a signal:
3381           <programlisting>
3382             NameOwnerChanged (STRING name, STRING old_owner, STRING new_owner)
3383           </programlisting>
3384           Message arguments:
3385           <informaltable>
3386             <tgroup cols="3">
3387               <thead>
3388                 <row>
3389                   <entry>Argument</entry>
3390                   <entry>Type</entry>
3391                   <entry>Description</entry>
3392                 </row>
3393               </thead>
3394               <tbody>
3395                 <row>
3396                   <entry>0</entry>
3397                   <entry>STRING</entry>
3398                   <entry>Name with a new owner</entry>
3399                 </row>
3400                 <row>
3401                   <entry>1</entry>
3402                   <entry>STRING</entry>
3403                   <entry>Old owner or empty string if none</entry>
3404                 </row>
3405                 <row>
3406                   <entry>2</entry>
3407                   <entry>STRING</entry>
3408                   <entry>New owner or empty string if none</entry>
3409                 </row>
3410               </tbody>
3411             </tgroup>
3412           </informaltable>
3413         </para>
3414         <para>
3415           This signal indicates that the owner of a name has changed.
3416           It's also the signal to use to detect the appearance of 
3417           new names on the bus.
3418         </para>
3419       </sect3>
3420       <sect3 id="bus-messages-name-lost">
3421         <title><literal>org.freedesktop.DBus.NameLost</literal></title>
3422         <para>
3423           This is a signal:
3424           <programlisting>
3425             NameLost (STRING name)
3426           </programlisting>
3427           Message arguments:
3428           <informaltable>
3429             <tgroup cols="3">
3430               <thead>
3431                 <row>
3432                   <entry>Argument</entry>
3433                   <entry>Type</entry>
3434                   <entry>Description</entry>
3435                 </row>
3436               </thead>
3437               <tbody>
3438                 <row>
3439                   <entry>0</entry>
3440                   <entry>STRING</entry>
3441                   <entry>Name which was lost</entry>
3442                 </row>
3443               </tbody>
3444             </tgroup>
3445           </informaltable>
3446         </para>
3447         <para>
3448           This signal is sent to a specific application when it loses
3449           ownership of a name.
3450         </para>
3451       </sect3>
3452
3453       <sect3 id="bus-messages-name-acquired">
3454         <title><literal>org.freedesktop.DBus.NameAcquired</literal></title>
3455         <para>
3456           This is a signal:
3457           <programlisting>
3458             NameAcquired (STRING name)
3459           </programlisting>
3460           Message arguments:
3461           <informaltable>
3462             <tgroup cols="3">
3463               <thead>
3464                 <row>
3465                   <entry>Argument</entry>
3466                   <entry>Type</entry>
3467                   <entry>Description</entry>
3468                 </row>
3469               </thead>
3470               <tbody>
3471                 <row>
3472                   <entry>0</entry>
3473                   <entry>STRING</entry>
3474                   <entry>Name which was acquired</entry>
3475                 </row>
3476               </tbody>
3477             </tgroup>
3478           </informaltable>
3479         </para>
3480         <para>
3481           This signal is sent to a specific application when it gains
3482           ownership of a name.
3483         </para>
3484       </sect3>
3485
3486       <sect3 id="bus-messages-start-service-by-name">
3487         <title><literal>org.freedesktop.DBus.StartServiceByName</literal></title>
3488         <para>
3489           As a method:
3490           <programlisting>
3491             UINT32 StartServiceByName (in STRING name, in UINT32 flags)
3492           </programlisting>
3493           Message arguments:
3494           <informaltable>
3495             <tgroup cols="3">
3496               <thead>
3497                 <row>
3498                   <entry>Argument</entry>
3499                   <entry>Type</entry>
3500                   <entry>Description</entry>
3501                 </row>
3502               </thead>
3503               <tbody>
3504                 <row>
3505                   <entry>0</entry>
3506                   <entry>STRING</entry>
3507                   <entry>Name of the service to start</entry>
3508                 </row>
3509                 <row>
3510                   <entry>1</entry>
3511                   <entry>UINT32</entry>
3512                   <entry>Flags (currently not used)</entry>
3513                 </row>
3514               </tbody>
3515             </tgroup>
3516           </informaltable>
3517         Reply arguments:
3518         <informaltable>
3519           <tgroup cols="3">
3520             <thead>
3521               <row>
3522                 <entry>Argument</entry>
3523                 <entry>Type</entry>
3524                 <entry>Description</entry>
3525               </row>
3526             </thead>
3527             <tbody>
3528               <row>
3529                 <entry>0</entry>
3530                 <entry>UINT32</entry>
3531                 <entry>Return value</entry>
3532               </row>
3533             </tbody>
3534           </tgroup>
3535         </informaltable>
3536           Tries to launch the executable associated with a name. For more information, see <xref linkend="message-bus-starting-services"/>.
3537
3538         </para>
3539         <para>
3540           The return value can be one of the following values:
3541           <informaltable>
3542             <tgroup cols="3">
3543               <thead>
3544                 <row>
3545                   <entry>Identifier</entry>
3546                   <entry>Value</entry>
3547                   <entry>Description</entry>
3548                 </row>
3549               </thead>
3550               <tbody>
3551                 <row>
3552                   <entry>DBUS_START_REPLY_SUCCESS</entry>
3553                   <entry>1</entry>
3554                   <entry>The service was successfully started.</entry>
3555                 </row>
3556                 <row>
3557                   <entry>DBUS_START_REPLY_ALREADY_RUNNING</entry>
3558                   <entry>2</entry>
3559                   <entry>A connection already owns the given name.</entry>
3560                 </row>
3561               </tbody>
3562              </tgroup>
3563            </informaltable>
3564         </para>
3565
3566       </sect3>
3567
3568       <sect3 id="bus-messages-get-name-owner">
3569         <title><literal>org.freedesktop.DBus.GetNameOwner</literal></title>
3570         <para>
3571           As a method:
3572           <programlisting>
3573             STRING GetNameOwner (in STRING name)
3574           </programlisting>
3575           Message arguments:
3576           <informaltable>
3577             <tgroup cols="3">
3578               <thead>
3579                 <row>
3580                   <entry>Argument</entry>
3581                   <entry>Type</entry>
3582                   <entry>Description</entry>
3583                 </row>
3584               </thead>
3585               <tbody>
3586                 <row>
3587                   <entry>0</entry>
3588                   <entry>STRING</entry>
3589                   <entry>Name to get the owner of</entry>
3590                 </row>
3591               </tbody>
3592             </tgroup>
3593           </informaltable>
3594         Reply arguments:
3595         <informaltable>
3596           <tgroup cols="3">
3597             <thead>
3598               <row>
3599                 <entry>Argument</entry>
3600                 <entry>Type</entry>
3601                 <entry>Description</entry>
3602               </row>
3603             </thead>
3604             <tbody>
3605               <row>
3606                 <entry>0</entry>
3607                 <entry>STRING</entry>
3608                 <entry>Return value, a unique connection name</entry>
3609               </row>
3610             </tbody>
3611           </tgroup>
3612         </informaltable>
3613         Returns the unique connection name of the primary owner of the name
3614         given. If the requested name doesn't have an owner, returns a
3615         <literal>org.freedesktop.DBus.Error.NameHasNoOwner</literal> error.
3616        </para>
3617       </sect3>
3618
3619       <sect3 id="bus-messages-get-connection-unix-user">
3620         <title><literal>org.freedesktop.DBus.GetConnectionUnixUser</literal></title>
3621         <para>
3622           As a method:
3623           <programlisting>
3624             UINT32 GetConnectionUnixUser (in STRING connection_name)
3625           </programlisting>
3626           Message arguments:
3627           <informaltable>
3628             <tgroup cols="3">
3629               <thead>
3630                 <row>
3631                   <entry>Argument</entry>
3632                   <entry>Type</entry>
3633                   <entry>Description</entry>
3634                 </row>
3635               </thead>
3636               <tbody>
3637                 <row>
3638                   <entry>0</entry>
3639                   <entry>STRING</entry>
3640                   <entry>Name of the connection to query</entry>
3641                 </row>
3642               </tbody>
3643             </tgroup>
3644           </informaltable>
3645         Reply arguments:
3646         <informaltable>
3647           <tgroup cols="3">
3648             <thead>
3649               <row>
3650                 <entry>Argument</entry>
3651                 <entry>Type</entry>
3652                 <entry>Description</entry>
3653               </row>
3654             </thead>
3655             <tbody>
3656               <row>
3657                 <entry>0</entry>
3658                 <entry>UINT32</entry>
3659                 <entry>unix user id</entry>
3660               </row>
3661             </tbody>
3662           </tgroup>
3663         </informaltable>
3664         Returns the unix uid of the process connected to the server. If unable to
3665         determine it, a <literal>org.freedesktop.DBus.Error.Failed</literal>
3666         error is returned.
3667        </para>
3668       </sect3>
3669
3670       <sect3 id="bus-messages-add-match">
3671         <title><literal>org.freedesktop.DBus.AddMatch</literal></title>
3672         <para>
3673           As a method:
3674           <programlisting>
3675             AddMatch (in STRING rule)
3676           </programlisting>
3677           Message arguments:
3678           <informaltable>
3679             <tgroup cols="3">
3680               <thead>
3681                 <row>
3682                   <entry>Argument</entry>
3683                   <entry>Type</entry>
3684                   <entry>Description</entry>
3685                 </row>
3686               </thead>
3687               <tbody>
3688                 <row>
3689                   <entry>0</entry>
3690                   <entry>STRING</entry>
3691                   <entry>Match rule to add to the connection</entry>
3692                 </row>
3693               </tbody>
3694             </tgroup>
3695           </informaltable>
3696         Adds a match rule to match messages going through the message bus (see <xref linkend='message-bus-routing-match-rules'/>). 
3697         If the bus does not have enough resources the <literal>org.freedesktop.DBus.Error.OOM</literal>
3698         error is returned.
3699        </para>
3700       </sect3>
3701       <sect3 id="bus-messages-remove-match">
3702         <title><literal>org.freedesktop.DBus.RemoveMatch</literal></title>
3703         <para>
3704           As a method:
3705           <programlisting>
3706             RemoveMatch (in STRING rule)
3707           </programlisting>
3708           Message arguments:
3709           <informaltable>
3710             <tgroup cols="3">
3711               <thead>
3712                 <row>
3713                   <entry>Argument</entry>
3714                   <entry>Type</entry>
3715                   <entry>Description</entry>
3716                 </row>
3717               </thead>
3718               <tbody>
3719                 <row>
3720                   <entry>0</entry>
3721                   <entry>STRING</entry>
3722                   <entry>Match rule to remove from the connection</entry>
3723                 </row>
3724               </tbody>
3725             </tgroup>
3726           </informaltable>
3727         Removes the first rule that matches (see <xref linkend='message-bus-routing-match-rules'/>). 
3728         If the rule is not found the <literal>org.freedesktop.DBus.Error.MatchRuleNotFound</literal>
3729         error is returned.
3730        </para>
3731       </sect3>
3732
3733     </sect2>
3734
3735   </sect1>
3736 <!--
3737   <appendix id="implementation-notes">
3738     <title>Implementation notes</title>
3739     <sect1 id="implementation-notes-subsection">
3740       <title></title>
3741       <para>
3742       </para>
3743     </sect1>
3744   </appendix>
3745 -->
3746
3747   <glossary><title>Glossary</title>
3748     <para>
3749       This glossary defines some of the terms used in this specification.
3750     </para>
3751
3752     <glossentry id="term-bus-name"><glossterm>Bus Name</glossterm>
3753       <glossdef>
3754         <para>
3755           The message bus maintains an association between names and
3756           connections. (Normally, there's one connection per application.)  A
3757           bus name is simply an identifier used to locate connections. For
3758           example, the hypothetical <literal>com.yoyodyne.Screensaver</literal>
3759           name might be used to send a message to a screensaver from Yoyodyne
3760           Corporation.  An application is said to <firstterm>own</firstterm> a
3761           name if the message bus has associated the application's connection
3762           with the name.  Names may also have <firstterm>queued
3763           owners</firstterm> (see <xref linkend="term-queued-owner"/>).
3764             The bus assigns a unique name to each connection, 
3765             see <xref linkend="term-unique-name"/>. Other names 
3766               can be thought of as "well-known names" and are 
3767               used to find applications that offer specific functionality.
3768         </para>
3769       </glossdef>
3770     </glossentry>
3771       
3772     <glossentry id="term-message"><glossterm>Message</glossterm>
3773       <glossdef>
3774         <para>
3775           A message is the atomic unit of communication via the D-Bus
3776           protocol. It consists of a <firstterm>header</firstterm> and a
3777           <firstterm>body</firstterm>; the body is made up of
3778           <firstterm>arguments</firstterm>.
3779         </para>
3780       </glossdef>
3781     </glossentry>
3782
3783     <glossentry id="term-message-bus"><glossterm>Message Bus</glossterm>
3784       <glossdef>
3785         <para>
3786           The message bus is a special application that forwards 
3787           or routes messages between a group of applications
3788           connected to the message bus. It also manages 
3789           <firstterm>names</firstterm> used for routing
3790           messages.
3791         </para>
3792       </glossdef>
3793     </glossentry>
3794
3795     <glossentry id="term-name"><glossterm>Name</glossterm>
3796       <glossdef>
3797         <para>
3798           See <xref linkend="term-bus-name"/>. "Name" may 
3799             also be used to refer to some of the other names
3800             in D-Bus, such as interface names.
3801         </para>
3802       </glossdef>
3803     </glossentry>
3804
3805     <glossentry id="namespace"><glossterm>Namespace</glossterm>
3806       <glossdef>
3807         <para>
3808           Used to prevent collisions when defining new interfaces or bus
3809           names. The convention used is the same one Java uses for defining
3810           classes: a reversed domain name.
3811         </para>
3812       </glossdef>
3813     </glossentry>
3814
3815     <glossentry id="term-object"><glossterm>Object</glossterm>
3816       <glossdef>
3817         <para>
3818           Each application contains <firstterm>objects</firstterm>, which have
3819           <firstterm>interfaces</firstterm> and
3820           <firstterm>methods</firstterm>. Objects are referred to by a name,
3821           called a <firstterm>path</firstterm>.
3822         </para>
3823       </glossdef>
3824     </glossentry>
3825
3826     <glossentry id="one-to-one"><glossterm>One-to-One</glossterm>
3827       <glossdef>
3828         <para>
3829           An application talking directly to another application, without going
3830           through a message bus. One-to-one connections may be "peer to peer" or
3831           "client to server." The D-Bus protocol has no concept of client
3832           vs. server after a connection has authenticated; the flow of messages
3833           is symmetrical (full duplex).
3834         </para>
3835       </glossdef>
3836     </glossentry>
3837
3838     <glossentry id="term-path"><glossterm>Path</glossterm>
3839       <glossdef>
3840         <para>
3841           Object references (object names) in D-Bus are organized into a
3842           filesystem-style hierarchy, so each object is named by a path. As in
3843           LDAP, there's no difference between "files" and "directories"; a path
3844           can refer to an object, while still having child objects below it.
3845         </para>
3846       </glossdef>
3847     </glossentry>
3848
3849     <glossentry id="term-queued-owner"><glossterm>Queued Name Owner</glossterm>
3850       <glossdef>
3851         <para>
3852           Each bus name has a primary owner; messages sent to the name go to the
3853           primary owner. However, certain names also maintain a queue of
3854           secondary owners "waiting in the wings." If the primary owner releases
3855           the name, then the first secondary owner in the queue automatically
3856           becomes the new owner of the name.
3857         </para>
3858       </glossdef>
3859     </glossentry>
3860
3861     <glossentry id="term-service"><glossterm>Service</glossterm>
3862       <glossdef>
3863         <para>
3864           A service is an executable that can be launched by the bus daemon.
3865           Services normally guarantee some particular features, for example they
3866           may guarantee that they will request a specific name such as
3867           "org.freedesktop.Screensaver", have a singleton object
3868           "/org/freedesktop/Application", and that object will implement the
3869           interface "org.freedesktop.ScreensaverControl".
3870         </para>
3871       </glossdef>
3872     </glossentry>
3873
3874     <glossentry id="term-service-description-files"><glossterm>Service Description Files</glossterm>
3875       <glossdef>
3876         <para>
3877           ".service files" tell the bus about service applications that can be
3878           launched (see <xref linkend="term-service"/>). Most importantly they
3879           provide a mapping from bus names to services that will request those
3880             names when they start up.
3881         </para>
3882       </glossdef>
3883     </glossentry>
3884
3885     <glossentry id="term-unique-name"><glossterm>Unique Connection Name</glossterm>
3886       <glossdef>
3887         <para>
3888           The special name automatically assigned to each connection by the
3889           message bus. This name will never change owner, and will be unique
3890           (never reused during the lifetime of the message bus).
3891           It will begin with a ':' character.
3892         </para>
3893       </glossdef>
3894     </glossentry>
3895
3896   </glossary>
3897 </article>
3898