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