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