sl@0
|
1 |
/* -*- mode: C; c-file-style: "gnu" -*- */
|
sl@0
|
2 |
/* main.c main() for message bus
|
sl@0
|
3 |
*
|
sl@0
|
4 |
* Copyright (C) 2003 CodeFactory AB
|
sl@0
|
5 |
* Copyright (C) 2003 Red Hat, Inc.
|
sl@0
|
6 |
* Copyright (C) 2004 Imendio HB
|
sl@0
|
7 |
* Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Licensed under the Academic Free License version 2.1
|
sl@0
|
10 |
*
|
sl@0
|
11 |
* This program is free software; you can redistribute it and/or modify
|
sl@0
|
12 |
* it under the terms of the GNU General Public License as published by
|
sl@0
|
13 |
* the Free Software Foundation; either version 2 of the License, or
|
sl@0
|
14 |
* (at your option) any later version.
|
sl@0
|
15 |
*
|
sl@0
|
16 |
* This program is distributed in the hope that it will be useful,
|
sl@0
|
17 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
sl@0
|
18 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
sl@0
|
19 |
* GNU General Public License for more details.
|
sl@0
|
20 |
*
|
sl@0
|
21 |
* You should have received a copy of the GNU General Public License
|
sl@0
|
22 |
* along with this program; if not, write to the Free Software
|
sl@0
|
23 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
sl@0
|
24 |
*
|
sl@0
|
25 |
*/
|
sl@0
|
26 |
#include "bus.h"
|
sl@0
|
27 |
#include "driver.h"
|
sl@0
|
28 |
#ifndef __SYMBIAN32__
|
sl@0
|
29 |
#include <dbus/dbus-internals.h>
|
sl@0
|
30 |
#include <dbus/dbus-watch.h>
|
sl@0
|
31 |
#else
|
sl@0
|
32 |
#include "dbus-internals.h"
|
sl@0
|
33 |
#include "dbus-watch.h"
|
sl@0
|
34 |
#endif //__SYMBIAN32__
|
sl@0
|
35 |
#include <stdio.h>
|
sl@0
|
36 |
#include <stdlib.h>
|
sl@0
|
37 |
#include <string.h>
|
sl@0
|
38 |
#ifndef __SYMBIAN32__
|
sl@0
|
39 |
#include <signal.h>
|
sl@0
|
40 |
#endif
|
sl@0
|
41 |
#include <errno.h>
|
sl@0
|
42 |
#include "selinux.h"
|
sl@0
|
43 |
|
sl@0
|
44 |
static BusContext *context;
|
sl@0
|
45 |
|
sl@0
|
46 |
static int reload_pipe[2];
|
sl@0
|
47 |
#define RELOAD_READ_END 0
|
sl@0
|
48 |
#define RELOAD_WRITE_END 1
|
sl@0
|
49 |
|
sl@0
|
50 |
#ifdef __SYMBIAN32__
|
sl@0
|
51 |
#if 0
|
sl@0
|
52 |
#include <fcntl.h>
|
sl@0
|
53 |
|
sl@0
|
54 |
int lock_file()
|
sl@0
|
55 |
{
|
sl@0
|
56 |
|
sl@0
|
57 |
|
sl@0
|
58 |
|
sl@0
|
59 |
/*
|
sl@0
|
60 |
struct flock {
|
sl@0
|
61 |
off_t l_start; starting offset
|
sl@0
|
62 |
off_t l_len; len = 0 means until end of file
|
sl@0
|
63 |
pid_t l_pid; lock owner
|
sl@0
|
64 |
short l_type; lock type: read/write, etc.
|
sl@0
|
65 |
short l_whence; type of l_start
|
sl@0
|
66 |
};
|
sl@0
|
67 |
l_type l_whence l_start l_len l_pid */
|
sl@0
|
68 |
|
sl@0
|
69 |
|
sl@0
|
70 |
// struct flock fl = { F_WRLCK, SEEK_SET, 0, 0, 0 };
|
sl@0
|
71 |
// struct flock fl = { 0, 0, 0,F_WRLCK, SEEK_SET};
|
sl@0
|
72 |
int fd;
|
sl@0
|
73 |
|
sl@0
|
74 |
// fl.l_pid = getpid();
|
sl@0
|
75 |
|
sl@0
|
76 |
|
sl@0
|
77 |
if ((fd = open(DBUS_LOCK_FILE, O_RDWR|O_CREAT|O_EXCL, 0666)) == -1)
|
sl@0
|
78 |
{
|
sl@0
|
79 |
// perror("open file status");
|
sl@0
|
80 |
return 0;
|
sl@0
|
81 |
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
/* fcntl file lock not supported in openc
|
sl@0
|
85 |
if (fcntl(fd, F_SETLKW, &fl) == -1) {
|
sl@0
|
86 |
perror("fcntl");
|
sl@0
|
87 |
close(fd);
|
sl@0
|
88 |
return 0;
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
*/
|
sl@0
|
92 |
close(fd);
|
sl@0
|
93 |
return 1;
|
sl@0
|
94 |
|
sl@0
|
95 |
}
|
sl@0
|
96 |
|
sl@0
|
97 |
#endif
|
sl@0
|
98 |
|
sl@0
|
99 |
#endif
|
sl@0
|
100 |
void
|
sl@0
|
101 |
signal_handler (int sig)
|
sl@0
|
102 |
{
|
sl@0
|
103 |
#ifndef __SYMBIAN32__
|
sl@0
|
104 |
DBusString str;
|
sl@0
|
105 |
|
sl@0
|
106 |
switch (sig)
|
sl@0
|
107 |
{
|
sl@0
|
108 |
#ifdef DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX
|
sl@0
|
109 |
case SIGIO:
|
sl@0
|
110 |
/* explicit fall-through */
|
sl@0
|
111 |
#endif /* DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX */
|
sl@0
|
112 |
case SIGHUP:
|
sl@0
|
113 |
_dbus_string_init_const (&str, "foo");
|
sl@0
|
114 |
if (!_dbus_write_socket (reload_pipe[RELOAD_WRITE_END], &str, 0, 1))
|
sl@0
|
115 |
{
|
sl@0
|
116 |
_dbus_warn ("Unable to write to reload pipe.\n");
|
sl@0
|
117 |
exit (1);
|
sl@0
|
118 |
}
|
sl@0
|
119 |
break;
|
sl@0
|
120 |
|
sl@0
|
121 |
case SIGTERM:
|
sl@0
|
122 |
_dbus_loop_quit (bus_context_get_loop (context));
|
sl@0
|
123 |
break;
|
sl@0
|
124 |
}
|
sl@0
|
125 |
|
sl@0
|
126 |
#endif
|
sl@0
|
127 |
}
|
sl@0
|
128 |
static void
|
sl@0
|
129 |
usage (void)
|
sl@0
|
130 |
{
|
sl@0
|
131 |
fprintf (stderr, DAEMON_NAME " [--version] [--session] [--system] [--config-file=FILE] [--print-address[=DESCRIPTOR]] [--print-pid[=DESCRIPTOR]] [--fork] [--nofork] [--introspect]\n");
|
sl@0
|
132 |
exit (1);
|
sl@0
|
133 |
}
|
sl@0
|
134 |
|
sl@0
|
135 |
static void
|
sl@0
|
136 |
version (void)
|
sl@0
|
137 |
{
|
sl@0
|
138 |
printf ("D-Bus Message Bus Daemon %s\n"
|
sl@0
|
139 |
"Copyright (C) 2002, 2003 Red Hat, Inc., CodeFactory AB, and others\n"
|
sl@0
|
140 |
"This is free software; see the source for copying conditions.\n"
|
sl@0
|
141 |
"There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n",
|
sl@0
|
142 |
VERSION);
|
sl@0
|
143 |
exit (0);
|
sl@0
|
144 |
}
|
sl@0
|
145 |
|
sl@0
|
146 |
static void
|
sl@0
|
147 |
introspect (void)
|
sl@0
|
148 |
{
|
sl@0
|
149 |
DBusString xml;
|
sl@0
|
150 |
const char *v_STRING;
|
sl@0
|
151 |
|
sl@0
|
152 |
if (!_dbus_string_init (&xml))
|
sl@0
|
153 |
goto oom;
|
sl@0
|
154 |
|
sl@0
|
155 |
if (!bus_driver_generate_introspect_string (&xml))
|
sl@0
|
156 |
{
|
sl@0
|
157 |
_dbus_string_free (&xml);
|
sl@0
|
158 |
goto oom;
|
sl@0
|
159 |
}
|
sl@0
|
160 |
|
sl@0
|
161 |
v_STRING = _dbus_string_get_const_data (&xml);
|
sl@0
|
162 |
printf ("%s\n", v_STRING);
|
sl@0
|
163 |
|
sl@0
|
164 |
exit (0);
|
sl@0
|
165 |
|
sl@0
|
166 |
oom:
|
sl@0
|
167 |
_dbus_warn ("Can not introspect - Out of memory\n");
|
sl@0
|
168 |
exit (1);
|
sl@0
|
169 |
}
|
sl@0
|
170 |
static void
|
sl@0
|
171 |
check_two_config_files (const DBusString *config_file,
|
sl@0
|
172 |
const char *extra_arg)
|
sl@0
|
173 |
{
|
sl@0
|
174 |
if (_dbus_string_get_length (config_file) > 0)
|
sl@0
|
175 |
{
|
sl@0
|
176 |
fprintf (stderr, "--%s specified but configuration file %s already requested\n",
|
sl@0
|
177 |
extra_arg, _dbus_string_get_const_data (config_file));
|
sl@0
|
178 |
exit (1);
|
sl@0
|
179 |
}
|
sl@0
|
180 |
}
|
sl@0
|
181 |
|
sl@0
|
182 |
static void
|
sl@0
|
183 |
check_two_addr_descriptors (const DBusString *addr_fd,
|
sl@0
|
184 |
const char *extra_arg)
|
sl@0
|
185 |
{
|
sl@0
|
186 |
if (_dbus_string_get_length (addr_fd) > 0)
|
sl@0
|
187 |
{
|
sl@0
|
188 |
fprintf (stderr, "--%s specified but printing address to %s already requested\n",
|
sl@0
|
189 |
extra_arg, _dbus_string_get_const_data (addr_fd));
|
sl@0
|
190 |
exit (1);
|
sl@0
|
191 |
}
|
sl@0
|
192 |
}
|
sl@0
|
193 |
|
sl@0
|
194 |
static void
|
sl@0
|
195 |
check_two_pid_descriptors (const DBusString *pid_fd,
|
sl@0
|
196 |
const char *extra_arg)
|
sl@0
|
197 |
{
|
sl@0
|
198 |
if (_dbus_string_get_length (pid_fd) > 0)
|
sl@0
|
199 |
{
|
sl@0
|
200 |
fprintf (stderr, "--%s specified but printing pid to %s already requested\n",
|
sl@0
|
201 |
extra_arg, _dbus_string_get_const_data (pid_fd));
|
sl@0
|
202 |
exit (1);
|
sl@0
|
203 |
}
|
sl@0
|
204 |
}
|
sl@0
|
205 |
|
sl@0
|
206 |
static dbus_bool_t
|
sl@0
|
207 |
handle_reload_watch (DBusWatch *watch,
|
sl@0
|
208 |
unsigned int flags,
|
sl@0
|
209 |
void *data)
|
sl@0
|
210 |
{
|
sl@0
|
211 |
DBusError error;
|
sl@0
|
212 |
DBusString str;
|
sl@0
|
213 |
_dbus_string_init (&str);
|
sl@0
|
214 |
if (_dbus_read_socket (reload_pipe[RELOAD_READ_END], &str, 1) != 1)
|
sl@0
|
215 |
{
|
sl@0
|
216 |
_dbus_warn ("Couldn't read from reload pipe.\n");
|
sl@0
|
217 |
exit (1);
|
sl@0
|
218 |
}
|
sl@0
|
219 |
_dbus_string_free (&str);
|
sl@0
|
220 |
|
sl@0
|
221 |
dbus_error_init (&error);
|
sl@0
|
222 |
if (! bus_context_reload_config (context, &error))
|
sl@0
|
223 |
{
|
sl@0
|
224 |
_dbus_warn ("Unable to reload configuration: %s\n",
|
sl@0
|
225 |
error.message);
|
sl@0
|
226 |
dbus_error_free (&error);
|
sl@0
|
227 |
exit (1);
|
sl@0
|
228 |
}
|
sl@0
|
229 |
return TRUE;
|
sl@0
|
230 |
}
|
sl@0
|
231 |
|
sl@0
|
232 |
|
sl@0
|
233 |
static dbus_bool_t
|
sl@0
|
234 |
reload_watch_callback (DBusWatch *watch,
|
sl@0
|
235 |
unsigned int condition,
|
sl@0
|
236 |
void *data)
|
sl@0
|
237 |
{
|
sl@0
|
238 |
return dbus_watch_handle (watch, condition);
|
sl@0
|
239 |
}
|
sl@0
|
240 |
|
sl@0
|
241 |
static void
|
sl@0
|
242 |
setup_reload_pipe (DBusLoop *loop)
|
sl@0
|
243 |
{
|
sl@0
|
244 |
DBusError error;
|
sl@0
|
245 |
DBusWatch *watch;
|
sl@0
|
246 |
|
sl@0
|
247 |
dbus_error_init (&error);
|
sl@0
|
248 |
|
sl@0
|
249 |
if (!_dbus_full_duplex_pipe (&reload_pipe[0], &reload_pipe[1],
|
sl@0
|
250 |
TRUE, &error))
|
sl@0
|
251 |
{
|
sl@0
|
252 |
_dbus_warn ("Unable to create reload pipe: %s\n",
|
sl@0
|
253 |
error.message);
|
sl@0
|
254 |
dbus_error_free (&error);
|
sl@0
|
255 |
exit (1);
|
sl@0
|
256 |
}
|
sl@0
|
257 |
|
sl@0
|
258 |
_dbus_fd_set_close_on_exec (reload_pipe[0]);
|
sl@0
|
259 |
_dbus_fd_set_close_on_exec (reload_pipe[1]);
|
sl@0
|
260 |
|
sl@0
|
261 |
watch = _dbus_watch_new (reload_pipe[RELOAD_READ_END],
|
sl@0
|
262 |
DBUS_WATCH_READABLE, TRUE,
|
sl@0
|
263 |
handle_reload_watch, NULL, NULL);
|
sl@0
|
264 |
|
sl@0
|
265 |
if (watch == NULL)
|
sl@0
|
266 |
{
|
sl@0
|
267 |
_dbus_warn ("Unable to create reload watch: %s\n",
|
sl@0
|
268 |
error.message);
|
sl@0
|
269 |
dbus_error_free (&error);
|
sl@0
|
270 |
exit (1);
|
sl@0
|
271 |
}
|
sl@0
|
272 |
|
sl@0
|
273 |
if (!_dbus_loop_add_watch (loop, watch, reload_watch_callback,
|
sl@0
|
274 |
NULL, NULL))
|
sl@0
|
275 |
{
|
sl@0
|
276 |
_dbus_warn ("Unable to add reload watch to main loop: %s\n",
|
sl@0
|
277 |
error.message);
|
sl@0
|
278 |
dbus_error_free (&error);
|
sl@0
|
279 |
exit (1);
|
sl@0
|
280 |
}
|
sl@0
|
281 |
|
sl@0
|
282 |
}
|
sl@0
|
283 |
|
sl@0
|
284 |
|
sl@0
|
285 |
int
|
sl@0
|
286 |
main (int argc, char **argv)
|
sl@0
|
287 |
{
|
sl@0
|
288 |
DBusError error;
|
sl@0
|
289 |
DBusString config_file;
|
sl@0
|
290 |
DBusString addr_fd;
|
sl@0
|
291 |
DBusString pid_fd;
|
sl@0
|
292 |
const char *prev_arg;
|
sl@0
|
293 |
int print_addr_fd;
|
sl@0
|
294 |
int print_pid_fd;
|
sl@0
|
295 |
int i;
|
sl@0
|
296 |
dbus_bool_t print_address;
|
sl@0
|
297 |
dbus_bool_t print_pid;
|
sl@0
|
298 |
int force_fork;
|
sl@0
|
299 |
#ifdef __SYMBIAN32__
|
sl@0
|
300 |
char systemconfpath[35];
|
sl@0
|
301 |
#endif
|
sl@0
|
302 |
|
sl@0
|
303 |
// write(1, "hi daemon", 9);
|
sl@0
|
304 |
|
sl@0
|
305 |
if (!_dbus_string_init (&config_file))
|
sl@0
|
306 |
return 1;
|
sl@0
|
307 |
|
sl@0
|
308 |
if (!_dbus_string_init (&addr_fd))
|
sl@0
|
309 |
return 1;
|
sl@0
|
310 |
|
sl@0
|
311 |
if (!_dbus_string_init (&pid_fd))
|
sl@0
|
312 |
return 1;
|
sl@0
|
313 |
|
sl@0
|
314 |
print_address = FALSE;
|
sl@0
|
315 |
print_pid = FALSE;
|
sl@0
|
316 |
force_fork = FORK_FOLLOW_CONFIG_FILE;
|
sl@0
|
317 |
|
sl@0
|
318 |
#ifdef __SYMBIAN32__
|
sl@0
|
319 |
// Open C Does not have command arguments
|
sl@0
|
320 |
// Open C Does not have fork
|
sl@0
|
321 |
// force_fork = FORK_NEVER;
|
sl@0
|
322 |
// __SYMBIAN32__ uses system dbus only
|
sl@0
|
323 |
|
sl@0
|
324 |
// _dbus_string_append (&config_file, DBUS_SYSTEM_CONFIG_FILE);
|
sl@0
|
325 |
systemconfpath[0]= 'z';//Default
|
sl@0
|
326 |
|
sl@0
|
327 |
systemconfpath[0]=getSystemConfDriveLetter();
|
sl@0
|
328 |
|
sl@0
|
329 |
systemconfpath[1]=':';
|
sl@0
|
330 |
systemconfpath[2]='\0';
|
sl@0
|
331 |
|
sl@0
|
332 |
strcat(systemconfpath,"\\data\\dbus\\system.conf");
|
sl@0
|
333 |
_dbus_string_append (&config_file, systemconfpath);
|
sl@0
|
334 |
|
sl@0
|
335 |
force_fork = FORK_NEVER;
|
sl@0
|
336 |
|
sl@0
|
337 |
#else
|
sl@0
|
338 |
prev_arg = NULL;
|
sl@0
|
339 |
i = 1;
|
sl@0
|
340 |
while (i < argc)
|
sl@0
|
341 |
{
|
sl@0
|
342 |
const char *arg = argv[i];
|
sl@0
|
343 |
|
sl@0
|
344 |
if (strcmp (arg, "--help") == 0 ||
|
sl@0
|
345 |
strcmp (arg, "-h") == 0 ||
|
sl@0
|
346 |
strcmp (arg, "-?") == 0)
|
sl@0
|
347 |
usage ();
|
sl@0
|
348 |
else if (strcmp (arg, "--version") == 0)
|
sl@0
|
349 |
version ();
|
sl@0
|
350 |
else if (strcmp (arg, "--introspect") == 0)
|
sl@0
|
351 |
introspect ();
|
sl@0
|
352 |
else if (strcmp (arg, "--nofork") == 0)
|
sl@0
|
353 |
force_fork = FORK_NEVER;
|
sl@0
|
354 |
else if (strcmp (arg, "--fork") == 0)
|
sl@0
|
355 |
force_fork = FORK_ALWAYS;
|
sl@0
|
356 |
else if (strcmp (arg, "--system") == 0)
|
sl@0
|
357 |
{
|
sl@0
|
358 |
check_two_config_files (&config_file, "system");
|
sl@0
|
359 |
|
sl@0
|
360 |
if (!_dbus_string_append (&config_file, DBUS_SYSTEM_CONFIG_FILE))
|
sl@0
|
361 |
exit (1);
|
sl@0
|
362 |
}
|
sl@0
|
363 |
else if (strcmp (arg, "--session") == 0)
|
sl@0
|
364 |
{
|
sl@0
|
365 |
check_two_config_files (&config_file, "session");
|
sl@0
|
366 |
|
sl@0
|
367 |
if (!_dbus_string_append (&config_file, DBUS_SESSION_CONFIG_FILE))
|
sl@0
|
368 |
exit (1);
|
sl@0
|
369 |
}
|
sl@0
|
370 |
else if (strstr (arg, "--config-file=") == arg)
|
sl@0
|
371 |
{
|
sl@0
|
372 |
const char *file;
|
sl@0
|
373 |
|
sl@0
|
374 |
check_two_config_files (&config_file, "config-file");
|
sl@0
|
375 |
|
sl@0
|
376 |
file = strchr (arg, '=');
|
sl@0
|
377 |
++file;
|
sl@0
|
378 |
|
sl@0
|
379 |
if (!_dbus_string_append (&config_file, file))
|
sl@0
|
380 |
exit (1);
|
sl@0
|
381 |
}
|
sl@0
|
382 |
else if (prev_arg &&
|
sl@0
|
383 |
strcmp (prev_arg, "--config-file") == 0)
|
sl@0
|
384 |
{
|
sl@0
|
385 |
check_two_config_files (&config_file, "config-file");
|
sl@0
|
386 |
|
sl@0
|
387 |
if (!_dbus_string_append (&config_file, arg))
|
sl@0
|
388 |
exit (1);
|
sl@0
|
389 |
}
|
sl@0
|
390 |
else if (strcmp (arg, "--config-file") == 0)
|
sl@0
|
391 |
; /* wait for next arg */
|
sl@0
|
392 |
else if (strstr (arg, "--print-address=") == arg)
|
sl@0
|
393 |
{
|
sl@0
|
394 |
const char *desc;
|
sl@0
|
395 |
|
sl@0
|
396 |
check_two_addr_descriptors (&addr_fd, "print-address");
|
sl@0
|
397 |
|
sl@0
|
398 |
desc = strchr (arg, '=');
|
sl@0
|
399 |
++desc;
|
sl@0
|
400 |
|
sl@0
|
401 |
if (!_dbus_string_append (&addr_fd, desc))
|
sl@0
|
402 |
exit (1);
|
sl@0
|
403 |
|
sl@0
|
404 |
print_address = TRUE;
|
sl@0
|
405 |
}
|
sl@0
|
406 |
else if (prev_arg &&
|
sl@0
|
407 |
strcmp (prev_arg, "--print-address") == 0)
|
sl@0
|
408 |
{
|
sl@0
|
409 |
check_two_addr_descriptors (&addr_fd, "print-address");
|
sl@0
|
410 |
|
sl@0
|
411 |
if (!_dbus_string_append (&addr_fd, arg))
|
sl@0
|
412 |
exit (1);
|
sl@0
|
413 |
|
sl@0
|
414 |
print_address = TRUE;
|
sl@0
|
415 |
}
|
sl@0
|
416 |
else if (strcmp (arg, "--print-address") == 0)
|
sl@0
|
417 |
print_address = TRUE; /* and we'll get the next arg if appropriate */
|
sl@0
|
418 |
else if (strstr (arg, "--print-pid=") == arg)
|
sl@0
|
419 |
{
|
sl@0
|
420 |
const char *desc;
|
sl@0
|
421 |
|
sl@0
|
422 |
check_two_pid_descriptors (&pid_fd, "print-pid");
|
sl@0
|
423 |
|
sl@0
|
424 |
desc = strchr (arg, '=');
|
sl@0
|
425 |
++desc;
|
sl@0
|
426 |
|
sl@0
|
427 |
if (!_dbus_string_append (&pid_fd, desc))
|
sl@0
|
428 |
exit (1);
|
sl@0
|
429 |
|
sl@0
|
430 |
print_pid = TRUE;
|
sl@0
|
431 |
}
|
sl@0
|
432 |
else if (prev_arg &&
|
sl@0
|
433 |
strcmp (prev_arg, "--print-pid") == 0)
|
sl@0
|
434 |
{
|
sl@0
|
435 |
check_two_pid_descriptors (&pid_fd, "print-pid");
|
sl@0
|
436 |
|
sl@0
|
437 |
if (!_dbus_string_append (&pid_fd, arg))
|
sl@0
|
438 |
exit (1);
|
sl@0
|
439 |
|
sl@0
|
440 |
print_pid = TRUE;
|
sl@0
|
441 |
}
|
sl@0
|
442 |
else if (strcmp (arg, "--print-pid") == 0)
|
sl@0
|
443 |
print_pid = TRUE; /* and we'll get the next arg if appropriate */
|
sl@0
|
444 |
else
|
sl@0
|
445 |
usage ();
|
sl@0
|
446 |
|
sl@0
|
447 |
prev_arg = arg;
|
sl@0
|
448 |
|
sl@0
|
449 |
++i;
|
sl@0
|
450 |
}
|
sl@0
|
451 |
#endif // else (systems with command line arguments)
|
sl@0
|
452 |
|
sl@0
|
453 |
if (_dbus_string_get_length (&config_file) == 0)
|
sl@0
|
454 |
{
|
sl@0
|
455 |
fprintf (stderr, "No configuration file specified.\n");
|
sl@0
|
456 |
usage ();
|
sl@0
|
457 |
}
|
sl@0
|
458 |
|
sl@0
|
459 |
print_addr_fd = -1;
|
sl@0
|
460 |
if (print_address)
|
sl@0
|
461 |
{
|
sl@0
|
462 |
print_addr_fd = 1; /* stdout */
|
sl@0
|
463 |
if (_dbus_string_get_length (&addr_fd) > 0)
|
sl@0
|
464 |
{
|
sl@0
|
465 |
long val;
|
sl@0
|
466 |
int end;
|
sl@0
|
467 |
if (!_dbus_string_parse_int (&addr_fd, 0, &val, &end) ||
|
sl@0
|
468 |
end != _dbus_string_get_length (&addr_fd) ||
|
sl@0
|
469 |
val < 0 || val > _DBUS_INT_MAX)
|
sl@0
|
470 |
{
|
sl@0
|
471 |
fprintf (stderr, "Invalid file descriptor: \"%s\"\n",
|
sl@0
|
472 |
_dbus_string_get_const_data (&addr_fd));
|
sl@0
|
473 |
exit (1);
|
sl@0
|
474 |
}
|
sl@0
|
475 |
|
sl@0
|
476 |
print_addr_fd = val;
|
sl@0
|
477 |
}
|
sl@0
|
478 |
}
|
sl@0
|
479 |
_dbus_string_free (&addr_fd);
|
sl@0
|
480 |
|
sl@0
|
481 |
print_pid_fd = -1;
|
sl@0
|
482 |
if (print_pid)
|
sl@0
|
483 |
{
|
sl@0
|
484 |
print_pid_fd = 1; /* stdout */
|
sl@0
|
485 |
if (_dbus_string_get_length (&pid_fd) > 0)
|
sl@0
|
486 |
{
|
sl@0
|
487 |
long val;
|
sl@0
|
488 |
int end;
|
sl@0
|
489 |
if (!_dbus_string_parse_int (&pid_fd, 0, &val, &end) ||
|
sl@0
|
490 |
end != _dbus_string_get_length (&pid_fd) ||
|
sl@0
|
491 |
val < 0 || val > _DBUS_INT_MAX)
|
sl@0
|
492 |
{
|
sl@0
|
493 |
fprintf (stderr, "Invalid file descriptor: \"%s\"\n",
|
sl@0
|
494 |
_dbus_string_get_const_data (&pid_fd));
|
sl@0
|
495 |
exit (1);
|
sl@0
|
496 |
}
|
sl@0
|
497 |
|
sl@0
|
498 |
print_pid_fd = val;
|
sl@0
|
499 |
}
|
sl@0
|
500 |
}
|
sl@0
|
501 |
_dbus_string_free (&pid_fd);
|
sl@0
|
502 |
|
sl@0
|
503 |
#ifdef __SYMBIAN32__
|
sl@0
|
504 |
|
sl@0
|
505 |
print_addr_fd=1;
|
sl@0
|
506 |
|
sl@0
|
507 |
/*uncomment above line, if the bus address needs to be sent to the client starting the bus*/
|
sl@0
|
508 |
/* one more work around could be to write the address of the bus in the dbus_lock file, which can be read
|
sl@0
|
509 |
from the client program if needed */
|
sl@0
|
510 |
|
sl@0
|
511 |
#endif
|
sl@0
|
512 |
|
sl@0
|
513 |
if (!bus_selinux_pre_init ())
|
sl@0
|
514 |
{
|
sl@0
|
515 |
_dbus_warn ("SELinux pre-initialization failed\n");
|
sl@0
|
516 |
exit (1);
|
sl@0
|
517 |
}
|
sl@0
|
518 |
|
sl@0
|
519 |
dbus_error_init (&error);
|
sl@0
|
520 |
context = bus_context_new (&config_file, force_fork,
|
sl@0
|
521 |
print_addr_fd, print_pid_fd,
|
sl@0
|
522 |
&error);
|
sl@0
|
523 |
_dbus_string_free (&config_file);
|
sl@0
|
524 |
if (context == NULL)
|
sl@0
|
525 |
{
|
sl@0
|
526 |
_dbus_warn ("Failed to start message bus: %s\n",
|
sl@0
|
527 |
error.message);
|
sl@0
|
528 |
dbus_error_free (&error);
|
sl@0
|
529 |
exit (1);
|
sl@0
|
530 |
}
|
sl@0
|
531 |
|
sl@0
|
532 |
|
sl@0
|
533 |
|
sl@0
|
534 |
#ifndef __SYMBIAN32__
|
sl@0
|
535 |
setup_reload_pipe (bus_context_get_loop (context));
|
sl@0
|
536 |
_dbus_set_signal_handler (SIGHUP, signal_handler);
|
sl@0
|
537 |
_dbus_set_signal_handler (SIGTERM, signal_handler);
|
sl@0
|
538 |
#endif
|
sl@0
|
539 |
|
sl@0
|
540 |
#ifdef DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX
|
sl@0
|
541 |
_dbus_set_signal_handler (SIGIO, signal_handler);
|
sl@0
|
542 |
#endif /* DBUS_BUS_ENABLE_DNOTIFY_ON_LINUX */
|
sl@0
|
543 |
|
sl@0
|
544 |
_dbus_verbose ("We are on D-Bus...\n");
|
sl@0
|
545 |
#ifdef __SYMBIAN32__
|
sl@0
|
546 |
lock_file();
|
sl@0
|
547 |
|
sl@0
|
548 |
#endif
|
sl@0
|
549 |
_dbus_loop_run (bus_context_get_loop (context));
|
sl@0
|
550 |
#ifdef __SYMBIAN32__
|
sl@0
|
551 |
remove(DBUS_LOCK_FILE);
|
sl@0
|
552 |
#endif
|
sl@0
|
553 |
bus_context_shutdown (context);
|
sl@0
|
554 |
bus_context_unref (context);
|
sl@0
|
555 |
bus_selinux_shutdown ();
|
sl@0
|
556 |
|
sl@0
|
557 |
return 0;
|
sl@0
|
558 |
}
|