Merge branch 'dbus-1.4'
[platform/upstream/dbus.git] / bus / bus.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* bus.c  message bus context object
3  *
4  * Copyright (C) 2003, 2004 Red Hat, Inc.
5  *
6  * Licensed under the Academic Free License version 2.1
7  *
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.
12  *
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.
17  *
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., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
21  *
22  */
23
24 #include <config.h>
25 #include "bus.h"
26
27 #include <stdio.h>
28
29 #include "activation.h"
30 #include "connection.h"
31 #include "services.h"
32 #include "utils.h"
33 #include "policy.h"
34 #include "config-parser.h"
35 #include "signals.h"
36 #include "selinux.h"
37 #include "dir-watch.h"
38 #include <dbus/dbus-list.h>
39 #include <dbus/dbus-hash.h>
40 #include <dbus/dbus-credentials.h>
41 #include <dbus/dbus-internals.h>
42
43 #ifdef DBUS_CYGWIN
44 #include <signal.h>
45 #endif
46
47 struct BusContext
48 {
49   int refcount;
50   DBusGUID uuid;
51   char *config_file;
52   char *type;
53   char *servicehelper;
54   char *address;
55   char *pidfile;
56   char *user;
57   char *log_prefix;
58   DBusLoop *loop;
59   DBusList *servers;
60   BusConnections *connections;
61   BusActivation *activation;
62   BusRegistry *registry;
63   BusPolicy *policy;
64   BusMatchmaker *matchmaker;
65   BusLimits limits;
66   unsigned int fork : 1;
67   unsigned int syslog : 1;
68   unsigned int keep_umask : 1;
69   unsigned int allow_anonymous : 1;
70   unsigned int systemd_activation : 1;
71 };
72
73 static dbus_int32_t server_data_slot = -1;
74
75 typedef struct
76 {
77   BusContext *context;
78 } BusServerData;
79
80 #define BUS_SERVER_DATA(server) (dbus_server_get_data ((server), server_data_slot))
81
82 static BusContext*
83 server_get_context (DBusServer *server)
84 {
85   BusContext *context;
86   BusServerData *bd;
87
88   if (!dbus_server_allocate_data_slot (&server_data_slot))
89     return NULL;
90
91   bd = BUS_SERVER_DATA (server);
92   if (bd == NULL)
93     {
94       dbus_server_free_data_slot (&server_data_slot);
95       return NULL;
96     }
97
98   context = bd->context;
99
100   dbus_server_free_data_slot (&server_data_slot);
101
102   return context;
103 }
104
105 static dbus_bool_t
106 add_server_watch (DBusWatch  *watch,
107                   void       *data)
108 {
109   DBusServer *server = data;
110   BusContext *context;
111
112   context = server_get_context (server);
113
114   return _dbus_loop_add_watch (context->loop, watch);
115 }
116
117 static void
118 remove_server_watch (DBusWatch  *watch,
119                      void       *data)
120 {
121   DBusServer *server = data;
122   BusContext *context;
123
124   context = server_get_context (server);
125
126   _dbus_loop_remove_watch (context->loop, watch);
127 }
128
129 static void
130 toggle_server_watch (DBusWatch  *watch,
131                      void       *data)
132 {
133   DBusServer *server = data;
134   BusContext *context;
135
136   context = server_get_context (server);
137
138   _dbus_loop_toggle_watch (context->loop, watch);
139 }
140
141 static dbus_bool_t
142 add_server_timeout (DBusTimeout *timeout,
143                     void        *data)
144 {
145   DBusServer *server = data;
146   BusContext *context;
147
148   context = server_get_context (server);
149
150   return _dbus_loop_add_timeout (context->loop, timeout);
151 }
152
153 static void
154 remove_server_timeout (DBusTimeout *timeout,
155                        void        *data)
156 {
157   DBusServer *server = data;
158   BusContext *context;
159
160   context = server_get_context (server);
161
162   _dbus_loop_remove_timeout (context->loop, timeout);
163 }
164
165 static void
166 new_connection_callback (DBusServer     *server,
167                          DBusConnection *new_connection,
168                          void           *data)
169 {
170   BusContext *context = data;
171
172   if (!bus_connections_setup_connection (context->connections, new_connection))
173     {
174       _dbus_verbose ("No memory to setup new connection\n");
175
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
179        * in general.
180        */
181       dbus_connection_close (new_connection);
182     }
183
184   dbus_connection_set_max_received_size (new_connection,
185                                          context->limits.max_incoming_bytes);
186
187   dbus_connection_set_max_message_size (new_connection,
188                                         context->limits.max_message_size);
189
190   dbus_connection_set_max_received_unix_fds (new_connection,
191                                          context->limits.max_incoming_unix_fds);
192
193   dbus_connection_set_max_message_unix_fds (new_connection,
194                                         context->limits.max_message_unix_fds);
195
196   dbus_connection_set_allow_anonymous (new_connection,
197                                        context->allow_anonymous);
198
199   /* on OOM, we won't have ref'd the connection so it will die. */
200 }
201
202 static void
203 free_server_data (void *data)
204 {
205   BusServerData *bd = data;
206
207   dbus_free (bd);
208 }
209
210 static dbus_bool_t
211 setup_server (BusContext *context,
212               DBusServer *server,
213               char      **auth_mechanisms,
214               DBusError  *error)
215 {
216   BusServerData *bd;
217
218   bd = dbus_new0 (BusServerData, 1);
219   if (bd == NULL || !dbus_server_set_data (server,
220                                            server_data_slot,
221                                            bd, free_server_data))
222     {
223       dbus_free (bd);
224       BUS_SET_OOM (error);
225       return FALSE;
226     }
227
228   bd->context = context;
229
230   if (!dbus_server_set_auth_mechanisms (server, (const char**) auth_mechanisms))
231     {
232       BUS_SET_OOM (error);
233       return FALSE;
234     }
235
236   dbus_server_set_new_connection_function (server,
237                                            new_connection_callback,
238                                            context, NULL);
239
240   if (!dbus_server_set_watch_functions (server,
241                                         add_server_watch,
242                                         remove_server_watch,
243                                         toggle_server_watch,
244                                         server,
245                                         NULL))
246     {
247       BUS_SET_OOM (error);
248       return FALSE;
249     }
250
251   if (!dbus_server_set_timeout_functions (server,
252                                           add_server_timeout,
253                                           remove_server_timeout,
254                                           NULL,
255                                           server, NULL))
256     {
257       BUS_SET_OOM (error);
258       return FALSE;
259     }
260
261   return TRUE;
262 }
263
264 /* This code only gets executed the first time the
265  * config files are parsed.  It is not executed
266  * when config files are reloaded.
267  */
268 static dbus_bool_t
269 process_config_first_time_only (BusContext       *context,
270                                 BusConfigParser  *parser,
271                                 const DBusString *address,
272                                 BusContextFlags   flags,
273                                 DBusError        *error)
274 {
275   DBusString log_prefix;
276   DBusList *link;
277   DBusList **addresses;
278   const char *user, *pidfile;
279   char **auth_mechanisms;
280   DBusList **auth_mechanisms_list;
281   int len;
282   dbus_bool_t retval;
283
284   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
285
286   retval = FALSE;
287   auth_mechanisms = NULL;
288   pidfile = NULL;
289
290   _dbus_init_system_log ();
291
292   if (flags & BUS_CONTEXT_FLAG_SYSTEMD_ACTIVATION)
293     context->systemd_activation = TRUE;
294   else
295     context->systemd_activation = FALSE;
296
297   /* Check for an existing pid file. Of course this is a race;
298    * we'd have to use fcntl() locks on the pid file to
299    * avoid that. But we want to check for the pid file
300    * before overwriting any existing sockets, etc.
301    */
302
303   if (flags & BUS_CONTEXT_FLAG_WRITE_PID_FILE)
304     pidfile = bus_config_parser_get_pidfile (parser);
305
306   if (pidfile != NULL)
307     {
308       DBusString u;
309       DBusStat stbuf;
310
311       _dbus_string_init_const (&u, pidfile);
312
313       if (_dbus_stat (&u, &stbuf, NULL))
314         {
315 #ifdef DBUS_CYGWIN
316           DBusString p;
317           long /* int */ pid;
318
319           _dbus_string_init (&p);
320           _dbus_file_get_contents(&p, &u, NULL);
321           _dbus_string_parse_int(&p, 0, &pid, NULL);
322           _dbus_string_free(&p);
323
324           if ((kill((int)pid, 0))) {
325             dbus_set_error(NULL, DBUS_ERROR_FILE_EXISTS,
326                            "pid %ld not running, removing stale pid file\n",
327                            pid);
328             _dbus_delete_file(&u, NULL);
329           } else {
330 #endif
331           dbus_set_error (error, DBUS_ERROR_FAILED,
332                                   "The pid file \"%s\" exists, if the message bus is not running, remove this file",
333                           pidfile);
334               goto failed;
335 #ifdef DBUS_CYGWIN
336           }
337 #endif
338         }
339     }
340
341   /* keep around the pid filename so we can delete it later */
342   context->pidfile = _dbus_strdup (pidfile);
343
344   /* note that type may be NULL */
345   context->type = _dbus_strdup (bus_config_parser_get_type (parser));
346   if (bus_config_parser_get_type (parser) != NULL && context->type == NULL)
347     goto oom;
348
349   user = bus_config_parser_get_user (parser);
350   if (user != NULL)
351     {
352       context->user = _dbus_strdup (user);
353       if (context->user == NULL)
354         goto oom;
355     }
356
357   /* Set up the prefix for syslog messages */
358   if (!_dbus_string_init (&log_prefix))
359     goto oom;
360   if (context->type && !strcmp (context->type, "system"))
361     {
362       if (!_dbus_string_append (&log_prefix, "[system] "))
363         goto oom;
364     }
365   else if (context->type && !strcmp (context->type, "session"))
366     {
367       DBusCredentials *credentials;
368
369       credentials = _dbus_credentials_new_from_current_process ();
370       if (!credentials)
371         goto oom;
372       if (!_dbus_string_append (&log_prefix, "[session "))
373         {
374           _dbus_credentials_unref (credentials);
375           goto oom;
376         }
377       if (!_dbus_credentials_to_string_append (credentials, &log_prefix))
378         {
379           _dbus_credentials_unref (credentials);
380           goto oom;
381         }
382       if (!_dbus_string_append (&log_prefix, "] "))
383         {
384           _dbus_credentials_unref (credentials);
385           goto oom;
386         }
387       _dbus_credentials_unref (credentials);
388     }
389   if (!_dbus_string_steal_data (&log_prefix, &context->log_prefix))
390     goto oom;
391   _dbus_string_free (&log_prefix);
392
393   /* Build an array of auth mechanisms */
394
395   auth_mechanisms_list = bus_config_parser_get_mechanisms (parser);
396   len = _dbus_list_get_length (auth_mechanisms_list);
397
398   if (len > 0)
399     {
400       int i;
401
402       auth_mechanisms = dbus_new0 (char*, len + 1);
403       if (auth_mechanisms == NULL)
404         goto oom;
405
406       i = 0;
407       link = _dbus_list_get_first_link (auth_mechanisms_list);
408       while (link != NULL)
409         {
410           auth_mechanisms[i] = _dbus_strdup (link->data);
411           if (auth_mechanisms[i] == NULL)
412             goto oom;
413           link = _dbus_list_get_next_link (auth_mechanisms_list, link);
414           i += 1;
415         }
416     }
417   else
418     {
419       auth_mechanisms = NULL;
420     }
421
422   /* Listen on our addresses */
423
424   if (address)
425     {
426       DBusServer *server;
427
428       server = dbus_server_listen (_dbus_string_get_const_data(address), error);
429       if (server == NULL)
430         {
431           _DBUS_ASSERT_ERROR_IS_SET (error);
432           goto failed;
433         }
434       else if (!setup_server (context, server, auth_mechanisms, error))
435         {
436           _DBUS_ASSERT_ERROR_IS_SET (error);
437           goto failed;
438         }
439
440       if (!_dbus_list_append (&context->servers, server))
441         goto oom;
442     }
443   else
444     {
445       addresses = bus_config_parser_get_addresses (parser);
446
447       link = _dbus_list_get_first_link (addresses);
448       while (link != NULL)
449         {
450           DBusServer *server;
451
452           server = dbus_server_listen (link->data, error);
453           if (server == NULL)
454             {
455               _DBUS_ASSERT_ERROR_IS_SET (error);
456               goto failed;
457             }
458           else if (!setup_server (context, server, auth_mechanisms, error))
459             {
460               _DBUS_ASSERT_ERROR_IS_SET (error);
461               goto failed;
462             }
463
464           if (!_dbus_list_append (&context->servers, server))
465             goto oom;
466
467           link = _dbus_list_get_next_link (addresses, link);
468         }
469     }
470
471   context->fork = bus_config_parser_get_fork (parser);
472   context->syslog = bus_config_parser_get_syslog (parser);
473   context->keep_umask = bus_config_parser_get_keep_umask (parser);
474   context->allow_anonymous = bus_config_parser_get_allow_anonymous (parser);
475
476   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
477   retval = TRUE;
478
479  failed:
480   dbus_free_string_array (auth_mechanisms);
481   return retval;
482
483  oom:
484   BUS_SET_OOM (error);
485   dbus_free_string_array (auth_mechanisms);
486   return FALSE;
487 }
488
489 /* This code gets executed every time the config files
490  * are parsed: both during BusContext construction
491  * and on reloads. This function is slightly screwy
492  * since it can do a "half reload" in out-of-memory
493  * situations. Realistically, unlikely to ever matter.
494  */
495 static dbus_bool_t
496 process_config_every_time (BusContext      *context,
497                            BusConfigParser *parser,
498                            dbus_bool_t      is_reload,
499                            DBusError       *error)
500 {
501   DBusString full_address;
502   DBusList *link;
503   DBusList **dirs;
504   char *addr;
505   const char *servicehelper;
506   char *s;
507
508   dbus_bool_t retval;
509
510   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
511
512   addr = NULL;
513   retval = FALSE;
514
515   if (!_dbus_string_init (&full_address))
516     {
517       BUS_SET_OOM (error);
518       return FALSE;
519     }
520
521   /* get our limits and timeout lengths */
522   bus_config_parser_get_limits (parser, &context->limits);
523
524   if (context->policy)
525     bus_policy_unref (context->policy);
526   context->policy = bus_config_parser_steal_policy (parser);
527   _dbus_assert (context->policy != NULL);
528
529   /* We have to build the address backward, so that
530    * <listen> later in the config file have priority
531    */
532   link = _dbus_list_get_last_link (&context->servers);
533   while (link != NULL)
534     {
535       addr = dbus_server_get_address (link->data);
536       if (addr == NULL)
537         {
538           BUS_SET_OOM (error);
539           goto failed;
540         }
541
542       if (_dbus_string_get_length (&full_address) > 0)
543         {
544           if (!_dbus_string_append (&full_address, ";"))
545             {
546               BUS_SET_OOM (error);
547               goto failed;
548             }
549         }
550
551       if (!_dbus_string_append (&full_address, addr))
552         {
553           BUS_SET_OOM (error);
554           goto failed;
555         }
556
557       dbus_free (addr);
558       addr = NULL;
559
560       link = _dbus_list_get_prev_link (&context->servers, link);
561     }
562
563   if (is_reload)
564     dbus_free (context->address);
565
566   if (!_dbus_string_copy_data (&full_address, &context->address))
567     {
568       BUS_SET_OOM (error);
569       goto failed;
570     }
571
572   /* get the service directories */
573   dirs = bus_config_parser_get_service_dirs (parser);
574
575   /* and the service helper */
576   servicehelper = bus_config_parser_get_servicehelper (parser);
577
578   s = _dbus_strdup(servicehelper);
579   if (s == NULL && servicehelper != NULL)
580     {
581       BUS_SET_OOM (error);
582       goto failed;
583     }
584   else
585     {
586       dbus_free(context->servicehelper);
587       context->servicehelper = s;
588     }
589
590   /* Create activation subsystem */
591   if (context->activation)
592     {
593       if (!bus_activation_reload (context->activation, &full_address, dirs, error))
594         goto failed;
595     }
596   else
597     {
598       context->activation = bus_activation_new (context, &full_address, dirs, error);
599     }
600
601   if (context->activation == NULL)
602     {
603       _DBUS_ASSERT_ERROR_IS_SET (error);
604       goto failed;
605     }
606
607   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
608   retval = TRUE;
609
610  failed:
611   _dbus_string_free (&full_address);
612
613   if (addr)
614     dbus_free (addr);
615
616   return retval;
617 }
618
619 static dbus_bool_t
620 list_concat_new (DBusList **a,
621                  DBusList **b,
622                  DBusList **result)
623 {
624   DBusList *link;
625
626   *result = NULL;
627
628   for (link = _dbus_list_get_first_link (a); link; link = _dbus_list_get_next_link (a, link))
629     {
630       if (!_dbus_list_append (result, link->data))
631         goto oom;
632     }
633   for (link = _dbus_list_get_first_link (b); link; link = _dbus_list_get_next_link (b, link))
634     {
635       if (!_dbus_list_append (result, link->data))
636         goto oom;
637     }
638
639   return TRUE;
640 oom:
641   _dbus_list_clear (result);
642   return FALSE;
643 }
644
645 static void
646 raise_file_descriptor_limit (BusContext      *context)
647 {
648
649   /* I just picked this out of thin air; we need some extra
650    * descriptors for things like any internal pipes we create,
651    * inotify, connections to SELinux, etc.
652    */
653   unsigned int arbitrary_extra_fds = 32;
654   unsigned int limit;
655
656   limit = context->limits.max_completed_connections +
657     context->limits.max_incomplete_connections
658     + arbitrary_extra_fds;
659
660   _dbus_request_file_descriptor_limit (limit);
661 }
662
663 static dbus_bool_t
664 process_config_postinit (BusContext      *context,
665                          BusConfigParser *parser,
666                          DBusError       *error)
667 {
668   DBusHashTable *service_context_table;
669   DBusList *watched_dirs = NULL;
670
671   raise_file_descriptor_limit (context);
672
673   service_context_table = bus_config_parser_steal_service_context_table (parser);
674   if (!bus_registry_set_service_context_table (context->registry,
675                                                service_context_table))
676     {
677       BUS_SET_OOM (error);
678       return FALSE;
679     }
680
681   _dbus_hash_table_unref (service_context_table);
682
683   /* We need to monitor both the configuration directories and directories
684    * containing .service files.
685    */
686   if (!list_concat_new (bus_config_parser_get_conf_dirs (parser),
687                         bus_config_parser_get_service_dirs (parser),
688                         &watched_dirs))
689     {
690       BUS_SET_OOM (error);
691       return FALSE;
692     }
693
694   bus_set_watched_dirs (context, &watched_dirs);
695
696   _dbus_list_clear (&watched_dirs);
697
698   return TRUE;
699 }
700
701 BusContext*
702 bus_context_new (const DBusString *config_file,
703                  BusContextFlags   flags,
704                  DBusPipe         *print_addr_pipe,
705                  DBusPipe         *print_pid_pipe,
706                  const DBusString *address,
707                  DBusError        *error)
708 {
709   BusContext *context;
710   BusConfigParser *parser;
711
712   _dbus_assert ((flags & BUS_CONTEXT_FLAG_FORK_NEVER) == 0 ||
713                 (flags & BUS_CONTEXT_FLAG_FORK_ALWAYS) == 0);
714
715   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
716
717   context = NULL;
718   parser = NULL;
719
720   if (!dbus_server_allocate_data_slot (&server_data_slot))
721     {
722       BUS_SET_OOM (error);
723       return NULL;
724     }
725
726   context = dbus_new0 (BusContext, 1);
727   if (context == NULL)
728     {
729       BUS_SET_OOM (error);
730       goto failed;
731     }
732   context->refcount = 1;
733
734   _dbus_generate_uuid (&context->uuid);
735
736   if (!_dbus_string_copy_data (config_file, &context->config_file))
737     {
738       BUS_SET_OOM (error);
739       goto failed;
740     }
741
742   context->loop = _dbus_loop_new ();
743   if (context->loop == NULL)
744     {
745       BUS_SET_OOM (error);
746       goto failed;
747     }
748
749   context->registry = bus_registry_new (context);
750   if (context->registry == NULL)
751     {
752       BUS_SET_OOM (error);
753       goto failed;
754     }
755
756   parser = bus_config_load (config_file, TRUE, NULL, error);
757   if (parser == NULL)
758     {
759       _DBUS_ASSERT_ERROR_IS_SET (error);
760       goto failed;
761     }
762
763   if (!process_config_first_time_only (context, parser, address, flags, error))
764     {
765       _DBUS_ASSERT_ERROR_IS_SET (error);
766       goto failed;
767     }
768   if (!process_config_every_time (context, parser, FALSE, error))
769     {
770       _DBUS_ASSERT_ERROR_IS_SET (error);
771       goto failed;
772     }
773
774   /* we need another ref of the server data slot for the context
775    * to own
776    */
777   if (!dbus_server_allocate_data_slot (&server_data_slot))
778     _dbus_assert_not_reached ("second ref of server data slot failed");
779
780   /* Note that we don't know whether the print_addr_pipe is
781    * one of the sockets we're using to listen on, or some
782    * other random thing. But I think the answer is "don't do
783    * that then"
784    */
785   if (print_addr_pipe != NULL && _dbus_pipe_is_valid (print_addr_pipe))
786     {
787       DBusString addr;
788       const char *a = bus_context_get_address (context);
789       int bytes;
790
791       _dbus_assert (a != NULL);
792       if (!_dbus_string_init (&addr))
793         {
794           BUS_SET_OOM (error);
795           goto failed;
796         }
797
798       if (!_dbus_string_append (&addr, a) ||
799           !_dbus_string_append (&addr, "\n"))
800         {
801           _dbus_string_free (&addr);
802           BUS_SET_OOM (error);
803           goto failed;
804         }
805
806       bytes = _dbus_string_get_length (&addr);
807       if (_dbus_pipe_write (print_addr_pipe, &addr, 0, bytes, error) != bytes)
808         {
809           /* pipe write returns an error on failure but not short write */
810           if (error != NULL && !dbus_error_is_set (error))
811             {
812               dbus_set_error (error, DBUS_ERROR_FAILED,
813                               "Printing message bus address: did not write all bytes\n");
814             }
815           _dbus_string_free (&addr);
816           goto failed;
817         }
818
819       if (!_dbus_pipe_is_stdout_or_stderr (print_addr_pipe))
820         _dbus_pipe_close (print_addr_pipe, NULL);
821
822       _dbus_string_free (&addr);
823     }
824
825   context->connections = bus_connections_new (context);
826   if (context->connections == NULL)
827     {
828       BUS_SET_OOM (error);
829       goto failed;
830     }
831
832   context->matchmaker = bus_matchmaker_new ();
833   if (context->matchmaker == NULL)
834     {
835       BUS_SET_OOM (error);
836       goto failed;
837     }
838
839   /* check user before we fork */
840   if (context->user != NULL)
841     {
842       if (!_dbus_verify_daemon_user (context->user))
843         {
844           dbus_set_error (error, DBUS_ERROR_FAILED,
845                           "Could not get UID and GID for username \"%s\"",
846                           context->user);
847           goto failed;
848         }
849     }
850
851   /* Now become a daemon if appropriate and write out pid file in any case */
852   {
853     DBusString u;
854
855     if (context->pidfile)
856       _dbus_string_init_const (&u, context->pidfile);
857
858     if (((flags & BUS_CONTEXT_FLAG_FORK_NEVER) == 0 && context->fork) ||
859         (flags & BUS_CONTEXT_FLAG_FORK_ALWAYS))
860       {
861         _dbus_verbose ("Forking and becoming daemon\n");
862
863         if (!_dbus_become_daemon (context->pidfile ? &u : NULL,
864                                   print_pid_pipe,
865                                   error,
866                                   context->keep_umask))
867           {
868             _DBUS_ASSERT_ERROR_IS_SET (error);
869             goto failed;
870           }
871       }
872     else
873       {
874         _dbus_verbose ("Fork not requested\n");
875
876         /* Need to write PID file and to PID pipe for ourselves,
877          * not for the child process. This is a no-op if the pidfile
878          * is NULL and print_pid_pipe is NULL.
879          */
880         if (!_dbus_write_pid_to_file_and_pipe (context->pidfile ? &u : NULL,
881                                                print_pid_pipe,
882                                                _dbus_getpid (),
883                                                error))
884           {
885             _DBUS_ASSERT_ERROR_IS_SET (error);
886             goto failed;
887           }
888       }
889   }
890
891   if (print_pid_pipe && _dbus_pipe_is_valid (print_pid_pipe) &&
892       !_dbus_pipe_is_stdout_or_stderr (print_pid_pipe))
893     _dbus_pipe_close (print_pid_pipe, NULL);
894
895   if (!bus_selinux_full_init ())
896     {
897       bus_context_log (context, DBUS_SYSTEM_LOG_FATAL, "SELinux enabled but AVC initialization failed; check system log\n");
898     }
899
900   if (!process_config_postinit (context, parser, error))
901     {
902       _DBUS_ASSERT_ERROR_IS_SET (error);
903       goto failed;
904     }
905
906   if (parser != NULL)
907     {
908       bus_config_parser_unref (parser);
909       parser = NULL;
910     }
911
912   /* Here we change our credentials if required,
913    * as soon as we've set up our sockets and pidfile
914    */
915   if (context->user != NULL)
916     {
917       if (!_dbus_change_to_daemon_user (context->user, error))
918         {
919           _DBUS_ASSERT_ERROR_IS_SET (error);
920           goto failed;
921         }
922
923 #ifdef HAVE_SELINUX
924       /* FIXME - why not just put this in full_init() below? */
925       bus_selinux_audit_init ();
926 #endif
927     }
928
929   dbus_server_free_data_slot (&server_data_slot);
930
931   return context;
932
933  failed:
934   if (parser != NULL)
935     bus_config_parser_unref (parser);
936   if (context != NULL)
937     bus_context_unref (context);
938
939   if (server_data_slot >= 0)
940     dbus_server_free_data_slot (&server_data_slot);
941
942   return NULL;
943 }
944
945 dbus_bool_t
946 bus_context_get_id (BusContext       *context,
947                     DBusString       *uuid)
948 {
949   return _dbus_uuid_encode (&context->uuid, uuid);
950 }
951
952 dbus_bool_t
953 bus_context_reload_config (BusContext *context,
954                            DBusError  *error)
955 {
956   BusConfigParser *parser;
957   DBusString config_file;
958   dbus_bool_t ret;
959
960   /* Flush the user database cache */
961   _dbus_flush_caches ();
962
963   ret = FALSE;
964   _dbus_string_init_const (&config_file, context->config_file);
965   parser = bus_config_load (&config_file, TRUE, NULL, error);
966   if (parser == NULL)
967     {
968       _DBUS_ASSERT_ERROR_IS_SET (error);
969       goto failed;
970     }
971
972   if (!process_config_every_time (context, parser, TRUE, error))
973     {
974       _DBUS_ASSERT_ERROR_IS_SET (error);
975       goto failed;
976     }
977   if (!process_config_postinit (context, parser, error))
978     {
979       _DBUS_ASSERT_ERROR_IS_SET (error);
980       goto failed;
981     }
982   ret = TRUE;
983
984   bus_context_log (context, DBUS_SYSTEM_LOG_INFO, "Reloaded configuration");
985  failed:
986   if (!ret)
987     bus_context_log (context, DBUS_SYSTEM_LOG_INFO, "Unable to reload configuration: %s", error->message);
988   if (parser != NULL)
989     bus_config_parser_unref (parser);
990   return ret;
991 }
992
993 static void
994 shutdown_server (BusContext *context,
995                  DBusServer *server)
996 {
997   if (server == NULL ||
998       !dbus_server_get_is_connected (server))
999     return;
1000
1001   if (!dbus_server_set_watch_functions (server,
1002                                         NULL, NULL, NULL,
1003                                         context,
1004                                         NULL))
1005     _dbus_assert_not_reached ("setting watch functions to NULL failed");
1006
1007   if (!dbus_server_set_timeout_functions (server,
1008                                           NULL, NULL, NULL,
1009                                           context,
1010                                           NULL))
1011     _dbus_assert_not_reached ("setting timeout functions to NULL failed");
1012
1013   dbus_server_disconnect (server);
1014 }
1015
1016 void
1017 bus_context_shutdown (BusContext  *context)
1018 {
1019   DBusList *link;
1020
1021   link = _dbus_list_get_first_link (&context->servers);
1022   while (link != NULL)
1023     {
1024       shutdown_server (context, link->data);
1025
1026       link = _dbus_list_get_next_link (&context->servers, link);
1027     }
1028 }
1029
1030 BusContext *
1031 bus_context_ref (BusContext *context)
1032 {
1033   _dbus_assert (context->refcount > 0);
1034   context->refcount += 1;
1035
1036   return context;
1037 }
1038
1039 void
1040 bus_context_unref (BusContext *context)
1041 {
1042   _dbus_assert (context->refcount > 0);
1043   context->refcount -= 1;
1044
1045   if (context->refcount == 0)
1046     {
1047       DBusList *link;
1048
1049       _dbus_verbose ("Finalizing bus context %p\n", context);
1050
1051       bus_context_shutdown (context);
1052
1053       if (context->connections)
1054         {
1055           bus_connections_unref (context->connections);
1056           context->connections = NULL;
1057         }
1058
1059       if (context->registry)
1060         {
1061           bus_registry_unref (context->registry);
1062           context->registry = NULL;
1063         }
1064
1065       if (context->activation)
1066         {
1067           bus_activation_unref (context->activation);
1068           context->activation = NULL;
1069         }
1070
1071       link = _dbus_list_get_first_link (&context->servers);
1072       while (link != NULL)
1073         {
1074           dbus_server_unref (link->data);
1075
1076           link = _dbus_list_get_next_link (&context->servers, link);
1077         }
1078       _dbus_list_clear (&context->servers);
1079
1080       if (context->policy)
1081         {
1082           bus_policy_unref (context->policy);
1083           context->policy = NULL;
1084         }
1085
1086       if (context->loop)
1087         {
1088           _dbus_loop_unref (context->loop);
1089           context->loop = NULL;
1090         }
1091
1092       if (context->matchmaker)
1093         {
1094           bus_matchmaker_unref (context->matchmaker);
1095           context->matchmaker = NULL;
1096         }
1097
1098       dbus_free (context->config_file);
1099       dbus_free (context->log_prefix);
1100       dbus_free (context->type);
1101       dbus_free (context->address);
1102       dbus_free (context->user);
1103       dbus_free (context->servicehelper);
1104
1105       if (context->pidfile)
1106         {
1107           DBusString u;
1108           _dbus_string_init_const (&u, context->pidfile);
1109
1110           /* Deliberately ignore errors here, since there's not much
1111            * we can do about it, and we're exiting anyways.
1112            */
1113           _dbus_delete_file (&u, NULL);
1114
1115           dbus_free (context->pidfile);
1116         }
1117       dbus_free (context);
1118
1119       dbus_server_free_data_slot (&server_data_slot);
1120     }
1121 }
1122
1123 /* type may be NULL */
1124 const char*
1125 bus_context_get_type (BusContext *context)
1126 {
1127   return context->type;
1128 }
1129
1130 const char*
1131 bus_context_get_address (BusContext *context)
1132 {
1133   return context->address;
1134 }
1135
1136 const char*
1137 bus_context_get_servicehelper (BusContext *context)
1138 {
1139   return context->servicehelper;
1140 }
1141
1142 dbus_bool_t
1143 bus_context_get_systemd_activation (BusContext *context)
1144 {
1145   return context->systemd_activation;
1146 }
1147
1148 BusRegistry*
1149 bus_context_get_registry (BusContext  *context)
1150 {
1151   return context->registry;
1152 }
1153
1154 BusConnections*
1155 bus_context_get_connections (BusContext  *context)
1156 {
1157   return context->connections;
1158 }
1159
1160 BusActivation*
1161 bus_context_get_activation (BusContext  *context)
1162 {
1163   return context->activation;
1164 }
1165
1166 BusMatchmaker*
1167 bus_context_get_matchmaker (BusContext  *context)
1168 {
1169   return context->matchmaker;
1170 }
1171
1172 DBusLoop*
1173 bus_context_get_loop (BusContext *context)
1174 {
1175   return context->loop;
1176 }
1177
1178 dbus_bool_t
1179 bus_context_allow_unix_user (BusContext   *context,
1180                              unsigned long uid)
1181 {
1182   return bus_policy_allow_unix_user (context->policy,
1183                                      uid);
1184 }
1185
1186 /* For now this is never actually called because the default
1187  * DBusConnection behavior of 'same user that owns the bus can connect'
1188  * is all it would do.
1189  */
1190 dbus_bool_t
1191 bus_context_allow_windows_user (BusContext       *context,
1192                                 const char       *windows_sid)
1193 {
1194   return bus_policy_allow_windows_user (context->policy,
1195                                         windows_sid);
1196 }
1197
1198 BusPolicy *
1199 bus_context_get_policy (BusContext *context)
1200 {
1201   return context->policy;
1202 }
1203
1204 BusClientPolicy*
1205 bus_context_create_client_policy (BusContext      *context,
1206                                   DBusConnection  *connection,
1207                                   DBusError       *error)
1208 {
1209   _DBUS_ASSERT_ERROR_IS_CLEAR (error);
1210   return bus_policy_create_client_policy (context->policy, connection,
1211                                           error);
1212 }
1213
1214 int
1215 bus_context_get_activation_timeout (BusContext *context)
1216 {
1217
1218   return context->limits.activation_timeout;
1219 }
1220
1221 int
1222 bus_context_get_auth_timeout (BusContext *context)
1223 {
1224   return context->limits.auth_timeout;
1225 }
1226
1227 int
1228 bus_context_get_max_completed_connections (BusContext *context)
1229 {
1230   return context->limits.max_completed_connections;
1231 }
1232
1233 int
1234 bus_context_get_max_incomplete_connections (BusContext *context)
1235 {
1236   return context->limits.max_incomplete_connections;
1237 }
1238
1239 int
1240 bus_context_get_max_connections_per_user (BusContext *context)
1241 {
1242   return context->limits.max_connections_per_user;
1243 }
1244
1245 int
1246 bus_context_get_max_pending_activations (BusContext *context)
1247 {
1248   return context->limits.max_pending_activations;
1249 }
1250
1251 int
1252 bus_context_get_max_services_per_connection (BusContext *context)
1253 {
1254   return context->limits.max_services_per_connection;
1255 }
1256
1257 int
1258 bus_context_get_max_match_rules_per_connection (BusContext *context)
1259 {
1260   return context->limits.max_match_rules_per_connection;
1261 }
1262
1263 int
1264 bus_context_get_max_replies_per_connection (BusContext *context)
1265 {
1266   return context->limits.max_replies_per_connection;
1267 }
1268
1269 int
1270 bus_context_get_reply_timeout (BusContext *context)
1271 {
1272   return context->limits.reply_timeout;
1273 }
1274
1275 void
1276 bus_context_log (BusContext *context, DBusSystemLogSeverity severity, const char *msg, ...) _DBUS_GNUC_PRINTF (3, 4);
1277
1278 void
1279 bus_context_log (BusContext *context, DBusSystemLogSeverity severity, const char *msg, ...)
1280 {
1281   va_list args;
1282
1283   if (!context->syslog)
1284     {
1285       /* we're not syslogging; just output to stderr */
1286       va_start (args, msg);
1287       vfprintf (stderr, msg, args);
1288       fprintf (stderr, "\n");
1289       va_end (args);
1290       return;
1291     }
1292
1293   va_start (args, msg);
1294
1295   if (context->log_prefix)
1296     {
1297       DBusString full_msg;
1298
1299       if (!_dbus_string_init (&full_msg))
1300         goto out;
1301       if (!_dbus_string_append (&full_msg, context->log_prefix))
1302         goto oom_out;
1303       if (!_dbus_string_append_printf_valist (&full_msg, msg, args))
1304         goto oom_out;
1305
1306       _dbus_system_log (severity, "%s", _dbus_string_get_const_data (&full_msg));
1307     oom_out:
1308       _dbus_string_free (&full_msg);
1309     }
1310   else
1311     _dbus_system_logv (severity, msg, args);
1312
1313 out:
1314   va_end (args);
1315 }
1316
1317 static inline const char *
1318 nonnull (const char *maybe_null,
1319          const char *if_null)
1320 {
1321   return (maybe_null ? maybe_null : if_null);
1322 }
1323
1324 /*
1325  * Log something about a message, usually that it was rejected.
1326  */
1327 static void
1328 complain_about_message (BusContext     *context,
1329                         const char     *error_name,
1330                         const char     *complaint,
1331                         int             matched_rules,
1332                         DBusMessage    *message,
1333                         DBusConnection *sender,
1334                         DBusConnection *proposed_recipient,
1335                         dbus_bool_t     requested_reply,
1336                         dbus_bool_t     log,
1337                         DBusError      *error)
1338 {
1339   DBusError stack_error = DBUS_ERROR_INIT;
1340   const char *sender_name;
1341   const char *sender_loginfo;
1342   const char *proposed_recipient_loginfo;
1343
1344   if (error == NULL && !log)
1345     return;
1346
1347   if (sender != NULL)
1348     {
1349       sender_name = bus_connection_get_name (sender);
1350       sender_loginfo = bus_connection_get_loginfo (sender);
1351     }
1352   else
1353     {
1354       sender_name = "(unset)";
1355       sender_loginfo = "(bus)";
1356     }
1357
1358   if (proposed_recipient != NULL)
1359     proposed_recipient_loginfo = bus_connection_get_loginfo (proposed_recipient);
1360   else
1361     proposed_recipient_loginfo = "bus";
1362
1363   dbus_set_error (&stack_error, error_name,
1364       "%s, %d matched rules; type=\"%s\", sender=\"%s\" (%s) "
1365       "interface=\"%s\" member=\"%s\" error name=\"%s\" "
1366       "requested_reply=\"%d\" destination=\"%s\" (%s)",
1367       complaint,
1368       matched_rules,
1369       dbus_message_type_to_string (dbus_message_get_type (message)),
1370       sender_name,
1371       sender_loginfo,
1372       nonnull (dbus_message_get_interface (message), "(unset)"),
1373       nonnull (dbus_message_get_member (message), "(unset)"),
1374       nonnull (dbus_message_get_error_name (message), "(unset)"),
1375       requested_reply,
1376       nonnull (dbus_message_get_destination (message), DBUS_SERVICE_DBUS),
1377       proposed_recipient_loginfo);
1378
1379   /* If we hit OOM while setting the error, this will syslog "out of memory"
1380    * which is itself an indication that something is seriously wrong */
1381   if (log)
1382     bus_context_log (context, DBUS_SYSTEM_LOG_SECURITY, "%s",
1383         stack_error.message);
1384
1385   dbus_move_error (&stack_error, error);
1386 }
1387
1388 /*
1389  * addressed_recipient is the recipient specified in the message.
1390  *
1391  * proposed_recipient is the recipient we're considering sending
1392  * to right this second, and may be an eavesdropper.
1393  *
1394  * sender is the sender of the message.
1395  *
1396  * NULL for proposed_recipient or sender definitely means the bus driver.
1397  *
1398  * NULL for addressed_recipient may mean the bus driver, or may mean
1399  * no destination was specified in the message (e.g. a signal).
1400  */
1401 dbus_bool_t
1402 bus_context_check_security_policy (BusContext     *context,
1403                                    BusTransaction *transaction,
1404                                    DBusConnection *sender,
1405                                    DBusConnection *addressed_recipient,
1406                                    DBusConnection *proposed_recipient,
1407                                    DBusMessage    *message,
1408                                    DBusError      *error)
1409 {
1410   const char *dest;
1411   BusClientPolicy *sender_policy;
1412   BusClientPolicy *recipient_policy;
1413   dbus_int32_t toggles;
1414   dbus_bool_t log;
1415   int type;
1416   dbus_bool_t requested_reply;
1417
1418   type = dbus_message_get_type (message);
1419   dest = dbus_message_get_destination (message);
1420
1421   /* dispatch.c was supposed to ensure these invariants */
1422   _dbus_assert (dest != NULL ||
1423                 type == DBUS_MESSAGE_TYPE_SIGNAL ||
1424                 (sender == NULL && !bus_connection_is_active (proposed_recipient)));
1425   _dbus_assert (type == DBUS_MESSAGE_TYPE_SIGNAL ||
1426                 addressed_recipient != NULL ||
1427                 strcmp (dest, DBUS_SERVICE_DBUS) == 0);
1428
1429   switch (type)
1430     {
1431     case DBUS_MESSAGE_TYPE_METHOD_CALL:
1432     case DBUS_MESSAGE_TYPE_SIGNAL:
1433     case DBUS_MESSAGE_TYPE_METHOD_RETURN:
1434     case DBUS_MESSAGE_TYPE_ERROR:
1435       break;
1436
1437     default:
1438       _dbus_verbose ("security check disallowing message of unknown type %d\n",
1439                      type);
1440
1441       dbus_set_error (error, DBUS_ERROR_ACCESS_DENIED,
1442                       "Message bus will not accept messages of unknown type\n");
1443
1444       return FALSE;
1445     }
1446
1447   requested_reply = FALSE;
1448
1449   if (sender != NULL)
1450     {
1451       /* First verify the SELinux access controls.  If allowed then
1452        * go on with the standard checks.
1453        */
1454       if (!bus_selinux_allows_send (sender, proposed_recipient,
1455                                     dbus_message_type_to_string (dbus_message_get_type (message)),
1456                                     dbus_message_get_interface (message),
1457                                     dbus_message_get_member (message),
1458                                     dbus_message_get_error_name (message),
1459                                     dest ? dest : DBUS_SERVICE_DBUS, error))
1460         {
1461           if (error != NULL && !dbus_error_is_set (error))
1462             {
1463               /* don't syslog this, just set the error: avc_has_perm should
1464                * have already written to either the audit log or syslog */
1465               complain_about_message (context, DBUS_ERROR_ACCESS_DENIED,
1466                   "An SELinux policy prevents this sender from sending this "
1467                   "message to this recipient",
1468                   0, message, sender, proposed_recipient, FALSE, FALSE, error);
1469               _dbus_verbose ("SELinux security check denying send to service\n");
1470             }
1471
1472           return FALSE;
1473         }
1474
1475       if (bus_connection_is_active (sender))
1476         {
1477           sender_policy = bus_connection_get_policy (sender);
1478           _dbus_assert (sender_policy != NULL);
1479
1480           /* Fill in requested_reply variable with TRUE if this is a
1481            * reply and the reply was pending.
1482            */
1483           if (dbus_message_get_reply_serial (message) != 0)
1484             {
1485               if (proposed_recipient != NULL /* not to the bus driver */ &&
1486                   addressed_recipient == proposed_recipient /* not eavesdropping */)
1487                 {
1488                   DBusError error2;
1489
1490                   dbus_error_init (&error2);
1491                   requested_reply = bus_connections_check_reply (bus_connection_get_connections (sender),
1492                                                                  transaction,
1493                                                                  sender, addressed_recipient, message,
1494                                                                  &error2);
1495                   if (dbus_error_is_set (&error2))
1496                     {
1497                       dbus_move_error (&error2, error);
1498                       return FALSE;
1499                     }
1500                 }
1501             }
1502         }
1503       else
1504         {
1505           /* Policy for inactive connections is that they can only send
1506            * the hello message to the bus driver
1507            */
1508           if (proposed_recipient == NULL &&
1509               dbus_message_is_method_call (message,
1510                                            DBUS_INTERFACE_DBUS,
1511                                            "Hello"))
1512             {
1513               _dbus_verbose ("security check allowing %s message\n",
1514                              "Hello");
1515               return TRUE;
1516             }
1517           else
1518             {
1519               _dbus_verbose ("security check disallowing non-%s message\n",
1520                              "Hello");
1521
1522               dbus_set_error (error, DBUS_ERROR_ACCESS_DENIED,
1523                               "Client tried to send a message other than %s without being registered",
1524                               "Hello");
1525
1526               return FALSE;
1527             }
1528         }
1529     }
1530   else
1531     {
1532       sender_policy = NULL;
1533
1534       /* If the sender is the bus driver, we assume any reply was a
1535        * requested reply as bus driver won't send bogus ones
1536        */
1537       if (addressed_recipient == proposed_recipient /* not eavesdropping */ &&
1538           dbus_message_get_reply_serial (message) != 0)
1539         requested_reply = TRUE;
1540     }
1541
1542   _dbus_assert ((sender != NULL && sender_policy != NULL) ||
1543                 (sender == NULL && sender_policy == NULL));
1544
1545   if (proposed_recipient != NULL)
1546     {
1547       /* only the bus driver can send to an inactive recipient (as it
1548        * owns no services, so other apps can't address it). Inactive
1549        * recipients can receive any message.
1550        */
1551       if (bus_connection_is_active (proposed_recipient))
1552         {
1553           recipient_policy = bus_connection_get_policy (proposed_recipient);
1554           _dbus_assert (recipient_policy != NULL);
1555         }
1556       else if (sender == NULL)
1557         {
1558           _dbus_verbose ("security check using NULL recipient policy for message from bus\n");
1559           recipient_policy = NULL;
1560         }
1561       else
1562         {
1563           _dbus_assert_not_reached ("a message was somehow sent to an inactive recipient from a source other than the message bus\n");
1564           recipient_policy = NULL;
1565         }
1566     }
1567   else
1568     recipient_policy = NULL;
1569
1570   _dbus_assert ((proposed_recipient != NULL && recipient_policy != NULL) ||
1571                 (proposed_recipient != NULL && sender == NULL && recipient_policy == NULL) ||
1572                 (proposed_recipient == NULL && recipient_policy == NULL));
1573
1574   log = FALSE;
1575   if (sender_policy &&
1576       !bus_client_policy_check_can_send (sender_policy,
1577                                          context->registry,
1578                                          requested_reply,
1579                                          proposed_recipient,
1580                                          message, &toggles, &log))
1581     {
1582       complain_about_message (context, DBUS_ERROR_ACCESS_DENIED,
1583           "Rejected send message", toggles,
1584           message, sender, proposed_recipient, requested_reply,
1585           (addressed_recipient == proposed_recipient), error);
1586       _dbus_verbose ("security policy disallowing message due to sender policy\n");
1587       return FALSE;
1588     }
1589
1590   if (log)
1591     {
1592       /* We want to drop this message, and are only not doing so for backwards
1593        * compatibility. */
1594       complain_about_message (context, DBUS_ERROR_ACCESS_DENIED,
1595           "Would reject message", toggles,
1596           message, sender, proposed_recipient, requested_reply,
1597           TRUE, NULL);
1598     }
1599
1600   if (recipient_policy &&
1601       !bus_client_policy_check_can_receive (recipient_policy,
1602                                             context->registry,
1603                                             requested_reply,
1604                                             sender,
1605                                             addressed_recipient, proposed_recipient,
1606                                             message, &toggles))
1607     {
1608       complain_about_message (context, DBUS_ERROR_ACCESS_DENIED,
1609           "Rejected receive message", toggles,
1610           message, sender, proposed_recipient, requested_reply,
1611           (addressed_recipient == proposed_recipient), NULL);
1612       _dbus_verbose ("security policy disallowing message due to recipient policy\n");
1613       return FALSE;
1614     }
1615
1616   /* See if limits on size have been exceeded */
1617   if (proposed_recipient &&
1618       ((dbus_connection_get_outgoing_size (proposed_recipient) > context->limits.max_outgoing_bytes) ||
1619        (dbus_connection_get_outgoing_unix_fds (proposed_recipient) > context->limits.max_outgoing_unix_fds)))
1620     {
1621       complain_about_message (context, DBUS_ERROR_LIMITS_EXCEEDED,
1622           "Rejected: destination has a full message queue",
1623           0, message, sender, proposed_recipient, requested_reply, TRUE,
1624           error);
1625       _dbus_verbose ("security policy disallowing message due to full message queue\n");
1626       return FALSE;
1627     }
1628
1629   /* Record that we will allow a reply here in the future (don't
1630    * bother if the recipient is the bus or this is an eavesdropping
1631    * connection). Only the addressed recipient may reply.
1632    */
1633   if (type == DBUS_MESSAGE_TYPE_METHOD_CALL &&
1634       sender &&
1635       addressed_recipient &&
1636       addressed_recipient == proposed_recipient && /* not eavesdropping */
1637       !bus_connections_expect_reply (bus_connection_get_connections (sender),
1638                                      transaction,
1639                                      sender, addressed_recipient,
1640                                      message, error))
1641     {
1642       _dbus_verbose ("Failed to record reply expectation or problem with the message expecting a reply\n");
1643       return FALSE;
1644     }
1645
1646   _dbus_verbose ("security policy allowing message\n");
1647   return TRUE;
1648 }