5 * Copyright (C) 2007-2008 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
39 static GMainLoop *main_loop = NULL;
41 static void sig_term(int sig)
43 g_main_loop_quit(main_loop);
46 static void disconnect_callback(void *user_data)
48 DBG("D-Bus disconnect");
50 g_main_loop_quit(main_loop);
53 static gchar *option_device = NULL;
54 static gboolean option_detach = TRUE;
55 static gboolean option_compat = FALSE;
56 static gboolean option_debug = FALSE;
58 static GOptionEntry options[] = {
59 { "device", 'i', 0, G_OPTION_ARG_STRING, &option_device,
60 "Specify network device/interface", "DEV" },
61 { "nodaemon", 'n', G_OPTION_FLAG_REVERSE,
62 G_OPTION_ARG_NONE, &option_detach,
63 "Don't fork daemon to background" },
64 { "compat", 'c', 0, G_OPTION_ARG_NONE, &option_compat,
65 "Enable Network Manager compatibility" },
66 { "debug", 'd', 0, G_OPTION_ARG_NONE, &option_debug,
67 "Enable debug information output" },
71 int main(int argc, char *argv[])
73 GOptionContext *context;
79 if (g_thread_supported() == FALSE)
82 context = g_option_context_new(NULL);
83 g_option_context_add_main_entries(context, options, NULL);
85 if (g_option_context_parse(context, &argc, &argv, &error) == FALSE) {
87 g_printerr("%s\n", error->message);
90 g_printerr("An unknown error occurred\n");
94 g_option_context_free(context);
96 if (option_detach == TRUE) {
98 perror("Can't start daemon");
103 mkdir(STATEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
104 S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
106 mkdir(STORAGEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
107 S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH);
109 main_loop = g_main_loop_new(NULL, FALSE);
111 if (dbus_threads_init_default() == FALSE) {
112 fprintf(stderr, "Can't init usage of threads\n");
116 dbus_error_init(&err);
118 conn = g_dbus_setup_bus(DBUS_BUS_SYSTEM, CONNMAN_SERVICE, &err);
120 if (dbus_error_is_set(&err) == TRUE) {
121 fprintf(stderr, "%s\n", err.message);
122 dbus_error_free(&err);
124 fprintf(stderr, "Can't register with system bus\n");
128 g_dbus_set_disconnect_function(conn, disconnect_callback, NULL, NULL);
130 if (option_compat == TRUE) {
131 if (g_dbus_request_name(conn, NM_SERVICE, NULL) == FALSE) {
132 fprintf(stderr, "Can't register compat service\n");
133 option_compat = FALSE;
137 __connman_log_init(option_detach, option_debug);
139 __connman_storage_init();
141 __connman_element_init(conn, option_device);
143 __connman_agent_init(conn);
145 __connman_manager_init(conn, option_compat);
147 __connman_profile_init(conn);
149 __connman_rtnl_init();
151 __connman_plugin_init();
153 g_free(option_device);
155 memset(&sa, 0, sizeof(sa));
156 sa.sa_handler = sig_term;
157 sigaction(SIGINT, &sa, NULL);
158 sigaction(SIGTERM, &sa, NULL);
160 g_main_loop_run(main_loop);
162 __connman_rtnl_cleanup();
164 __connman_agent_cleanup();
166 __connman_element_cleanup();
168 __connman_profile_cleanup();
170 __connman_manager_cleanup();
172 __connman_storage_cleanup();
174 __connman_plugin_cleanup();
176 __connman_log_cleanup();
178 g_dbus_cleanup_connection(conn);
180 g_main_loop_unref(main_loop);