main: Remove unused compat argument
[platform/upstream/connman.git] / src / main.c
1 /*
2  *
3  *  Connection Manager
4  *
5  *  Copyright (C) 2007-2012  Intel Corporation. All rights reserved.
6  *
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.
10  *
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.
15  *
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
19  *
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25
26 #include <errno.h>
27 #include <stdio.h>
28 #include <stdlib.h>
29 #include <unistd.h>
30 #include <string.h>
31 #include <signal.h>
32 #include <sys/signalfd.h>
33 #include <getopt.h>
34 #include <sys/stat.h>
35 #include <net/if.h>
36 #include <netdb.h>
37
38 #include <gdbus.h>
39
40 #include "connman.h"
41
42 #define DEFAULT_INPUT_REQUEST_TIMEOUT 120 * 1000
43 #define DEFAULT_BROWSER_LAUNCH_TIMEOUT 300 * 1000
44
45 static char *default_auto_connect[] = {
46         "wifi",
47         "ethernet",
48         "cellular",
49         NULL
50 };
51
52 static char *default_blacklist[] = {
53         "vmnet",
54         "vboxnet",
55         "virbr",
56         NULL
57 };
58
59 static struct {
60         connman_bool_t bg_scan;
61         char **pref_timeservers;
62         unsigned int *auto_connect;
63         unsigned int *preferred_techs;
64         char **fallback_nameservers;
65         unsigned int timeout_inputreq;
66         unsigned int timeout_browserlaunch;
67         char **blacklisted_interfaces;
68 } connman_settings  = {
69         .bg_scan = TRUE,
70         .pref_timeservers = NULL,
71         .auto_connect = NULL,
72         .preferred_techs = NULL,
73         .fallback_nameservers = NULL,
74         .timeout_inputreq = DEFAULT_INPUT_REQUEST_TIMEOUT,
75         .timeout_browserlaunch = DEFAULT_BROWSER_LAUNCH_TIMEOUT,
76         .blacklisted_interfaces = NULL,
77 };
78
79 static GKeyFile *load_config(const char *file)
80 {
81         GError *err = NULL;
82         GKeyFile *keyfile;
83
84         keyfile = g_key_file_new();
85
86         g_key_file_set_list_separator(keyfile, ',');
87
88         if (!g_key_file_load_from_file(keyfile, file, 0, &err)) {
89                 if (err->code != G_FILE_ERROR_NOENT) {
90                         connman_error("Parsing %s failed: %s", file,
91                                                                 err->message);
92                 }
93
94                 g_error_free(err);
95                 g_key_file_free(keyfile);
96                 return NULL;
97         }
98
99         return keyfile;
100 }
101
102 static uint *parse_service_types(char **str_list, gsize len)
103 {
104         unsigned int *type_list;
105         int i, j;
106         enum connman_service_type type;
107
108         type_list = g_try_new0(unsigned int, len + 1);
109         if (type_list == NULL)
110                 return NULL;
111
112         i = 0;
113         j = 0;
114         while (str_list[i] != NULL)
115         {
116                 type = __connman_service_string2type(str_list[i]);
117
118                 if (type != CONNMAN_SERVICE_TYPE_UNKNOWN) {
119                         type_list[j] = type;
120                         j += 1;
121                 }
122                 i += 1;
123         }
124
125         return type_list;
126 }
127
128 static char **parse_fallback_nameservers(char **nameservers, gsize len)
129 {
130         char **servers;
131         int i, j;
132
133         servers = g_try_new0(char *, len + 1);
134         if (servers == NULL)
135                 return NULL;
136
137         i = 0;
138         j = 0;
139         while (nameservers[i] != NULL) {
140                 if (connman_inet_check_ipaddress(nameservers[i]) > 0) {
141                         servers[j] = g_strdup(nameservers[i]);
142                         j += 1;
143                 }
144                 i += 1;
145         }
146
147         return servers;
148 }
149
150 static void parse_config(GKeyFile *config)
151 {
152         GError *error = NULL;
153         gboolean boolean;
154         char **timeservers;
155         char **interfaces;
156         char **str_list;
157         gsize len;
158         int timeout;
159
160         if (config == NULL) {
161                 connman_settings.auto_connect =
162                         parse_service_types(default_auto_connect, 3);
163                 connman_settings.blacklisted_interfaces =
164                         g_strdupv(default_blacklist);
165                 return;
166         }
167
168         DBG("parsing main.conf");
169
170         boolean = g_key_file_get_boolean(config, "General",
171                                                 "BackgroundScanning", &error);
172         if (error == NULL)
173                 connman_settings.bg_scan = boolean;
174
175         g_clear_error(&error);
176
177         timeservers = g_key_file_get_string_list(config, "General",
178                                                 "FallbackTimeservers", NULL, &error);
179         if (error == NULL)
180                 connman_settings.pref_timeservers = timeservers;
181
182         g_clear_error(&error);
183
184         str_list = g_key_file_get_string_list(config, "General",
185                         "DefaultAutoConnectTechnologies", &len, &error);
186
187         if (error == NULL)
188                 connman_settings.auto_connect =
189                         parse_service_types(str_list, len);
190         else
191                 connman_settings.auto_connect =
192                         parse_service_types(default_auto_connect, 3);
193
194         g_strfreev(str_list);
195
196         g_clear_error(&error);
197
198         str_list = g_key_file_get_string_list(config, "General",
199                         "PreferredTechnologies", &len, &error);
200
201         if (error == NULL)
202                 connman_settings.preferred_techs =
203                         parse_service_types(str_list, len);
204
205         g_strfreev(str_list);
206
207         g_clear_error(&error);
208
209         str_list = g_key_file_get_string_list(config, "General",
210                         "FallbackNameservers", &len, &error);
211
212         if (error == NULL)
213                 connman_settings.fallback_nameservers =
214                         parse_fallback_nameservers(str_list, len);
215
216         g_strfreev(str_list);
217
218         g_clear_error(&error);
219
220         timeout = g_key_file_get_integer(config, "General",
221                         "InputRequestTimeout", &error);
222         if (error == NULL && timeout >= 0)
223                 connman_settings.timeout_inputreq = timeout * 1000;
224
225         g_clear_error(&error);
226
227         timeout = g_key_file_get_integer(config, "General",
228                         "BrowserLaunchTimeout", &error);
229         if (error == NULL && timeout >= 0)
230                 connman_settings.timeout_browserlaunch = timeout * 1000;
231
232         g_clear_error(&error);
233
234         interfaces = g_key_file_get_string_list(config, "General",
235                         "NetworkInterfaceBlacklist", &len, &error);
236
237         if (error == NULL)
238                 connman_settings.blacklisted_interfaces = interfaces;
239         else
240                 connman_settings.blacklisted_interfaces =
241                         g_strdupv(default_blacklist);
242
243         g_clear_error(&error);
244 }
245
246 static GMainLoop *main_loop = NULL;
247
248 static unsigned int __terminated = 0;
249
250 static gboolean signal_handler(GIOChannel *channel, GIOCondition cond,
251                                                         gpointer user_data)
252 {
253         struct signalfd_siginfo si;
254         ssize_t result;
255         int fd;
256
257         if (cond & (G_IO_NVAL | G_IO_ERR | G_IO_HUP))
258                 return FALSE;
259
260         fd = g_io_channel_unix_get_fd(channel);
261
262         result = read(fd, &si, sizeof(si));
263         if (result != sizeof(si))
264                 return FALSE;
265
266         switch (si.ssi_signo) {
267         case SIGINT:
268         case SIGTERM:
269                 if (__terminated == 0) {
270                         connman_info("Terminating");
271                         g_main_loop_quit(main_loop);
272                 }
273
274                 __terminated = 1;
275                 break;
276         }
277
278         return TRUE;
279 }
280
281 static guint setup_signalfd(void)
282 {
283         GIOChannel *channel;
284         guint source;
285         sigset_t mask;
286         int fd;
287
288         sigemptyset(&mask);
289         sigaddset(&mask, SIGINT);
290         sigaddset(&mask, SIGTERM);
291
292         if (sigprocmask(SIG_BLOCK, &mask, NULL) < 0) {
293                 perror("Failed to set signal mask");
294                 return 0;
295         }
296
297         fd = signalfd(-1, &mask, 0);
298         if (fd < 0) {
299                 perror("Failed to create signal descriptor");
300                 return 0;
301         }
302
303         channel = g_io_channel_unix_new(fd);
304
305         g_io_channel_set_close_on_unref(channel, TRUE);
306         g_io_channel_set_encoding(channel, NULL, NULL);
307         g_io_channel_set_buffered(channel, FALSE);
308
309         source = g_io_add_watch(channel,
310                                 G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
311                                 signal_handler, NULL);
312
313         g_io_channel_unref(channel);
314
315         return source;
316 }
317
318 static void disconnect_callback(DBusConnection *conn, void *user_data)
319 {
320         connman_error("D-Bus disconnect");
321
322         g_main_loop_quit(main_loop);
323 }
324
325 static gchar *option_debug = NULL;
326 static gchar *option_device = NULL;
327 static gchar *option_plugin = NULL;
328 static gchar *option_nodevice = NULL;
329 static gchar *option_noplugin = NULL;
330 static gchar *option_wifi = NULL;
331 static gboolean option_detach = TRUE;
332 static gboolean option_dnsproxy = TRUE;
333 static gboolean option_version = FALSE;
334
335 static gboolean parse_debug(const char *key, const char *value,
336                                         gpointer user_data, GError **error)
337 {
338         if (value)
339                 option_debug = g_strdup(value);
340         else
341                 option_debug = g_strdup("*");
342
343         return TRUE;
344 }
345
346 static GOptionEntry options[] = {
347         { "debug", 'd', G_OPTION_FLAG_OPTIONAL_ARG,
348                                 G_OPTION_ARG_CALLBACK, parse_debug,
349                                 "Specify debug options to enable", "DEBUG" },
350         { "device", 'i', 0, G_OPTION_ARG_STRING, &option_device,
351                         "Specify networking device or interface", "DEV" },
352         { "nodevice", 'I', 0, G_OPTION_ARG_STRING, &option_nodevice,
353                         "Specify networking interface to ignore", "DEV" },
354         { "plugin", 'p', 0, G_OPTION_ARG_STRING, &option_plugin,
355                                 "Specify plugins to load", "NAME,..." },
356         { "noplugin", 'P', 0, G_OPTION_ARG_STRING, &option_noplugin,
357                                 "Specify plugins not to load", "NAME,..." },
358         { "wifi", 'W', 0, G_OPTION_ARG_STRING, &option_wifi,
359                                 "Specify driver for WiFi/Supplicant", "NAME" },
360         { "nodaemon", 'n', G_OPTION_FLAG_REVERSE,
361                                 G_OPTION_ARG_NONE, &option_detach,
362                                 "Don't fork daemon to background" },
363         { "nodnsproxy", 'r', G_OPTION_FLAG_REVERSE,
364                                 G_OPTION_ARG_NONE, &option_dnsproxy,
365                                 "Don't enable DNS Proxy" },
366         { "version", 'v', 0, G_OPTION_ARG_NONE, &option_version,
367                                 "Show version information and exit" },
368         { NULL },
369 };
370
371 const char *connman_option_get_string(const char *key)
372 {
373         if (g_strcmp0(key, "wifi") == 0) {
374                 if (option_wifi == NULL)
375                         return "nl80211,wext";
376                 else
377                         return option_wifi;
378         }
379
380         return NULL;
381 }
382
383 connman_bool_t connman_setting_get_bool(const char *key)
384 {
385         if (g_str_equal(key, "BackgroundScanning") == TRUE)
386                 return connman_settings.bg_scan;
387
388         return FALSE;
389 }
390
391 char **connman_setting_get_string_list(const char *key)
392 {
393         if (g_str_equal(key, "FallbackTimeservers") == TRUE)
394                 return connman_settings.pref_timeservers;
395
396         if (g_str_equal(key, "FallbackNameservers") == TRUE)
397                 return connman_settings.fallback_nameservers;
398
399         if (g_str_equal(key, "NetworkInterfaceBlacklist") == TRUE)
400                 return connman_settings.blacklisted_interfaces;
401
402         return NULL;
403 }
404
405 unsigned int *connman_setting_get_uint_list(const char *key)
406 {
407         if (g_str_equal(key, "DefaultAutoConnectTechnologies") == TRUE)
408                 return connman_settings.auto_connect;
409
410         if (g_str_equal(key, "PreferredTechnologies") == TRUE)
411                 return connman_settings.preferred_techs;
412
413         return NULL;
414 }
415
416 unsigned int connman_timeout_input_request(void) {
417         return connman_settings.timeout_inputreq;
418 }
419
420 unsigned int connman_timeout_browser_launch(void) {
421         return connman_settings.timeout_browserlaunch;
422 }
423
424 int main(int argc, char *argv[])
425 {
426         GOptionContext *context;
427         GError *error = NULL;
428         DBusConnection *conn;
429         DBusError err;
430         GKeyFile *config;
431         guint signal;
432
433 #ifdef NEED_THREADS
434         if (g_thread_supported() == FALSE)
435                 g_thread_init(NULL);
436 #endif
437
438         context = g_option_context_new(NULL);
439         g_option_context_add_main_entries(context, options, NULL);
440
441         if (g_option_context_parse(context, &argc, &argv, &error) == FALSE) {
442                 if (error != NULL) {
443                         g_printerr("%s\n", error->message);
444                         g_error_free(error);
445                 } else
446                         g_printerr("An unknown error occurred\n");
447                 exit(1);
448         }
449
450         g_option_context_free(context);
451
452         if (option_version == TRUE) {
453                 printf("%s\n", VERSION);
454                 exit(0);
455         }
456
457         if (option_detach == TRUE) {
458                 if (daemon(0, 0)) {
459                         perror("Can't start daemon");
460                         exit(1);
461                 }
462         }
463
464         if (mkdir(STATEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
465                                 S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0) {
466                 if (errno != EEXIST)
467                         perror("Failed to create state directory");
468         }
469
470         if (mkdir(STORAGEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
471                                 S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0) {
472                 if (errno != EEXIST)
473                         perror("Failed to create storage directory");
474         }
475
476         umask(0077);
477
478         main_loop = g_main_loop_new(NULL, FALSE);
479
480 #ifdef NEED_THREADS
481         if (dbus_threads_init_default() == FALSE) {
482                 fprintf(stderr, "Can't init usage of threads\n");
483                 exit(1);
484         }
485 #endif
486
487         signal = setup_signalfd();
488
489         dbus_error_init(&err);
490
491         conn = g_dbus_setup_bus(DBUS_BUS_SYSTEM, CONNMAN_SERVICE, &err);
492         if (conn == NULL) {
493                 if (dbus_error_is_set(&err) == TRUE) {
494                         fprintf(stderr, "%s\n", err.message);
495                         dbus_error_free(&err);
496                 } else
497                         fprintf(stderr, "Can't register with system bus\n");
498                 exit(1);
499         }
500
501         g_dbus_set_disconnect_function(conn, disconnect_callback, NULL, NULL);
502
503         __connman_log_init(argv[0], option_debug, option_detach);
504
505         __connman_dbus_init(conn);
506
507         config = load_config(CONFIGDIR "/main.conf");
508         parse_config(config);
509         if (config != NULL)
510                 g_key_file_free(config);
511
512         __connman_storage_migrate();
513         __connman_technology_init();
514         __connman_notifier_init();
515         __connman_service_init();
516         __connman_provider_init();
517         __connman_network_init();
518         __connman_device_init(option_device, option_nodevice);
519
520         __connman_agent_init();
521         __connman_ippool_init();
522         __connman_iptables_init();
523         __connman_nat_init();
524         __connman_tethering_init();
525         __connman_counter_init();
526         __connman_manager_init();
527         __connman_config_init();
528         __connman_stats_init();
529         __connman_clock_init();
530
531         __connman_resolver_init(option_dnsproxy);
532         __connman_ipconfig_init();
533         __connman_rtnl_init();
534         __connman_task_init();
535         __connman_proxy_init();
536         __connman_detect_init();
537         __connman_session_init();
538         __connman_timeserver_init();
539         __connman_connection_init();
540
541         __connman_plugin_init(option_plugin, option_noplugin);
542
543         __connman_rtnl_start();
544         __connman_dhcp_init();
545         __connman_dhcpv6_init();
546         __connman_wpad_init();
547         __connman_wispr_init();
548         __connman_rfkill_init();
549
550         g_free(option_device);
551         g_free(option_plugin);
552         g_free(option_nodevice);
553         g_free(option_noplugin);
554
555         g_main_loop_run(main_loop);
556
557         g_source_remove(signal);
558
559         __connman_rfkill_cleanup();
560         __connman_wispr_cleanup();
561         __connman_wpad_cleanup();
562         __connman_dhcpv6_cleanup();
563         __connman_dhcp_cleanup();
564         __connman_provider_cleanup();
565         __connman_plugin_cleanup();
566         __connman_connection_cleanup();
567         __connman_timeserver_cleanup();
568         __connman_session_cleanup();
569         __connman_detect_cleanup();
570         __connman_proxy_cleanup();
571         __connman_task_cleanup();
572         __connman_rtnl_cleanup();
573         __connman_resolver_cleanup();
574
575         __connman_clock_cleanup();
576         __connman_stats_cleanup();
577         __connman_config_cleanup();
578         __connman_manager_cleanup();
579         __connman_counter_cleanup();
580         __connman_agent_cleanup();
581         __connman_tethering_cleanup();
582         __connman_nat_cleanup();
583         __connman_iptables_cleanup();
584         __connman_ippool_cleanup();
585         __connman_device_cleanup();
586         __connman_network_cleanup();
587         __connman_service_cleanup();
588         __connman_ipconfig_cleanup();
589         __connman_notifier_cleanup();
590         __connman_technology_cleanup();
591
592         __connman_dbus_cleanup();
593
594         __connman_log_cleanup();
595
596         dbus_connection_unref(conn);
597
598         g_main_loop_unref(main_loop);
599
600         if (connman_settings.pref_timeservers != NULL)
601                 g_strfreev(connman_settings.pref_timeservers);
602
603         g_free(connman_settings.auto_connect);
604         g_free(connman_settings.preferred_techs);
605         g_strfreev(connman_settings.fallback_nameservers);
606         g_strfreev(connman_settings.blacklisted_interfaces);
607
608         g_free(option_debug);
609
610         return 0;
611 }