Merge branch 'dbus-1.4'
[platform/upstream/dbus.git] / bus / main.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2 /* main.c  main() for message bus
3  *
4  * Copyright (C) 2003 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 <config.h>
25 #include "bus.h"
26 #include "driver.h"
27 #include <dbus/dbus-internals.h>
28 #include <dbus/dbus-watch.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <string.h>
32 #ifdef HAVE_SIGNAL_H
33 #include <signal.h>
34 #endif
35 #ifdef HAVE_ERRNO_H
36 #include <errno.h>
37 #endif
38 #ifdef HAVE_UNISTD_H
39 #include <unistd.h>     /* for write() and STDERR_FILENO */
40 #endif
41 #include "selinux.h"
42
43 static BusContext *context;
44
45 static int reload_pipe[2];
46 #define RELOAD_READ_END 0
47 #define RELOAD_WRITE_END 1
48
49 static void close_reload_pipe (DBusWatch **);
50
51 #ifdef DBUS_UNIX
52 static void
53 signal_handler (int sig)
54 {
55
56   switch (sig)
57     {
58 #ifdef DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX
59     case SIGIO:
60       /* explicit fall-through */
61 #endif /* DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX  */
62 #ifdef SIGHUP
63     case SIGHUP:
64       {
65         DBusString str;
66         _dbus_string_init_const (&str, "foo");
67         if ((reload_pipe[RELOAD_WRITE_END] > 0) &&
68             !_dbus_write_socket (reload_pipe[RELOAD_WRITE_END], &str, 0, 1))
69           {
70             /* If we receive SIGHUP often enough to fill the pipe buffer (4096
71              * times on old Linux, 65536 on modern Linux) before it can be
72              * drained, let's just warn and ignore. The configuration will be
73              * reloaded while draining the pipe buffer, which is what we
74              * wanted. It's harmless that it will be reloaded fewer times than
75              * we asked for, since the reload is delayed anyway, so new changes
76              * will be picked up.
77              *
78              * We use write() because _dbus_warn uses vfprintf, which isn't
79              * async-signal-safe.
80              *
81              * This is necessarily Unix-specific, but so are POSIX signals,
82              * so... */
83             static const char message[] =
84               "Unable to write to reload pipe - buffer full?\n";
85
86             write (STDERR_FILENO, message, strlen (message));
87           }
88       }
89       break;
90 #endif
91     }
92 }
93 #endif /* DBUS_UNIX */
94
95 static void
96 usage (void)
97 {
98   fprintf (stderr, DBUS_DAEMON_NAME " [--version] [--session] [--system] [--config-file=FILE] [--print-address[=DESCRIPTOR]] [--print-pid[=DESCRIPTOR]] [--fork] [--nofork] [--introspect] [--address=ADDRESS] [--systemd-activation]\n");
99   exit (1);
100 }
101
102 static void
103 version (void)
104 {
105   printf ("D-Bus Message Bus Daemon %s\n"
106           "Copyright (C) 2002, 2003 Red Hat, Inc., CodeFactory AB, and others\n"
107           "This is free software; see the source for copying conditions.\n"
108           "There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n",
109           DBUS_VERSION_STRING);
110   exit (0);
111 }
112
113 static void
114 introspect (void)
115 {
116   DBusString xml;
117   const char *v_STRING;
118
119   if (!_dbus_string_init (&xml))
120     goto oom;
121
122   if (!bus_driver_generate_introspect_string (&xml))
123     {
124       _dbus_string_free (&xml);
125       goto oom;
126     }
127
128   v_STRING = _dbus_string_get_const_data (&xml);
129   printf ("%s\n", v_STRING);
130
131   exit (0);
132
133  oom:
134   _dbus_warn ("Can not introspect - Out of memory\n");
135   exit (1);
136 }
137
138 static void
139 check_two_config_files (const DBusString *config_file,
140                         const char       *extra_arg)
141 {
142   if (_dbus_string_get_length (config_file) > 0)
143     {
144       fprintf (stderr, "--%s specified but configuration file %s already requested\n",
145                extra_arg, _dbus_string_get_const_data (config_file));
146       exit (1);
147     }
148 }
149
150 static void
151 check_two_addresses (const DBusString *address,
152                      const char       *extra_arg)
153 {
154   if (_dbus_string_get_length (address) > 0)
155     {
156       fprintf (stderr, "--%s specified but address %s already requested\n",
157                extra_arg, _dbus_string_get_const_data (address));
158       exit (1);
159     }
160 }
161
162 static void
163 check_two_addr_descriptors (const DBusString *addr_fd,
164                             const char       *extra_arg)
165 {
166   if (_dbus_string_get_length (addr_fd) > 0)
167     {
168       fprintf (stderr, "--%s specified but printing address to %s already requested\n",
169                extra_arg, _dbus_string_get_const_data (addr_fd));
170       exit (1);
171     }
172 }
173
174 static void
175 check_two_pid_descriptors (const DBusString *pid_fd,
176                            const char       *extra_arg)
177 {
178   if (_dbus_string_get_length (pid_fd) > 0)
179     {
180       fprintf (stderr, "--%s specified but printing pid to %s already requested\n",
181                extra_arg, _dbus_string_get_const_data (pid_fd));
182       exit (1);
183     }
184 }
185
186 static dbus_bool_t
187 handle_reload_watch (DBusWatch    *watch,
188                      unsigned int  flags,
189                      void         *data)
190 {
191   DBusError error;
192   DBusString str;
193
194   while (!_dbus_string_init (&str))
195     _dbus_wait_for_memory ();
196
197   if ((reload_pipe[RELOAD_READ_END] > 0) &&
198       _dbus_read_socket (reload_pipe[RELOAD_READ_END], &str, 1) != 1)
199     {
200       _dbus_warn ("Couldn't read from reload pipe.\n");
201       close_reload_pipe (&watch);
202       return TRUE;
203     }
204   _dbus_string_free (&str);
205
206   /* this can only fail if we don't understand the config file
207    * or OOM.  Either way we should just stick with the currently
208    * loaded config.
209    */
210   dbus_error_init (&error);
211   if (! bus_context_reload_config (context, &error))
212     {
213       _DBUS_ASSERT_ERROR_IS_SET (&error);
214       _dbus_assert (dbus_error_has_name (&error, DBUS_ERROR_FAILED) ||
215                     dbus_error_has_name (&error, DBUS_ERROR_NO_MEMORY));
216       _dbus_warn ("Unable to reload configuration: %s\n",
217                   error.message);
218       dbus_error_free (&error);
219     }
220   return TRUE;
221 }
222
223 static void
224 setup_reload_pipe (DBusLoop *loop)
225 {
226   DBusError error;
227   DBusWatch *watch;
228
229   dbus_error_init (&error);
230
231   if (!_dbus_full_duplex_pipe (&reload_pipe[0], &reload_pipe[1],
232                                TRUE, &error))
233     {
234       _dbus_warn ("Unable to create reload pipe: %s\n",
235                   error.message);
236       dbus_error_free (&error);
237       exit (1);
238     }
239
240   watch = _dbus_watch_new (reload_pipe[RELOAD_READ_END],
241                            DBUS_WATCH_READABLE, TRUE,
242                            handle_reload_watch, NULL, NULL);
243
244   if (watch == NULL)
245     {
246       _dbus_warn ("Unable to create reload watch: %s\n",
247                   error.message);
248       dbus_error_free (&error);
249       exit (1);
250     }
251
252   if (!_dbus_loop_add_watch (loop, watch))
253     {
254       _dbus_warn ("Unable to add reload watch to main loop: %s\n",
255                   error.message);
256       dbus_error_free (&error);
257       exit (1);
258     }
259
260 }
261
262 static void
263 close_reload_pipe (DBusWatch **watch)
264 {
265     _dbus_loop_remove_watch (bus_context_get_loop (context), *watch);
266     _dbus_watch_invalidate (*watch);
267     _dbus_watch_unref (*watch);
268     *watch = NULL;
269
270     _dbus_close_socket (reload_pipe[RELOAD_READ_END], NULL);
271     reload_pipe[RELOAD_READ_END] = -1;
272
273     _dbus_close_socket (reload_pipe[RELOAD_WRITE_END], NULL);
274     reload_pipe[RELOAD_WRITE_END] = -1;
275 }
276
277 int
278 main (int argc, char **argv)
279 {
280   DBusError error;
281   DBusString config_file;
282   DBusString address;
283   DBusString addr_fd;
284   DBusString pid_fd;
285   const char *prev_arg;
286   DBusPipe print_addr_pipe;
287   DBusPipe print_pid_pipe;
288   int i;
289   dbus_bool_t print_address;
290   dbus_bool_t print_pid;
291   dbus_bool_t is_session_bus;
292   int force_fork;
293   dbus_bool_t systemd_activation;
294
295   if (!_dbus_string_init (&config_file))
296     return 1;
297
298   if (!_dbus_string_init (&address))
299     return 1;
300
301   if (!_dbus_string_init (&addr_fd))
302     return 1;
303
304   if (!_dbus_string_init (&pid_fd))
305     return 1;
306
307   print_address = FALSE;
308   print_pid = FALSE;
309   is_session_bus = FALSE;
310   force_fork = FORK_FOLLOW_CONFIG_FILE;
311   systemd_activation = FALSE;
312
313   prev_arg = NULL;
314   i = 1;
315   while (i < argc)
316     {
317       const char *arg = argv[i];
318
319       if (strcmp (arg, "--help") == 0 ||
320           strcmp (arg, "-h") == 0 ||
321           strcmp (arg, "-?") == 0)
322         usage ();
323       else if (strcmp (arg, "--version") == 0)
324         version ();
325       else if (strcmp (arg, "--introspect") == 0)
326         introspect ();
327       else if (strcmp (arg, "--nofork") == 0)
328         force_fork = FORK_NEVER;
329       else if (strcmp (arg, "--fork") == 0)
330         force_fork = FORK_ALWAYS;
331       else if (strcmp (arg, "--systemd-activation") == 0)
332         systemd_activation = TRUE;
333       else if (strcmp (arg, "--system") == 0)
334         {
335           check_two_config_files (&config_file, "system");
336
337           if (!_dbus_append_system_config_file (&config_file))
338             exit (1);
339         }
340       else if (strcmp (arg, "--session") == 0)
341         {
342           check_two_config_files (&config_file, "session");
343
344           if (!_dbus_append_session_config_file (&config_file))
345             exit (1);
346         }
347       else if (strstr (arg, "--config-file=") == arg)
348         {
349           const char *file;
350
351           check_two_config_files (&config_file, "config-file");
352
353           file = strchr (arg, '=');
354           ++file;
355
356           if (!_dbus_string_append (&config_file, file))
357             exit (1);
358         }
359       else if (prev_arg &&
360                strcmp (prev_arg, "--config-file") == 0)
361         {
362           check_two_config_files (&config_file, "config-file");
363
364           if (!_dbus_string_append (&config_file, arg))
365             exit (1);
366         }
367       else if (strcmp (arg, "--config-file") == 0)
368         ; /* wait for next arg */
369       else if (strstr (arg, "--address=") == arg)
370         {
371           const char *file;
372
373           check_two_addresses (&address, "address");
374
375           file = strchr (arg, '=');
376           ++file;
377
378           if (!_dbus_string_append (&address, file))
379             exit (1);
380         }
381       else if (prev_arg &&
382                strcmp (prev_arg, "--address") == 0)
383         {
384           check_two_addresses (&address, "address");
385
386           if (!_dbus_string_append (&address, arg))
387             exit (1);
388         }
389       else if (strcmp (arg, "--address") == 0)
390         ; /* wait for next arg */
391       else if (strstr (arg, "--print-address=") == arg)
392         {
393           const char *desc;
394
395           check_two_addr_descriptors (&addr_fd, "print-address");
396
397           desc = strchr (arg, '=');
398           ++desc;
399
400           if (!_dbus_string_append (&addr_fd, desc))
401             exit (1);
402
403           print_address = TRUE;
404         }
405       else if (prev_arg &&
406                strcmp (prev_arg, "--print-address") == 0)
407         {
408           check_two_addr_descriptors (&addr_fd, "print-address");
409
410           if (!_dbus_string_append (&addr_fd, arg))
411             exit (1);
412
413           print_address = TRUE;
414         }
415       else if (strcmp (arg, "--print-address") == 0)
416         print_address = TRUE; /* and we'll get the next arg if appropriate */
417       else if (strstr (arg, "--print-pid=") == arg)
418         {
419           const char *desc;
420
421           check_two_pid_descriptors (&pid_fd, "print-pid");
422
423           desc = strchr (arg, '=');
424           ++desc;
425
426           if (!_dbus_string_append (&pid_fd, desc))
427             exit (1);
428
429           print_pid = TRUE;
430         }
431       else if (prev_arg &&
432                strcmp (prev_arg, "--print-pid") == 0)
433         {
434           check_two_pid_descriptors (&pid_fd, "print-pid");
435
436           if (!_dbus_string_append (&pid_fd, arg))
437             exit (1);
438
439           print_pid = TRUE;
440         }
441       else if (strcmp (arg, "--print-pid") == 0)
442         print_pid = TRUE; /* and we'll get the next arg if appropriate */
443       else
444         usage ();
445
446       prev_arg = arg;
447
448       ++i;
449     }
450
451   if (_dbus_string_get_length (&config_file) == 0)
452     {
453       fprintf (stderr, "No configuration file specified.\n");
454       usage ();
455     }
456
457   _dbus_pipe_invalidate (&print_addr_pipe);
458   if (print_address)
459     {
460       _dbus_pipe_init_stdout (&print_addr_pipe);
461       if (_dbus_string_get_length (&addr_fd) > 0)
462         {
463           long val;
464           int end;
465           if (!_dbus_string_parse_int (&addr_fd, 0, &val, &end) ||
466               end != _dbus_string_get_length (&addr_fd) ||
467               val < 0 || val > _DBUS_INT_MAX)
468             {
469               fprintf (stderr, "Invalid file descriptor: \"%s\"\n",
470                        _dbus_string_get_const_data (&addr_fd));
471               exit (1);
472             }
473
474           _dbus_pipe_init (&print_addr_pipe, val);
475         }
476     }
477   _dbus_string_free (&addr_fd);
478
479   _dbus_pipe_invalidate (&print_pid_pipe);
480   if (print_pid)
481     {
482       _dbus_pipe_init_stdout (&print_pid_pipe);
483       if (_dbus_string_get_length (&pid_fd) > 0)
484         {
485           long val;
486           int end;
487           if (!_dbus_string_parse_int (&pid_fd, 0, &val, &end) ||
488               end != _dbus_string_get_length (&pid_fd) ||
489               val < 0 || val > _DBUS_INT_MAX)
490             {
491               fprintf (stderr, "Invalid file descriptor: \"%s\"\n",
492                        _dbus_string_get_const_data (&pid_fd));
493               exit (1);
494             }
495
496           _dbus_pipe_init (&print_pid_pipe, val);
497         }
498     }
499   _dbus_string_free (&pid_fd);
500
501   if (!bus_selinux_pre_init ())
502     {
503       _dbus_warn ("SELinux pre-initialization failed\n");
504       exit (1);
505     }
506
507   dbus_error_init (&error);
508   context = bus_context_new (&config_file, force_fork,
509                              &print_addr_pipe, &print_pid_pipe,
510                              _dbus_string_get_length(&address) > 0 ? &address : NULL,
511                              systemd_activation,
512                              &error);
513   _dbus_string_free (&config_file);
514   if (context == NULL)
515     {
516       _dbus_warn ("Failed to start message bus: %s\n",
517                   error.message);
518       dbus_error_free (&error);
519       exit (1);
520     }
521
522   /* bus_context_new() closes the print_addr_pipe and
523    * print_pid_pipe
524    */
525
526   setup_reload_pipe (bus_context_get_loop (context));
527
528 #ifdef DBUS_UNIX
529   /* POSIX signals are Unix-specific, and _dbus_set_signal_handler is
530    * unimplemented (and probably unimplementable) on Windows, so there's
531    * no point in trying to make the handler portable to non-Unix. */
532 #ifdef SIGHUP
533   _dbus_set_signal_handler (SIGHUP, signal_handler);
534 #endif
535 #ifdef DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX
536   _dbus_set_signal_handler (SIGIO, signal_handler);
537 #endif /* DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX */
538 #endif /* DBUS_UNIX */
539
540   _dbus_verbose ("We are on D-Bus...\n");
541   _dbus_loop_run (bus_context_get_loop (context));
542
543   bus_context_shutdown (context);
544   bus_context_unref (context);
545   bus_selinux_shutdown ();
546
547   return 0;
548 }