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