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