First public contribution.
1 /* -*- mode: C; c-file-style: "gnu" -*- */
2 /* main.c main() for message bus
4 * Copyright (C) 2003 CodeFactory AB
5 * Copyright (C) 2003 Red Hat, Inc.
6 * Copyright (C) 2004 Imendio HB
7 * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
9 * Licensed under the Academic Free License version 2.1
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
29 #include <dbus/dbus-internals.h>
30 #include <dbus/dbus-watch.h>
32 #include "dbus-internals.h"
33 #include "dbus-watch.h"
34 #endif //__SYMBIAN32__
44 static BusContext *context;
46 static int reload_pipe[2];
47 #define RELOAD_READ_END 0
48 #define RELOAD_WRITE_END 1
61 off_t l_start; starting offset
62 off_t l_len; len = 0 means until end of file
63 pid_t l_pid; lock owner
64 short l_type; lock type: read/write, etc.
65 short l_whence; type of l_start
67 l_type l_whence l_start l_len l_pid */
70 // struct flock fl = { F_WRLCK, SEEK_SET, 0, 0, 0 };
71 // struct flock fl = { 0, 0, 0,F_WRLCK, SEEK_SET};
74 // fl.l_pid = getpid();
77 if ((fd = open(DBUS_LOCK_FILE, O_RDWR|O_CREAT|O_EXCL, 0666)) == -1)
79 // perror("open file status");
84 /* fcntl file lock not supported in openc
85 if (fcntl(fd, F_SETLKW, &fl) == -1) {
101 signal_handler (int sig)
103 #ifndef __SYMBIAN32__
108 #ifdef DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX
110 /* explicit fall-through */
111 #endif /* DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX */
113 _dbus_string_init_const (&str, "foo");
114 if (!_dbus_write_socket (reload_pipe[RELOAD_WRITE_END], &str, 0, 1))
116 _dbus_warn ("Unable to write to reload pipe.\n");
122 _dbus_loop_quit (bus_context_get_loop (context));
131 fprintf (stderr, DAEMON_NAME " [--version] [--session] [--system] [--config-file=FILE] [--print-address[=DESCRIPTOR]] [--print-pid[=DESCRIPTOR]] [--fork] [--nofork] [--introspect]\n");
138 printf ("D-Bus Message Bus Daemon %s\n"
139 "Copyright (C) 2002, 2003 Red Hat, Inc., CodeFactory AB, and others\n"
140 "This is free software; see the source for copying conditions.\n"
141 "There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n",
150 const char *v_STRING;
152 if (!_dbus_string_init (&xml))
155 if (!bus_driver_generate_introspect_string (&xml))
157 _dbus_string_free (&xml);
161 v_STRING = _dbus_string_get_const_data (&xml);
162 printf ("%s\n", v_STRING);
167 _dbus_warn ("Can not introspect - Out of memory\n");
171 check_two_config_files (const DBusString *config_file,
172 const char *extra_arg)
174 if (_dbus_string_get_length (config_file) > 0)
176 fprintf (stderr, "--%s specified but configuration file %s already requested\n",
177 extra_arg, _dbus_string_get_const_data (config_file));
183 check_two_addr_descriptors (const DBusString *addr_fd,
184 const char *extra_arg)
186 if (_dbus_string_get_length (addr_fd) > 0)
188 fprintf (stderr, "--%s specified but printing address to %s already requested\n",
189 extra_arg, _dbus_string_get_const_data (addr_fd));
195 check_two_pid_descriptors (const DBusString *pid_fd,
196 const char *extra_arg)
198 if (_dbus_string_get_length (pid_fd) > 0)
200 fprintf (stderr, "--%s specified but printing pid to %s already requested\n",
201 extra_arg, _dbus_string_get_const_data (pid_fd));
207 handle_reload_watch (DBusWatch *watch,
213 _dbus_string_init (&str);
214 if (_dbus_read_socket (reload_pipe[RELOAD_READ_END], &str, 1) != 1)
216 _dbus_warn ("Couldn't read from reload pipe.\n");
219 _dbus_string_free (&str);
221 dbus_error_init (&error);
222 if (! bus_context_reload_config (context, &error))
224 _dbus_warn ("Unable to reload configuration: %s\n",
226 dbus_error_free (&error);
234 reload_watch_callback (DBusWatch *watch,
235 unsigned int condition,
238 return dbus_watch_handle (watch, condition);
242 setup_reload_pipe (DBusLoop *loop)
247 dbus_error_init (&error);
249 if (!_dbus_full_duplex_pipe (&reload_pipe[0], &reload_pipe[1],
252 _dbus_warn ("Unable to create reload pipe: %s\n",
254 dbus_error_free (&error);
258 _dbus_fd_set_close_on_exec (reload_pipe[0]);
259 _dbus_fd_set_close_on_exec (reload_pipe[1]);
261 watch = _dbus_watch_new (reload_pipe[RELOAD_READ_END],
262 DBUS_WATCH_READABLE, TRUE,
263 handle_reload_watch, NULL, NULL);
267 _dbus_warn ("Unable to create reload watch: %s\n",
269 dbus_error_free (&error);
273 if (!_dbus_loop_add_watch (loop, watch, reload_watch_callback,
276 _dbus_warn ("Unable to add reload watch to main loop: %s\n",
278 dbus_error_free (&error);
286 main (int argc, char **argv)
289 DBusString config_file;
292 const char *prev_arg;
296 dbus_bool_t print_address;
297 dbus_bool_t print_pid;
300 char systemconfpath[35];
303 // write(1, "hi daemon", 9);
305 if (!_dbus_string_init (&config_file))
308 if (!_dbus_string_init (&addr_fd))
311 if (!_dbus_string_init (&pid_fd))
314 print_address = FALSE;
316 force_fork = FORK_FOLLOW_CONFIG_FILE;
319 // Open C Does not have command arguments
320 // Open C Does not have fork
321 // force_fork = FORK_NEVER;
322 // __SYMBIAN32__ uses system dbus only
324 // _dbus_string_append (&config_file, DBUS_SYSTEM_CONFIG_FILE);
325 systemconfpath[0]= 'z';//Default
327 systemconfpath[0]=getSystemConfDriveLetter();
329 systemconfpath[1]=':';
330 systemconfpath[2]='\0';
332 strcat(systemconfpath,"\\data\\dbus\\system.conf");
333 _dbus_string_append (&config_file, systemconfpath);
335 force_fork = FORK_NEVER;
342 const char *arg = argv[i];
344 if (strcmp (arg, "--help") == 0 ||
345 strcmp (arg, "-h") == 0 ||
346 strcmp (arg, "-?") == 0)
348 else if (strcmp (arg, "--version") == 0)
350 else if (strcmp (arg, "--introspect") == 0)
352 else if (strcmp (arg, "--nofork") == 0)
353 force_fork = FORK_NEVER;
354 else if (strcmp (arg, "--fork") == 0)
355 force_fork = FORK_ALWAYS;
356 else if (strcmp (arg, "--system") == 0)
358 check_two_config_files (&config_file, "system");
360 if (!_dbus_string_append (&config_file, DBUS_SYSTEM_CONFIG_FILE))
363 else if (strcmp (arg, "--session") == 0)
365 check_two_config_files (&config_file, "session");
367 if (!_dbus_string_append (&config_file, DBUS_SESSION_CONFIG_FILE))
370 else if (strstr (arg, "--config-file=") == arg)
374 check_two_config_files (&config_file, "config-file");
376 file = strchr (arg, '=');
379 if (!_dbus_string_append (&config_file, file))
383 strcmp (prev_arg, "--config-file") == 0)
385 check_two_config_files (&config_file, "config-file");
387 if (!_dbus_string_append (&config_file, arg))
390 else if (strcmp (arg, "--config-file") == 0)
391 ; /* wait for next arg */
392 else if (strstr (arg, "--print-address=") == arg)
396 check_two_addr_descriptors (&addr_fd, "print-address");
398 desc = strchr (arg, '=');
401 if (!_dbus_string_append (&addr_fd, desc))
404 print_address = TRUE;
407 strcmp (prev_arg, "--print-address") == 0)
409 check_two_addr_descriptors (&addr_fd, "print-address");
411 if (!_dbus_string_append (&addr_fd, arg))
414 print_address = TRUE;
416 else if (strcmp (arg, "--print-address") == 0)
417 print_address = TRUE; /* and we'll get the next arg if appropriate */
418 else if (strstr (arg, "--print-pid=") == arg)
422 check_two_pid_descriptors (&pid_fd, "print-pid");
424 desc = strchr (arg, '=');
427 if (!_dbus_string_append (&pid_fd, desc))
433 strcmp (prev_arg, "--print-pid") == 0)
435 check_two_pid_descriptors (&pid_fd, "print-pid");
437 if (!_dbus_string_append (&pid_fd, arg))
442 else if (strcmp (arg, "--print-pid") == 0)
443 print_pid = TRUE; /* and we'll get the next arg if appropriate */
451 #endif // else (systems with command line arguments)
453 if (_dbus_string_get_length (&config_file) == 0)
455 fprintf (stderr, "No configuration file specified.\n");
462 print_addr_fd = 1; /* stdout */
463 if (_dbus_string_get_length (&addr_fd) > 0)
467 if (!_dbus_string_parse_int (&addr_fd, 0, &val, &end) ||
468 end != _dbus_string_get_length (&addr_fd) ||
469 val < 0 || val > _DBUS_INT_MAX)
471 fprintf (stderr, "Invalid file descriptor: \"%s\"\n",
472 _dbus_string_get_const_data (&addr_fd));
479 _dbus_string_free (&addr_fd);
484 print_pid_fd = 1; /* stdout */
485 if (_dbus_string_get_length (&pid_fd) > 0)
489 if (!_dbus_string_parse_int (&pid_fd, 0, &val, &end) ||
490 end != _dbus_string_get_length (&pid_fd) ||
491 val < 0 || val > _DBUS_INT_MAX)
493 fprintf (stderr, "Invalid file descriptor: \"%s\"\n",
494 _dbus_string_get_const_data (&pid_fd));
501 _dbus_string_free (&pid_fd);
507 /*uncomment above line, if the bus address needs to be sent to the client starting the bus*/
508 /* one more work around could be to write the address of the bus in the dbus_lock file, which can be read
509 from the client program if needed */
513 if (!bus_selinux_pre_init ())
515 _dbus_warn ("SELinux pre-initialization failed\n");
519 dbus_error_init (&error);
520 context = bus_context_new (&config_file, force_fork,
521 print_addr_fd, print_pid_fd,
523 _dbus_string_free (&config_file);
526 _dbus_warn ("Failed to start message bus: %s\n",
528 dbus_error_free (&error);
534 #ifndef __SYMBIAN32__
535 setup_reload_pipe (bus_context_get_loop (context));
536 _dbus_set_signal_handler (SIGHUP, signal_handler);
537 _dbus_set_signal_handler (SIGTERM, signal_handler);
540 #ifdef DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX
541 _dbus_set_signal_handler (SIGIO, signal_handler);
542 #endif /* DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX */
544 _dbus_verbose ("We are on D-Bus...\n");
549 _dbus_loop_run (bus_context_get_loop (context));
551 remove(DBUS_LOCK_FILE);
553 bus_context_shutdown (context);
554 bus_context_unref (context);
555 bus_selinux_shutdown ();