5 * Copyright (C) 2007-2010 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
32 #include <sys/signalfd.h>
47 connman_bool_t bg_scan;
48 char **pref_timeservers;
49 unsigned int *auto_connect;
50 unsigned int *preferred_techs;
51 char **fallback_nameservers;
52 } connman_settings = {
54 .pref_timeservers = NULL,
56 .preferred_techs = NULL,
57 .fallback_nameservers = NULL,
60 static GKeyFile *load_config(const char *file)
65 keyfile = g_key_file_new();
67 g_key_file_set_list_separator(keyfile, ',');
69 if (!g_key_file_load_from_file(keyfile, file, 0, &err)) {
70 if (err->code != G_FILE_ERROR_NOENT) {
71 connman_error("Parsing %s failed: %s", file,
76 g_key_file_free(keyfile);
83 static uint *parse_service_types(char **str_list, gsize len)
85 unsigned int *type_list;
87 enum connman_service_type type;
89 type_list = g_try_new0(unsigned int, len + 1);
90 if (type_list == NULL)
95 while (str_list[i] != NULL)
97 type = __connman_service_string2type(str_list[i]);
99 if (type != CONNMAN_SERVICE_TYPE_UNKNOWN) {
109 static char **parse_fallback_nameservers(char **nameservers, gsize len)
113 struct addrinfo hints;
114 struct addrinfo *addr;
116 servers = g_try_new0(char *, len + 1);
122 while (nameservers[i] != NULL) {
123 memset(&hints, 0, sizeof(struct addrinfo));
124 hints.ai_flags = AI_NUMERICHOST;
126 if (getaddrinfo(nameservers[i], NULL, &hints, &addr) == 0) {
127 servers[j] = g_strdup(nameservers[i]);
138 static void parse_config(GKeyFile *config)
140 GError *error = NULL;
145 char *default_auto_connect[] = {
151 if (config == NULL) {
152 connman_settings.auto_connect =
153 parse_service_types(default_auto_connect, 3);
157 DBG("parsing main.conf");
159 boolean = g_key_file_get_boolean(config, "General",
160 "BackgroundScanning", &error);
162 connman_settings.bg_scan = boolean;
164 g_clear_error(&error);
166 timeservers = g_key_file_get_string_list(config, "General",
167 "FallbackTimeservers", NULL, &error);
169 connman_settings.pref_timeservers = timeservers;
171 g_clear_error(&error);
173 str_list = g_key_file_get_string_list(config, "General",
174 "DefaultAutoConnectTechnologies", &len, &error);
177 connman_settings.auto_connect =
178 parse_service_types(str_list, len);
180 connman_settings.auto_connect =
181 parse_service_types(default_auto_connect, 3);
183 g_strfreev(str_list);
185 g_clear_error(&error);
187 str_list = g_key_file_get_string_list(config, "General",
188 "PreferredTechnologies", &len, &error);
191 connman_settings.preferred_techs =
192 parse_service_types(str_list, len);
194 g_strfreev(str_list);
196 g_clear_error(&error);
198 str_list = g_key_file_get_string_list(config, "General",
199 "FallbackNameservers", &len, &error);
202 connman_settings.fallback_nameservers =
203 parse_fallback_nameservers(str_list, len);
205 g_strfreev(str_list);
207 g_clear_error(&error);
210 static GMainLoop *main_loop = NULL;
212 static unsigned int __terminated = 0;
214 static gboolean signal_handler(GIOChannel *channel, GIOCondition cond,
217 struct signalfd_siginfo si;
221 if (cond & (G_IO_NVAL | G_IO_ERR | G_IO_HUP))
224 fd = g_io_channel_unix_get_fd(channel);
226 result = read(fd, &si, sizeof(si));
227 if (result != sizeof(si))
230 switch (si.ssi_signo) {
233 if (__terminated == 0) {
234 connman_info("Terminating");
235 g_main_loop_quit(main_loop);
245 static guint setup_signalfd(void)
253 sigaddset(&mask, SIGINT);
254 sigaddset(&mask, SIGTERM);
256 if (sigprocmask(SIG_BLOCK, &mask, NULL) < 0) {
257 perror("Failed to set signal mask");
261 fd = signalfd(-1, &mask, 0);
263 perror("Failed to create signal descriptor");
267 channel = g_io_channel_unix_new(fd);
269 g_io_channel_set_close_on_unref(channel, TRUE);
270 g_io_channel_set_encoding(channel, NULL, NULL);
271 g_io_channel_set_buffered(channel, FALSE);
273 source = g_io_add_watch(channel,
274 G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
275 signal_handler, NULL);
277 g_io_channel_unref(channel);
282 static void disconnect_callback(DBusConnection *conn, void *user_data)
284 connman_error("D-Bus disconnect");
286 g_main_loop_quit(main_loop);
289 static gchar *option_debug = NULL;
290 static gchar *option_device = NULL;
291 static gchar *option_plugin = NULL;
292 static gchar *option_nodevice = NULL;
293 static gchar *option_noplugin = NULL;
294 static gchar *option_wifi = NULL;
295 static gboolean option_detach = TRUE;
296 static gboolean option_dnsproxy = TRUE;
297 static gboolean option_compat = FALSE;
298 static gboolean option_version = FALSE;
300 static gboolean parse_debug(const char *key, const char *value,
301 gpointer user_data, GError **error)
304 option_debug = g_strdup(value);
306 option_debug = g_strdup("*");
311 static GOptionEntry options[] = {
312 { "debug", 'd', G_OPTION_FLAG_OPTIONAL_ARG,
313 G_OPTION_ARG_CALLBACK, parse_debug,
314 "Specify debug options to enable", "DEBUG" },
315 { "device", 'i', 0, G_OPTION_ARG_STRING, &option_device,
316 "Specify networking device or interface", "DEV" },
317 { "nodevice", 'I', 0, G_OPTION_ARG_STRING, &option_nodevice,
318 "Specify networking interface to ignore", "DEV" },
319 { "plugin", 'p', 0, G_OPTION_ARG_STRING, &option_plugin,
320 "Specify plugins to load", "NAME,..." },
321 { "noplugin", 'P', 0, G_OPTION_ARG_STRING, &option_noplugin,
322 "Specify plugins not to load", "NAME,..." },
323 { "wifi", 'W', 0, G_OPTION_ARG_STRING, &option_wifi,
324 "Specify driver for WiFi/Supplicant", "NAME" },
325 { "nodaemon", 'n', G_OPTION_FLAG_REVERSE,
326 G_OPTION_ARG_NONE, &option_detach,
327 "Don't fork daemon to background" },
328 { "nodnsproxy", 'r', G_OPTION_FLAG_REVERSE,
329 G_OPTION_ARG_NONE, &option_dnsproxy,
330 "Don't enable DNS Proxy" },
331 { "compat", 'c', 0, G_OPTION_ARG_NONE, &option_compat,
333 { "version", 'v', 0, G_OPTION_ARG_NONE, &option_version,
334 "Show version information and exit" },
338 const char *connman_option_get_string(const char *key)
340 if (g_strcmp0(key, "wifi") == 0) {
341 if (option_wifi == NULL)
342 return "nl80211,wext";
350 connman_bool_t connman_setting_get_bool(const char *key)
352 if (g_str_equal(key, "BackgroundScanning") == TRUE)
353 return connman_settings.bg_scan;
358 char **connman_setting_get_string_list(const char *key)
360 if (g_str_equal(key, "FallbackTimeservers") == TRUE)
361 return connman_settings.pref_timeservers;
363 if (g_str_equal(key, "FallbackNameservers") == TRUE)
364 return connman_settings.fallback_nameservers;
369 unsigned int *connman_setting_get_uint_list(const char *key)
371 if (g_str_equal(key, "DefaultAutoConnectTechnologies") == TRUE)
372 return connman_settings.auto_connect;
374 if (g_str_equal(key, "PreferredTechnologies") == TRUE)
375 return connman_settings.preferred_techs;
380 int main(int argc, char *argv[])
382 GOptionContext *context;
383 GError *error = NULL;
384 DBusConnection *conn;
390 /* Drop capabilities */
394 if (g_thread_supported() == FALSE)
398 context = g_option_context_new(NULL);
399 g_option_context_add_main_entries(context, options, NULL);
401 if (g_option_context_parse(context, &argc, &argv, &error) == FALSE) {
403 g_printerr("%s\n", error->message);
406 g_printerr("An unknown error occurred\n");
410 g_option_context_free(context);
412 if (option_version == TRUE) {
413 printf("%s\n", VERSION);
417 if (option_detach == TRUE) {
419 perror("Can't start daemon");
424 if (mkdir(STATEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
425 S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0) {
427 perror("Failed to create state directory");
430 if (mkdir(STORAGEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
431 S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0) {
433 perror("Failed to create storage directory");
438 main_loop = g_main_loop_new(NULL, FALSE);
441 if (dbus_threads_init_default() == FALSE) {
442 fprintf(stderr, "Can't init usage of threads\n");
447 signal = setup_signalfd();
449 dbus_error_init(&err);
451 conn = g_dbus_setup_bus(DBUS_BUS_SYSTEM, CONNMAN_SERVICE, &err);
453 if (dbus_error_is_set(&err) == TRUE) {
454 fprintf(stderr, "%s\n", err.message);
455 dbus_error_free(&err);
457 fprintf(stderr, "Can't register with system bus\n");
461 g_dbus_set_disconnect_function(conn, disconnect_callback, NULL, NULL);
463 __connman_log_init(argv[0], option_debug, option_detach);
465 __connman_dbus_init(conn);
467 config = load_config(CONFIGDIR "/main.conf");
468 parse_config(config);
470 g_key_file_free(config);
472 __connman_storage_migrate();
473 __connman_technology_init();
474 __connman_notifier_init();
475 __connman_service_init();
476 __connman_provider_init();
477 __connman_network_init();
478 __connman_device_init(option_device, option_nodevice);
480 __connman_agent_init();
481 __connman_ippool_init();
482 __connman_iptables_init();
483 __connman_nat_init();
484 __connman_tethering_init();
485 __connman_counter_init();
486 __connman_manager_init();
487 __connman_config_init();
488 __connman_stats_init();
489 __connman_clock_init();
491 __connman_resolver_init(option_dnsproxy);
492 __connman_ipconfig_init();
493 __connman_rtnl_init();
494 __connman_task_init();
495 __connman_proxy_init();
496 __connman_detect_init();
497 __connman_session_init();
498 __connman_timeserver_init();
499 __connman_connection_init();
501 __connman_plugin_init(option_plugin, option_noplugin);
503 __connman_rtnl_start();
504 __connman_dhcp_init();
505 __connman_dhcpv6_init();
506 __connman_wpad_init();
507 __connman_wispr_init();
508 __connman_rfkill_init();
510 g_free(option_device);
511 g_free(option_plugin);
512 g_free(option_nodevice);
513 g_free(option_noplugin);
515 g_main_loop_run(main_loop);
517 g_source_remove(signal);
519 __connman_rfkill_cleanup();
520 __connman_wispr_cleanup();
521 __connman_wpad_cleanup();
522 __connman_dhcpv6_cleanup();
523 __connman_dhcp_cleanup();
524 __connman_provider_cleanup();
525 __connman_plugin_cleanup();
526 __connman_connection_cleanup();
527 __connman_timeserver_cleanup();
528 __connman_session_cleanup();
529 __connman_detect_cleanup();
530 __connman_proxy_cleanup();
531 __connman_task_cleanup();
532 __connman_rtnl_cleanup();
533 __connman_resolver_cleanup();
535 __connman_clock_cleanup();
536 __connman_stats_cleanup();
537 __connman_config_cleanup();
538 __connman_manager_cleanup();
539 __connman_counter_cleanup();
540 __connman_agent_cleanup();
541 __connman_tethering_cleanup();
542 __connman_nat_cleanup();
543 __connman_iptables_cleanup();
544 __connman_ippool_cleanup();
545 __connman_device_cleanup();
546 __connman_network_cleanup();
547 __connman_service_cleanup();
548 __connman_ipconfig_cleanup();
549 __connman_notifier_cleanup();
550 __connman_technology_cleanup();
552 __connman_dbus_cleanup();
554 __connman_log_cleanup();
556 dbus_connection_unref(conn);
558 g_main_loop_unref(main_loop);
560 if (connman_settings.pref_timeservers != NULL)
561 g_strfreev(connman_settings.pref_timeservers);
563 g_free(connman_settings.auto_connect);
564 g_free(connman_settings.preferred_techs);
565 g_strfreev(connman_settings.fallback_nameservers);
567 g_free(option_debug);