c19c3b1e0d40217d61678053baa2df402fc2a461
[platform/core/connectivity/net-config.git] / src / main.c
1 /*
2  * Network Configuration Module
3  *
4  * Copyright (c) 2000 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20 #include <stdio.h>
21 #include <errno.h>
22 #include <unistd.h>
23 #include <sys/stat.h>
24 #include <system_info.h>
25
26 #include "log.h"
27 #include "util.h"
28 #include "wifi.h"
29 #include "netdbus.h"
30 #include "emulator.h"
31 #include "neterror.h"
32 #include "wifi-agent.h"
33 #include "wifi-power.h"
34 #include "vpnsvc.h"
35 #include "network-clock.h"
36 #include "network-dpm.h"
37 #include "network-state.h"
38 #include "network-monitor.h"
39 #include "signal-handler.h"
40 #include "network-statistics.h"
41 #include "network-dump.h"
42
43 static GMainLoop *main_loop = NULL;
44
45 /*Poll the ethernet Cable Plug-in /Plug-out status at every 1000 ms*/
46 #define ETH_POLLING_TIME       1000
47
48 /* Callback to Poll the Ethernet Status*/
49 gboolean __net_ethernet_cable_status_polling_callback(gpointer data)
50 {
51         netconfig_ethernet_cable_plugin_status_check();
52         return TRUE;
53 }
54
55 void _got_name_cb(void)
56 {
57         wifi_object_create_and_init();
58         state_object_create_and_init();
59         statistics_object_create_and_init();
60         vpnsvc_create_and_init();
61
62         register_gdbus_signal();
63         connman_register_agent();
64
65         if (TIZEN_TV)
66                 __netconfig_set_ether_macaddr();
67 }
68
69 static void _objects_deinit(void)
70 {
71         cleanup_gdbus();
72         wifi_object_deinit();
73         state_object_deinit();
74         statistics_object_deinit();
75         vpnsvc_destroy_deinit();
76 }
77
78 int main(int argc, char *argv[])
79 {
80         int ret;
81         int check_ethernet_monitor_timer = 0;
82
83         umask(0077);
84
85         DBG("Network Configuration service");
86         if (daemon(0, 0) != 0)
87                 DBG("Cannot start daemon");
88
89         if (mkdir(WIFI_STORAGEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
90                         S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0) {
91                 if (errno != EEXIST)
92                         ERR("Failed to create Wi-Fi directory");
93         }
94
95         if (mkdir(WIFI_CERT_STORAGEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
96                         S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0) {
97                 if (errno != EEXIST)
98                         ERR("Failed to create cert directory");
99         }
100
101 #if !GLIB_CHECK_VERSION(2, 36, 0)
102         g_type_init();
103 #endif
104
105         main_loop = g_main_loop_new(NULL, FALSE);
106         if (main_loop == NULL) {
107                 ERR("Couldn't create GMainLoop\n");
108                 return 0;
109         }
110
111         ret = setup_gdbus(_got_name_cb);
112         if (ret > 0) {
113                 ERR("_netconfig_setup_gdbus is failed\n");
114                 return 0;
115         }
116
117         netconfig_error_init();
118
119         if (TIZEN_NTP_ENABLE)
120                 netconfig_clock_init();
121
122         /* If its environment uses Emulator, network configuration is set by emulator default */
123         emulator_test_and_start();
124
125         /* For device policy manager */
126         netconfig_dpm_init();
127
128         /* Start tcpdump if dump state is on */
129         check_dump_state_and_start();
130
131         /*In case no emulator, set the ETH0 Mac address*/
132         if (TIZEN_TV && emulator_is_emulated() == FALSE)
133                 __netconfig_set_ether_macaddr();
134
135         if (netconfig_check_feature_supported(ETHERNET_FEATURE)) {
136                 /* Register the callback to check the ethernet Plug-in /Plug-out Status */
137                 check_ethernet_monitor_timer = g_timeout_add(ETH_POLLING_TIME,
138                                 __net_ethernet_cable_status_polling_callback,
139                                 &check_ethernet_monitor_timer);
140         }
141
142         netconfig_plugin_init();
143
144         g_main_loop_run(main_loop);
145
146         netconfig_plugin_deinit();
147
148         _objects_deinit();
149
150         log_cleanup();
151
152         deregister_gdbus_signal();
153
154         netconfig_dpm_deinit();
155
156         if (TIZEN_NTP_ENABLE)
157                 netconfig_clock_deinit();
158
159
160         /*remove the Timer*/
161         if (check_ethernet_monitor_timer > 0)
162                 g_source_remove(check_ethernet_monitor_timer);
163
164         wifi_state_notifier_cleanup();
165
166         /* Unregistering the agent */
167         connman_unregister_agent();
168
169         return 0;
170 }