1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* bus.c message bus context object
4 * Copyright (C) 2003, 2004 Red Hat, Inc.
6 * Licensed under the Academic Free License version 2.1
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include "activation.h"
26 #include "connection.h"
30 #include "config-parser.h"
33 #include "dir-watch.h"
34 #include <dbus/dbus-list.h>
35 #include <dbus/dbus-hash.h>
36 #include <dbus/dbus-internals.h>
48 BusConnections *connections;
49 BusActivation *activation;
50 BusRegistry *registry;
52 BusMatchmaker *matchmaker;
53 DBusUserDatabase *user_database;
55 unsigned int fork : 1;
58 static dbus_int32_t server_data_slot = -1;
65 #define BUS_SERVER_DATA(server) (dbus_server_get_data ((server), server_data_slot))
68 server_get_context (DBusServer *server)
73 if (!dbus_server_allocate_data_slot (&server_data_slot))
76 bd = BUS_SERVER_DATA (server);
79 dbus_server_free_data_slot (&server_data_slot);
83 context = bd->context;
85 dbus_server_free_data_slot (&server_data_slot);
91 server_watch_callback (DBusWatch *watch,
92 unsigned int condition,
95 /* FIXME this can be done in dbus-mainloop.c
96 * if the code in activation.c for the babysitter
97 * watch handler is fixed.
100 return dbus_watch_handle (watch, condition);
104 add_server_watch (DBusWatch *watch,
107 DBusServer *server = data;
110 context = server_get_context (server);
112 return _dbus_loop_add_watch (context->loop,
113 watch, server_watch_callback, server,
118 remove_server_watch (DBusWatch *watch,
121 DBusServer *server = data;
124 context = server_get_context (server);
126 _dbus_loop_remove_watch (context->loop,
127 watch, server_watch_callback, server);
132 server_timeout_callback (DBusTimeout *timeout,
135 /* can return FALSE on OOM but we just let it fire again later */
136 dbus_timeout_handle (timeout);
140 add_server_timeout (DBusTimeout *timeout,
143 DBusServer *server = data;
146 context = server_get_context (server);
148 return _dbus_loop_add_timeout (context->loop,
149 timeout, server_timeout_callback, server, NULL);
153 remove_server_timeout (DBusTimeout *timeout,
156 DBusServer *server = data;
159 context = server_get_context (server);
161 _dbus_loop_remove_timeout (context->loop,
162 timeout, server_timeout_callback, server);
166 new_connection_callback (DBusServer *server,
167 DBusConnection *new_connection,
170 BusContext *context = data;
172 if (!bus_connections_setup_connection (context->connections, new_connection))
174 _dbus_verbose ("No memory to setup new connection\n");
176 /* if we don't do this, it will get unref'd without
177 * being disconnected... kind of strange really
178 * that we have to do this, people won't get it right
181 dbus_connection_close (new_connection);
184 dbus_connection_set_max_received_size (new_connection,
185 context->limits.max_incoming_bytes);
187 dbus_connection_set_max_message_size (new_connection,
188 context->limits.max_message_size);
190 /* on OOM, we won't have ref'd the connection so it will die. */
194 free_server_data (void *data)
196 BusServerData *bd = data;
202 setup_server (BusContext *context,
204 char **auth_mechanisms,
209 bd = dbus_new0 (BusServerData, 1);
210 if (!dbus_server_set_data (server,
212 bd, free_server_data))
219 bd->context = context;
221 if (!dbus_server_set_auth_mechanisms (server, (const char**) auth_mechanisms))
227 dbus_server_set_new_connection_function (server,
228 new_connection_callback,
231 if (!dbus_server_set_watch_functions (server,
242 if (!dbus_server_set_timeout_functions (server,
244 remove_server_timeout,
255 /* This code only gets executed the first time the
256 config files are parsed. It is not executed
257 when config files are reloaded.*/
259 process_config_first_time_only (BusContext *context,
260 BusConfigParser *parser,
264 DBusList **addresses;
265 const char *user, *pidfile;
266 char **auth_mechanisms;
267 DBusList **auth_mechanisms_list;
271 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
274 auth_mechanisms = NULL;
276 /* Check for an existing pid file. Of course this is a race;
277 * we'd have to use fcntl() locks on the pid file to
278 * avoid that. But we want to check for the pid file
279 * before overwriting any existing sockets, etc.
281 pidfile = bus_config_parser_get_pidfile (parser);
287 _dbus_string_init_const (&u, pidfile);
289 if (_dbus_stat (&u, &stbuf, NULL))
291 dbus_set_error (error, DBUS_ERROR_FAILED,
292 "The pid file \"%s\" exists, if the message bus is not running, remove this file",
298 /* keep around the pid filename so we can delete it later */
299 context->pidfile = _dbus_strdup (pidfile);
301 /* Build an array of auth mechanisms */
303 auth_mechanisms_list = bus_config_parser_get_mechanisms (parser);
304 len = _dbus_list_get_length (auth_mechanisms_list);
310 auth_mechanisms = dbus_new0 (char*, len + 1);
311 if (auth_mechanisms == NULL)
318 link = _dbus_list_get_first_link (auth_mechanisms_list);
321 auth_mechanisms[i] = _dbus_strdup (link->data);
322 if (auth_mechanisms[i] == NULL)
327 link = _dbus_list_get_next_link (auth_mechanisms_list, link);
332 auth_mechanisms = NULL;
335 /* Listen on our addresses */
337 addresses = bus_config_parser_get_addresses (parser);
339 link = _dbus_list_get_first_link (addresses);
344 server = dbus_server_listen (link->data, error);
347 _DBUS_ASSERT_ERROR_IS_SET (error);
350 else if (!setup_server (context, server, auth_mechanisms, error))
352 _DBUS_ASSERT_ERROR_IS_SET (error);
356 if (!_dbus_list_append (&context->servers, server))
362 link = _dbus_list_get_next_link (addresses, link);
365 /* note that type may be NULL */
366 context->type = _dbus_strdup (bus_config_parser_get_type (parser));
367 if (bus_config_parser_get_type (parser) != NULL && context->type == NULL)
373 user = bus_config_parser_get_user (parser);
376 context->user = _dbus_strdup (user);
377 if (context->user == NULL)
384 context->fork = bus_config_parser_get_fork (parser);
386 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
390 dbus_free_string_array (auth_mechanisms);
394 /* This code gets executed every time the config files
395 are parsed: both during BusContext construction
398 process_config_every_time (BusContext *context,
399 BusConfigParser *parser,
400 dbus_bool_t is_reload,
403 DBusString full_address;
408 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
412 if (!_dbus_string_init (&full_address))
418 /* get our limits and timeout lengths */
419 bus_config_parser_get_limits (parser, &context->limits);
421 context->policy = bus_config_parser_steal_policy (parser);
422 _dbus_assert (context->policy != NULL);
424 /* We have to build the address backward, so that
425 * <listen> later in the config file have priority
427 link = _dbus_list_get_last_link (&context->servers);
432 addr = dbus_server_get_address (link->data);
439 if (_dbus_string_get_length (&full_address) > 0)
441 if (!_dbus_string_append (&full_address, ";"))
448 if (!_dbus_string_append (&full_address, addr))
456 link = _dbus_list_get_prev_link (&context->servers, link);
460 dbus_free (context->address);
462 if (!_dbus_string_copy_data (&full_address, &context->address))
468 /* Create activation subsystem */
471 bus_activation_unref (context->activation);
473 context->activation = bus_activation_new (context, &full_address,
474 bus_config_parser_get_service_dirs (parser),
476 if (context->activation == NULL)
478 _DBUS_ASSERT_ERROR_IS_SET (error);
482 /* Drop existing conf-dir watches (if applicable) */
485 bus_drop_all_directory_watches ();
487 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
491 _dbus_string_free (&full_address);
496 process_config_postinit (BusContext *context,
497 BusConfigParser *parser,
500 DBusHashTable *service_context_table;
502 service_context_table = bus_config_parser_steal_service_context_table (parser);
503 if (!bus_registry_set_service_context_table (context->registry,
504 service_context_table))
510 _dbus_hash_table_unref (service_context_table);
512 /* Watch all conf directories */
513 _dbus_list_foreach (bus_config_parser_get_conf_dirs (parser),
514 (DBusForeachFunction) bus_watch_directory,
521 bus_context_new (const DBusString *config_file,
522 ForceForkSetting force_fork,
528 BusConfigParser *parser;
530 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
535 if (!dbus_server_allocate_data_slot (&server_data_slot))
541 context = dbus_new0 (BusContext, 1);
547 context->refcount = 1;
549 if (!_dbus_string_copy_data (config_file, &context->config_file))
555 context->loop = _dbus_loop_new ();
556 if (context->loop == NULL)
562 context->registry = bus_registry_new (context);
563 if (context->registry == NULL)
569 parser = bus_config_load (config_file, TRUE, NULL, error);
572 _DBUS_ASSERT_ERROR_IS_SET (error);
576 if (!process_config_first_time_only (context, parser, error))
578 _DBUS_ASSERT_ERROR_IS_SET (error);
581 if (!process_config_every_time (context, parser, FALSE, error))
583 _DBUS_ASSERT_ERROR_IS_SET (error);
587 /* we need another ref of the server data slot for the context
590 if (!dbus_server_allocate_data_slot (&server_data_slot))
591 _dbus_assert_not_reached ("second ref of server data slot failed");
593 context->user_database = _dbus_user_database_new ();
594 if (context->user_database == NULL)
600 /* Note that we don't know whether the print_addr_fd is
601 * one of the sockets we're using to listen on, or some
602 * other random thing. But I think the answer is "don't do
605 if (print_addr_fd >= 0)
608 const char *a = bus_context_get_address (context);
611 _dbus_assert (a != NULL);
612 if (!_dbus_string_init (&addr))
618 if (!_dbus_string_append (&addr, a) ||
619 !_dbus_string_append (&addr, "\n"))
621 _dbus_string_free (&addr);
626 bytes = _dbus_string_get_length (&addr);
627 if (_dbus_write (print_addr_fd, &addr, 0, bytes) != bytes)
629 dbus_set_error (error, DBUS_ERROR_FAILED,
630 "Printing message bus address: %s\n",
631 _dbus_strerror (errno));
632 _dbus_string_free (&addr);
636 if (print_addr_fd > 2)
637 _dbus_close (print_addr_fd, NULL);
639 _dbus_string_free (&addr);
642 context->connections = bus_connections_new (context);
643 if (context->connections == NULL)
649 context->matchmaker = bus_matchmaker_new ();
650 if (context->matchmaker == NULL)
656 /* Now become a daemon if appropriate */
657 if ((force_fork != FORK_NEVER && context->fork) || force_fork == FORK_ALWAYS)
661 if (context->pidfile)
662 _dbus_string_init_const (&u, context->pidfile);
664 if (!_dbus_become_daemon (context->pidfile ? &u : NULL,
668 _DBUS_ASSERT_ERROR_IS_SET (error);
674 /* Need to write PID file for ourselves, not for the child process */
675 if (context->pidfile != NULL)
679 _dbus_string_init_const (&u, context->pidfile);
681 if (!_dbus_write_pid_file (&u, _dbus_getpid (), error))
683 _DBUS_ASSERT_ERROR_IS_SET (error);
689 /* Write PID if requested */
690 if (print_pid_fd >= 0)
695 if (!_dbus_string_init (&pid))
701 if (!_dbus_string_append_int (&pid, _dbus_getpid ()) ||
702 !_dbus_string_append (&pid, "\n"))
704 _dbus_string_free (&pid);
709 bytes = _dbus_string_get_length (&pid);
710 if (_dbus_write (print_pid_fd, &pid, 0, bytes) != bytes)
712 dbus_set_error (error, DBUS_ERROR_FAILED,
713 "Printing message bus PID: %s\n",
714 _dbus_strerror (errno));
715 _dbus_string_free (&pid);
719 if (print_pid_fd > 2)
720 _dbus_close (print_pid_fd, NULL);
722 _dbus_string_free (&pid);
725 if (!bus_selinux_full_init ())
727 _dbus_warn ("SELinux initialization failed\n");
730 if (!process_config_postinit (context, parser, error))
732 _DBUS_ASSERT_ERROR_IS_SET (error);
738 bus_config_parser_unref (parser);
742 /* Here we change our credentials if required,
743 * as soon as we've set up our sockets and pidfile
745 if (context->user != NULL)
747 DBusCredentials creds;
750 _dbus_string_init_const (&u, context->user);
752 if (!_dbus_credentials_from_username (&u, &creds) ||
756 dbus_set_error (error, DBUS_ERROR_FAILED,
757 "Could not get UID and GID for username \"%s\"",
762 if (!_dbus_change_identity (creds.uid, creds.gid, error))
764 _DBUS_ASSERT_ERROR_IS_SET (error);
769 dbus_server_free_data_slot (&server_data_slot);
775 bus_config_parser_unref (parser);
777 bus_context_unref (context);
779 if (server_data_slot >= 0)
780 dbus_server_free_data_slot (&server_data_slot);
786 bus_context_reload_config (BusContext *context,
789 BusConfigParser *parser;
790 DBusString config_file;
793 /* Flush the user database cache */
794 _dbus_user_database_flush(context->user_database);
797 _dbus_string_init_const (&config_file, context->config_file);
798 parser = bus_config_load (&config_file, TRUE, NULL, error);
801 _DBUS_ASSERT_ERROR_IS_SET (error);
805 if (!process_config_every_time (context, parser, TRUE, error))
807 _DBUS_ASSERT_ERROR_IS_SET (error);
810 if (!process_config_postinit (context, parser, error))
812 _DBUS_ASSERT_ERROR_IS_SET (error);
819 bus_config_parser_unref (parser);
824 shutdown_server (BusContext *context,
827 if (server == NULL ||
828 !dbus_server_get_is_connected (server))
831 if (!dbus_server_set_watch_functions (server,
835 _dbus_assert_not_reached ("setting watch functions to NULL failed");
837 if (!dbus_server_set_timeout_functions (server,
841 _dbus_assert_not_reached ("setting timeout functions to NULL failed");
843 dbus_server_disconnect (server);
847 bus_context_shutdown (BusContext *context)
851 link = _dbus_list_get_first_link (&context->servers);
854 shutdown_server (context, link->data);
856 link = _dbus_list_get_next_link (&context->servers, link);
861 bus_context_ref (BusContext *context)
863 _dbus_assert (context->refcount > 0);
864 context->refcount += 1;
870 bus_context_unref (BusContext *context)
872 _dbus_assert (context->refcount > 0);
873 context->refcount -= 1;
875 if (context->refcount == 0)
879 _dbus_verbose ("Finalizing bus context %p\n", context);
881 bus_context_shutdown (context);
883 if (context->connections)
885 bus_connections_unref (context->connections);
886 context->connections = NULL;
889 if (context->registry)
891 bus_registry_unref (context->registry);
892 context->registry = NULL;
895 if (context->activation)
897 bus_activation_unref (context->activation);
898 context->activation = NULL;
901 link = _dbus_list_get_first_link (&context->servers);
904 dbus_server_unref (link->data);
906 link = _dbus_list_get_next_link (&context->servers, link);
908 _dbus_list_clear (&context->servers);
912 bus_policy_unref (context->policy);
913 context->policy = NULL;
918 _dbus_loop_unref (context->loop);
919 context->loop = NULL;
922 if (context->matchmaker)
924 bus_matchmaker_unref (context->matchmaker);
925 context->matchmaker = NULL;
928 dbus_free (context->config_file);
929 dbus_free (context->type);
930 dbus_free (context->address);
931 dbus_free (context->user);
933 if (context->pidfile)
936 _dbus_string_init_const (&u, context->pidfile);
938 /* Deliberately ignore errors here, since there's not much
939 * we can do about it, and we're exiting anyways.
941 _dbus_delete_file (&u, NULL);
943 dbus_free (context->pidfile);
946 if (context->user_database != NULL)
947 _dbus_user_database_unref (context->user_database);
951 dbus_server_free_data_slot (&server_data_slot);
955 /* type may be NULL */
957 bus_context_get_type (BusContext *context)
959 return context->type;
963 bus_context_get_address (BusContext *context)
965 return context->address;
969 bus_context_get_registry (BusContext *context)
971 return context->registry;
975 bus_context_get_connections (BusContext *context)
977 return context->connections;
981 bus_context_get_activation (BusContext *context)
983 return context->activation;
987 bus_context_get_matchmaker (BusContext *context)
989 return context->matchmaker;
993 bus_context_get_loop (BusContext *context)
995 return context->loop;
999 bus_context_get_user_database (BusContext *context)
1001 return context->user_database;
1005 bus_context_allow_user (BusContext *context,
1008 return bus_policy_allow_user (context->policy,
1009 context->user_database,
1014 bus_context_get_policy (BusContext *context)
1016 return context->policy;
1020 bus_context_create_client_policy (BusContext *context,
1021 DBusConnection *connection,
1024 _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1025 return bus_policy_create_client_policy (context->policy, connection,
1030 bus_context_get_activation_timeout (BusContext *context)
1033 return context->limits.activation_timeout;
1037 bus_context_get_auth_timeout (BusContext *context)
1039 return context->limits.auth_timeout;
1043 bus_context_get_max_completed_connections (BusContext *context)
1045 return context->limits.max_completed_connections;
1049 bus_context_get_max_incomplete_connections (BusContext *context)
1051 return context->limits.max_incomplete_connections;
1055 bus_context_get_max_connections_per_user (BusContext *context)
1057 return context->limits.max_connections_per_user;
1061 bus_context_get_max_pending_activations (BusContext *context)
1063 return context->limits.max_pending_activations;
1067 bus_context_get_max_services_per_connection (BusContext *context)
1069 return context->limits.max_services_per_connection;
1073 bus_context_get_max_match_rules_per_connection (BusContext *context)
1075 return context->limits.max_match_rules_per_connection;
1079 bus_context_get_max_replies_per_connection (BusContext *context)
1081 return context->limits.max_replies_per_connection;
1085 bus_context_get_reply_timeout (BusContext *context)
1087 return context->limits.reply_timeout;
1091 * addressed_recipient is the recipient specified in the message.
1093 * proposed_recipient is the recipient we're considering sending
1094 * to right this second, and may be an eavesdropper.
1096 * sender is the sender of the message.
1098 * NULL for proposed_recipient or sender definitely means the bus driver.
1100 * NULL for addressed_recipient may mean the bus driver, or may mean
1101 * no destination was specified in the message (e.g. a signal).
1104 bus_context_check_security_policy (BusContext *context,
1105 BusTransaction *transaction,
1106 DBusConnection *sender,
1107 DBusConnection *addressed_recipient,
1108 DBusConnection *proposed_recipient,
1109 DBusMessage *message,
1112 BusClientPolicy *sender_policy;
1113 BusClientPolicy *recipient_policy;
1115 dbus_bool_t requested_reply;
1117 type = dbus_message_get_type (message);
1119 /* dispatch.c was supposed to ensure these invariants */
1120 _dbus_assert (dbus_message_get_destination (message) != NULL ||
1121 type == DBUS_MESSAGE_TYPE_SIGNAL ||
1122 (sender == NULL && !bus_connection_is_active (proposed_recipient)));
1123 _dbus_assert (type == DBUS_MESSAGE_TYPE_SIGNAL ||
1124 addressed_recipient != NULL ||
1125 strcmp (dbus_message_get_destination (message), DBUS_SERVICE_DBUS) == 0);
1129 case DBUS_MESSAGE_TYPE_METHOD_CALL:
1130 case DBUS_MESSAGE_TYPE_SIGNAL:
1131 case DBUS_MESSAGE_TYPE_METHOD_RETURN:
1132 case DBUS_MESSAGE_TYPE_ERROR:
1136 _dbus_verbose ("security check disallowing message of unknown type %d\n",
1139 dbus_set_error (error, DBUS_ERROR_ACCESS_DENIED,
1140 "Message bus will not accept messages of unknown type\n");
1145 requested_reply = FALSE;
1151 dest = dbus_message_get_destination (message);
1153 /* First verify the SELinux access controls. If allowed then
1154 * go on with the standard checks.
1156 if (!bus_selinux_allows_send (sender, proposed_recipient,
1157 dbus_message_type_to_string (dbus_message_get_type (message)),
1158 dbus_message_get_interface (message),
1159 dbus_message_get_member (message),
1160 dbus_message_get_error_name (message),
1161 dest ? dest : DBUS_SERVICE_DBUS, error))
1164 if (dbus_error_is_set (error) &&
1165 dbus_error_has_name (error, DBUS_ERROR_NO_MEMORY))
1171 dbus_set_error (error, DBUS_ERROR_ACCESS_DENIED,
1172 "An SELinux policy prevents this sender "
1173 "from sending this message to this recipient "
1174 "(rejected message had interface \"%s\" "
1175 "member \"%s\" error name \"%s\" destination \"%s\")",
1176 dbus_message_get_interface (message) ?
1177 dbus_message_get_interface (message) : "(unset)",
1178 dbus_message_get_member (message) ?
1179 dbus_message_get_member (message) : "(unset)",
1180 dbus_message_get_error_name (message) ?
1181 dbus_message_get_error_name (message) : "(unset)",
1182 dest ? dest : DBUS_SERVICE_DBUS);
1183 _dbus_verbose ("SELinux security check denying send to service\n");
1187 if (bus_connection_is_active (sender))
1189 sender_policy = bus_connection_get_policy (sender);
1190 _dbus_assert (sender_policy != NULL);
1192 /* Fill in requested_reply variable with TRUE if this is a
1193 * reply and the reply was pending.
1195 if (dbus_message_get_reply_serial (message) != 0)
1197 if (proposed_recipient != NULL /* not to the bus driver */ &&
1198 addressed_recipient == proposed_recipient /* not eavesdropping */)
1202 dbus_error_init (&error2);
1203 requested_reply = bus_connections_check_reply (bus_connection_get_connections (sender),
1205 sender, addressed_recipient, message,
1207 if (dbus_error_is_set (&error2))
1209 dbus_move_error (&error2, error);
1217 /* Policy for inactive connections is that they can only send
1218 * the hello message to the bus driver
1220 if (proposed_recipient == NULL &&
1221 dbus_message_is_method_call (message,
1222 DBUS_INTERFACE_DBUS,
1225 _dbus_verbose ("security check allowing %s message\n",
1231 _dbus_verbose ("security check disallowing non-%s message\n",
1234 dbus_set_error (error, DBUS_ERROR_ACCESS_DENIED,
1235 "Client tried to send a message other than %s without being registered",
1244 sender_policy = NULL;
1246 /* If the sender is the bus driver, we assume any reply was a
1247 * requested reply as bus driver won't send bogus ones
1249 if (addressed_recipient == proposed_recipient /* not eavesdropping */ &&
1250 dbus_message_get_reply_serial (message) != 0)
1251 requested_reply = TRUE;
1254 _dbus_assert ((sender != NULL && sender_policy != NULL) ||
1255 (sender == NULL && sender_policy == NULL));
1257 if (proposed_recipient != NULL)
1259 /* only the bus driver can send to an inactive recipient (as it
1260 * owns no services, so other apps can't address it). Inactive
1261 * recipients can receive any message.
1263 if (bus_connection_is_active (proposed_recipient))
1265 recipient_policy = bus_connection_get_policy (proposed_recipient);
1266 _dbus_assert (recipient_policy != NULL);
1268 else if (sender == NULL)
1270 _dbus_verbose ("security check using NULL recipient policy for message from bus\n");
1271 recipient_policy = NULL;
1275 _dbus_assert_not_reached ("a message was somehow sent to an inactive recipient from a source other than the message bus\n");
1276 recipient_policy = NULL;
1280 recipient_policy = NULL;
1282 _dbus_assert ((proposed_recipient != NULL && recipient_policy != NULL) ||
1283 (proposed_recipient != NULL && sender == NULL && recipient_policy == NULL) ||
1284 (proposed_recipient == NULL && recipient_policy == NULL));
1286 if (sender_policy &&
1287 !bus_client_policy_check_can_send (sender_policy,
1295 dest = dbus_message_get_destination (message);
1296 dbus_set_error (error, DBUS_ERROR_ACCESS_DENIED,
1297 "A security policy in place prevents this sender "
1298 "from sending this message to this recipient, "
1299 "see message bus configuration file (rejected message "
1300 "had interface \"%s\" member \"%s\" error name \"%s\" destination \"%s\")",
1301 dbus_message_get_interface (message) ?
1302 dbus_message_get_interface (message) : "(unset)",
1303 dbus_message_get_member (message) ?
1304 dbus_message_get_member (message) : "(unset)",
1305 dbus_message_get_error_name (message) ?
1306 dbus_message_get_error_name (message) : "(unset)",
1307 dest ? dest : DBUS_SERVICE_DBUS);
1308 _dbus_verbose ("security policy disallowing message due to sender policy\n");
1312 if (recipient_policy &&
1313 !bus_client_policy_check_can_receive (recipient_policy,
1317 addressed_recipient, proposed_recipient,
1322 dest = dbus_message_get_destination (message);
1323 dbus_set_error (error, DBUS_ERROR_ACCESS_DENIED,
1324 "A security policy in place prevents this recipient "
1325 "from receiving this message from this sender, "
1326 "see message bus configuration file (rejected message "
1327 "had interface \"%s\" member \"%s\" error name \"%s\" destination \"%s\" reply serial %u requested_reply=%d)",
1328 dbus_message_get_interface (message) ?
1329 dbus_message_get_interface (message) : "(unset)",
1330 dbus_message_get_member (message) ?
1331 dbus_message_get_member (message) : "(unset)",
1332 dbus_message_get_error_name (message) ?
1333 dbus_message_get_error_name (message) : "(unset)",
1334 dest ? dest : DBUS_SERVICE_DBUS,
1335 dbus_message_get_reply_serial (message),
1337 _dbus_verbose ("security policy disallowing message due to recipient policy\n");
1341 /* See if limits on size have been exceeded */
1342 if (proposed_recipient &&
1343 dbus_connection_get_outgoing_size (proposed_recipient) >
1344 context->limits.max_outgoing_bytes)
1348 dest = dbus_message_get_destination (message);
1349 dbus_set_error (error, DBUS_ERROR_LIMITS_EXCEEDED,
1350 "The destination service \"%s\" has a full message queue",
1351 dest ? dest : (proposed_recipient ?
1352 bus_connection_get_name (proposed_recipient) :
1353 DBUS_SERVICE_DBUS));
1354 _dbus_verbose ("security policy disallowing message due to full message queue\n");
1358 /* Record that we will allow a reply here in the future (don't
1359 * bother if the recipient is the bus or this is an eavesdropping
1360 * connection). Only the addressed recipient may reply.
1362 if (type == DBUS_MESSAGE_TYPE_METHOD_CALL &&
1364 addressed_recipient &&
1365 addressed_recipient == proposed_recipient && /* not eavesdropping */
1366 !bus_connections_expect_reply (bus_connection_get_connections (sender),
1368 sender, addressed_recipient,
1371 _dbus_verbose ("Failed to record reply expectation or problem with the message expecting a reply\n");
1375 _dbus_verbose ("security policy allowing message\n");