main: Move default string arrays top of the file
[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 = default_blacklist;
164                 return;
165         }
166
167         DBG("parsing main.conf");
168
169         boolean = g_key_file_get_boolean(config, "General",
170                                                 "BackgroundScanning", &error);
171         if (error == NULL)
172                 connman_settings.bg_scan = boolean;
173
174         g_clear_error(&error);
175
176         timeservers = g_key_file_get_string_list(config, "General",
177                                                 "FallbackTimeservers", NULL, &error);
178         if (error == NULL)
179                 connman_settings.pref_timeservers = timeservers;
180
181         g_clear_error(&error);
182
183         str_list = g_key_file_get_string_list(config, "General",
184                         "DefaultAutoConnectTechnologies", &len, &error);
185
186         if (error == NULL)
187                 connman_settings.auto_connect =
188                         parse_service_types(str_list, len);
189         else
190                 connman_settings.auto_connect =
191                         parse_service_types(default_auto_connect, 3);
192
193         g_strfreev(str_list);
194
195         g_clear_error(&error);
196
197         str_list = g_key_file_get_string_list(config, "General",
198                         "PreferredTechnologies", &len, &error);
199
200         if (error == NULL)
201                 connman_settings.preferred_techs =
202                         parse_service_types(str_list, len);
203
204         g_strfreev(str_list);
205
206         g_clear_error(&error);
207
208         str_list = g_key_file_get_string_list(config, "General",
209                         "FallbackNameservers", &len, &error);
210
211         if (error == NULL)
212                 connman_settings.fallback_nameservers =
213                         parse_fallback_nameservers(str_list, len);
214
215         g_strfreev(str_list);
216
217         g_clear_error(&error);
218
219         timeout = g_key_file_get_integer(config, "General",
220                         "InputRequestTimeout", &error);
221         if (error == NULL && timeout >= 0)
222                 connman_settings.timeout_inputreq = timeout * 1000;
223
224         g_clear_error(&error);
225
226         timeout = g_key_file_get_integer(config, "General",
227                         "BrowserLaunchTimeout", &error);
228         if (error == NULL && timeout >= 0)
229                 connman_settings.timeout_browserlaunch = timeout * 1000;
230
231         g_clear_error(&error);
232
233         interfaces = g_key_file_get_string_list(config, "General",
234                         "NetworkInterfaceBlacklist", &len, &error);
235
236         if (error == NULL)
237                 connman_settings.blacklisted_interfaces = interfaces;
238         else
239                 connman_settings.blacklisted_interfaces = default_blacklist;
240
241         g_clear_error(&error);
242 }
243
244 static GMainLoop *main_loop = NULL;
245
246 static unsigned int __terminated = 0;
247
248 static gboolean signal_handler(GIOChannel *channel, GIOCondition cond,
249                                                         gpointer user_data)
250 {
251         struct signalfd_siginfo si;
252         ssize_t result;
253         int fd;
254
255         if (cond & (G_IO_NVAL | G_IO_ERR | G_IO_HUP))
256                 return FALSE;
257
258         fd = g_io_channel_unix_get_fd(channel);
259
260         result = read(fd, &si, sizeof(si));
261         if (result != sizeof(si))
262                 return FALSE;
263
264         switch (si.ssi_signo) {
265         case SIGINT:
266         case SIGTERM:
267                 if (__terminated == 0) {
268                         connman_info("Terminating");
269                         g_main_loop_quit(main_loop);
270                 }
271
272                 __terminated = 1;
273                 break;
274         }
275
276         return TRUE;
277 }
278
279 static guint setup_signalfd(void)
280 {
281         GIOChannel *channel;
282         guint source;
283         sigset_t mask;
284         int fd;
285
286         sigemptyset(&mask);
287         sigaddset(&mask, SIGINT);
288         sigaddset(&mask, SIGTERM);
289
290         if (sigprocmask(SIG_BLOCK, &mask, NULL) < 0) {
291                 perror("Failed to set signal mask");
292                 return 0;
293         }
294
295         fd = signalfd(-1, &mask, 0);
296         if (fd < 0) {
297                 perror("Failed to create signal descriptor");
298                 return 0;
299         }
300
301         channel = g_io_channel_unix_new(fd);
302
303         g_io_channel_set_close_on_unref(channel, TRUE);
304         g_io_channel_set_encoding(channel, NULL, NULL);
305         g_io_channel_set_buffered(channel, FALSE);
306
307         source = g_io_add_watch(channel,
308                                 G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_NVAL,
309                                 signal_handler, NULL);
310
311         g_io_channel_unref(channel);
312
313         return source;
314 }
315
316 static void disconnect_callback(DBusConnection *conn, void *user_data)
317 {
318         connman_error("D-Bus disconnect");
319
320         g_main_loop_quit(main_loop);
321 }
322
323 static gchar *option_debug = NULL;
324 static gchar *option_device = NULL;
325 static gchar *option_plugin = NULL;
326 static gchar *option_nodevice = NULL;
327 static gchar *option_noplugin = NULL;
328 static gchar *option_wifi = NULL;
329 static gboolean option_detach = TRUE;
330 static gboolean option_dnsproxy = TRUE;
331 static gboolean option_compat = FALSE;
332 static gboolean option_version = FALSE;
333
334 static gboolean parse_debug(const char *key, const char *value,
335                                         gpointer user_data, GError **error)
336 {
337         if (value)
338                 option_debug = g_strdup(value);
339         else
340                 option_debug = g_strdup("*");
341
342         return TRUE;
343 }
344
345 static GOptionEntry options[] = {
346         { "debug", 'd', G_OPTION_FLAG_OPTIONAL_ARG,
347                                 G_OPTION_ARG_CALLBACK, parse_debug,
348                                 "Specify debug options to enable", "DEBUG" },
349         { "device", 'i', 0, G_OPTION_ARG_STRING, &option_device,
350                         "Specify networking device or interface", "DEV" },
351         { "nodevice", 'I', 0, G_OPTION_ARG_STRING, &option_nodevice,
352                         "Specify networking interface to ignore", "DEV" },
353         { "plugin", 'p', 0, G_OPTION_ARG_STRING, &option_plugin,
354                                 "Specify plugins to load", "NAME,..." },
355         { "noplugin", 'P', 0, G_OPTION_ARG_STRING, &option_noplugin,
356                                 "Specify plugins not to load", "NAME,..." },
357         { "wifi", 'W', 0, G_OPTION_ARG_STRING, &option_wifi,
358                                 "Specify driver for WiFi/Supplicant", "NAME" },
359         { "nodaemon", 'n', G_OPTION_FLAG_REVERSE,
360                                 G_OPTION_ARG_NONE, &option_detach,
361                                 "Don't fork daemon to background" },
362         { "nodnsproxy", 'r', G_OPTION_FLAG_REVERSE,
363                                 G_OPTION_ARG_NONE, &option_dnsproxy,
364                                 "Don't enable DNS Proxy" },
365         { "compat", 'c', 0, G_OPTION_ARG_NONE, &option_compat,
366                                 "(obsolete)" },
367         { "version", 'v', 0, G_OPTION_ARG_NONE, &option_version,
368                                 "Show version information and exit" },
369         { NULL },
370 };
371
372 const char *connman_option_get_string(const char *key)
373 {
374         if (g_strcmp0(key, "wifi") == 0) {
375                 if (option_wifi == NULL)
376                         return "nl80211,wext";
377                 else
378                         return option_wifi;
379         }
380
381         return NULL;
382 }
383
384 connman_bool_t connman_setting_get_bool(const char *key)
385 {
386         if (g_str_equal(key, "BackgroundScanning") == TRUE)
387                 return connman_settings.bg_scan;
388
389         return FALSE;
390 }
391
392 char **connman_setting_get_string_list(const char *key)
393 {
394         if (g_str_equal(key, "FallbackTimeservers") == TRUE)
395                 return connman_settings.pref_timeservers;
396
397         if (g_str_equal(key, "FallbackNameservers") == TRUE)
398                 return connman_settings.fallback_nameservers;
399
400         if (g_str_equal(key, "NetworkInterfaceBlacklist") == TRUE)
401                 return connman_settings.blacklisted_interfaces;
402
403         return NULL;
404 }
405
406 unsigned int *connman_setting_get_uint_list(const char *key)
407 {
408         if (g_str_equal(key, "DefaultAutoConnectTechnologies") == TRUE)
409                 return connman_settings.auto_connect;
410
411         if (g_str_equal(key, "PreferredTechnologies") == TRUE)
412                 return connman_settings.preferred_techs;
413
414         return NULL;
415 }
416
417 unsigned int connman_timeout_input_request(void) {
418         return connman_settings.timeout_inputreq;
419 }
420
421 unsigned int connman_timeout_browser_launch(void) {
422         return connman_settings.timeout_browserlaunch;
423 }
424
425 int main(int argc, char *argv[])
426 {
427         GOptionContext *context;
428         GError *error = NULL;
429         DBusConnection *conn;
430         DBusError err;
431         GKeyFile *config;
432         guint signal;
433
434 #ifdef NEED_THREADS
435         if (g_thread_supported() == FALSE)
436                 g_thread_init(NULL);
437 #endif
438
439         context = g_option_context_new(NULL);
440         g_option_context_add_main_entries(context, options, NULL);
441
442         if (g_option_context_parse(context, &argc, &argv, &error) == FALSE) {
443                 if (error != NULL) {
444                         g_printerr("%s\n", error->message);
445                         g_error_free(error);
446                 } else
447                         g_printerr("An unknown error occurred\n");
448                 exit(1);
449         }
450
451         g_option_context_free(context);
452
453         if (option_version == TRUE) {
454                 printf("%s\n", VERSION);
455                 exit(0);
456         }
457
458         if (option_detach == TRUE) {
459                 if (daemon(0, 0)) {
460                         perror("Can't start daemon");
461                         exit(1);
462                 }
463         }
464
465         if (mkdir(STATEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
466                                 S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0) {
467                 if (errno != EEXIST)
468                         perror("Failed to create state directory");
469         }
470
471         if (mkdir(STORAGEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
472                                 S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0) {
473                 if (errno != EEXIST)
474                         perror("Failed to create storage directory");
475         }
476
477         umask(0077);
478
479         main_loop = g_main_loop_new(NULL, FALSE);
480
481 #ifdef NEED_THREADS
482         if (dbus_threads_init_default() == FALSE) {
483                 fprintf(stderr, "Can't init usage of threads\n");
484                 exit(1);
485         }
486 #endif
487
488         signal = setup_signalfd();
489
490         dbus_error_init(&err);
491
492         conn = g_dbus_setup_bus(DBUS_BUS_SYSTEM, CONNMAN_SERVICE, &err);
493         if (conn == NULL) {
494                 if (dbus_error_is_set(&err) == TRUE) {
495                         fprintf(stderr, "%s\n", err.message);
496                         dbus_error_free(&err);
497                 } else
498                         fprintf(stderr, "Can't register with system bus\n");
499                 exit(1);
500         }
501
502         g_dbus_set_disconnect_function(conn, disconnect_callback, NULL, NULL);
503
504         __connman_log_init(argv[0], option_debug, option_detach);
505
506         __connman_dbus_init(conn);
507
508         config = load_config(CONFIGDIR "/main.conf");
509         parse_config(config);
510         if (config != NULL)
511                 g_key_file_free(config);
512
513         __connman_storage_migrate();
514         __connman_technology_init();
515         __connman_notifier_init();
516         __connman_service_init();
517         __connman_provider_init();
518         __connman_network_init();
519         __connman_device_init(option_device, option_nodevice);
520
521         __connman_agent_init();
522         __connman_ippool_init();
523         __connman_iptables_init();
524         __connman_nat_init();
525         __connman_tethering_init();
526         __connman_counter_init();
527         __connman_manager_init();
528         __connman_config_init();
529         __connman_stats_init();
530         __connman_clock_init();
531
532         __connman_resolver_init(option_dnsproxy);
533         __connman_ipconfig_init();
534         __connman_rtnl_init();
535         __connman_task_init();
536         __connman_proxy_init();
537         __connman_detect_init();
538         __connman_session_init();
539         __connman_timeserver_init();
540         __connman_connection_init();
541
542         __connman_plugin_init(option_plugin, option_noplugin);
543
544         __connman_rtnl_start();
545         __connman_dhcp_init();
546         __connman_dhcpv6_init();
547         __connman_wpad_init();
548         __connman_wispr_init();
549         __connman_rfkill_init();
550
551         g_free(option_device);
552         g_free(option_plugin);
553         g_free(option_nodevice);
554         g_free(option_noplugin);
555
556         g_main_loop_run(main_loop);
557
558         g_source_remove(signal);
559
560         __connman_rfkill_cleanup();
561         __connman_wispr_cleanup();
562         __connman_wpad_cleanup();
563         __connman_dhcpv6_cleanup();
564         __connman_dhcp_cleanup();
565         __connman_provider_cleanup();
566         __connman_plugin_cleanup();
567         __connman_connection_cleanup();
568         __connman_timeserver_cleanup();
569         __connman_session_cleanup();
570         __connman_detect_cleanup();
571         __connman_proxy_cleanup();
572         __connman_task_cleanup();
573         __connman_rtnl_cleanup();
574         __connman_resolver_cleanup();
575
576         __connman_clock_cleanup();
577         __connman_stats_cleanup();
578         __connman_config_cleanup();
579         __connman_manager_cleanup();
580         __connman_counter_cleanup();
581         __connman_agent_cleanup();
582         __connman_tethering_cleanup();
583         __connman_nat_cleanup();
584         __connman_iptables_cleanup();
585         __connman_ippool_cleanup();
586         __connman_device_cleanup();
587         __connman_network_cleanup();
588         __connman_service_cleanup();
589         __connman_ipconfig_cleanup();
590         __connman_notifier_cleanup();
591         __connman_technology_cleanup();
592
593         __connman_dbus_cleanup();
594
595         __connman_log_cleanup();
596
597         dbus_connection_unref(conn);
598
599         g_main_loop_unref(main_loop);
600
601         if (connman_settings.pref_timeservers != NULL)
602                 g_strfreev(connman_settings.pref_timeservers);
603
604         g_free(connman_settings.auto_connect);
605         g_free(connman_settings.preferred_techs);
606         g_strfreev(connman_settings.fallback_nameservers);
607
608         g_free(option_debug);
609
610         return 0;
611 }