1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* dbus-bus.c Convenience functions for communicating with the bus.
4 * Copyright (C) 2003 CodeFactory AB
5 * Copyright (C) 2003 Red Hat, Inc.
7 * Licensed under the Academic Free License version 1.2
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.
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.
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include "dbus-protocol.h"
27 #include "dbus-internals.h"
31 * @defgroup DBusBus Message bus APIs
33 * @brief Functions for communicating with the message bus
39 * @defgroup DBusBusInternals Message bus APIs internals
40 * @ingroup DBusInternals
41 * @brief Internals of functions for communicating with the message bus
47 * Block of message-bus-related data we attach to each
48 * #DBusConnection used with these convenience functions.
53 DBusConnection *connection; /**< Connection we're associated with */
54 char *base_service; /**< Base service name of this connection */
56 unsigned int is_well_known : 1; /**< Is one of the well-known connections in our global array */
59 /** The slot we have reserved to store BusData
61 static int bus_data_slot = -1;
62 /** Number of connections using the slot
64 static int bus_data_slot_refcount = 0;
66 /** Number of bus types */
69 static DBusConnection *bus_connections[N_BUS_TYPES];
70 static char *bus_connection_addresses[N_BUS_TYPES] = { NULL, NULL, NULL };
72 static DBusBusType activation_bus_type = DBUS_BUS_ACTIVATION;
74 static dbus_bool_t initialized = FALSE;
77 * Lock for globals in this file
79 _DBUS_DEFINE_GLOBAL_LOCK (bus);
82 addresses_shutdown_func (void *data)
87 while (i < N_BUS_TYPES)
89 if (bus_connections[i] != NULL)
90 _dbus_warn ("dbus_shutdown() called but connections were still live!");
92 dbus_free (bus_connection_addresses[i]);
93 bus_connection_addresses[i] = NULL;
97 activation_bus_type = DBUS_BUS_ACTIVATION;
101 get_from_env (char **connection_p,
106 _dbus_assert (*connection_p == NULL);
108 s = _dbus_getenv (env_var);
109 if (s == NULL || *s == '\0')
110 return TRUE; /* successfully didn't use the env var */
113 *connection_p = _dbus_strdup (s);
114 return *connection_p != NULL;
119 init_connections_unlocked (void)
127 while (i < N_BUS_TYPES)
129 bus_connections[i] = NULL;
133 /* Don't init these twice, we may run this code twice if
134 * init_connections_unlocked() fails midway through.
137 if (bus_connection_addresses[DBUS_BUS_SYSTEM] == NULL)
139 if (!get_from_env (&bus_connection_addresses[DBUS_BUS_SYSTEM],
140 "DBUS_SYSTEM_BUS_ADDRESS"))
143 if (bus_connection_addresses[DBUS_BUS_SYSTEM] == NULL)
145 /* Use default system bus address if none set in environment */
146 bus_connection_addresses[DBUS_BUS_SYSTEM] =
147 _dbus_strdup ("unix:path=" DBUS_SYSTEM_BUS_PATH);
148 if (bus_connection_addresses[DBUS_BUS_SYSTEM] == NULL)
153 if (bus_connection_addresses[DBUS_BUS_SESSION] == NULL)
155 if (!get_from_env (&bus_connection_addresses[DBUS_BUS_SESSION],
156 "DBUS_SESSION_BUS_ADDRESS"))
160 if (bus_connection_addresses[DBUS_BUS_ACTIVATION] == NULL)
162 if (!get_from_env (&bus_connection_addresses[DBUS_BUS_ACTIVATION],
163 "DBUS_ACTIVATION_ADDRESS"))
167 s = _dbus_getenv ("DBUS_ACTIVATION_BUS_TYPE");
171 if (strcmp (s, "system") == 0)
172 activation_bus_type = DBUS_BUS_SYSTEM;
173 else if (strcmp (s, "session") == 0)
174 activation_bus_type = DBUS_BUS_SESSION;
177 /* If we return FALSE we have to be sure that restarting
178 * the above code will work right
181 if (!_dbus_setenv ("DBUS_ACTIVATION_ADDRESS", NULL))
184 if (!_dbus_setenv ("DBUS_ACTIVATION_BUS_TYPE", NULL))
187 if (!_dbus_register_shutdown_func (addresses_shutdown_func,
202 if (bus_data_slot < 0)
204 bus_data_slot = dbus_connection_allocate_data_slot ();
206 if (bus_data_slot < 0)
212 _dbus_assert (bus_data_slot_refcount == 0);
215 bus_data_slot_refcount += 1;
223 data_slot_unref (void)
227 _dbus_assert (bus_data_slot_refcount > 0);
228 _dbus_assert (bus_data_slot >= 0);
230 bus_data_slot_refcount -= 1;
232 if (bus_data_slot_refcount == 0)
234 dbus_connection_free_data_slot (bus_data_slot);
242 bus_data_free (void *data)
246 if (bd->is_well_known)
250 /* We may be stored in more than one slot */
252 while (i < N_BUS_TYPES)
254 if (bus_connections[i] == bd->connection)
255 bus_connections[i] = NULL;
262 dbus_free (bd->base_service);
269 ensure_bus_data (DBusConnection *connection)
273 if (!data_slot_ref ())
276 bd = dbus_connection_get_data (connection, bus_data_slot);
279 bd = dbus_new0 (BusData, 1);
286 bd->connection = connection;
288 if (!dbus_connection_set_data (connection, bus_data_slot, bd,
296 /* Data slot refcount now held by the BusData */
306 /** @} */ /* end of implementation details docs */
309 * @addtogroup DBusBus
314 * Connects to a bus daemon and registers the client with it.
315 * If a connection to the bus already exists, then that connection is returned.
317 * @todo alex thinks we should nullify the connection when we get a disconnect-message.
319 * @param type bus type
320 * @param error address where an error can be returned.
321 * @returns a DBusConnection
324 dbus_bus_get (DBusBusType type,
328 DBusConnection *connection;
330 DBusBusType address_type;
332 _dbus_return_val_if_fail (type >= 0 && type < N_BUS_TYPES, NULL);
333 _dbus_return_val_if_error_is_set (error, NULL);
337 if (!init_connections_unlocked ())
340 dbus_set_error (error, DBUS_ERROR_NO_MEMORY, NULL);
344 /* We want to use the activation address even if the
345 * activating bus is the session or system bus,
350 /* Use the real type of the activation bus for getting its
351 * connection. (If the activating bus isn't a well-known
352 * bus then activation_bus_type == DBUS_BUS_ACTIVATION)
354 if (type == DBUS_BUS_ACTIVATION)
355 type = activation_bus_type;
357 if (bus_connections[type] != NULL)
359 connection = bus_connections[type];
360 dbus_connection_ref (connection);
366 address = bus_connection_addresses[address_type];
369 dbus_set_error (error, DBUS_ERROR_FAILED,
370 "Unable to determine the address of the message bus");
375 connection = dbus_connection_open (address, error);
379 _DBUS_ASSERT_ERROR_IS_SET (error);
384 if (!dbus_bus_register (connection, error))
386 _DBUS_ASSERT_ERROR_IS_SET (error);
387 dbus_connection_disconnect (connection);
388 dbus_connection_unref (connection);
394 bus_connections[type] = connection;
395 bd = ensure_bus_data (connection);
396 _dbus_assert (bd != NULL);
398 bd->is_well_known = TRUE;
406 * Registers a connection with the bus. This must be the first
407 * thing an application does when connecting to the message bus.
408 * If registration succeeds, the base service name will be set,
409 * and can be obtained using dbus_bus_get_base_service().
411 * @todo if we get an error reply, it has to be converted into
412 * DBusError and returned
414 * @param connection the connection
415 * @param error place to store errors
416 * @returns #TRUE on success
419 dbus_bus_register (DBusConnection *connection,
422 DBusMessage *message, *reply;
427 _dbus_return_val_if_fail (connection != NULL, FALSE);
428 _dbus_return_val_if_error_is_set (error, FALSE);
432 bd = ensure_bus_data (connection);
435 _DBUS_SET_OOM (error);
439 if (bd->base_service != NULL)
441 _dbus_warn ("Attempt to register the same DBusConnection with the message bus, but it is already registered\n");
442 /* This isn't an error, it's a programming bug. We'll be nice
443 * and not _dbus_assert_not_reached()
448 message = dbus_message_new (DBUS_MESSAGE_HELLO,
454 _DBUS_SET_OOM (error);
458 reply = dbus_connection_send_with_reply_and_block (connection, message, -1, error);
460 dbus_message_unref (message);
464 else if (dbus_set_error_from_message (error, reply))
466 else if (!dbus_message_get_args (reply, error,
467 DBUS_TYPE_STRING, &name,
471 bd->base_service = name;
477 dbus_message_unref (reply);
480 _DBUS_ASSERT_ERROR_IS_SET (error);
487 * Sets the base service name of the connection.
488 * Can only be used if you registered with the
489 * bus manually (i.e. if you did not call
490 * dbus_bus_register()). Can only be called
491 * once per connection.
493 * @param connection the connection
494 * @param base_service the base service name
495 * @returns #FALSE if not enough memory
498 dbus_bus_set_base_service (DBusConnection *connection,
499 const char *base_service)
503 _dbus_return_val_if_fail (connection != NULL, FALSE);
504 _dbus_return_val_if_fail (base_service != NULL, FALSE);
506 bd = ensure_bus_data (connection);
510 _dbus_assert (bd->base_service == NULL);
512 bd->base_service = _dbus_strdup (base_service);
513 return bd->base_service != NULL;
517 * Gets the base service name of the connection.
518 * Only possible after the connection has been registered
519 * with the message bus.
521 * @param connection the connection
522 * @returns the base service name
525 dbus_bus_get_base_service (DBusConnection *connection)
529 _dbus_return_val_if_fail (connection != NULL, NULL);
531 bd = ensure_bus_data (connection);
535 return bd->base_service;
539 * Asks the bus to try to acquire a certain service.
541 * @todo these docs are not complete, need to document the
542 * return value and flags
544 * @todo if we get an error reply, it has to be converted into
545 * DBusError and returned
547 * @param connection the connection
548 * @param service_name the service name
550 * @param error location to store the error
551 * @returns a result code, -1 if error is set
554 dbus_bus_acquire_service (DBusConnection *connection,
555 const char *service_name,
559 DBusMessage *message, *reply;
560 dbus_uint32_t service_result;
562 _dbus_return_val_if_fail (connection != NULL, 0);
563 _dbus_return_val_if_fail (service_name != NULL, 0);
564 _dbus_return_val_if_error_is_set (error, 0);
566 message = dbus_message_new (DBUS_MESSAGE_ACQUIRE_SERVICE,
572 _DBUS_SET_OOM (error);
576 if (!dbus_message_append_args (message,
577 DBUS_TYPE_STRING, service_name,
578 DBUS_TYPE_UINT32, flags,
581 dbus_message_unref (message);
582 _DBUS_SET_OOM (error);
586 reply = dbus_connection_send_with_reply_and_block (connection, message, -1,
589 dbus_message_unref (message);
593 _DBUS_ASSERT_ERROR_IS_SET (error);
597 if (dbus_set_error_from_message (error, reply))
599 _DBUS_ASSERT_ERROR_IS_SET (error);
600 dbus_message_unref (reply);
604 if (!dbus_message_get_args (reply, error,
605 DBUS_TYPE_UINT32, &service_result,
608 _DBUS_ASSERT_ERROR_IS_SET (error);
609 dbus_message_unref (reply);
613 dbus_message_unref (reply);
615 return service_result;
619 * Checks whether a certain service exists.
621 * @todo the SERVICE_EXISTS message should use BOOLEAN not UINT32
623 * @param connection the connection
624 * @param service_name the service name
625 * @param error location to store any errors
626 * @returns #TRUE if the service exists, #FALSE if not or on error
629 dbus_bus_service_exists (DBusConnection *connection,
630 const char *service_name,
633 DBusMessage *message, *reply;
636 _dbus_return_val_if_fail (connection != NULL, FALSE);
637 _dbus_return_val_if_fail (service_name != NULL, FALSE);
638 _dbus_return_val_if_error_is_set (error, FALSE);
640 message = dbus_message_new (DBUS_MESSAGE_SERVICE_EXISTS,
644 _DBUS_SET_OOM (error);
648 if (!dbus_message_append_args (message,
649 DBUS_TYPE_STRING, service_name,
652 dbus_message_unref (message);
653 _DBUS_SET_OOM (error);
657 reply = dbus_connection_send_with_reply_and_block (connection, message, -1, error);
658 dbus_message_unref (message);
662 _DBUS_ASSERT_ERROR_IS_SET (error);
666 if (!dbus_message_get_args (reply, error,
667 DBUS_TYPE_UINT32, &exists,
670 _DBUS_ASSERT_ERROR_IS_SET (error);
674 return (exists != FALSE);
678 * Activates a given service
680 * @param connection the connection
681 * @param service_name the service name
682 * @param flags the flags
683 * @param result a place to store the result of the activation, which will
684 * be one of DBUS_ACTIVATION_REPLY_ACTIVATED or
685 * DBUS_ACTIVATION_REPLY_ALREADY_ACTIVE if successful. Pass NULL if you
686 * don't care about the result.
687 * @param error location to store any errors
688 * @returns #TRUE if the activation succeeded, #FALSE if not
690 * @todo document what the flags do
693 dbus_bus_activate_service (DBusConnection *connection,
694 const char *service_name,
696 dbus_uint32_t *result,
702 msg = dbus_message_new (DBUS_MESSAGE_ACTIVATE_SERVICE,
705 if (!dbus_message_append_args (msg, DBUS_TYPE_STRING, service_name,
706 DBUS_TYPE_UINT32, flags, DBUS_TYPE_INVALID))
708 dbus_message_unref (msg);
709 _DBUS_SET_OOM (error);
713 reply = dbus_connection_send_with_reply_and_block (connection, msg,
715 dbus_message_unref (msg);
719 _DBUS_ASSERT_ERROR_IS_SET (error);
723 if (dbus_set_error_from_message (error, reply))
725 _DBUS_ASSERT_ERROR_IS_SET (error);
726 dbus_message_unref (reply);
730 if (result != NULL &&
731 !dbus_message_get_args (reply, error, DBUS_TYPE_UINT32,
732 result, DBUS_TYPE_INVALID))
734 _DBUS_ASSERT_ERROR_IS_SET (error);
735 dbus_message_unref (reply);
739 dbus_message_unref (reply);