Apply coding rule
[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 "wifi.h"
28 #include "netdbus.h"
29 #include "emulator.h"
30 #include "neterror.h"
31 #include "wifi-agent.h"
32 #include "wifi-power.h"
33 #include "network-clock.h"
34 #include "network-state.h"
35 #include "network-monitor.h"
36 #include "signal-handler.h"
37 #include "network-statistics.h"
38
39 static GMainLoop *main_loop = NULL;
40
41 #define ETHERNET_FEATURE       "http://tizen.org/feature/network.ethernet"
42
43 /*Poll the ethernet Cable Plug-in /Plug-out status at every 1000 ms*/
44 #define ETH_POLLING_TIME       1000
45
46 /* Callback to Poll the Ethernet Status*/
47 gboolean __net_ethernet_cable_status_polling_callback(gpointer data)
48 {
49         netconfig_ethernet_cable_plugin_status_check();
50         return TRUE;
51 }
52
53 void _got_name_cb(void)
54 {
55         wifi_object_create_and_init();
56         state_object_create_and_init();
57         statistics_object_create_and_init();
58
59         register_gdbus_signal();
60         connman_register_agent();
61
62 #if defined TIZEN_TV
63         __netconfig_set_ether_macaddr();
64 #endif
65 }
66
67 static void _objects_deinit(void)
68 {
69         cleanup_gdbus();
70         wifi_object_deinit();
71         state_object_deinit();
72         statistics_object_deinit();
73 }
74
75 int main(int argc, char *argv[])
76 {
77         int ret;
78         int check_ethernet_monitor_timer = 0;
79         bool ethernet_feature_supported = FALSE;
80
81         umask(0077);
82
83         DBG("Network Configuration service");
84         if (daemon(0, 0) != 0)
85                 DBG("Cannot start daemon");
86
87         if (mkdir(WIFI_STORAGEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
88                         S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0) {
89                 if (errno != EEXIST)
90                         ERR("Failed to create Wi-Fi directory");
91         }
92
93         if (mkdir(WIFI_CERT_STORAGEDIR, S_IRUSR | S_IWUSR | S_IXUSR |
94                         S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH) < 0) {
95                 if (errno != EEXIST)
96                         ERR("Failed to create cert directory");
97         }
98
99 #if !GLIB_CHECK_VERSION(2, 36, 0)
100         g_type_init();
101 #endif
102
103         main_loop = g_main_loop_new(NULL, FALSE);
104         if (main_loop == NULL) {
105                 ERR("Couldn't create GMainLoop\n");
106                 return 0;
107         }
108
109         ret = setup_gdbus(_got_name_cb);
110         if (ret > 0) {
111                 ERR("_netconfig_setup_gdbus is failed\n");
112                 return 0;
113         }
114
115         netconfig_error_init();
116
117 #if !defined TIZEN_TELEPHONY_ENABLE
118         netconfig_clock_init();
119 #endif
120
121         /* If its environment uses Emulator, network configuration is set by emulator default */
122         emulator_test_and_start();
123
124
125         /*In case no emulator, set the ETH0 Mac address*/
126 #if defined TIZEN_TV
127         if (emulator_is_emulated() == FALSE)
128                 __netconfig_set_ether_macaddr();
129 #endif
130
131         if (!system_info_get_platform_bool(ETHERNET_FEATURE, &ethernet_feature_supported)) {
132                 if (ethernet_feature_supported == TRUE) {
133                         /* Register the callback to check the ethernet Plug-in /Plug-out Status */
134                         check_ethernet_monitor_timer = g_timeout_add(ETH_POLLING_TIME,
135                                         __net_ethernet_cable_status_polling_callback,
136                                         &check_ethernet_monitor_timer);
137                 }
138         } else {
139                 ERR("Error - Feature getting from System Info");
140         }
141
142         g_main_loop_run(main_loop);
143
144         _objects_deinit();
145
146         log_cleanup();
147
148         deregister_gdbus_signal();
149
150 #if !defined TIZEN_TELEPHONY_ENABLE
151         netconfig_clock_deinit();
152 #endif
153
154
155         /*remove the Timer*/
156         if (check_ethernet_monitor_timer > 0)
157                 g_source_remove(check_ethernet_monitor_timer);
158
159         wifi_state_notifier_cleanup();
160
161         /* Unregistering the agent */
162         connman_unregister_agent();
163
164         return 0;
165 }