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