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