First public contribution.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* driver.c Bus client (driver)
4 * Copyright (C) 2003 CodeFactory AB
5 * Copyright (C) 2003, 2004, 2005 Red Hat, Inc.
6 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
7 * Licensed under the Academic Free License version 2.1
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
25 #include "activation.h"
26 #include "connection.h"
34 #include <dbus/dbus-string.h>
35 #include <dbus/dbus-internals.h>
36 #include <dbus/dbus-marshal-recursive.h>
38 #include "dbus-string.h"
39 #include "dbus-internals.h"
40 #include "dbus-marshal-recursive.h"
41 #endif //__SYMBIAN32__
44 static dbus_bool_t bus_driver_send_welcome_message (DBusConnection *connection,
45 DBusMessage *hello_message,
46 BusTransaction *transaction,
50 bus_driver_send_service_owner_changed (const char *service_name,
51 const char *old_owner,
52 const char *new_owner,
53 BusTransaction *transaction,
58 const char *null_service;
60 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
63 _dbus_verbose ("sending name owner changed: %s [%s -> %s]\n",
65 old_owner ? old_owner : null_service,
66 new_owner ? new_owner : null_service);
68 message = dbus_message_new_signal (DBUS_PATH_DBUS,
78 if (!dbus_message_set_sender (message, DBUS_SERVICE_DBUS))
81 if (!dbus_message_append_args (message,
82 DBUS_TYPE_STRING, &service_name,
83 DBUS_TYPE_STRING, old_owner ? &old_owner : &null_service,
84 DBUS_TYPE_STRING, new_owner ? &new_owner : &null_service,
88 _dbus_assert (dbus_message_has_signature (message, "sss"));
90 retval = bus_dispatch_matches (transaction, NULL, NULL, message, error);
91 dbus_message_unref (message);
96 dbus_message_unref (message);
102 bus_driver_send_service_lost (DBusConnection *connection,
103 const char *service_name,
104 BusTransaction *transaction,
107 DBusMessage *message;
109 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
111 message = dbus_message_new_signal (DBUS_PATH_DBUS,
121 if (!dbus_message_set_destination (message, bus_connection_get_name (connection)) ||
122 !dbus_message_append_args (message,
123 DBUS_TYPE_STRING, &service_name,
126 dbus_message_unref (message);
131 if (!bus_transaction_send_from_driver (transaction, connection, message))
133 dbus_message_unref (message);
139 dbus_message_unref (message);
145 bus_driver_send_service_acquired (DBusConnection *connection,
146 const char *service_name,
147 BusTransaction *transaction,
150 DBusMessage *message;
152 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
154 message = dbus_message_new_signal (DBUS_PATH_DBUS,
164 if (!dbus_message_set_destination (message, bus_connection_get_name (connection)) ||
165 !dbus_message_append_args (message,
166 DBUS_TYPE_STRING, &service_name,
169 dbus_message_unref (message);
174 if (!bus_transaction_send_from_driver (transaction, connection, message))
176 dbus_message_unref (message);
182 dbus_message_unref (message);
188 create_unique_client_name (BusRegistry *registry,
191 /* We never want to use the same unique client name twice, because
192 * we want to guarantee that if you send a message to a given unique
193 * name, you always get the same application. So we use two numbers
194 * for INT_MAX * INT_MAX combinations, should be pretty safe against
197 /* FIXME these should be in BusRegistry rather than static vars */
198 static int next_major_number = 0;
199 static int next_minor_number = 0;
202 len = _dbus_string_get_length (str);
206 /* start out with 1-0, go to 1-1, 1-2, 1-3,
207 * up to 1-MAXINT, then 2-0, 2-1, etc.
209 if (next_minor_number <= 0)
211 next_major_number += 1;
212 next_minor_number = 0;
213 if (next_major_number <= 0)
214 _dbus_assert_not_reached ("INT_MAX * INT_MAX clients were added");
217 _dbus_assert (next_major_number > 0);
218 _dbus_assert (next_minor_number >= 0);
220 /* appname:MAJOR-MINOR */
222 if (!_dbus_string_append (str, ":"))
225 if (!_dbus_string_append_int (str, next_major_number))
228 if (!_dbus_string_append (str, "."))
231 if (!_dbus_string_append_int (str, next_minor_number))
234 next_minor_number += 1;
236 /* Check if a client with the name exists */
237 if (bus_registry_lookup (registry, str) == NULL)
240 /* drop the number again, try the next one. */
241 _dbus_string_set_length (str, len);
248 bus_driver_handle_hello (DBusConnection *connection,
249 BusTransaction *transaction,
250 DBusMessage *message,
253 DBusString unique_name;
256 BusRegistry *registry;
257 BusConnections *connections;
259 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
261 if (bus_connection_is_active (connection))
263 /* We already handled an Hello message for this connection. */
264 dbus_set_error (error, DBUS_ERROR_FAILED,
265 "Already handled an Hello message");
269 /* Note that when these limits are exceeded we don't disconnect the
270 * connection; we just sort of leave it hanging there until it times
271 * out or disconnects itself or is dropped due to the max number of
272 * incomplete connections. It's even OK if the connection wants to
273 * retry the hello message, we support that.
275 connections = bus_connection_get_connections (connection);
276 if (!bus_connections_check_limits (connections, connection,
279 _DBUS_ASSERT_ERROR_IS_SET (error);
283 if (!_dbus_string_init (&unique_name))
291 registry = bus_connection_get_registry (connection);
293 if (!create_unique_client_name (registry, &unique_name))
299 if (!bus_connection_complete (connection, &unique_name, error))
301 _DBUS_ASSERT_ERROR_IS_SET (error);
305 if (!dbus_message_set_sender (message,
306 bus_connection_get_name (connection)))
312 if (!bus_driver_send_welcome_message (connection, message, transaction, error))
315 /* Create the service */
316 service = bus_registry_ensure (registry,
317 &unique_name, connection, 0, transaction, error);
321 _dbus_assert (bus_connection_is_active (connection));
325 _dbus_string_free (&unique_name);
330 bus_driver_send_welcome_message (DBusConnection *connection,
331 DBusMessage *hello_message,
332 BusTransaction *transaction,
335 DBusMessage *welcome;
338 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
340 name = bus_connection_get_name (connection);
341 _dbus_assert (name != NULL);
343 welcome = dbus_message_new_method_return (hello_message);
350 if (!dbus_message_append_args (welcome,
351 DBUS_TYPE_STRING, &name,
354 dbus_message_unref (welcome);
359 _dbus_assert (dbus_message_has_signature (welcome, DBUS_TYPE_STRING_AS_STRING));
361 if (!bus_transaction_send_from_driver (transaction, connection, welcome))
363 dbus_message_unref (welcome);
369 dbus_message_unref (welcome);
375 bus_driver_handle_list_services (DBusConnection *connection,
376 BusTransaction *transaction,
377 DBusMessage *message,
383 BusRegistry *registry;
385 DBusMessageIter iter;
388 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
390 registry = bus_connection_get_registry (connection);
392 reply = dbus_message_new_method_return (message);
399 if (!bus_registry_list_services (registry, &services, &len))
401 dbus_message_unref (reply);
406 dbus_message_iter_init_append (reply, &iter);
408 if (!dbus_message_iter_open_container (&iter, DBUS_TYPE_ARRAY,
409 DBUS_TYPE_STRING_AS_STRING,
412 dbus_free_string_array (services);
413 dbus_message_unref (reply);
419 /* Include the bus driver in the list */
420 const char *v_STRING = DBUS_SERVICE_DBUS;
421 if (!dbus_message_iter_append_basic (&sub, DBUS_TYPE_STRING,
424 dbus_free_string_array (services);
425 dbus_message_unref (reply);
434 if (!dbus_message_iter_append_basic (&sub, DBUS_TYPE_STRING,
437 dbus_free_string_array (services);
438 dbus_message_unref (reply);
445 dbus_free_string_array (services);
447 if (!dbus_message_iter_close_container (&iter, &sub))
449 dbus_message_unref (reply);
454 if (!bus_transaction_send_from_driver (transaction, connection, reply))
456 dbus_message_unref (reply);
462 dbus_message_unref (reply);
468 bus_driver_handle_list_activatable_services (DBusConnection *connection,
469 BusTransaction *transaction,
470 DBusMessage *message,
476 BusActivation *activation;
478 DBusMessageIter iter;
481 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
483 activation = bus_connection_get_activation (connection);
485 reply = dbus_message_new_method_return (message);
492 if (!bus_activation_list_services (activation, &services, &len))
494 dbus_message_unref (reply);
499 dbus_message_iter_init_append (reply, &iter);
501 if (!dbus_message_iter_open_container (&iter, DBUS_TYPE_ARRAY,
502 DBUS_TYPE_STRING_AS_STRING,
505 dbus_free_string_array (services);
506 dbus_message_unref (reply);
512 /* Include the bus driver in the list */
513 const char *v_STRING = DBUS_SERVICE_DBUS;
514 if (!dbus_message_iter_append_basic (&sub, DBUS_TYPE_STRING,
517 dbus_free_string_array (services);
518 dbus_message_unref (reply);
527 if (!dbus_message_iter_append_basic (&sub, DBUS_TYPE_STRING,
530 dbus_free_string_array (services);
531 dbus_message_unref (reply);
538 dbus_free_string_array (services);
540 if (!dbus_message_iter_close_container (&iter, &sub))
542 dbus_message_unref (reply);
547 if (!bus_transaction_send_from_driver (transaction, connection, reply))
549 dbus_message_unref (reply);
555 dbus_message_unref (reply);
561 bus_driver_handle_acquire_service (DBusConnection *connection,
562 BusTransaction *transaction,
563 DBusMessage *message,
567 DBusString service_name;
569 dbus_uint32_t service_reply;
572 BusRegistry *registry;
574 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
576 registry = bus_connection_get_registry (connection);
578 if (!dbus_message_get_args (message, error,
579 DBUS_TYPE_STRING, &name,
580 DBUS_TYPE_UINT32, &flags,
584 _dbus_verbose ("Trying to own name %s with flags 0x%x\n", name, flags);
589 _dbus_string_init_const (&service_name, name);
591 if (!bus_registry_acquire_service (registry, connection,
592 &service_name, flags,
593 &service_reply, transaction,
597 reply = dbus_message_new_method_return (message);
604 if (!dbus_message_append_args (reply, DBUS_TYPE_UINT32, &service_reply, DBUS_TYPE_INVALID))
610 if (!bus_transaction_send_from_driver (transaction, connection, reply))
620 dbus_message_unref (reply);
625 bus_driver_handle_release_service (DBusConnection *connection,
626 BusTransaction *transaction,
627 DBusMessage *message,
631 DBusString service_name;
633 dbus_uint32_t service_reply;
635 BusRegistry *registry;
637 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
639 registry = bus_connection_get_registry (connection);
641 if (!dbus_message_get_args (message, error,
642 DBUS_TYPE_STRING, &name,
646 _dbus_verbose ("Trying to release name %s\n", name);
651 _dbus_string_init_const (&service_name, name);
653 if (!bus_registry_release_service (registry, connection,
654 &service_name, &service_reply,
658 reply = dbus_message_new_method_return (message);
665 if (!dbus_message_append_args (reply, DBUS_TYPE_UINT32, &service_reply, DBUS_TYPE_INVALID))
671 if (!bus_transaction_send_from_driver (transaction, connection, reply))
681 dbus_message_unref (reply);
686 bus_driver_handle_service_exists (DBusConnection *connection,
687 BusTransaction *transaction,
688 DBusMessage *message,
692 DBusString service_name;
694 dbus_bool_t service_exists;
697 BusRegistry *registry;
699 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
701 registry = bus_connection_get_registry (connection);
703 if (!dbus_message_get_args (message, error,
704 DBUS_TYPE_STRING, &name,
710 if (strcmp (name, DBUS_SERVICE_DBUS) == 0)
712 service_exists = TRUE;
716 _dbus_string_init_const (&service_name, name);
717 service = bus_registry_lookup (registry, &service_name);
718 service_exists = service != NULL;
721 reply = dbus_message_new_method_return (message);
728 if (!dbus_message_append_args (reply,
729 DBUS_TYPE_BOOLEAN, &service_exists,
736 if (!bus_transaction_send_from_driver (transaction, connection, reply))
746 dbus_message_unref (reply);
752 bus_driver_handle_activate_service (DBusConnection *connection,
753 BusTransaction *transaction,
754 DBusMessage *message,
760 BusActivation *activation;
762 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
764 activation = bus_connection_get_activation (connection);
766 if (!dbus_message_get_args (message, error,
767 DBUS_TYPE_STRING, &name,
768 DBUS_TYPE_UINT32, &flags,
771 _DBUS_ASSERT_ERROR_IS_SET (error);
772 _dbus_verbose ("No memory to get arguments to StartServiceByName\n");
778 if (!bus_activation_activate_service (activation, connection, transaction, FALSE,
779 message, name, error))
781 _DBUS_ASSERT_ERROR_IS_SET (error);
782 _dbus_verbose ("bus_activation_activate_service() failed\n");
793 send_ack_reply (DBusConnection *connection,
794 BusTransaction *transaction,
795 DBusMessage *message,
800 reply = dbus_message_new_method_return (message);
807 if (!bus_transaction_send_from_driver (transaction, connection, reply))
810 dbus_message_unref (reply);
814 dbus_message_unref (reply);
820 bus_driver_handle_add_match (DBusConnection *connection,
821 BusTransaction *transaction,
822 DBusMessage *message,
828 BusMatchmaker *matchmaker;
830 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
835 if (bus_connection_get_n_match_rules (connection) >=
836 bus_context_get_max_match_rules_per_connection (bus_transaction_get_context (transaction)))
838 dbus_set_error (error, DBUS_ERROR_LIMITS_EXCEEDED,
839 "Connection \"%s\" is not allowed to add more match rules "
840 "(increase limits in configuration file if required)",
841 bus_connection_is_active (connection) ?
842 bus_connection_get_name (connection) :
847 if (!dbus_message_get_args (message, error,
848 DBUS_TYPE_STRING, &text,
851 _dbus_verbose ("No memory to get arguments to AddMatch\n");
855 _dbus_string_init_const (&str, text);
857 rule = bus_match_rule_parse (connection, &str, error);
861 matchmaker = bus_connection_get_matchmaker (connection);
863 if (!bus_matchmaker_add_rule (matchmaker, rule))
869 if (!send_ack_reply (connection, transaction,
872 bus_matchmaker_remove_rule (matchmaker, rule);
876 bus_match_rule_unref (rule);
881 _DBUS_ASSERT_ERROR_IS_SET (error);
883 bus_match_rule_unref (rule);
888 bus_driver_handle_remove_match (DBusConnection *connection,
889 BusTransaction *transaction,
890 DBusMessage *message,
896 BusMatchmaker *matchmaker;
898 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
903 if (!dbus_message_get_args (message, error,
904 DBUS_TYPE_STRING, &text,
907 _dbus_verbose ("No memory to get arguments to RemoveMatch\n");
911 _dbus_string_init_const (&str, text);
913 rule = bus_match_rule_parse (connection, &str, error);
917 /* Send the ack before we remove the rule, since the ack is undone
918 * on transaction cancel, but rule removal isn't.
920 if (!send_ack_reply (connection, transaction,
924 matchmaker = bus_connection_get_matchmaker (connection);
926 if (!bus_matchmaker_remove_rule_by_value (matchmaker, rule, error))
929 bus_match_rule_unref (rule);
934 _DBUS_ASSERT_ERROR_IS_SET (error);
936 bus_match_rule_unref (rule);
941 bus_driver_handle_get_service_owner (DBusConnection *connection,
942 BusTransaction *transaction,
943 DBusMessage *message,
947 const char *base_name;
949 BusRegistry *registry;
953 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
955 registry = bus_connection_get_registry (connection);
960 if (! dbus_message_get_args (message, error,
961 DBUS_TYPE_STRING, &text,
965 _dbus_string_init_const (&str, text);
966 service = bus_registry_lookup (registry, &str);
967 if (service == NULL &&
968 _dbus_string_equal_c_str (&str, DBUS_SERVICE_DBUS))
970 /* ORG_FREEDESKTOP_DBUS owns itself */
971 base_name = DBUS_SERVICE_DBUS;
973 else if (service == NULL)
975 dbus_set_error (error,
976 DBUS_ERROR_NAME_HAS_NO_OWNER,
977 "Could not get owner of name '%s': no such name", text);
982 base_name = bus_connection_get_name (bus_service_get_primary_owners_connection (service));
983 if (base_name == NULL)
985 /* FIXME - how is this error possible? */
986 dbus_set_error (error,
988 "Could not determine unique name for '%s'", text);
991 _dbus_assert (*base_name == ':');
994 _dbus_assert (base_name != NULL);
996 reply = dbus_message_new_method_return (message);
1000 if (! dbus_message_append_args (reply,
1001 DBUS_TYPE_STRING, &base_name,
1005 if (! bus_transaction_send_from_driver (transaction, connection, reply))
1008 dbus_message_unref (reply);
1013 BUS_SET_OOM (error);
1016 _DBUS_ASSERT_ERROR_IS_SET (error);
1018 dbus_message_unref (reply);
1023 bus_driver_handle_list_queued_owners (DBusConnection *connection,
1024 BusTransaction *transaction,
1025 DBusMessage *message,
1029 DBusList *base_names;
1032 BusRegistry *registry;
1033 BusService *service;
1035 DBusMessageIter iter, array_iter;
1036 char *dbus_service_name = DBUS_SERVICE_DBUS;
1038 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1040 registry = bus_connection_get_registry (connection);
1046 if (! dbus_message_get_args (message, error,
1047 DBUS_TYPE_STRING, &text,
1051 _dbus_string_init_const (&str, text);
1052 service = bus_registry_lookup (registry, &str);
1053 if (service == NULL &&
1054 _dbus_string_equal_c_str (&str, DBUS_SERVICE_DBUS))
1056 /* ORG_FREEDESKTOP_DBUS owns itself */
1057 if (! _dbus_list_append (&base_names, dbus_service_name))
1060 else if (service == NULL)
1062 dbus_set_error (error,
1063 DBUS_ERROR_NAME_HAS_NO_OWNER,
1064 "Could not get owners of name '%s': no such name", text);
1069 if (!bus_service_list_queued_owners (service,
1075 _dbus_assert (base_names != NULL);
1077 reply = dbus_message_new_method_return (message);
1081 dbus_message_iter_init_append (reply, &iter);
1082 if (!dbus_message_iter_open_container (&iter,
1084 DBUS_TYPE_STRING_AS_STRING,
1088 link = _dbus_list_get_first_link (&base_names);
1089 while (link != NULL)
1093 _dbus_assert (link->data != NULL);
1094 uname = (char *)link->data;
1096 if (!dbus_message_iter_append_basic (&array_iter,
1101 link = _dbus_list_get_next_link (&base_names, link);
1104 if (! dbus_message_iter_close_container (&iter, &array_iter))
1108 if (! bus_transaction_send_from_driver (transaction, connection, reply))
1111 dbus_message_unref (reply);
1116 BUS_SET_OOM (error);
1119 _DBUS_ASSERT_ERROR_IS_SET (error);
1121 dbus_message_unref (reply);
1124 _dbus_list_clear (&base_names);
1130 bus_driver_handle_get_connection_unix_user (DBusConnection *connection,
1131 BusTransaction *transaction,
1132 DBusMessage *message,
1135 const char *service;
1137 BusRegistry *registry;
1139 DBusConnection *conn;
1142 dbus_uint32_t uid32;
1144 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1146 registry = bus_connection_get_registry (connection);
1151 if (! dbus_message_get_args (message, error,
1152 DBUS_TYPE_STRING, &service,
1156 _dbus_verbose ("asked for UID of connection %s\n", service);
1158 _dbus_string_init_const (&str, service);
1159 serv = bus_registry_lookup (registry, &str);
1162 dbus_set_error (error,
1163 DBUS_ERROR_NAME_HAS_NO_OWNER,
1164 "Could not get UID of name '%s': no such name", service);
1168 conn = bus_service_get_primary_owners_connection (serv);
1170 reply = dbus_message_new_method_return (message);
1174 if (!dbus_connection_get_unix_user (conn, &uid))
1176 dbus_set_error (error,
1178 "Could not determine UID for '%s'", service);
1183 if (! dbus_message_append_args (reply,
1184 DBUS_TYPE_UINT32, &uid32,
1188 if (! bus_transaction_send_from_driver (transaction, connection, reply))
1191 dbus_message_unref (reply);
1196 BUS_SET_OOM (error);
1199 _DBUS_ASSERT_ERROR_IS_SET (error);
1201 dbus_message_unref (reply);
1206 bus_driver_handle_get_connection_unix_process_id (DBusConnection *connection,
1207 BusTransaction *transaction,
1208 DBusMessage *message,
1211 const char *service;
1213 BusRegistry *registry;
1215 DBusConnection *conn;
1218 dbus_uint32_t pid32;
1220 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1222 registry = bus_connection_get_registry (connection);
1227 if (! dbus_message_get_args (message, error,
1228 DBUS_TYPE_STRING, &service,
1232 _dbus_verbose ("asked for PID of connection %s\n", service);
1234 _dbus_string_init_const (&str, service);
1235 serv = bus_registry_lookup (registry, &str);
1238 dbus_set_error (error,
1239 DBUS_ERROR_NAME_HAS_NO_OWNER,
1240 "Could not get PID of name '%s': no such name", service);
1244 conn = bus_service_get_primary_owners_connection (serv);
1246 reply = dbus_message_new_method_return (message);
1250 if (!dbus_connection_get_unix_process_id (conn, &pid))
1252 dbus_set_error (error,
1253 DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN,
1254 "Could not determine PID for '%s'", service);
1259 if (! dbus_message_append_args (reply,
1260 DBUS_TYPE_UINT32, &pid32,
1264 if (! bus_transaction_send_from_driver (transaction, connection, reply))
1267 dbus_message_unref (reply);
1272 BUS_SET_OOM (error);
1275 _DBUS_ASSERT_ERROR_IS_SET (error);
1277 dbus_message_unref (reply);
1282 bus_driver_handle_get_connection_selinux_security_context (DBusConnection *connection,
1283 BusTransaction *transaction,
1284 DBusMessage *message,
1287 const char *service;
1289 BusRegistry *registry;
1291 DBusConnection *conn;
1293 BusSELinuxID *context;
1295 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1297 registry = bus_connection_get_registry (connection);
1302 if (! dbus_message_get_args (message, error,
1303 DBUS_TYPE_STRING, &service,
1307 _dbus_verbose ("asked for security context of connection %s\n", service);
1309 _dbus_string_init_const (&str, service);
1310 serv = bus_registry_lookup (registry, &str);
1313 dbus_set_error (error,
1314 DBUS_ERROR_NAME_HAS_NO_OWNER,
1315 "Could not get security context of name '%s': no such name", service);
1319 conn = bus_service_get_primary_owners_connection (serv);
1321 reply = dbus_message_new_method_return (message);
1325 context = bus_connection_get_selinux_id (conn);
1328 dbus_set_error (error,
1329 DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN,
1330 "Could not determine security context for '%s'", service);
1334 if (! bus_selinux_append_context (reply, context, error))
1337 if (! bus_transaction_send_from_driver (transaction, connection, reply))
1340 dbus_message_unref (reply);
1345 BUS_SET_OOM (error);
1348 _DBUS_ASSERT_ERROR_IS_SET (error);
1350 dbus_message_unref (reply);
1355 bus_driver_handle_reload_config (DBusConnection *connection,
1356 BusTransaction *transaction,
1357 DBusMessage *message,
1360 BusContext *context;
1363 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1367 context = bus_connection_get_context (connection);
1368 if (!bus_context_reload_config (context, error))
1371 reply = dbus_message_new_method_return (message);
1375 if (! bus_transaction_send_from_driver (transaction, connection, reply))
1378 dbus_message_unref (reply);
1382 BUS_SET_OOM (error);
1385 _DBUS_ASSERT_ERROR_IS_SET (error);
1387 dbus_message_unref (reply);
1391 /* For speed it might be useful to sort this in order of
1392 * frequency of use (but doesn't matter with only a few items
1398 const char *in_args;
1399 const char *out_args;
1400 dbus_bool_t (* handler) (DBusConnection *connection,
1401 BusTransaction *transaction,
1402 DBusMessage *message,
1404 } message_handlers[] = {
1406 DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_UINT32_AS_STRING,
1407 DBUS_TYPE_UINT32_AS_STRING,
1408 bus_driver_handle_acquire_service },
1410 DBUS_TYPE_STRING_AS_STRING,
1411 DBUS_TYPE_UINT32_AS_STRING,
1412 bus_driver_handle_release_service },
1413 { "StartServiceByName",
1414 DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_UINT32_AS_STRING,
1415 DBUS_TYPE_UINT32_AS_STRING,
1416 bus_driver_handle_activate_service },
1419 DBUS_TYPE_STRING_AS_STRING,
1420 bus_driver_handle_hello },
1422 DBUS_TYPE_STRING_AS_STRING,
1423 DBUS_TYPE_BOOLEAN_AS_STRING,
1424 bus_driver_handle_service_exists },
1427 DBUS_TYPE_ARRAY_AS_STRING DBUS_TYPE_STRING_AS_STRING,
1428 bus_driver_handle_list_services },
1429 { "ListActivatableNames",
1431 DBUS_TYPE_ARRAY_AS_STRING DBUS_TYPE_STRING_AS_STRING,
1432 bus_driver_handle_list_activatable_services },
1434 DBUS_TYPE_STRING_AS_STRING,
1436 bus_driver_handle_add_match },
1438 DBUS_TYPE_STRING_AS_STRING,
1440 bus_driver_handle_remove_match },
1442 DBUS_TYPE_STRING_AS_STRING,
1443 DBUS_TYPE_STRING_AS_STRING,
1444 bus_driver_handle_get_service_owner },
1445 { "ListQueuedOwners",
1446 DBUS_TYPE_STRING_AS_STRING,
1447 DBUS_TYPE_ARRAY_AS_STRING DBUS_TYPE_STRING_AS_STRING,
1448 bus_driver_handle_list_queued_owners },
1449 { "GetConnectionUnixUser",
1450 DBUS_TYPE_STRING_AS_STRING,
1451 DBUS_TYPE_UINT32_AS_STRING,
1452 bus_driver_handle_get_connection_unix_user },
1453 { "GetConnectionUnixProcessID",
1454 DBUS_TYPE_STRING_AS_STRING,
1455 DBUS_TYPE_UINT32_AS_STRING,
1456 bus_driver_handle_get_connection_unix_process_id },
1457 { "GetConnectionSELinuxSecurityContext",
1458 DBUS_TYPE_STRING_AS_STRING,
1459 DBUS_TYPE_ARRAY_AS_STRING DBUS_TYPE_BYTE_AS_STRING,
1460 bus_driver_handle_get_connection_selinux_security_context },
1464 bus_driver_handle_reload_config }
1468 write_args_for_direction (DBusString *xml,
1469 const char *signature,
1472 DBusTypeReader typereader;
1476 _dbus_string_init_const (&sigstr, signature);
1477 _dbus_type_reader_init_types_only (&typereader, &sigstr, 0);
1479 while ((current_type = _dbus_type_reader_get_current_type (&typereader)) != DBUS_TYPE_INVALID)
1481 const DBusString *subsig;
1484 _dbus_type_reader_get_signature (&typereader, &subsig, &start, &len);
1485 if (!_dbus_string_append_printf (xml, " <arg direction=\"%s\" type=\"",
1488 if (!_dbus_string_append_len (xml,
1489 _dbus_string_get_const_data (subsig) + start,
1492 if (!_dbus_string_append (xml, "\"/>\n"))
1495 _dbus_type_reader_next (&typereader);
1503 bus_driver_generate_introspect_string (DBusString *xml)
1507 if (!_dbus_string_append (xml, DBUS_INTROSPECT_1_0_XML_DOCTYPE_DECL_NODE))
1509 if (!_dbus_string_append (xml, "<node>\n"))
1511 if (!_dbus_string_append_printf (xml, " <interface name=\"%s\">\n", DBUS_INTERFACE_INTROSPECTABLE))
1513 if (!_dbus_string_append (xml, " <method name=\"Introspect\">\n"))
1515 if (!_dbus_string_append_printf (xml, " <arg name=\"data\" direction=\"out\" type=\"%s\"/>\n", DBUS_TYPE_STRING_AS_STRING))
1517 if (!_dbus_string_append (xml, " </method>\n"))
1519 if (!_dbus_string_append (xml, " </interface>\n"))
1522 if (!_dbus_string_append_printf (xml, " <interface name=\"%s\">\n",
1523 DBUS_INTERFACE_DBUS))
1527 while (i < _DBUS_N_ELEMENTS (message_handlers))
1530 if (!_dbus_string_append_printf (xml, " <method name=\"%s\">\n",
1531 message_handlers[i].name))
1534 if (!write_args_for_direction (xml, message_handlers[i].in_args, TRUE))
1537 if (!write_args_for_direction (xml, message_handlers[i].out_args, FALSE))
1540 if (!_dbus_string_append (xml, " </method>\n"))
1546 if (!_dbus_string_append_printf (xml, " <signal name=\"NameOwnerChanged\">\n"))
1549 if (!_dbus_string_append_printf (xml, " <arg type=\"s\"/>\n"))
1552 if (!_dbus_string_append_printf (xml, " <arg type=\"s\"/>\n"))
1555 if (!_dbus_string_append_printf (xml, " <arg type=\"s\"/>\n"))
1558 if (!_dbus_string_append_printf (xml, " </signal>\n"))
1563 if (!_dbus_string_append_printf (xml, " <signal name=\"NameLost\">\n"))
1566 if (!_dbus_string_append_printf (xml, " <arg type=\"s\"/>\n"))
1569 if (!_dbus_string_append_printf (xml, " </signal>\n"))
1574 if (!_dbus_string_append_printf (xml, " <signal name=\"NameAcquired\">\n"))
1577 if (!_dbus_string_append_printf (xml, " <arg type=\"s\"/>\n"))
1580 if (!_dbus_string_append_printf (xml, " </signal>\n"))
1583 if (!_dbus_string_append (xml, " </interface>\n"))
1586 if (!_dbus_string_append (xml, "</node>\n"))
1593 bus_driver_handle_introspect (DBusConnection *connection,
1594 BusTransaction *transaction,
1595 DBusMessage *message,
1600 const char *v_STRING;
1602 _dbus_verbose ("Introspect() on bus driver\n");
1604 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1608 if (! dbus_message_get_args (message, error,
1611 _DBUS_ASSERT_ERROR_IS_SET (error);
1615 if (!_dbus_string_init (&xml))
1617 BUS_SET_OOM (error);
1621 if (!bus_driver_generate_introspect_string (&xml))
1624 v_STRING = _dbus_string_get_const_data (&xml);
1626 reply = dbus_message_new_method_return (message);
1630 if (! dbus_message_append_args (reply,
1631 DBUS_TYPE_STRING, &v_STRING,
1635 if (! bus_transaction_send_from_driver (transaction, connection, reply))
1638 dbus_message_unref (reply);
1639 _dbus_string_free (&xml);
1644 BUS_SET_OOM (error);
1647 dbus_message_unref (reply);
1649 _dbus_string_free (&xml);
1655 bus_driver_handle_message (DBusConnection *connection,
1656 BusTransaction *transaction,
1657 DBusMessage *message,
1660 const char *name, *sender, *interface;
1663 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1665 if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_METHOD_CALL)
1667 _dbus_verbose ("Driver got a non-method-call message, ignoring\n");
1668 return TRUE; /* we just ignore this */
1671 if (dbus_message_is_method_call (message,
1672 DBUS_INTERFACE_INTROSPECTABLE,
1674 return bus_driver_handle_introspect (connection, transaction, message, error);
1676 interface = dbus_message_get_interface (message);
1677 if (interface == NULL)
1678 interface = DBUS_INTERFACE_DBUS;
1680 _dbus_assert (dbus_message_get_member (message) != NULL);
1682 name = dbus_message_get_member (message);
1683 sender = dbus_message_get_sender (message);
1685 if (strcmp (interface,
1686 DBUS_INTERFACE_DBUS) != 0)
1688 _dbus_verbose ("Driver got message to unknown interface \"%s\"\n",
1693 _dbus_verbose ("Driver got a method call: %s\n",
1694 dbus_message_get_member (message));
1696 /* security checks should have kept this from getting here */
1697 _dbus_assert (sender != NULL || strcmp (name, "Hello") == 0);
1700 while (i < _DBUS_N_ELEMENTS (message_handlers))
1702 if (strcmp (message_handlers[i].name, name) == 0)
1704 _dbus_verbose ("Found driver handler for %s\n", name);
1706 if (!dbus_message_has_signature (message, message_handlers[i].in_args))
1708 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1709 _dbus_verbose ("Call to %s has wrong args (%s, expected %s)\n",
1710 name, dbus_message_get_signature (message),
1711 message_handlers[i].in_args);
1713 dbus_set_error (error, DBUS_ERROR_INVALID_ARGS,
1714 "Call to %s has wrong args (%s, expected %s)\n",
1715 name, dbus_message_get_signature (message),
1716 message_handlers[i].in_args);
1717 _DBUS_ASSERT_ERROR_IS_SET (error);
1721 if ((* message_handlers[i].handler) (connection, transaction, message, error))
1723 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1724 _dbus_verbose ("Driver handler succeeded\n");
1729 _DBUS_ASSERT_ERROR_IS_SET (error);
1730 _dbus_verbose ("Driver handler returned failure\n");
1739 _dbus_verbose ("No driver handler for message \"%s\"\n",
1742 dbus_set_error (error, DBUS_ERROR_UNKNOWN_METHOD,
1743 "%s does not understand message %s",
1744 DBUS_SERVICE_DBUS, name);
1750 bus_driver_remove_connection (DBusConnection *connection)
1752 /* FIXME 1.0 Does nothing for now, should unregister the connection
1753 * with the bus driver.