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