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   int force_fork;
292   dbus_bool_t systemd_activation;
293
294   if (!_dbus_string_init (&config_file))
295     return 1;
296
297   if (!_dbus_string_init (&address))
298     return 1;
299
300   if (!_dbus_string_init (&addr_fd))
301     return 1;
302
303   if (!_dbus_string_init (&pid_fd))
304     return 1;
305
306   print_address = FALSE;
307   print_pid = FALSE;
308   force_fork = FORK_FOLLOW_CONFIG_FILE;
309   systemd_activation = FALSE;
310
311   prev_arg = NULL;
312   i = 1;
313   while (i < argc)
314     {
315       const char *arg = argv[i];
316
317       if (strcmp (arg, "--help") == 0 ||
318           strcmp (arg, "-h") == 0 ||
319           strcmp (arg, "-?") == 0)
320         usage ();
321       else if (strcmp (arg, "--version") == 0)
322         version ();
323       else if (strcmp (arg, "--introspect") == 0)
324         introspect ();
325       else if (strcmp (arg, "--nofork") == 0)
326         force_fork = FORK_NEVER;
327       else if (strcmp (arg, "--fork") == 0)
328         force_fork = FORK_ALWAYS;
329       else if (strcmp (arg, "--systemd-activation") == 0)
330         systemd_activation = TRUE;
331       else if (strcmp (arg, "--system") == 0)
332         {
333           check_two_config_files (&config_file, "system");
334
335           if (!_dbus_append_system_config_file (&config_file))
336             exit (1);
337         }
338       else if (strcmp (arg, "--session") == 0)
339         {
340           check_two_config_files (&config_file, "session");
341
342           if (!_dbus_append_session_config_file (&config_file))
343             exit (1);
344         }
345       else if (strstr (arg, "--config-file=") == arg)
346         {
347           const char *file;
348
349           check_two_config_files (&config_file, "config-file");
350
351           file = strchr (arg, '=');
352           ++file;
353
354           if (!_dbus_string_append (&config_file, file))
355             exit (1);
356         }
357       else if (prev_arg &&
358                strcmp (prev_arg, "--config-file") == 0)
359         {
360           check_two_config_files (&config_file, "config-file");
361
362           if (!_dbus_string_append (&config_file, arg))
363             exit (1);
364         }
365       else if (strcmp (arg, "--config-file") == 0)
366         ; /* wait for next arg */
367       else if (strstr (arg, "--address=") == arg)
368         {
369           const char *file;
370
371           check_two_addresses (&address, "address");
372
373           file = strchr (arg, '=');
374           ++file;
375
376           if (!_dbus_string_append (&address, file))
377             exit (1);
378         }
379       else if (prev_arg &&
380                strcmp (prev_arg, "--address") == 0)
381         {
382           check_two_addresses (&address, "address");
383
384           if (!_dbus_string_append (&address, arg))
385             exit (1);
386         }
387       else if (strcmp (arg, "--address") == 0)
388         ; /* wait for next arg */
389       else if (strstr (arg, "--print-address=") == arg)
390         {
391           const char *desc;
392
393           check_two_addr_descriptors (&addr_fd, "print-address");
394
395           desc = strchr (arg, '=');
396           ++desc;
397
398           if (!_dbus_string_append (&addr_fd, desc))
399             exit (1);
400
401           print_address = TRUE;
402         }
403       else if (prev_arg &&
404                strcmp (prev_arg, "--print-address") == 0)
405         {
406           check_two_addr_descriptors (&addr_fd, "print-address");
407
408           if (!_dbus_string_append (&addr_fd, arg))
409             exit (1);
410
411           print_address = TRUE;
412         }
413       else if (strcmp (arg, "--print-address") == 0)
414         print_address = TRUE; /* and we'll get the next arg if appropriate */
415       else if (strstr (arg, "--print-pid=") == arg)
416         {
417           const char *desc;
418
419           check_two_pid_descriptors (&pid_fd, "print-pid");
420
421           desc = strchr (arg, '=');
422           ++desc;
423
424           if (!_dbus_string_append (&pid_fd, desc))
425             exit (1);
426
427           print_pid = TRUE;
428         }
429       else if (prev_arg &&
430                strcmp (prev_arg, "--print-pid") == 0)
431         {
432           check_two_pid_descriptors (&pid_fd, "print-pid");
433
434           if (!_dbus_string_append (&pid_fd, arg))
435             exit (1);
436
437           print_pid = TRUE;
438         }
439       else if (strcmp (arg, "--print-pid") == 0)
440         print_pid = TRUE; /* and we'll get the next arg if appropriate */
441       else
442         usage ();
443
444       prev_arg = arg;
445
446       ++i;
447     }
448
449   if (_dbus_string_get_length (&config_file) == 0)
450     {
451       fprintf (stderr, "No configuration file specified.\n");
452       usage ();
453     }
454
455   _dbus_pipe_invalidate (&print_addr_pipe);
456   if (print_address)
457     {
458       _dbus_pipe_init_stdout (&print_addr_pipe);
459       if (_dbus_string_get_length (&addr_fd) > 0)
460         {
461           long val;
462           int end;
463           if (!_dbus_string_parse_int (&addr_fd, 0, &val, &end) ||
464               end != _dbus_string_get_length (&addr_fd) ||
465               val < 0 || val > _DBUS_INT_MAX)
466             {
467               fprintf (stderr, "Invalid file descriptor: \"%s\"\n",
468                        _dbus_string_get_const_data (&addr_fd));
469               exit (1);
470             }
471
472           _dbus_pipe_init (&print_addr_pipe, val);
473         }
474     }
475   _dbus_string_free (&addr_fd);
476
477   _dbus_pipe_invalidate (&print_pid_pipe);
478   if (print_pid)
479     {
480       _dbus_pipe_init_stdout (&print_pid_pipe);
481       if (_dbus_string_get_length (&pid_fd) > 0)
482         {
483           long val;
484           int end;
485           if (!_dbus_string_parse_int (&pid_fd, 0, &val, &end) ||
486               end != _dbus_string_get_length (&pid_fd) ||
487               val < 0 || val > _DBUS_INT_MAX)
488             {
489               fprintf (stderr, "Invalid file descriptor: \"%s\"\n",
490                        _dbus_string_get_const_data (&pid_fd));
491               exit (1);
492             }
493
494           _dbus_pipe_init (&print_pid_pipe, val);
495         }
496     }
497   _dbus_string_free (&pid_fd);
498
499   if (!bus_selinux_pre_init ())
500     {
501       _dbus_warn ("SELinux pre-initialization failed\n");
502       exit (1);
503     }
504
505   dbus_error_init (&error);
506   context = bus_context_new (&config_file, force_fork,
507                              &print_addr_pipe, &print_pid_pipe,
508                              _dbus_string_get_length(&address) > 0 ? &address : NULL,
509                              systemd_activation,
510                              &error);
511   _dbus_string_free (&config_file);
512   if (context == NULL)
513     {
514       _dbus_warn ("Failed to start message bus: %s\n",
515                   error.message);
516       dbus_error_free (&error);
517       exit (1);
518     }
519
520   /* bus_context_new() closes the print_addr_pipe and
521    * print_pid_pipe
522    */
523
524   setup_reload_pipe (bus_context_get_loop (context));
525
526 #ifdef DBUS_UNIX
527   /* POSIX signals are Unix-specific, and _dbus_set_signal_handler is
528    * unimplemented (and probably unimplementable) on Windows, so there's
529    * no point in trying to make the handler portable to non-Unix. */
530 #ifdef SIGHUP
531   _dbus_set_signal_handler (SIGHUP, signal_handler);
532 #endif
533 #ifdef DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX
534   _dbus_set_signal_handler (SIGIO, signal_handler);
535 #endif /* DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX */
536 #endif /* DBUS_UNIX */
537
538   _dbus_verbose ("We are on D-Bus...\n");
539   _dbus_loop_run (bus_context_get_loop (context));
540
541   bus_context_shutdown (context);
542   bus_context_unref (context);
543   bus_selinux_shutdown ();
544
545   return 0;
546 }