os/ossrv/ofdbus/dbus/bus/main.c
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ofdbus/dbus/bus/main.c	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,558 @@
     1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
     1.5 +/* main.c  main() for message bus
     1.6 + *
     1.7 + * Copyright (C) 2003  CodeFactory AB
     1.8 + * Copyright (C) 2003  Red Hat, Inc.
     1.9 + * Copyright (C) 2004  Imendio HB
    1.10 + * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
    1.11 + *
    1.12 + * Licensed under the Academic Free License version 2.1
    1.13 + * 
    1.14 + * This program is free software; you can redistribute it and/or modify
    1.15 + * it under the terms of the GNU General Public License as published by
    1.16 + * the Free Software Foundation; either version 2 of the License, or
    1.17 + * (at your option) any later version.
    1.18 + *
    1.19 + * This program is distributed in the hope that it will be useful,
    1.20 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.21 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.22 + * GNU General Public License for more details.
    1.23 + * 
    1.24 + * You should have received a copy of the GNU General Public License
    1.25 + * along with this program; if not, write to the Free Software
    1.26 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    1.27 + *
    1.28 + */ 
    1.29 +#include "bus.h"
    1.30 +#include "driver.h"
    1.31 +#ifndef __SYMBIAN32__
    1.32 +#include <dbus/dbus-internals.h>
    1.33 +#include <dbus/dbus-watch.h>
    1.34 +#else
    1.35 +#include "dbus-internals.h"
    1.36 +#include "dbus-watch.h"
    1.37 +#endif //__SYMBIAN32__
    1.38 +#include <stdio.h>
    1.39 +#include <stdlib.h>
    1.40 +#include <string.h>
    1.41 +#ifndef __SYMBIAN32__
    1.42 +#include <signal.h>
    1.43 +#endif
    1.44 +#include <errno.h>
    1.45 +#include "selinux.h"
    1.46 +
    1.47 +static BusContext *context;
    1.48 +
    1.49 +static int reload_pipe[2];
    1.50 +#define RELOAD_READ_END 0
    1.51 +#define RELOAD_WRITE_END 1
    1.52 +
    1.53 +#ifdef __SYMBIAN32__
    1.54 +#if 0 
    1.55 + #include <fcntl.h>
    1.56 +
    1.57 +int lock_file()
    1.58 +{
    1.59 +
    1.60 +
    1.61 +
    1.62 +       /*
    1.63 +       struct flock {
    1.64 +	off_t	l_start;	 starting offset 
    1.65 +	off_t	l_len;		 len = 0 means until end of file 
    1.66 +	pid_t	l_pid;		 lock owner 
    1.67 +	short	l_type;		 lock type: read/write, etc. 
    1.68 +	short	l_whence;	 type of l_start 
    1.69 +};
    1.70 + l_type   l_whence  l_start  l_len  l_pid   */
    1.71 +
    1.72 +
    1.73 +    //	struct flock fl = { F_WRLCK, SEEK_SET, 0,       0,     0 };
    1.74 +    //	struct flock fl = { 0, 0, 0,F_WRLCK, SEEK_SET};
    1.75 +    	int fd;
    1.76 +    
    1.77 +      //  fl.l_pid = getpid();
    1.78 +    
    1.79 +    	
    1.80 +    	if ((fd = open(DBUS_LOCK_FILE, O_RDWR|O_CREAT|O_EXCL, 0666)) == -1) 
    1.81 +    	{
    1.82 +    //	perror("open file status");
    1.83 +    	return 0;
    1.84 +    	
    1.85 +    	}
    1.86 +    
    1.87 +   /* fcntl file lock not supported in openc 	
    1.88 +    	if (fcntl(fd, F_SETLKW, &fl) == -1) {
    1.89 +    		perror("fcntl");
    1.90 +		close(fd);
    1.91 +    		return 0;
    1.92 +    	}
    1.93 +    
    1.94 +   */ 	
    1.95 +    close(fd);
    1.96 +	return 1;
    1.97 +
    1.98 +}
    1.99 +
   1.100 +#endif
   1.101 +
   1.102 +#endif
   1.103 +void
   1.104 +signal_handler (int sig)
   1.105 +{
   1.106 +#ifndef __SYMBIAN32__
   1.107 +  DBusString str;
   1.108 +
   1.109 +  switch (sig)
   1.110 +    {
   1.111 +#ifdef DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX 
   1.112 +    case SIGIO: 
   1.113 +      /* explicit fall-through */
   1.114 +#endif /* DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX  */
   1.115 +    case SIGHUP:
   1.116 +      _dbus_string_init_const (&str, "foo");
   1.117 +      if (!_dbus_write_socket (reload_pipe[RELOAD_WRITE_END], &str, 0, 1))
   1.118 +	{
   1.119 +	  _dbus_warn ("Unable to write to reload pipe.\n");
   1.120 +	  exit (1);
   1.121 +	}
   1.122 +      break;
   1.123 +
   1.124 +    case SIGTERM:
   1.125 +      _dbus_loop_quit (bus_context_get_loop (context));
   1.126 +      break;
   1.127 +    }
   1.128 +
   1.129 +#endif
   1.130 +}
   1.131 +static void
   1.132 +usage (void)
   1.133 +{
   1.134 +  fprintf (stderr, DAEMON_NAME " [--version] [--session] [--system] [--config-file=FILE] [--print-address[=DESCRIPTOR]] [--print-pid[=DESCRIPTOR]] [--fork] [--nofork] [--introspect]\n");
   1.135 +  exit (1);
   1.136 +}
   1.137 +
   1.138 +static void
   1.139 +version (void)
   1.140 +{
   1.141 +  printf ("D-Bus Message Bus Daemon %s\n"
   1.142 +          "Copyright (C) 2002, 2003 Red Hat, Inc., CodeFactory AB, and others\n"
   1.143 +          "This is free software; see the source for copying conditions.\n"
   1.144 +          "There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n",
   1.145 +          VERSION);
   1.146 +  exit (0);
   1.147 +}
   1.148 +
   1.149 +static void
   1.150 +introspect (void)
   1.151 +{
   1.152 +  DBusString xml;
   1.153 +  const char *v_STRING;  
   1.154 +
   1.155 +  if (!_dbus_string_init (&xml))
   1.156 +    goto oom;
   1.157 +
   1.158 +  if (!bus_driver_generate_introspect_string (&xml))
   1.159 +    {
   1.160 +      _dbus_string_free (&xml);
   1.161 +      goto oom;
   1.162 +    }
   1.163 +
   1.164 +  v_STRING = _dbus_string_get_const_data (&xml);
   1.165 +  printf ("%s\n", v_STRING); 
   1.166 +
   1.167 +  exit (0);
   1.168 + 
   1.169 + oom:
   1.170 +  _dbus_warn ("Can not introspect - Out of memory\n");
   1.171 +  exit (1);
   1.172 +}
   1.173 +static void
   1.174 +check_two_config_files (const DBusString *config_file,
   1.175 +                        const char       *extra_arg)
   1.176 +{
   1.177 +  if (_dbus_string_get_length (config_file) > 0)
   1.178 +    {
   1.179 +      fprintf (stderr, "--%s specified but configuration file %s already requested\n",
   1.180 +               extra_arg, _dbus_string_get_const_data (config_file));
   1.181 +      exit (1);
   1.182 +    }
   1.183 +}
   1.184 +
   1.185 +static void
   1.186 +check_two_addr_descriptors (const DBusString *addr_fd,
   1.187 +                            const char       *extra_arg)
   1.188 +{
   1.189 +  if (_dbus_string_get_length (addr_fd) > 0)
   1.190 +    {
   1.191 +      fprintf (stderr, "--%s specified but printing address to %s already requested\n",
   1.192 +               extra_arg, _dbus_string_get_const_data (addr_fd));
   1.193 +      exit (1);
   1.194 +    }
   1.195 +}
   1.196 +
   1.197 +static void
   1.198 +check_two_pid_descriptors (const DBusString *pid_fd,
   1.199 +                           const char       *extra_arg)
   1.200 +{
   1.201 +  if (_dbus_string_get_length (pid_fd) > 0)
   1.202 +    {
   1.203 +      fprintf (stderr, "--%s specified but printing pid to %s already requested\n",
   1.204 +               extra_arg, _dbus_string_get_const_data (pid_fd));
   1.205 +      exit (1);
   1.206 +    }
   1.207 +}
   1.208 +
   1.209 +static dbus_bool_t
   1.210 +handle_reload_watch (DBusWatch    *watch,
   1.211 +		     unsigned int  flags,
   1.212 +		     void         *data)
   1.213 +{
   1.214 +  DBusError error;
   1.215 +  DBusString str;
   1.216 +  _dbus_string_init (&str);
   1.217 +  if (_dbus_read_socket (reload_pipe[RELOAD_READ_END], &str, 1) != 1)
   1.218 +    {
   1.219 +      _dbus_warn ("Couldn't read from reload pipe.\n");
   1.220 +      exit (1);
   1.221 +    }
   1.222 +  _dbus_string_free (&str);
   1.223 +
   1.224 +  dbus_error_init (&error);
   1.225 +  if (! bus_context_reload_config (context, &error))
   1.226 +    {
   1.227 +      _dbus_warn ("Unable to reload configuration: %s\n",
   1.228 +		  error.message);
   1.229 +      dbus_error_free (&error);
   1.230 +      exit (1);
   1.231 +    }
   1.232 +  return TRUE;
   1.233 +}
   1.234 +
   1.235 +
   1.236 +static dbus_bool_t
   1.237 +reload_watch_callback (DBusWatch    *watch,
   1.238 +		       unsigned int  condition,
   1.239 +		       void         *data)
   1.240 +{
   1.241 +  return dbus_watch_handle (watch, condition);
   1.242 +}
   1.243 +
   1.244 +static void
   1.245 +setup_reload_pipe (DBusLoop *loop)
   1.246 +{
   1.247 +  DBusError error;
   1.248 +  DBusWatch *watch;
   1.249 +
   1.250 +  dbus_error_init (&error);
   1.251 +
   1.252 +  if (!_dbus_full_duplex_pipe (&reload_pipe[0], &reload_pipe[1],
   1.253 +			       TRUE, &error))
   1.254 +    {
   1.255 +      _dbus_warn ("Unable to create reload pipe: %s\n",
   1.256 +		  error.message);
   1.257 +      dbus_error_free (&error);
   1.258 +      exit (1);
   1.259 +    }
   1.260 +
   1.261 +  _dbus_fd_set_close_on_exec (reload_pipe[0]);
   1.262 +  _dbus_fd_set_close_on_exec (reload_pipe[1]);
   1.263 +
   1.264 +  watch = _dbus_watch_new (reload_pipe[RELOAD_READ_END],
   1.265 +			   DBUS_WATCH_READABLE, TRUE,
   1.266 +			   handle_reload_watch, NULL, NULL);
   1.267 +
   1.268 +  if (watch == NULL)
   1.269 +    {
   1.270 +      _dbus_warn ("Unable to create reload watch: %s\n",
   1.271 +		  error.message);
   1.272 +      dbus_error_free (&error);
   1.273 +      exit (1);
   1.274 +    }
   1.275 +
   1.276 +  if (!_dbus_loop_add_watch (loop, watch, reload_watch_callback,
   1.277 +			     NULL, NULL))
   1.278 +    {
   1.279 +      _dbus_warn ("Unable to add reload watch to main loop: %s\n",
   1.280 +		  error.message);
   1.281 +      dbus_error_free (&error);
   1.282 +      exit (1);
   1.283 +    }
   1.284 +
   1.285 +}
   1.286 +
   1.287 +
   1.288 +int
   1.289 +main (int argc, char **argv)
   1.290 +{
   1.291 +  DBusError error;
   1.292 +  DBusString config_file;
   1.293 +  DBusString addr_fd;
   1.294 +  DBusString pid_fd;
   1.295 +  const char *prev_arg;
   1.296 +  int print_addr_fd;
   1.297 +  int print_pid_fd;
   1.298 +  int i;
   1.299 +  dbus_bool_t print_address;
   1.300 +  dbus_bool_t print_pid;
   1.301 +  int force_fork;
   1.302 +  #ifdef __SYMBIAN32__
   1.303 +  char systemconfpath[35];
   1.304 +#endif
   1.305 +  
   1.306 + // write(1, "hi daemon", 9); 
   1.307 +
   1.308 +  if (!_dbus_string_init (&config_file))
   1.309 +    return 1;
   1.310 +
   1.311 +  if (!_dbus_string_init (&addr_fd))
   1.312 +    return 1;
   1.313 +
   1.314 +  if (!_dbus_string_init (&pid_fd))
   1.315 +    return 1;
   1.316 +
   1.317 +  print_address = FALSE;
   1.318 +  print_pid = FALSE;
   1.319 +  force_fork = FORK_FOLLOW_CONFIG_FILE;
   1.320 +
   1.321 +#ifdef __SYMBIAN32__
   1.322 +// Open C Does not have command arguments
   1.323 +// Open C Does not have fork
   1.324 +// force_fork = FORK_NEVER;
   1.325 +// __SYMBIAN32__ uses system dbus only
   1.326 +
   1.327 +//  _dbus_string_append (&config_file, DBUS_SYSTEM_CONFIG_FILE);
   1.328 +    systemconfpath[0]= 'z';//Default
   1.329 +
   1.330 + 	systemconfpath[0]=getSystemConfDriveLetter();
   1.331 + 	
   1.332 + 	systemconfpath[1]=':';
   1.333 +    systemconfpath[2]='\0';
   1.334 +
   1.335 +  strcat(systemconfpath,"\\data\\dbus\\system.conf");
   1.336 +  _dbus_string_append (&config_file, systemconfpath);
   1.337 +  
   1.338 +  force_fork = FORK_NEVER;
   1.339 +  
   1.340 +#else
   1.341 +  prev_arg = NULL;
   1.342 +  i = 1;
   1.343 +  while (i < argc)
   1.344 +    {
   1.345 +      const char *arg = argv[i];
   1.346 +
   1.347 +      if (strcmp (arg, "--help") == 0 ||
   1.348 +          strcmp (arg, "-h") == 0 ||
   1.349 +          strcmp (arg, "-?") == 0)
   1.350 +        usage ();
   1.351 +      else if (strcmp (arg, "--version") == 0)
   1.352 +        version ();
   1.353 +      else if (strcmp (arg, "--introspect") == 0)
   1.354 +        introspect ();
   1.355 +      else if (strcmp (arg, "--nofork") == 0)
   1.356 +        force_fork = FORK_NEVER;
   1.357 +      else if (strcmp (arg, "--fork") == 0)
   1.358 +        force_fork = FORK_ALWAYS;
   1.359 +      else if (strcmp (arg, "--system") == 0)
   1.360 +        {
   1.361 +          check_two_config_files (&config_file, "system");
   1.362 +
   1.363 +          if (!_dbus_string_append (&config_file, DBUS_SYSTEM_CONFIG_FILE))
   1.364 +            exit (1);
   1.365 +        }
   1.366 +      else if (strcmp (arg, "--session") == 0)
   1.367 +        {
   1.368 +          check_two_config_files (&config_file, "session");
   1.369 +
   1.370 +          if (!_dbus_string_append (&config_file, DBUS_SESSION_CONFIG_FILE))
   1.371 +            exit (1);
   1.372 +        }
   1.373 +      else if (strstr (arg, "--config-file=") == arg)
   1.374 +        {
   1.375 +          const char *file;
   1.376 +
   1.377 +          check_two_config_files (&config_file, "config-file");
   1.378 +          
   1.379 +          file = strchr (arg, '=');
   1.380 +          ++file;
   1.381 +
   1.382 +          if (!_dbus_string_append (&config_file, file))
   1.383 +            exit (1);
   1.384 +        }
   1.385 +      else if (prev_arg &&
   1.386 +               strcmp (prev_arg, "--config-file") == 0)
   1.387 +        {
   1.388 +          check_two_config_files (&config_file, "config-file");
   1.389 +          
   1.390 +          if (!_dbus_string_append (&config_file, arg))
   1.391 +            exit (1);
   1.392 +        }
   1.393 +      else if (strcmp (arg, "--config-file") == 0)
   1.394 +        ; /* wait for next arg */
   1.395 +      else if (strstr (arg, "--print-address=") == arg)
   1.396 +        {
   1.397 +          const char *desc;
   1.398 +
   1.399 +          check_two_addr_descriptors (&addr_fd, "print-address");
   1.400 +          
   1.401 +          desc = strchr (arg, '=');
   1.402 +          ++desc;
   1.403 +
   1.404 +          if (!_dbus_string_append (&addr_fd, desc))
   1.405 +            exit (1);
   1.406 +
   1.407 +          print_address = TRUE;
   1.408 +        }
   1.409 +      else if (prev_arg &&
   1.410 +               strcmp (prev_arg, "--print-address") == 0)
   1.411 +        {
   1.412 +          check_two_addr_descriptors (&addr_fd, "print-address");
   1.413 +          
   1.414 +          if (!_dbus_string_append (&addr_fd, arg))
   1.415 +            exit (1);
   1.416 +
   1.417 +          print_address = TRUE;
   1.418 +        }
   1.419 +      else if (strcmp (arg, "--print-address") == 0)
   1.420 +        print_address = TRUE; /* and we'll get the next arg if appropriate */
   1.421 +      else if (strstr (arg, "--print-pid=") == arg)
   1.422 +        {
   1.423 +          const char *desc;
   1.424 +
   1.425 +          check_two_pid_descriptors (&pid_fd, "print-pid");
   1.426 +          
   1.427 +          desc = strchr (arg, '=');
   1.428 +          ++desc;
   1.429 +
   1.430 +          if (!_dbus_string_append (&pid_fd, desc))
   1.431 +            exit (1);
   1.432 +
   1.433 +          print_pid = TRUE;
   1.434 +        }
   1.435 +      else if (prev_arg &&
   1.436 +               strcmp (prev_arg, "--print-pid") == 0)
   1.437 +        {
   1.438 +          check_two_pid_descriptors (&pid_fd, "print-pid");
   1.439 +          
   1.440 +          if (!_dbus_string_append (&pid_fd, arg))
   1.441 +            exit (1);
   1.442 +          
   1.443 +          print_pid = TRUE;
   1.444 +        }
   1.445 +      else if (strcmp (arg, "--print-pid") == 0)
   1.446 +        print_pid = TRUE; /* and we'll get the next arg if appropriate */
   1.447 +      else
   1.448 +        usage ();
   1.449 +      
   1.450 +      prev_arg = arg;
   1.451 +      
   1.452 +      ++i;
   1.453 +    }
   1.454 +#endif // else (systems with command line arguments)
   1.455 +
   1.456 +  if (_dbus_string_get_length (&config_file) == 0)
   1.457 +    {
   1.458 +      fprintf (stderr, "No configuration file specified.\n");
   1.459 +      usage ();
   1.460 +    }
   1.461 +
   1.462 +  print_addr_fd = -1;
   1.463 +  if (print_address)
   1.464 +    {
   1.465 +      print_addr_fd = 1; /* stdout */
   1.466 +      if (_dbus_string_get_length (&addr_fd) > 0)
   1.467 +        {
   1.468 +          long val;
   1.469 +          int end;
   1.470 +          if (!_dbus_string_parse_int (&addr_fd, 0, &val, &end) ||
   1.471 +              end != _dbus_string_get_length (&addr_fd) ||
   1.472 +              val < 0 || val > _DBUS_INT_MAX)
   1.473 +            {
   1.474 +              fprintf (stderr, "Invalid file descriptor: \"%s\"\n",
   1.475 +                       _dbus_string_get_const_data (&addr_fd));
   1.476 +              exit (1);
   1.477 +            }
   1.478 +
   1.479 +          print_addr_fd = val;
   1.480 +        }
   1.481 +    }
   1.482 +  _dbus_string_free (&addr_fd);
   1.483 +
   1.484 +  print_pid_fd = -1;
   1.485 +  if (print_pid)
   1.486 +    {
   1.487 +      print_pid_fd = 1; /* stdout */
   1.488 +      if (_dbus_string_get_length (&pid_fd) > 0)
   1.489 +        {
   1.490 +          long val;
   1.491 +          int end;
   1.492 +          if (!_dbus_string_parse_int (&pid_fd, 0, &val, &end) ||
   1.493 +              end != _dbus_string_get_length (&pid_fd) ||
   1.494 +              val < 0 || val > _DBUS_INT_MAX)
   1.495 +            {
   1.496 +              fprintf (stderr, "Invalid file descriptor: \"%s\"\n",
   1.497 +                       _dbus_string_get_const_data (&pid_fd));
   1.498 +              exit (1);
   1.499 +            }
   1.500 +
   1.501 +          print_pid_fd = val;
   1.502 +        }
   1.503 +    }
   1.504 +  _dbus_string_free (&pid_fd);
   1.505 +  
   1.506 +  #ifdef __SYMBIAN32__
   1.507 +  
   1.508 +  print_addr_fd=1;
   1.509 + 
   1.510 + /*uncomment above line, if the bus address needs to be sent to the client starting the bus*/
   1.511 + /* one more work around could be to write the address of the bus in the dbus_lock file, which can be read 
   1.512 + from the client program if needed */
   1.513 + 
   1.514 +  #endif
   1.515 +
   1.516 +  if (!bus_selinux_pre_init ())
   1.517 +    {
   1.518 +      _dbus_warn ("SELinux pre-initialization failed\n");
   1.519 +      exit (1);
   1.520 +    }
   1.521 +
   1.522 +  dbus_error_init (&error);
   1.523 +  context = bus_context_new (&config_file, force_fork,
   1.524 +                             print_addr_fd, print_pid_fd,
   1.525 +                             &error);
   1.526 +  _dbus_string_free (&config_file);
   1.527 +  if (context == NULL)
   1.528 +    {
   1.529 +      _dbus_warn ("Failed to start message bus: %s\n",
   1.530 +                  error.message);
   1.531 +      dbus_error_free (&error);
   1.532 +      exit (1);
   1.533 +    }
   1.534 +
   1.535 +  
   1.536 +  
   1.537 +  #ifndef __SYMBIAN32__
   1.538 +setup_reload_pipe (bus_context_get_loop (context));
   1.539 +  _dbus_set_signal_handler (SIGHUP, signal_handler);
   1.540 +  _dbus_set_signal_handler (SIGTERM, signal_handler);
   1.541 +  #endif
   1.542 +  
   1.543 +#ifdef DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX 
   1.544 +  _dbus_set_signal_handler (SIGIO, signal_handler);
   1.545 +#endif /* DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX */
   1.546 +  
   1.547 +  _dbus_verbose ("We are on D-Bus...\n");
   1.548 +#ifdef __SYMBIAN32__  
   1.549 +  lock_file();
   1.550 +
   1.551 +#endif  
   1.552 + _dbus_loop_run (bus_context_get_loop (context));
   1.553 +#ifdef __SYMBIAN32__    
   1.554 +  remove(DBUS_LOCK_FILE);
   1.555 +#endif  
   1.556 +  bus_context_shutdown (context);
   1.557 +  bus_context_unref (context);
   1.558 +  bus_selinux_shutdown ();
   1.559 +
   1.560 +  return 0;
   1.561 +}