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