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