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
43 static GMainLoop *main_loop = NULL;
45 static void sig_term(int sig)
47 connman_info("Terminating");
49 g_main_loop_quit(main_loop);
52 static void disconnect_callback(DBusConnection *conn, void *user_data)
54 connman_error("D-Bus disconnect");
56 g_main_loop_quit(main_loop);
59 static gchar *option_debug = NULL;
60 static gchar *option_device = NULL;
61 static gchar *option_plugin = NULL;
62 static gchar *option_nodevice = NULL;
63 static gchar *option_noplugin = NULL;
64 static gchar *option_wifi = NULL;
65 static gboolean option_detach = TRUE;
66 static gboolean option_compat = FALSE;
67 static gboolean option_selftest = FALSE;
68 static gboolean option_version = FALSE;
70 static gboolean parse_debug(const char *key, const char *value,
71 gpointer user_data, GError **error)
74 option_debug = g_strdup(value);
76 option_debug = g_strdup("*");
81 static GOptionEntry options[] = {
82 { "debug", 'd', G_OPTION_FLAG_OPTIONAL_ARG,
83 G_OPTION_ARG_CALLBACK, parse_debug,
84 "Specify debug options to enable", "DEBUG" },
85 { "device", 'i', 0, G_OPTION_ARG_STRING, &option_device,
86 "Specify networking device or interface", "DEV" },
87 { "nodevice", 'I', 0, G_OPTION_ARG_STRING, &option_nodevice,
88 "Specify networking interface to ignore", "DEV" },
89 { "plugin", 'p', 0, G_OPTION_ARG_STRING, &option_plugin,
90 "Specify plugins to load", "NAME,..." },
91 { "noplugin", 'P', 0, G_OPTION_ARG_STRING, &option_noplugin,
92 "Specify plugins not to load", "NAME,..." },
93 { "wifi", 'W', 0, G_OPTION_ARG_STRING, &option_wifi,
94 "Specify driver for WiFi/Supplicant", "NAME" },
95 { "nodaemon", 'n', G_OPTION_FLAG_REVERSE,
96 G_OPTION_ARG_NONE, &option_detach,
97 "Don't fork daemon to background" },
98 { "compat", 'c', 0, G_OPTION_ARG_NONE, &option_compat,
99 "Enable Network Manager compatibility" },
100 { "selftest", 't', 0, G_OPTION_ARG_NONE, &option_selftest,
101 "Run self testing routines" },
102 { "version", 'v', 0, G_OPTION_ARG_NONE, &option_version,
103 "Show version information and exit" },
107 const char *connman_option_get_string(const char *key)
109 if (g_strcmp0(key, "wifi") == 0) {
110 if (option_wifi == NULL)
119 int main(int argc, char *argv[])
121 GOptionContext *context;
122 GError *error = NULL;
123 DBusConnection *conn;
129 /* Drop capabilities */
133 if (g_thread_supported() == FALSE)
137 context = g_option_context_new(NULL);
138 g_option_context_add_main_entries(context, options, NULL);
140 if (g_option_context_parse(context, &argc, &argv, &error) == FALSE) {
142 g_printerr("%s\n", error->message);
145 g_printerr("An unknown error occurred\n");
149 g_option_context_free(context);
151 if (option_version == TRUE) {
152 printf("%s\n", VERSION);
156 if (option_detach == TRUE) {
158 perror("Can't start daemon");
163 if (mkdir(STATEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
164 S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0) {
166 perror("Failed to create state directory");
169 if (mkdir(STORAGEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
170 S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0) {
172 perror("Failed to create storage directory");
175 if (mkdir(STORAGEDIR "/stats", S_IRUSR | S_IWUSR | S_IXUSR |
176 S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0) {
178 perror("Failed to create statistics directory");
181 old_umask = umask(077);
183 main_loop = g_main_loop_new(NULL, FALSE);
186 if (dbus_threads_init_default() == FALSE) {
187 fprintf(stderr, "Can't init usage of threads\n");
192 dbus_error_init(&err);
194 conn = g_dbus_setup_bus(DBUS_BUS_SYSTEM, CONNMAN_SERVICE, &err);
196 if (dbus_error_is_set(&err) == TRUE) {
197 fprintf(stderr, "%s\n", err.message);
198 dbus_error_free(&err);
200 fprintf(stderr, "Can't register with system bus\n");
204 g_dbus_set_disconnect_function(conn, disconnect_callback, NULL, NULL);
206 if (option_compat == TRUE) {
207 if (g_dbus_request_name(conn, NM_SERVICE, NULL) == FALSE) {
208 fprintf(stderr, "Can't register compat service\n");
209 option_compat = FALSE;
213 __connman_log_init(option_debug, option_detach);
215 if (option_selftest == TRUE) {
216 if (__connman_selftest() < 0) {
217 connman_error("Self testing routines failed");
222 __connman_dbus_init(conn);
224 __connman_storage_init();
225 __connman_element_init(option_device, option_nodevice);
227 __connman_agent_init();
228 __connman_tethering_init();
229 __connman_counter_init();
230 __connman_ondemand_init();
231 __connman_manager_init(option_compat);
232 __connman_profile_init();
233 __connman_config_init();
234 __connman_stats_init();
236 __connman_resolver_init();
237 __connman_ipconfig_init();
238 __connman_rtnl_init();
239 __connman_task_init();
240 __connman_detect_init();
241 __connman_session_init();
242 __connman_timeserver_init();
244 __connman_plugin_init(option_plugin, option_noplugin);
246 __connman_element_start();
248 g_free(option_device);
249 g_free(option_plugin);
250 g_free(option_nodevice);
251 g_free(option_noplugin);
253 memset(&sa, 0, sizeof(sa));
254 sa.sa_handler = sig_term;
255 sigaction(SIGINT, &sa, NULL);
256 sigaction(SIGTERM, &sa, NULL);
258 g_main_loop_run(main_loop);
260 __connman_element_stop();
262 __connman_plugin_cleanup();
264 __connman_timeserver_cleanup();
265 __connman_session_cleanup();
266 __connman_detect_cleanup();
267 __connman_task_cleanup();
268 __connman_rtnl_cleanup();
269 __connman_ipconfig_cleanup();
270 __connman_resolver_cleanup();
272 __connman_stats_cleanup();
273 __connman_config_cleanup();
274 __connman_profile_cleanup();
275 __connman_manager_cleanup();
276 __connman_ondemand_cleanup();
277 __connman_counter_cleanup();
278 __connman_agent_cleanup();
279 __connman_tethering_cleanup();
281 __connman_element_cleanup();
282 __connman_storage_cleanup();
284 __connman_dbus_cleanup();
287 __connman_log_cleanup();
289 dbus_connection_unref(conn);
291 g_main_loop_unref(main_loop);