Merge branch 'dbus-1.10'
[platform/upstream/dbus.git] / dbus / dbus-bus.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* dbus-bus.c  Convenience functions for communicating with the bus.
3  *
4  * Copyright (C) 2003  CodeFactory AB
5  * Copyright (C) 2003  Red Hat, Inc.
6  *
7  * Licensed under the Academic Free License version 2.1
8  * 
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  * 
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
22  *
23  */
24
25 #include <config.h>
26 #include "dbus-bus.h"
27 #include "dbus-protocol.h"
28 #include "dbus-internals.h"
29 #include "dbus-message.h"
30 #include "dbus-marshal-validate.h"
31 #include "dbus-misc.h"
32 #include "dbus-threads-internal.h"
33 #include "dbus-connection-internal.h"
34 #include "dbus-string.h"
35
36 /**
37  * @defgroup DBusBus Message bus APIs
38  * @ingroup DBus
39  * @brief Functions for communicating with the message bus
40  *
41  * dbus_bus_get() allows all modules and libraries in a given
42  * process to share the same connection to the bus daemon by storing
43  * the connection globally.
44  *
45  * All other functions in this module are just convenience functions;
46  * most of them invoke methods on the bus daemon, by sending method
47  * call messages to #DBUS_SERVICE_DBUS. These convenience functions
48  * often make blocking method calls. If you don't want to block,
49  * you can send the method call messages manually in the same way
50  * you would any other method call message.
51  *
52  * This module is the only one in libdbus that's specific to
53  * communicating with the message bus daemon. The rest of the API can
54  * also be used for connecting to another application directly.
55  * 
56  * @todo right now the default address of the system bus is hardcoded,
57  * so if you change it in the global config file suddenly you have to
58  * set DBUS_SYSTEM_BUS_ADDRESS env variable.  Might be nice if the
59  * client lib somehow read the config file, or if the bus on startup
60  * somehow wrote out its address to a well-known spot, but might also
61  * not be worth it.
62  */
63
64 /**
65  * @defgroup DBusBusInternals Message bus APIs internals
66  * @ingroup DBusInternals
67  * @brief Internals of functions for communicating with the message bus
68  *
69  * @{
70  */
71
72 /**
73  * Block of message-bus-related data we attach to each
74  * #DBusConnection used with these convenience functions.
75  *
76  */
77 typedef struct
78 {
79   DBusConnection *connection; /**< Connection we're associated with */
80   char *unique_name; /**< Unique name of this connection */
81
82   unsigned int is_well_known : 1; /**< Is one of the well-known connections in our global array */
83 } BusData;
84
85 /** The slot we have reserved to store BusData.
86  */
87 static dbus_int32_t bus_data_slot = -1;
88
89 /** Number of bus types */
90 #define N_BUS_TYPES 3
91
92 static DBusConnection *bus_connections[N_BUS_TYPES];
93 static char *bus_connection_addresses[N_BUS_TYPES] = { NULL, NULL, NULL };
94
95 static DBusBusType activation_bus_type = DBUS_BUS_STARTER;
96
97 static dbus_bool_t initialized = FALSE;
98
99 static void
100 addresses_shutdown_func (void *data)
101 {
102   int i;
103
104   i = 0;
105   while (i < N_BUS_TYPES)
106     {
107       if (bus_connections[i] != NULL)
108         _dbus_warn_check_failed ("dbus_shutdown() called but connections were still live. This probably means the application did not drop all its references to bus connections.\n");
109       
110       dbus_free (bus_connection_addresses[i]);
111       bus_connection_addresses[i] = NULL;
112       ++i;
113     }
114
115   activation_bus_type = DBUS_BUS_STARTER;
116
117   initialized = FALSE;
118 }
119
120 static dbus_bool_t
121 get_from_env (char           **connection_p,
122               const char      *env_var)
123 {
124   const char *s;
125   
126   _dbus_assert (*connection_p == NULL);
127   
128   s = _dbus_getenv (env_var);
129   if (s == NULL || *s == '\0')
130     return TRUE; /* successfully didn't use the env var */
131   else
132     {
133       *connection_p = _dbus_strdup (s);
134       return *connection_p != NULL;
135     }
136 }
137
138 static dbus_bool_t
139 init_session_address (void)
140 {
141   dbus_bool_t retval;
142  
143   retval = FALSE;
144
145   /* First, look in the environment.  This is the normal case on 
146    * freedesktop.org/Unix systems. */
147   get_from_env (&bus_connection_addresses[DBUS_BUS_SESSION],
148                      "DBUS_SESSION_BUS_ADDRESS");
149   if (bus_connection_addresses[DBUS_BUS_SESSION] == NULL)
150     {
151       dbus_bool_t supported;
152       DBusString addr;
153       DBusError error = DBUS_ERROR_INIT;
154
155       if (!_dbus_string_init (&addr))
156         return FALSE;
157
158       supported = FALSE;
159       /* So it's not in the environment - let's try a platform-specific method.
160        * On MacOS, this involves asking launchd.  On Windows (not specified yet)
161        * we might do a COM lookup.
162        * Ignore errors - if we failed, fall back to autolaunch. */
163       retval = _dbus_lookup_session_address (&supported, &addr, &error);
164       if (supported && retval)
165         {
166           retval =_dbus_string_steal_data (&addr, &bus_connection_addresses[DBUS_BUS_SESSION]);
167         }
168       else if (supported && !retval)
169         {
170           if (dbus_error_is_set(&error))
171             _dbus_warn ("Dynamic session lookup supported but failed: %s\n", error.message);
172           else
173             _dbus_warn ("Dynamic session lookup supported but failed silently\n");
174         }
175       _dbus_string_free (&addr);
176     }
177   else
178     retval = TRUE;
179
180   if (!retval)
181     return FALSE;
182
183   /* We have a hard-coded (but compile-time-configurable) fallback address for
184    * the session bus. */
185   if (bus_connection_addresses[DBUS_BUS_SESSION] == NULL)
186     bus_connection_addresses[DBUS_BUS_SESSION] =
187       _dbus_strdup (DBUS_SESSION_BUS_CONNECT_ADDRESS);
188
189   if (bus_connection_addresses[DBUS_BUS_SESSION] == NULL)
190     return FALSE;
191
192   return TRUE;
193 }
194
195 static dbus_bool_t
196 init_connections_unlocked (void)
197 {
198   if (!initialized)
199     {
200       const char *s;
201       int i;
202
203       i = 0;
204       while (i < N_BUS_TYPES)
205         {
206           bus_connections[i] = NULL;
207           ++i;
208         }
209
210       /* Don't init these twice, we may run this code twice if
211        * init_connections_unlocked() fails midway through.
212        * In practice, each block below should contain only one
213        * "return FALSE" or running through twice may not
214        * work right.
215        */
216       
217        if (bus_connection_addresses[DBUS_BUS_SYSTEM] == NULL)
218          {
219            _dbus_verbose ("Filling in system bus address...\n");
220            
221            if (!get_from_env (&bus_connection_addresses[DBUS_BUS_SYSTEM],
222                               "DBUS_SYSTEM_BUS_ADDRESS"))
223              return FALSE;
224          }
225
226                   
227        if (bus_connection_addresses[DBUS_BUS_SYSTEM] == NULL)
228          {
229            /* Use default system bus address if none set in environment */
230            bus_connection_addresses[DBUS_BUS_SYSTEM] =
231              _dbus_strdup (DBUS_SYSTEM_BUS_DEFAULT_ADDRESS);
232
233            if (bus_connection_addresses[DBUS_BUS_SYSTEM] == NULL)
234              return FALSE;
235            
236            _dbus_verbose ("  used default system bus \"%s\"\n",
237                           bus_connection_addresses[DBUS_BUS_SYSTEM]);
238          }
239        else
240          _dbus_verbose ("  used env var system bus \"%s\"\n",
241                         bus_connection_addresses[DBUS_BUS_SYSTEM]);
242           
243       if (bus_connection_addresses[DBUS_BUS_SESSION] == NULL)
244         {
245           _dbus_verbose ("Filling in session bus address...\n");
246           
247           if (!init_session_address ())
248             return FALSE;
249
250           _dbus_verbose ("  \"%s\"\n", bus_connection_addresses[DBUS_BUS_SESSION] ?
251                          bus_connection_addresses[DBUS_BUS_SESSION] : "none set");
252         }
253
254       if (bus_connection_addresses[DBUS_BUS_STARTER] == NULL)
255         {
256           _dbus_verbose ("Filling in activation bus address...\n");
257           
258           if (!get_from_env (&bus_connection_addresses[DBUS_BUS_STARTER],
259                              "DBUS_STARTER_ADDRESS"))
260             return FALSE;
261           
262           _dbus_verbose ("  \"%s\"\n", bus_connection_addresses[DBUS_BUS_STARTER] ?
263                          bus_connection_addresses[DBUS_BUS_STARTER] : "none set");
264         }
265
266
267       if (bus_connection_addresses[DBUS_BUS_STARTER] != NULL)
268         {
269           s = _dbus_getenv ("DBUS_STARTER_BUS_TYPE");
270               
271           if (s != NULL)
272             {
273               _dbus_verbose ("Bus activation type was set to \"%s\"\n", s);
274                   
275               if (strcmp (s, "system") == 0)
276                 activation_bus_type = DBUS_BUS_SYSTEM;
277               else if (strcmp (s, "session") == 0)
278                 activation_bus_type = DBUS_BUS_SESSION;
279             }
280         }
281       else
282         {
283           /* Default to the session bus instead if available */
284           if (bus_connection_addresses[DBUS_BUS_SESSION] != NULL)
285             {
286               bus_connection_addresses[DBUS_BUS_STARTER] =
287                 _dbus_strdup (bus_connection_addresses[DBUS_BUS_SESSION]);
288               if (bus_connection_addresses[DBUS_BUS_STARTER] == NULL)
289                 return FALSE;
290             }
291         }
292       
293       /* If we return FALSE we have to be sure that restarting
294        * the above code will work right
295        */
296       
297       if (!_dbus_register_shutdown_func (addresses_shutdown_func,
298                                          NULL))
299         return FALSE;
300       
301       initialized = TRUE;
302     }
303
304   return initialized;
305 }
306
307 static void
308 bus_data_free (void *data)
309 {
310   BusData *bd = data;
311   
312   if (bd->is_well_known)
313     {
314       int i;
315
316       if (!_DBUS_LOCK (bus))
317         _dbus_assert_not_reached ("global locks should have been initialized "
318             "when we attached bus data");
319
320       /* We may be stored in more than one slot */
321       /* This should now be impossible - these slots are supposed to
322        * be cleared on disconnect, so should not need to be cleared on
323        * finalize
324        */
325       i = 0;
326       while (i < N_BUS_TYPES)
327         {
328           if (bus_connections[i] == bd->connection)
329             bus_connections[i] = NULL;
330           
331           ++i;
332         }
333       _DBUS_UNLOCK (bus);
334     }
335   
336   dbus_free (bd->unique_name);
337   dbus_free (bd);
338
339   dbus_connection_free_data_slot (&bus_data_slot);
340 }
341
342 static BusData*
343 ensure_bus_data (DBusConnection *connection)
344 {
345   BusData *bd;
346
347   if (!dbus_connection_allocate_data_slot (&bus_data_slot))
348     return NULL;
349
350   bd = dbus_connection_get_data (connection, bus_data_slot);
351   if (bd == NULL)
352     {      
353       bd = dbus_new0 (BusData, 1);
354       if (bd == NULL)
355         {
356           dbus_connection_free_data_slot (&bus_data_slot);
357           return NULL;
358         }
359
360       bd->connection = connection;
361       
362       if (!dbus_connection_set_data (connection, bus_data_slot, bd,
363                                      bus_data_free))
364         {
365           dbus_free (bd);
366           dbus_connection_free_data_slot (&bus_data_slot);
367           return NULL;
368         }
369
370       /* Data slot refcount now held by the BusData */
371     }
372   else
373     {
374       dbus_connection_free_data_slot (&bus_data_slot);
375     }
376
377   return bd;
378 }
379
380 /**
381  * Internal function that checks to see if this
382  * is a shared connection owned by the bus and if it is unref it.
383  *
384  * @param connection a connection that has been disconnected.
385  */
386 void
387 _dbus_bus_notify_shared_connection_disconnected_unlocked (DBusConnection *connection)
388 {
389   int i;
390
391   if (!_DBUS_LOCK (bus))
392     {
393       /* If it was in bus_connections, we would have initialized global locks
394        * when we added it. So, it can't be. */
395       return;
396     }
397
398   /* We are expecting to have the connection saved in only one of these
399    * slots, but someone could in a pathological case set system and session
400    * bus to the same bus or something. Or set one of them to the starter
401    * bus without setting the starter bus type in the env variable.
402    * So we don't break the loop as soon as we find a match.
403    */
404   for (i = 0; i < N_BUS_TYPES; ++i)
405     {
406       if (bus_connections[i] == connection)
407         {
408           bus_connections[i] = NULL;
409         }
410     }
411
412   _DBUS_UNLOCK (bus);
413 }
414
415 static DBusConnection *
416 internal_bus_get (DBusBusType  type,
417                   dbus_bool_t  private,
418                   DBusError   *error)
419 {
420   const char *address;
421   DBusConnection *connection;
422   BusData *bd;
423   DBusBusType address_type;
424
425   _dbus_return_val_if_fail (type >= 0 && type < N_BUS_TYPES, NULL);
426   _dbus_return_val_if_error_is_set (error, NULL);
427
428   connection = NULL;
429
430   if (!_DBUS_LOCK (bus))
431     {
432       _DBUS_SET_OOM (error);
433       /* do not "goto out", that would try to unlock */
434       return NULL;
435     }
436
437   if (!init_connections_unlocked ())
438     {
439       _DBUS_SET_OOM (error);
440       goto out;
441     }
442
443   /* We want to use the activation address even if the
444    * activating bus is the session or system bus,
445    * per the spec.
446    */
447   address_type = type;
448   
449   /* Use the real type of the activation bus for getting its
450    * connection, but only if the real type's address is available. (If
451    * the activating bus isn't a well-known bus then
452    * activation_bus_type == DBUS_BUS_STARTER)
453    */
454   if (type == DBUS_BUS_STARTER &&
455       bus_connection_addresses[activation_bus_type] != NULL)
456     type = activation_bus_type;
457   
458   if (!private && bus_connections[type] != NULL)
459     {
460       connection = bus_connections[type];
461       dbus_connection_ref (connection);
462       goto out;
463     }
464
465   address = bus_connection_addresses[address_type];
466   if (address == NULL)
467     {
468       dbus_set_error (error, DBUS_ERROR_FAILED,
469                       "Unable to determine the address of the message bus (try 'man dbus-launch' and 'man dbus-daemon' for help)");
470       goto out;
471     }
472
473   if (private)
474     connection = dbus_connection_open_private (address, error);
475   else
476     connection = dbus_connection_open (address, error);
477   
478   if (!connection)
479     {
480       goto out;
481     }
482
483   if (!dbus_bus_register (connection, error))
484     {
485       _dbus_connection_close_possibly_shared (connection);
486       dbus_connection_unref (connection);
487       connection = NULL;
488       goto out;
489     }
490
491   if (!private)
492     {
493       /* store a weak ref to the connection (dbus-connection.c is
494        * supposed to have a strong ref that it drops on disconnect,
495        * since this is a shared connection)
496        */
497       bus_connections[type] = connection;
498     }
499
500   /* By default we're bound to the lifecycle of
501    * the message bus.
502    */
503   dbus_connection_set_exit_on_disconnect (connection,
504                                           TRUE);
505
506   if (!_DBUS_LOCK (bus_datas))
507     _dbus_assert_not_reached ("global locks were initialized already");
508
509   bd = ensure_bus_data (connection);
510   _dbus_assert (bd != NULL); /* it should have been created on
511                                 register, so OOM not possible */
512   bd->is_well_known = TRUE;
513   _DBUS_UNLOCK (bus_datas);
514
515 out:
516   /* Return a reference to the caller, or NULL with error set. */
517   if (connection == NULL)
518     _DBUS_ASSERT_ERROR_IS_SET (error);
519
520   _DBUS_UNLOCK (bus);
521   return connection;
522 }
523
524
525 /** @} */ /* end of implementation details docs */
526
527 /**
528  * @addtogroup DBusBus
529  * @{
530  */
531
532 /**
533  * Connects to a bus daemon and registers the client with it.  If a
534  * connection to the bus already exists, then that connection is
535  * returned.  The caller of this function owns a reference to the bus.
536  *
537  * The caller may NOT call dbus_connection_close() on this connection;
538  * see dbus_connection_open() and dbus_connection_close() for details
539  * on that.
540  *
541  * If this function obtains a new connection object never before
542  * returned from dbus_bus_get(), it will call
543  * dbus_connection_set_exit_on_disconnect(), so the application
544  * will exit if the connection closes. You can undo this
545  * by calling dbus_connection_set_exit_on_disconnect() yourself
546  * after you get the connection.
547  *
548  * dbus_bus_get() calls dbus_bus_register() for you.
549  * 
550  * If returning a newly-created connection, this function will block
551  * until authentication and bus registration are complete.
552  * 
553  * @param type bus type
554  * @param error address where an error can be returned.
555  * @returns a #DBusConnection with new ref or #NULL on error
556  */
557 DBusConnection *
558 dbus_bus_get (DBusBusType  type,
559               DBusError   *error)
560 {
561   return internal_bus_get (type, FALSE, error);
562 }
563
564 /**
565  * Connects to a bus daemon and registers the client with it as with
566  * dbus_bus_register().  Unlike dbus_bus_get(), always creates a new
567  * connection. This connection will not be saved or recycled by
568  * libdbus. Caller owns a reference to the bus and must either close
569  * it or know it to be closed prior to releasing this reference.
570  *
571  * See dbus_connection_open_private() for more details on when to
572  * close and unref this connection.
573  *
574  * This function calls
575  * dbus_connection_set_exit_on_disconnect() on the new connection, so the application
576  * will exit if the connection closes. You can undo this
577  * by calling dbus_connection_set_exit_on_disconnect() yourself
578  * after you get the connection.
579  *
580  * dbus_bus_get_private() calls dbus_bus_register() for you.
581  *
582  * This function will block until authentication and bus registration
583  * are complete.
584  *
585  * @param type bus type
586  * @param error address where an error can be returned.
587  * @returns a DBusConnection with new ref
588  */
589 DBusConnection *
590 dbus_bus_get_private (DBusBusType  type,
591                       DBusError   *error)
592 {
593   return internal_bus_get (type, TRUE, error);
594 }
595
596 /**
597  * Registers a connection with the bus. This must be the first
598  * thing an application does when connecting to the message bus.
599  * If registration succeeds, the unique name will be set,
600  * and can be obtained using dbus_bus_get_unique_name().
601  *
602  * This function will block until registration is complete.
603  *
604  * If the connection has already registered with the bus
605  * (determined by checking whether dbus_bus_get_unique_name()
606  * returns a non-#NULL value), then this function does nothing.
607  *
608  * If you use dbus_bus_get() or dbus_bus_get_private() this
609  * function will be called for you.
610  * 
611  * @note Just use dbus_bus_get() or dbus_bus_get_private() instead of
612  * dbus_bus_register() and save yourself some pain. Using
613  * dbus_bus_register() manually is only useful if you have your
614  * own custom message bus not found in #DBusBusType.
615  *
616  * If you open a bus connection with dbus_connection_open() or
617  * dbus_connection_open_private() you will have to dbus_bus_register()
618  * yourself, or make the appropriate registration method calls
619  * yourself. If you send the method calls yourself, call
620  * dbus_bus_set_unique_name() with the unique bus name you get from
621  * the bus.
622  *
623  * For shared connections (created with dbus_connection_open()) in a
624  * multithreaded application, you can't really make the registration
625  * calls yourself, because you don't know whether some other thread is
626  * also registering, and the bus will kick you off if you send two
627  * registration messages.
628  *
629  * If you use dbus_bus_register() however, there is a lock that
630  * keeps both apps from registering at the same time.
631  *
632  * The rule in a multithreaded app, then, is that dbus_bus_register()
633  * must be used to register, or you need to have your own locks that
634  * all threads in the app will respect.
635  *
636  * In a single-threaded application you can register by hand instead
637  * of using dbus_bus_register(), as long as you check
638  * dbus_bus_get_unique_name() to see if a unique name has already been
639  * stored by another thread before you send the registration messages.
640  * 
641  * @param connection the connection
642  * @param error place to store errors
643  * @returns #TRUE on success
644  */
645 dbus_bool_t
646 dbus_bus_register (DBusConnection *connection,
647                    DBusError      *error)
648 {
649   DBusMessage *message, *reply;
650   char *name;
651   BusData *bd;
652   dbus_bool_t retval;
653
654   _dbus_return_val_if_fail (connection != NULL, FALSE);
655   _dbus_return_val_if_error_is_set (error, FALSE);
656
657   retval = FALSE;
658   message = NULL;
659   reply = NULL;
660
661   if (!_DBUS_LOCK (bus_datas))
662     {
663       _DBUS_SET_OOM (error);
664       /* do not "goto out", that would try to unlock */
665       return FALSE;
666     }
667
668   bd = ensure_bus_data (connection);
669   if (bd == NULL)
670     {
671       _DBUS_SET_OOM (error);
672       goto out;
673     }
674
675   if (bd->unique_name != NULL)
676     {
677       _dbus_verbose ("Ignoring attempt to register the same DBusConnection %s with the message bus a second time.\n",
678                      bd->unique_name);
679       /* Success! */
680       retval = TRUE;
681       goto out;
682     }
683   
684   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
685                                           DBUS_PATH_DBUS,
686                                           DBUS_INTERFACE_DBUS,
687                                           "Hello"); 
688
689   if (!message)
690     {
691       _DBUS_SET_OOM (error);
692       goto out;
693     }
694   
695   reply = dbus_connection_send_with_reply_and_block (connection, message, -1, error);
696
697   if (reply == NULL)
698     goto out;
699   else if (dbus_set_error_from_message (error, reply))
700     goto out;
701   else if (!dbus_message_get_args (reply, error,
702                                    DBUS_TYPE_STRING, &name,
703                                    DBUS_TYPE_INVALID))
704     goto out;
705   
706   bd->unique_name = _dbus_strdup (name);
707   if (bd->unique_name == NULL)
708     {
709       _DBUS_SET_OOM (error);
710       goto out;
711     }
712   
713   retval = TRUE;
714   
715  out:
716   _DBUS_UNLOCK (bus_datas);
717
718   if (message)
719     dbus_message_unref (message);
720
721   if (reply)
722     dbus_message_unref (reply);
723
724   if (!retval)
725     _DBUS_ASSERT_ERROR_IS_SET (error);
726
727   return retval;
728 }
729
730
731 /**
732  * Sets the unique name of the connection, as assigned by the message
733  * bus.  Can only be used if you registered with the bus manually
734  * (i.e. if you did not call dbus_bus_register()). Can only be called
735  * once per connection.  After the unique name is set, you can get it
736  * with dbus_bus_get_unique_name().
737  *
738  * The only reason to use this function is to re-implement the
739  * equivalent of dbus_bus_register() yourself. One (probably unusual)
740  * reason to do that might be to do the bus registration call
741  * asynchronously instead of synchronously.
742  *
743  * @note Just use dbus_bus_get() or dbus_bus_get_private(), or worst
744  * case dbus_bus_register(), instead of messing with this
745  * function. There's really no point creating pain for yourself by
746  * doing things manually.
747  *
748  * It's hard to use this function safely on shared connections
749  * (created by dbus_connection_open()) in a multithreaded application,
750  * because only one registration attempt can be sent to the bus. If
751  * two threads are both sending the registration message, there is no
752  * mechanism in libdbus itself to avoid sending it twice.
753  *
754  * Thus, you need a way to coordinate which thread sends the
755  * registration attempt; which also means you know which thread
756  * will call dbus_bus_set_unique_name(). If you don't know
757  * about all threads in the app (for example, if some libraries
758  * you're using might start libdbus-using threads), then you
759  * need to avoid using this function on shared connections.
760  *
761  * @param connection the connection
762  * @param unique_name the unique name
763  * @returns #FALSE if not enough memory
764  */
765 dbus_bool_t
766 dbus_bus_set_unique_name (DBusConnection *connection,
767                           const char     *unique_name)
768 {
769   BusData *bd;
770   dbus_bool_t success = FALSE;
771
772   _dbus_return_val_if_fail (connection != NULL, FALSE);
773   _dbus_return_val_if_fail (unique_name != NULL, FALSE);
774
775   if (!_DBUS_LOCK (bus_datas))
776     {
777       /* do not "goto out", that would try to unlock */
778       return FALSE;
779     }
780
781   bd = ensure_bus_data (connection);
782   if (bd == NULL)
783     goto out;
784
785   _dbus_assert (bd->unique_name == NULL);
786   
787   bd->unique_name = _dbus_strdup (unique_name);
788   success = bd->unique_name != NULL;
789
790 out:
791   _DBUS_UNLOCK (bus_datas);
792   
793   return success;
794 }
795
796 /**
797  * Gets the unique name of the connection as assigned by the message
798  * bus. Only possible after the connection has been registered with
799  * the message bus. All connections returned by dbus_bus_get() or
800  * dbus_bus_get_private() have been successfully registered.
801  *
802  * The name remains valid until the connection is freed, and
803  * should not be freed by the caller.
804  *
805  * Other than dbus_bus_get(), there are two ways to set the unique
806  * name; one is dbus_bus_register(), the other is
807  * dbus_bus_set_unique_name().  You are responsible for calling
808  * dbus_bus_set_unique_name() if you register by hand instead of using
809  * dbus_bus_register().
810  * 
811  * @param connection the connection
812  * @returns the unique name or #NULL on error
813  */
814 const char*
815 dbus_bus_get_unique_name (DBusConnection *connection)
816 {
817   BusData *bd;
818   const char *unique_name = NULL;
819
820   _dbus_return_val_if_fail (connection != NULL, NULL);
821
822   if (!_DBUS_LOCK (bus_datas))
823     {
824       /* We'd have initialized locks when we gave it its unique name, if it
825        * had one. Don't "goto out", that would try to unlock. */
826       return NULL;
827     }
828
829   bd = ensure_bus_data (connection);
830   if (bd == NULL)
831     goto out;
832
833   unique_name = bd->unique_name;
834
835 out:
836   _DBUS_UNLOCK (bus_datas);
837
838   return unique_name;
839 }
840
841 /**
842  * Asks the bus to return the UID the named connection authenticated
843  * as, if any.  Only works on UNIX; only works for connections on the
844  * same machine as the bus. If you are not on the same machine as the
845  * bus, then calling this is probably a bad idea, since the UID will
846  * mean little to your application.
847  *
848  * For the system message bus you're guaranteed to be on the same
849  * machine since it only listens on a UNIX domain socket (at least,
850  * as shipped by default).
851  *
852  * This function only works for connections that authenticated as
853  * a UNIX user, right now that includes all bus connections, but
854  * it's very possible to have connections with no associated UID.
855  * So check for errors and do something sensible if they happen.
856  * 
857  * This function will always return an error on Windows.
858  * 
859  * @param connection the connection
860  * @param name a name owned by the connection
861  * @param error location to store the error
862  * @returns the unix user id, or ((unsigned)-1) if error is set
863  */ 
864 unsigned long
865 dbus_bus_get_unix_user (DBusConnection *connection,
866                         const char     *name,
867                         DBusError      *error)
868 {
869   DBusMessage *message, *reply;
870   dbus_uint32_t uid;
871
872   _dbus_return_val_if_fail (connection != NULL, DBUS_UID_UNSET);
873   _dbus_return_val_if_fail (name != NULL, DBUS_UID_UNSET);
874   _dbus_return_val_if_fail (_dbus_check_is_valid_bus_name (name), DBUS_UID_UNSET);
875   _dbus_return_val_if_error_is_set (error, DBUS_UID_UNSET);
876   
877   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
878                                           DBUS_PATH_DBUS,
879                                           DBUS_INTERFACE_DBUS,
880                                           "GetConnectionUnixUser");
881
882   if (message == NULL)
883     {
884       _DBUS_SET_OOM (error);
885       return DBUS_UID_UNSET;
886     }
887  
888   if (!dbus_message_append_args (message,
889                                  DBUS_TYPE_STRING, &name,
890                                  DBUS_TYPE_INVALID))
891     {
892       dbus_message_unref (message);
893       _DBUS_SET_OOM (error);
894       return DBUS_UID_UNSET;
895     }
896   
897   reply = dbus_connection_send_with_reply_and_block (connection, message, -1,
898                                                      error);
899   
900   dbus_message_unref (message);
901   
902   if (reply == NULL)
903     {
904       _DBUS_ASSERT_ERROR_IS_SET (error);
905       return DBUS_UID_UNSET;
906     }  
907
908   if (dbus_set_error_from_message (error, reply))
909     {
910       _DBUS_ASSERT_ERROR_IS_SET (error);
911       dbus_message_unref (reply);
912       return DBUS_UID_UNSET;
913     }
914   
915   if (!dbus_message_get_args (reply, error,
916                               DBUS_TYPE_UINT32, &uid,
917                               DBUS_TYPE_INVALID))
918     {
919       _DBUS_ASSERT_ERROR_IS_SET (error);
920       dbus_message_unref (reply);
921       return DBUS_UID_UNSET;
922     }
923
924   dbus_message_unref (reply);
925   
926   return (unsigned long) uid;
927 }
928
929 /**
930  * Asks the bus to return its globally unique ID, as described in the
931  * D-Bus specification. For the session bus, this is useful as a way
932  * to uniquely identify each user session. For the system bus,
933  * probably the bus ID is not useful; instead, use the machine ID
934  * since it's accessible without necessarily connecting to the bus and
935  * may be persistent beyond a single bus instance (across reboots for
936  * example). See dbus_get_local_machine_id().
937  *
938  * In addition to an ID for each bus and an ID for each machine, there is
939  * an ID for each address that the bus is listening on; that can
940  * be retrieved with dbus_connection_get_server_id(), though it is
941  * probably not very useful.
942  * 
943  * @param connection the connection
944  * @param error location to store the error
945  * @returns the bus ID or #NULL if error is set
946  */ 
947 char*
948 dbus_bus_get_id (DBusConnection *connection,
949                  DBusError      *error)
950 {
951   DBusMessage *message, *reply;
952   char *id;
953   const char *v_STRING;
954
955   _dbus_return_val_if_fail (connection != NULL, NULL);
956   _dbus_return_val_if_error_is_set (error, NULL);
957   
958   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
959                                           DBUS_PATH_DBUS,
960                                           DBUS_INTERFACE_DBUS,
961                                           "GetId");
962   
963   if (message == NULL)
964     {
965       _DBUS_SET_OOM (error);
966       return NULL;
967     }
968   
969   reply = dbus_connection_send_with_reply_and_block (connection, message, -1,
970                                                      error);
971   
972   dbus_message_unref (message);
973   
974   if (reply == NULL)
975     {
976       _DBUS_ASSERT_ERROR_IS_SET (error);
977       return NULL;
978     }  
979
980   if (dbus_set_error_from_message (error, reply))
981     {
982       _DBUS_ASSERT_ERROR_IS_SET (error);
983       dbus_message_unref (reply);
984       return NULL;
985     }
986
987   v_STRING = NULL;
988   if (!dbus_message_get_args (reply, error,
989                               DBUS_TYPE_STRING, &v_STRING,
990                               DBUS_TYPE_INVALID))
991     {
992       _DBUS_ASSERT_ERROR_IS_SET (error);
993       dbus_message_unref (reply);
994       return NULL;
995     }
996
997   id = _dbus_strdup (v_STRING); /* may be NULL */
998   
999   dbus_message_unref (reply);
1000
1001   if (id == NULL)
1002     _DBUS_SET_OOM (error);
1003
1004   /* FIXME it might be nice to cache the ID locally */
1005   
1006   return id;
1007 }
1008
1009 /**
1010  * Asks the bus to assign the given name to this connection by invoking
1011  * the RequestName method on the bus. This method is fully documented
1012  * in the D-Bus specification. For quick reference, the flags and
1013  * result codes are discussed here, but the specification is the
1014  * canonical version of this information.
1015  *
1016  * First you should know that for each bus name, the bus stores
1017  * a queue of connections that would like to own it. Only
1018  * one owns it at a time - called the primary owner. If the primary
1019  * owner releases the name or disconnects, then the next owner in the
1020  * queue atomically takes over.
1021  *
1022  * So for example if you have an application org.freedesktop.TextEditor
1023  * and multiple instances of it can be run, you can have all of them
1024  * sitting in the queue. The first one to start up will receive messages
1025  * sent to org.freedesktop.TextEditor, but if that one exits another
1026  * will become the primary owner and receive messages.
1027  *
1028  * The queue means you don't need to manually watch for the current owner to
1029  * disappear and then request the name again.
1030  *
1031  * When requesting a name, you can specify several flags.
1032  * 
1033  * #DBUS_NAME_FLAG_ALLOW_REPLACEMENT and #DBUS_NAME_FLAG_DO_NOT_QUEUE
1034  * are properties stored by the bus for this connection with respect to
1035  * each requested bus name. These properties are stored even if the
1036  * connection is queued and does not become the primary owner.
1037  * You can update these flags by calling RequestName again (even if
1038  * you already own the name).
1039  *
1040  * #DBUS_NAME_FLAG_ALLOW_REPLACEMENT means that another requestor of the
1041  * name can take it away from you by specifying #DBUS_NAME_FLAG_REPLACE_EXISTING.
1042  *
1043  * #DBUS_NAME_FLAG_DO_NOT_QUEUE means that if you aren't the primary owner,
1044  * you don't want to be queued up - you only care about being the
1045  * primary owner.
1046  *
1047  * Unlike the other two flags, #DBUS_NAME_FLAG_REPLACE_EXISTING is a property
1048  * of the individual RequestName call, i.e. the bus does not persistently
1049  * associate it with the connection-name pair. If a RequestName call includes
1050  * the #DBUS_NAME_FLAG_REPLACE_EXISTING flag, and the current primary
1051  * owner has #DBUS_NAME_FLAG_ALLOW_REPLACEMENT set, then the current primary
1052  * owner will be kicked off.
1053  *
1054  * If no flags are given, an application will receive the requested
1055  * name only if the name is currently unowned; and it will NOT give
1056  * up the name if another application asks to take it over using
1057  * #DBUS_NAME_FLAG_REPLACE_EXISTING.
1058  *
1059  * This function returns a result code. The possible result codes
1060  * are as follows.
1061  * 
1062  * #DBUS_REQUEST_NAME_REPLY_PRIMARY_OWNER means that the name had no
1063  * existing owner, and the caller is now the primary owner; or that
1064  * the name had an owner, and the caller specified
1065  * #DBUS_NAME_FLAG_REPLACE_EXISTING, and the current owner
1066  * specified #DBUS_NAME_FLAG_ALLOW_REPLACEMENT.
1067  *
1068  * #DBUS_REQUEST_NAME_REPLY_IN_QUEUE happens only if the caller does NOT
1069  * specify #DBUS_NAME_FLAG_DO_NOT_QUEUE and either the current owner
1070  * did NOT specify #DBUS_NAME_FLAG_ALLOW_REPLACEMENT or the caller did NOT
1071  * specify #DBUS_NAME_FLAG_REPLACE_EXISTING. In this case the caller ends up 
1072  * in a queue to own the name after the current owner gives it up.
1073  *
1074  * #DBUS_REQUEST_NAME_REPLY_EXISTS happens if the name has an owner
1075  * already and the caller specifies #DBUS_NAME_FLAG_DO_NOT_QUEUE
1076  * and either the current owner has NOT specified 
1077  * #DBUS_NAME_FLAG_ALLOW_REPLACEMENT or the caller did NOT specify 
1078  * #DBUS_NAME_FLAG_REPLACE_EXISTING.
1079  *
1080  * #DBUS_REQUEST_NAME_REPLY_ALREADY_OWNER happens if an application
1081  * requests a name it already owns. (Re-requesting a name is useful if
1082  * you want to change the #DBUS_NAME_FLAG_ALLOW_REPLACEMENT or
1083  * #DBUS_NAME_FLAG_DO_NOT_QUEUE settings.)
1084  *
1085  * When a service represents an application, say "text editor," then
1086  * it should specify #DBUS_NAME_FLAG_ALLOW_REPLACEMENT if it wants
1087  * the last editor started to be the user's editor vs. the first one
1088  * started.  Then any editor that can be the user's editor should
1089  * specify #DBUS_NAME_FLAG_REPLACE_EXISTING to either take over
1090  * (last-started-wins) or be queued up (first-started-wins) according
1091  * to whether #DBUS_NAME_FLAG_ALLOW_REPLACEMENT was given.
1092  *
1093  * Conventionally, single-instance applications often offer a command
1094  * line option called --replace which means to replace the current
1095  * instance.  To implement this, always set
1096  * #DBUS_NAME_FLAG_ALLOW_REPLACEMENT when you request your
1097  * application's bus name.  When you lose ownership of your bus name,
1098  * you need to exit.  Look for the signal "NameLost" from
1099  * #DBUS_SERVICE_DBUS and #DBUS_INTERFACE_DBUS (the signal's first
1100  * argument is the bus name that was lost).  If starting up without
1101  * --replace, do not specify #DBUS_NAME_FLAG_REPLACE_EXISTING, and
1102  * exit if you fail to become the bus name owner. If --replace is
1103  * given, ask to replace the old owner.
1104  *
1105  * @param connection the connection
1106  * @param name the name to request
1107  * @param flags flags
1108  * @param error location to store the error
1109  * @returns a result code, -1 if error is set
1110  */ 
1111 int
1112 dbus_bus_request_name (DBusConnection *connection,
1113                        const char     *name,
1114                        unsigned int    flags,
1115                        DBusError      *error)
1116 {
1117   DBusMessage *message, *reply;
1118   dbus_uint32_t result;
1119
1120   _dbus_return_val_if_fail (connection != NULL, 0);
1121   _dbus_return_val_if_fail (name != NULL, 0);
1122   _dbus_return_val_if_fail (_dbus_check_is_valid_bus_name (name), 0);
1123   _dbus_return_val_if_error_is_set (error, 0);
1124   
1125   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
1126                                           DBUS_PATH_DBUS,
1127                                           DBUS_INTERFACE_DBUS,
1128                                           "RequestName");
1129
1130   if (message == NULL)
1131     {
1132       _DBUS_SET_OOM (error);
1133       return -1;
1134     }
1135  
1136   if (!dbus_message_append_args (message,
1137                                  DBUS_TYPE_STRING, &name,
1138                                  DBUS_TYPE_UINT32, &flags,
1139                                  DBUS_TYPE_INVALID))
1140     {
1141       dbus_message_unref (message);
1142       _DBUS_SET_OOM (error);
1143       return -1;
1144     }
1145   
1146   reply = dbus_connection_send_with_reply_and_block (connection, message, -1,
1147                                                      error);
1148   
1149   dbus_message_unref (message);
1150   
1151   if (reply == NULL)
1152     {
1153       _DBUS_ASSERT_ERROR_IS_SET (error);
1154       return -1;
1155     }  
1156
1157   if (dbus_set_error_from_message (error, reply))
1158     {
1159       _DBUS_ASSERT_ERROR_IS_SET (error);
1160       dbus_message_unref (reply);
1161       return -1;
1162     }
1163   
1164   if (!dbus_message_get_args (reply, error,
1165                               DBUS_TYPE_UINT32, &result,
1166                               DBUS_TYPE_INVALID))
1167     {
1168       _DBUS_ASSERT_ERROR_IS_SET (error);
1169       dbus_message_unref (reply);
1170       return -1;
1171     }
1172
1173   dbus_message_unref (reply);
1174   
1175   return result;
1176 }
1177
1178
1179 /**
1180  * Asks the bus to unassign the given name from this connection by
1181  * invoking the ReleaseName method on the bus. The "ReleaseName"
1182  * method is canonically documented in the D-Bus specification.
1183  *
1184  * Possible results are: #DBUS_RELEASE_NAME_REPLY_RELEASED
1185  * which means you owned the name or were in the queue to own it,
1186  * and and now you don't own it and aren't in the queue.
1187  * #DBUS_RELEASE_NAME_REPLY_NOT_OWNER which means someone else
1188  * owns the name so you can't release it.
1189  * #DBUS_RELEASE_NAME_REPLY_NON_EXISTENT
1190  * which means nobody owned the name.
1191  * 
1192  * @param connection the connection
1193  * @param name the name to remove 
1194  * @param error location to store the error
1195  * @returns a result code, -1 if error is set
1196  */ 
1197 int
1198 dbus_bus_release_name (DBusConnection *connection,
1199                        const char     *name,
1200                        DBusError      *error)
1201 {
1202   DBusMessage *message, *reply;
1203   dbus_uint32_t result;
1204
1205   _dbus_return_val_if_fail (connection != NULL, 0);
1206   _dbus_return_val_if_fail (name != NULL, 0);
1207   _dbus_return_val_if_fail (_dbus_check_is_valid_bus_name (name), 0);
1208   _dbus_return_val_if_error_is_set (error, 0);
1209
1210   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
1211                                           DBUS_PATH_DBUS,
1212                                           DBUS_INTERFACE_DBUS,
1213                                           "ReleaseName");
1214
1215   if (message == NULL)
1216     {
1217       _DBUS_SET_OOM (error);
1218       return -1;
1219     }
1220
1221   if (!dbus_message_append_args (message,
1222                                  DBUS_TYPE_STRING, &name,
1223                                  DBUS_TYPE_INVALID))
1224     {
1225       dbus_message_unref (message);
1226       _DBUS_SET_OOM (error);
1227       return -1;
1228     }
1229
1230   reply = dbus_connection_send_with_reply_and_block (connection, message, -1,
1231                                                      error);
1232
1233   dbus_message_unref (message);
1234
1235   if (reply == NULL)
1236     {
1237       _DBUS_ASSERT_ERROR_IS_SET (error);
1238       return -1;
1239     }
1240
1241   if (dbus_set_error_from_message (error, reply))
1242     {
1243       _DBUS_ASSERT_ERROR_IS_SET (error);
1244       dbus_message_unref (reply);
1245       return -1;
1246     }
1247
1248   if (!dbus_message_get_args (reply, error,
1249                               DBUS_TYPE_UINT32, &result,
1250                               DBUS_TYPE_INVALID))
1251     {
1252       _DBUS_ASSERT_ERROR_IS_SET (error);
1253       dbus_message_unref (reply);
1254       return -1;
1255     }
1256
1257   dbus_message_unref (reply);
1258
1259   return result;
1260 }
1261
1262 /**
1263  * Asks the bus whether a certain name has an owner.
1264  *
1265  * Using this can easily result in a race condition,
1266  * since an owner can appear or disappear after you
1267  * call this.
1268  *
1269  * If you want to request a name, just request it;
1270  * if you want to avoid replacing a current owner,
1271  * don't specify #DBUS_NAME_FLAG_REPLACE_EXISTING and
1272  * you will get an error if there's already an owner.
1273  * 
1274  * @param connection the connection
1275  * @param name the name
1276  * @param error location to store any errors
1277  * @returns #TRUE if the name exists, #FALSE if not or on error
1278  */
1279 dbus_bool_t
1280 dbus_bus_name_has_owner (DBusConnection *connection,
1281                          const char     *name,
1282                          DBusError      *error)
1283 {
1284   DBusMessage *message, *reply;
1285   dbus_bool_t exists;
1286
1287   _dbus_return_val_if_fail (connection != NULL, FALSE);
1288   _dbus_return_val_if_fail (name != NULL, FALSE);
1289   _dbus_return_val_if_fail (_dbus_check_is_valid_bus_name (name), FALSE);
1290   _dbus_return_val_if_error_is_set (error, FALSE);
1291   
1292   message = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
1293                                           DBUS_PATH_DBUS,
1294                                           DBUS_INTERFACE_DBUS,
1295                                           "NameHasOwner");
1296   if (message == NULL)
1297     {
1298       _DBUS_SET_OOM (error);
1299       return FALSE;
1300     }
1301   
1302   if (!dbus_message_append_args (message,
1303                                  DBUS_TYPE_STRING, &name,
1304                                  DBUS_TYPE_INVALID))
1305     {
1306       dbus_message_unref (message);
1307       _DBUS_SET_OOM (error);
1308       return FALSE;
1309     }
1310   
1311   reply = dbus_connection_send_with_reply_and_block (connection, message, -1, error);
1312   dbus_message_unref (message);
1313
1314   if (reply == NULL)
1315     {
1316       _DBUS_ASSERT_ERROR_IS_SET (error);
1317       return FALSE;
1318     }
1319
1320   if (!dbus_message_get_args (reply, error,
1321                               DBUS_TYPE_BOOLEAN, &exists,
1322                               DBUS_TYPE_INVALID))
1323     {
1324       _DBUS_ASSERT_ERROR_IS_SET (error);
1325       dbus_message_unref (reply);
1326       return FALSE;
1327     }
1328   
1329   dbus_message_unref (reply);
1330   return exists;
1331 }
1332
1333 /**
1334  * Starts a service that will request ownership of the given name.
1335  * The returned result will be one of be one of
1336  * #DBUS_START_REPLY_SUCCESS or #DBUS_START_REPLY_ALREADY_RUNNING if
1337  * successful.  Pass #NULL if you don't care about the result.
1338  * 
1339  * The flags parameter is for future expansion, currently you should
1340  * specify 0.
1341  *
1342  * It's often easier to avoid explicitly starting services, and
1343  * just send a method call to the service's bus name instead.
1344  * Method calls start a service to handle them by default
1345  * unless you call dbus_message_set_auto_start() to disable this
1346  * behavior.
1347  * 
1348  * @param connection the connection
1349  * @param name the name we want the new service to request
1350  * @param flags the flags (should always be 0 for now)
1351  * @param result a place to store the result or #NULL
1352  * @param error location to store any errors
1353  * @returns #TRUE if the activation succeeded, #FALSE if not
1354  */
1355 dbus_bool_t
1356 dbus_bus_start_service_by_name (DBusConnection *connection,
1357                                 const char     *name,
1358                                 dbus_uint32_t   flags,
1359                                 dbus_uint32_t  *result,
1360                                 DBusError      *error)
1361 {
1362   DBusMessage *msg;
1363   DBusMessage *reply;
1364
1365   _dbus_return_val_if_fail (connection != NULL, FALSE);
1366   _dbus_return_val_if_fail (_dbus_check_is_valid_bus_name (name), FALSE);
1367   
1368   msg = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
1369                                       DBUS_PATH_DBUS,
1370                                       DBUS_INTERFACE_DBUS,
1371                                       "StartServiceByName");
1372
1373   if (!dbus_message_append_args (msg, DBUS_TYPE_STRING, &name,
1374                                  DBUS_TYPE_UINT32, &flags, DBUS_TYPE_INVALID))
1375     {
1376       dbus_message_unref (msg);
1377       _DBUS_SET_OOM (error);
1378       return FALSE;
1379     }
1380
1381   reply = dbus_connection_send_with_reply_and_block (connection, msg,
1382                                                      -1, error);
1383   dbus_message_unref (msg);
1384
1385   if (reply == NULL)
1386     {
1387       _DBUS_ASSERT_ERROR_IS_SET (error);
1388       return FALSE;
1389     }
1390
1391   if (dbus_set_error_from_message (error, reply))
1392     {
1393       _DBUS_ASSERT_ERROR_IS_SET (error);
1394       dbus_message_unref (reply);
1395       return FALSE;
1396     }
1397
1398   if (result != NULL &&
1399       !dbus_message_get_args (reply, error, DBUS_TYPE_UINT32,
1400                               result, DBUS_TYPE_INVALID))
1401     {
1402       _DBUS_ASSERT_ERROR_IS_SET (error);
1403       dbus_message_unref (reply);
1404       return FALSE;
1405     }
1406   
1407   dbus_message_unref (reply);
1408   return TRUE;
1409 }
1410
1411 static void
1412 send_no_return_values (DBusConnection *connection,
1413                        DBusMessage    *msg,
1414                        DBusError      *error)
1415 {
1416   if (error)
1417     {
1418       /* Block to check success codepath */
1419       DBusMessage *reply;
1420       
1421       reply = dbus_connection_send_with_reply_and_block (connection, msg,
1422                                                          -1, error);
1423       
1424       if (reply == NULL)
1425         _DBUS_ASSERT_ERROR_IS_SET (error);
1426       else
1427         dbus_message_unref (reply);
1428     }
1429   else
1430     {
1431       /* Silently-fail nonblocking codepath */
1432       dbus_message_set_no_reply (msg, TRUE);
1433       dbus_connection_send (connection, msg, NULL);
1434     }
1435 }
1436
1437 /**
1438  * Adds a match rule to match messages going through the message bus.
1439  * The "rule" argument is the string form of a match rule.
1440  *
1441  * If you pass #NULL for the error, this function will not
1442  * block; the match thus won't be added until you flush the
1443  * connection, and if there's an error adding the match
1444  * you won't find out about it. This is generally acceptable, since the
1445  * possible errors (including a lack of resources in the bus, the connection
1446  * having exceeded its quota of active match rules, or the match rule being
1447  * unparseable) are generally unrecoverable.
1448  *
1449  * If you pass non-#NULL for the error this function will
1450  * block until it gets a reply. This may be useful when using match rule keys
1451  * introduced in recent versions of D-Bus, like 'arg0namespace', to allow the
1452  * application to fall back to less efficient match rules supported by older
1453  * versions of the daemon if the running version is not new enough; or when
1454  * using user-supplied rules rather than rules hard-coded at compile time.
1455  *
1456  * Normal API conventions would have the function return
1457  * a boolean value indicating whether the error was set,
1458  * but that would require blocking always to determine
1459  * the return value.
1460  *
1461  * The AddMatch method is fully documented in the D-Bus 
1462  * specification. For quick reference, the format of the 
1463  * match rules is discussed here, but the specification 
1464  * is the canonical version of this information.
1465  *
1466  * Rules are specified as a string of comma separated 
1467  * key/value pairs. An example is 
1468  * "type='signal',sender='org.freedesktop.DBus',
1469  * interface='org.freedesktop.DBus',member='Foo',
1470  * path='/bar/foo',destination=':452345.34'"
1471  *
1472  * Possible keys you can match on are type, sender, 
1473  * interface, member, path, destination and numbered
1474  * keys to match message args (keys are 'arg0', 'arg1', etc.).
1475  * Omitting a key from the rule indicates 
1476  * a wildcard match.  For instance omitting
1477  * the member from a match rule but adding a sender would
1478  * let all messages from that sender through regardless of
1479  * the member.
1480  *
1481  * Matches are inclusive not exclusive so as long as one 
1482  * rule matches the message will get through.  It is important
1483  * to note this because every time a message is received the 
1484  * application will be paged into memory to process it.  This
1485  * can cause performance problems such as draining batteries
1486  * on embedded platforms.
1487  *
1488  * If you match message args ('arg0', 'arg1', and so forth)
1489  * only string arguments will match. That is, arg0='5' means
1490  * match the string "5" not the integer 5.
1491  *
1492  * Currently there is no way to match against non-string arguments.
1493  *
1494  * A specialised form of wildcard matching on arguments is
1495  * supported for path-like namespaces.  If your argument match has
1496  * a 'path' suffix (eg: "arg0path='/some/path/'") then it is
1497  * considered a match if the argument exactly matches the given
1498  * string or if one of them ends in a '/' and is a prefix of the
1499  * other.
1500  *
1501  * Matching on interface is tricky because method call
1502  * messages only optionally specify the interface.
1503  * If a message omits the interface, then it will NOT match
1504  * if the rule specifies an interface name. This means match
1505  * rules on method calls should not usually give an interface.
1506  *
1507  * However, signal messages are required to include the interface
1508  * so when matching signals usually you should specify the interface
1509  * in the match rule.
1510  * 
1511  * For security reasons, you can match arguments only up to
1512  * #DBUS_MAXIMUM_MATCH_RULE_ARG_NUMBER.
1513  *
1514  * Match rules have a maximum length of #DBUS_MAXIMUM_MATCH_RULE_LENGTH
1515  * bytes.
1516  *
1517  * Both of these maximums are much higher than you're likely to need,
1518  * they only exist because the D-Bus bus daemon has fixed limits on
1519  * all resource usage.
1520  *
1521  * @param connection connection to the message bus
1522  * @param rule textual form of match rule
1523  * @param error location to store any errors
1524  */
1525 void
1526 dbus_bus_add_match (DBusConnection *connection,
1527                     const char     *rule,
1528                     DBusError      *error)
1529 {
1530   DBusMessage *msg;
1531
1532   _dbus_return_if_fail (rule != NULL);
1533
1534   msg = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
1535                                       DBUS_PATH_DBUS,
1536                                       DBUS_INTERFACE_DBUS,
1537                                       "AddMatch");
1538
1539   if (msg == NULL)
1540     {
1541       _DBUS_SET_OOM (error);
1542       return;
1543     }
1544
1545   if (!dbus_message_append_args (msg, DBUS_TYPE_STRING, &rule,
1546                                  DBUS_TYPE_INVALID))
1547     {
1548       dbus_message_unref (msg);
1549       _DBUS_SET_OOM (error);
1550       return;
1551     }
1552
1553   send_no_return_values (connection, msg, error);
1554
1555   dbus_message_unref (msg);
1556 }
1557
1558 /**
1559  * Removes a previously-added match rule "by value" (the most
1560  * recently-added identical rule gets removed).  The "rule" argument
1561  * is the string form of a match rule.
1562  *
1563  * The bus compares match rules semantically, not textually, so
1564  * whitespace and ordering don't have to be identical to
1565  * the rule you passed to dbus_bus_add_match().
1566  * 
1567  * If you pass #NULL for the error, this function will not
1568  * block; otherwise it will. See detailed explanation in
1569  * docs for dbus_bus_add_match().
1570  * 
1571  * @param connection connection to the message bus
1572  * @param rule textual form of match rule
1573  * @param error location to store any errors
1574  */
1575 void
1576 dbus_bus_remove_match (DBusConnection *connection,
1577                        const char     *rule,
1578                        DBusError      *error)
1579 {
1580   DBusMessage *msg;
1581
1582   _dbus_return_if_fail (rule != NULL);
1583   
1584   msg = dbus_message_new_method_call (DBUS_SERVICE_DBUS,
1585                                       DBUS_PATH_DBUS,
1586                                       DBUS_INTERFACE_DBUS,
1587                                       "RemoveMatch");
1588
1589   if (!dbus_message_append_args (msg, DBUS_TYPE_STRING, &rule,
1590                                  DBUS_TYPE_INVALID))
1591     {
1592       dbus_message_unref (msg);
1593       _DBUS_SET_OOM (error);
1594       return;
1595     }
1596
1597   send_no_return_values (connection, msg, error);
1598
1599   dbus_message_unref (msg);
1600 }
1601
1602 /** @} */