b8cb2676828c3e635bad234a141b9ed54fb5bc9c
[platform/core/connectivity/bluetooth-frwk.git] / bt-service-adaptation / services / bt-service-main.c
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *              http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 #include <glib.h>
19 #include <dlog.h>
20 #include <string.h>
21 #include <vconf.h>
22
23 #include <bundle.h>
24 #include <eventsystem.h>
25
26 #include "bt-internal-types.h"
27 #include "bt-service-common.h"
28 #include "bt-request-handler.h"
29 #include "bt-service-obex-event.h"
30 #ifdef TIZEN_FEATURE_BT_PAN_NAP
31 #include "bt-service-pan-nap-event.h"
32 #endif
33 #include "bt-service-event.h"
34 #include "bt-service-util.h"
35
36 #include "bt-service-core-adapter.h"
37 #include "bt-service-core-adapter-le.h"
38
39
40
41 /* OAL headers */
42 #include <oal-event.h>
43 #include <oal-manager.h>
44
45 static GMainLoop *main_loop;
46 static gboolean terminated = FALSE;
47 static gboolean is_initialized = FALSE;
48
49 static void __on_log_glib(const gchar *log_domain, GLogLevelFlags log_level,
50                 const gchar *msg, gpointer user_data)
51 {
52         BT_ERR_C("%s", msg);
53 }
54
55 static void __bt_release_service(void)
56 {
57         _bt_service_le_deinit();
58         _bt_deinit_hf_local_term_event_sender();
59         _bt_deinit_service_event_sender();
60         _bt_service_unregister();
61         _bt_service_cynara_deinit();
62
63         if (!TIZEN_PROFILE_TV)
64                 _bt_deinit_obex_event_receiver();
65
66 #ifdef TIZEN_FEATURE_BT_PAN_NAP
67          _bt_deinit_pan_nap_event_receiver();
68 #endif
69
70         _bt_cleanup_profiles();
71         oal_bt_deinit();
72
73         BT_DBG("Terminating the bt-service daemon");
74 }
75
76 static void __bt_sigterm_handler(int signo, siginfo_t *info, void *data)
77 {
78         BT_INFO("signal [%d] is sent by [%d]", signo, info->si_pid);
79
80         if (!TIZEN_PROFILE_TV) {
81                 int ret;
82                 ret = _bt_recover_adapter();
83                 if (ret != BLUETOOTH_ERROR_NONE)
84                         BT_ERR("_bt_recover_adapter is failed : %d", ret);
85         }
86         return;
87 }
88
89 gboolean _bt_terminate_service(gpointer user_data)
90 {
91         __bt_release_service();
92
93         terminated = TRUE;
94
95         BT_INFO_C("Terminating the bt-service daemon");
96
97         if (main_loop != NULL) {
98                 g_main_loop_quit(main_loop);
99         } else {
100                 BT_ERR("main_loop == NULL");
101                 exit(0);
102         }
103
104         return FALSE;
105 }
106
107 gboolean _bt_reliable_terminate_service(gpointer user_data)
108 {
109         _bt_deinit_proxys();
110
111         _bt_clear_request_list();
112
113         _bt_set_disabled(BLUETOOTH_ERROR_NONE);
114
115         _bt_deinit_service_event_sender();
116
117         _bt_service_unregister();
118
119         terminated = TRUE;
120
121         BT_INFO_C("### Terminating the bt-service daemon");
122
123         if (main_loop != NULL)
124                 g_main_loop_quit(main_loop);
125         else
126                 exit(0);
127
128         return FALSE;
129 }
130
131 static gboolean __bt_check_bt_service(void *data)
132 {
133         bt_status_t status = BT_DEACTIVATED;
134         bt_le_status_t le_status = BT_LE_DEACTIVATED;
135         int bt_status = VCONFKEY_BT_STATUS_OFF;
136         int bt_le_status = VCONFKEY_BT_LE_STATUS_OFF;
137         int flight_mode_deactivation = 0;
138         int bt_off_due_to_timeout = 0;
139 #if 0
140         int ps_mode_deactivation = 0;
141 #endif
142
143         if (_is_name_acquired() == FALSE) {
144                 BT_ERR("dbus name is NOT acquired yet");
145                 return TRUE;
146         }
147
148         status = _bt_adapter_get_status();
149         le_status = _bt_adapter_get_le_status();
150         BT_DBG("State: %d, LE State: %d", status, le_status);
151
152         if (TIZEN_PROFILE_TV) {
153 #if TODO_40 /* Need to add this function */
154                 if (_bt_get_enable_timer_id() == 0)
155 #endif
156                         _bt_enable_adapter();
157         } else if (!headed_plugin_info->plugin_headed_enabled) {
158                 BT_DBG("Enable adapter if headless device");
159                 _bt_enable_adapter();
160         } else {
161                 if (vconf_get_int(VCONFKEY_BT_STATUS, &bt_status) < 0)
162                         BT_DBG("no bluetooth device info, so BT was disabled at previous session");
163
164                 if (vconf_get_int(VCONFKEY_BT_LE_STATUS, &bt_le_status) < 0)
165                         BT_ERR("no bluetooth le info, so BT LE was disabled at previous session");
166
167                 if (vconf_get_int(BT_OFF_DUE_TO_FLIGHT_MODE, &flight_mode_deactivation) != 0)
168                         BT_ERR("Fail to get the flight_mode_deactivation value");
169
170 #if 0
171         if (vconf_get_int(BT_OFF_DUE_TO_POWER_SAVING_MODE, &ps_mode_deactivation) != 0)
172                 BT_ERR("Fail to get the ps_mode_deactivation value");
173 #endif
174
175                 if (vconf_get_int(BT_OFF_DUE_TO_TIMEOUT, &bt_off_due_to_timeout) != 0)
176                         BT_ERR("Fail to get BT_OFF_DUE_TO_TIMEOUT");
177
178                 BT_DBG("headed VCONF BT_STATUS:[%d] LE_STATUS:[%d] BT_OFF_DUE_TO_TIMEOUT:[%d]",
179                 bt_status, bt_le_status, bt_off_due_to_timeout);
180
181                 if (bt_off_due_to_timeout) {
182                         /* Set the vconf flag to 0 here, if BT need to be enabled
183                         bt_off_due_to_timeout variable already hold the old value */
184
185                         if (vconf_set_int(BT_OFF_DUE_TO_TIMEOUT, 0) != 0)
186                                 BT_ERR("Set vconf failed");
187                 }
188
189
190                 if ((bt_status != VCONFKEY_BT_STATUS_OFF || bt_off_due_to_timeout) &&
191                         (status == BT_DEACTIVATED)) {
192                         BT_DBG("Previous session was enabled.");
193
194                         /* Enable the BT */
195                         _bt_enable_adapter();
196                 } else if (bt_status == VCONFKEY_BT_STATUS_OFF && flight_mode_deactivation == 1) {
197                         _bt_enable_core();
198                 }
199
200                 if ((bt_le_status == VCONFKEY_BT_LE_STATUS_ON) && (le_status == BT_LE_DEACTIVATED)) {
201                         BT_DBG("Previous session was le enabled. Turn BT LE on automatically.");
202
203
204                         /* Enable the BT LE */
205                         _bt_enable_adapter_le();
206
207                 } else {
208                         status = _bt_adapter_get_status();
209                         le_status = _bt_adapter_get_le_status();
210                         BT_DBG("State: %d, LE State: %d", status, le_status);
211
212                         if ((status != BT_ACTIVATING && status != BT_ACTIVATED) &&
213                                         (le_status != BT_LE_ACTIVATING && le_status != BT_LE_ACTIVATED)) {
214                                 _bt_terminate_service(NULL);
215                         }
216                 }
217         }
218         return FALSE;
219 }
220
221 int _bt_service_initialize(void)
222 {
223         int ret;
224
225         if (is_initialized == TRUE)
226                 return BLUETOOTH_ERROR_NONE;
227
228         /* Security Initialization */
229         if (_bt_service_cynara_init() != BLUETOOTH_ERROR_NONE) {
230                 BT_ERR("Fail to init cynara");
231                 return EXIT_FAILURE;
232         }
233
234         /* Flight mode handler implemented in HAL */
235
236         /* Event sender Init */
237         ret = _bt_init_service_event_sender();
238         if (ret != BLUETOOTH_ERROR_NONE) {
239                 BT_ERR("Fail to init event sender");
240                 return ret;
241         }
242
243         ret = _bt_init_hf_local_term_event_sender();
244         if (ret != BLUETOOTH_ERROR_NONE) {
245                 BT_ERR("Fail to init core event sender");
246                 return ret;
247         }
248
249         /* Event reciever Init */
250         if (!TIZEN_PROFILE_TV) {
251                 if (_bt_init_obex_event_receiver() != BLUETOOTH_ERROR_NONE)
252                         BT_ERR("Fail to init obex event reciever");
253         }
254
255 #ifdef TIZEN_FEATURE_BT_PAN_NAP
256         /* Event reciever Init */
257         if (_bt_init_pan_nap_event_receiver() != BLUETOOTH_ERROR_NONE) {
258                 BT_ERR("Fail to init PAN NAP reciever");
259                 return 0;
260         }
261 #endif
262 #ifdef TIZEN_FEATURE_BT_IPSP
263         if (_bt_init_ipsp_receiver() != BLUETOOTH_ERROR_NONE) {
264                 BT_ERR("Fail to init ipsp reciever");
265                 return 0;
266         }
267 #endif
268         ret = _bt_service_register();
269         if (ret != BLUETOOTH_ERROR_NONE) {
270                 BT_ERR("Fail to register service");
271                 return ret;
272         }
273
274         /* BT Stack Init */
275         ret = _bt_stack_init();
276         if (ret != BLUETOOTH_ERROR_NONE) {
277                 BT_ERR("Fail to init BT Stack");
278                 return ret;
279         }
280
281         ret = _bt_service_le_init();
282         if (ret != BLUETOOTH_ERROR_NONE) {
283                 BT_ERR("Fail to init le");
284                 return ret;
285         }
286
287         _bt_init_request_id();
288
289         _bt_init_request_list();
290
291         is_initialized = TRUE;
292
293         return BLUETOOTH_ERROR_NONE;
294 }
295
296 int main(void)
297 {
298         struct sigaction sa;
299         BT_INFO_C("### Starting the bt-service daemon");
300
301         if (!TIZEN_FEATURE_BT_SUPPORTED) {
302                 BT_INFO_C("BT feature is not supported, terminate bt-service");
303                 return 0;
304         }
305
306         memset(&sa, 0, sizeof(sa));
307         sa.sa_sigaction = __bt_sigterm_handler;
308         sa.sa_flags = SA_SIGINFO;
309         sigaction(SIGINT, &sa, NULL);
310         sigaction(SIGTERM, &sa, NULL);
311
312         if (_bt_service_initialize() != BLUETOOTH_ERROR_NONE)
313                 return 0;
314
315         g_timeout_add(500, (GSourceFunc)__bt_check_bt_service, NULL);
316
317         if (terminated == TRUE) {
318                 __bt_release_service();
319                 return 0;
320         }
321
322         bluetooth_plugin_init();
323
324         g_log_set_default_handler(__on_log_glib, NULL);
325
326         main_loop = g_main_loop_new(NULL, FALSE);
327
328         g_main_loop_run(main_loop);
329         BT_DBG("g_main_loop_quit called!");
330
331         bluetooth_plugin_deinit();
332
333         if (main_loop != NULL)
334                 g_main_loop_unref(main_loop);
335
336         if (terminated == FALSE)
337                 __bt_release_service();
338
339         return 0;
340 }
341