Fix osp_server unregister issue
[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 #ifdef TIZEN_FEATURE_BT_FACTORY_MODE
23 #include <bincfg.h>
24 #endif
25
26 #include <bundle.h>
27 #include <eventsystem.h>
28
29 #include "bt-internal-types.h"
30 #include "bt-service-common.h"
31 #include "bt-service-audio-common.h"
32 #include "bt-request-handler.h"
33 #include "bt-service-obex-event.h"
34 #ifdef TIZEN_FEATURE_BT_PAN_NAP
35 #include "bt-service-pan-nap-event.h"
36 #endif
37 #include "bt-service-event.h"
38 #include "bt-service-util.h"
39
40 #include "bt-service-core-adapter.h"
41 #include "bt-service-core-adapter-le.h"
42
43
44
45 /* OAL headers */
46 #include <oal-event.h>
47 #include <oal-manager.h>
48
49 static GMainLoop *main_loop;
50 static gboolean terminated = FALSE;
51 static gboolean is_initialized = FALSE;
52
53 static void __on_log_glib(const gchar *log_domain, GLogLevelFlags log_level,
54                 const gchar *msg, gpointer user_data)
55 {
56         BT_ERR_C("%s", msg);
57 }
58
59 static void __bt_release_service(void)
60 {
61 #ifdef TIZEN_FEATURE_BT_AVC_TARGET
62         _bt_audio_deinit_absolute_volume_control();
63 #endif
64
65         _bt_service_le_deinit();
66         _bt_deinit_hf_local_term_event_sender();
67         _bt_deinit_service_event_sender();
68         _bt_service_unregister();
69         _bt_service_cynara_deinit();
70
71         if (!TIZEN_PROFILE_TV)
72                 _bt_deinit_obex_event_receiver();
73
74 #ifdef TIZEN_FEATURE_BT_PAN_NAP
75          _bt_deinit_pan_nap_event_receiver();
76 #endif
77
78         _bt_cleanup_profiles();
79         oal_bt_deinit();
80
81         BT_DBG("Terminating the bt-service daemon");
82 }
83
84 static void __bt_sigterm_handler(int signo, siginfo_t *info, void *data)
85 {
86         BT_INFO("signal [%d] is sent by [%d]", signo, info->si_pid);
87
88         if (!TIZEN_PROFILE_TV) {
89                 int ret;
90                 ret = _bt_recover_adapter();
91                 if (ret != BLUETOOTH_ERROR_NONE)
92                         BT_ERR("_bt_recover_adapter is failed : %d", ret);
93         }
94         return;
95 }
96
97 gboolean _bt_terminate_service(gpointer user_data)
98 {
99         __bt_release_service();
100
101         terminated = TRUE;
102
103         BT_INFO_C("Terminating the bt-service daemon");
104
105         if (main_loop != NULL) {
106                 g_main_loop_quit(main_loop);
107         } else {
108                 BT_ERR("main_loop == NULL");
109                 exit(0);
110         }
111
112         return FALSE;
113 }
114
115 static gboolean __bt_main_loop_quit_idle_cb(gpointer user_data)
116 {
117         _bt_deinit_proxys();
118         _bt_deinit_osp_server();
119
120         _bt_clear_request_list();
121
122         _bt_set_disabled(BLUETOOTH_ERROR_NONE);
123
124         _bt_deinit_service_event_sender();
125
126         terminated = TRUE;
127
128         BT_INFO_C("Terminating the bt-service daemon");
129
130         if (main_loop != NULL) {
131                 g_main_loop_quit(main_loop);
132         } else {
133                 BT_ERR("main_loop == NULL");
134                 exit(0);
135         }
136
137         return FALSE;
138 }
139
140 gboolean _bt_reliable_terminate_service(gpointer user_data)
141 {
142         _bt_service_unregister();
143
144         /* Handle remaining pending requests finally by using g_idle_add()
145            again without well-known name. */
146         g_idle_add((GSourceFunc)__bt_main_loop_quit_idle_cb, NULL);
147
148         return FALSE;
149 }
150
151 static void __bt_check_factory_mode(void)
152 {
153 #ifdef TIZEN_FEATURE_BT_FACTORY_MODE
154         int factorymode_status = 0;
155         /* BT should not be activated automatically in factory binary */
156         /* factorymode_status :: 0 - normal binary, 1 - factory binary */
157         factorymode_status = bincfg_is_factory_binary();
158         if (factorymode_status != 0) {
159                 BT_INFO("factory mode [%d]", factorymode_status);
160                 if(vconf_set_int(VCONFKEY_BT_STATUS, VCONFKEY_BT_STATUS_OFF) != 0)
161                         BT_ERR("Set vconf failed");
162                 if(vconf_set_int(VCONFKEY_BT_LE_STATUS, VCONFKEY_BT_LE_STATUS_OFF) != 0)
163                         BT_ERR("Set vconf failed");
164         }
165 #endif
166 }
167
168 static gboolean __bt_check_bt_service(void *data)
169 {
170         bt_status_t status = BT_DEACTIVATED;
171         bt_le_status_t le_status = BT_LE_DEACTIVATED;
172         int bt_status = VCONFKEY_BT_STATUS_OFF;
173         int bt_le_status = VCONFKEY_BT_LE_STATUS_OFF;
174         int flight_mode_deactivation = 0;
175         int bt_off_due_to_timeout = 0;
176 #if 0
177         int ps_mode_deactivation = 0;
178 #endif
179
180         if (_is_name_acquired() == FALSE) {
181                 BT_ERR("dbus name is NOT acquired yet");
182                 return TRUE;
183         }
184
185         status = _bt_adapter_get_status();
186         le_status = _bt_adapter_get_le_status();
187         BT_DBG("State: %d, LE State: %d", status, le_status);
188
189         if (TIZEN_PROFILE_TV) {
190 #if TODO_40 /* Need to add this function */
191                 if (_bt_get_enable_timer_id() == 0)
192 #endif
193                         _bt_enable_adapter();
194         } else if (!headed_plugin_info->plugin_headed_enabled) {
195                 BT_DBG("Enable adapter if headless device");
196                 _bt_enable_adapter();
197         } else {
198                 if (vconf_get_int(VCONFKEY_BT_STATUS, &bt_status) < 0)
199                         BT_DBG("no bluetooth device info, so BT was disabled at previous session");
200
201                 if (vconf_get_int(VCONFKEY_BT_LE_STATUS, &bt_le_status) < 0)
202                         BT_ERR("no bluetooth le info, so BT LE was disabled at previous session");
203
204                 if (vconf_get_int(BT_OFF_DUE_TO_FLIGHT_MODE, &flight_mode_deactivation) != 0)
205                         BT_ERR("Fail to get the flight_mode_deactivation value");
206
207 #if 0
208         if (vconf_get_int(BT_OFF_DUE_TO_POWER_SAVING_MODE, &ps_mode_deactivation) != 0)
209                 BT_ERR("Fail to get the ps_mode_deactivation value");
210 #endif
211
212                 if (vconf_get_int(BT_OFF_DUE_TO_TIMEOUT, &bt_off_due_to_timeout) != 0)
213                         BT_ERR("Fail to get BT_OFF_DUE_TO_TIMEOUT");
214
215                 BT_DBG("headed VCONF BT_STATUS:[%d] LE_STATUS:[%d] BT_OFF_DUE_TO_TIMEOUT:[%d]",
216                 bt_status, bt_le_status, bt_off_due_to_timeout);
217
218                 if (bt_off_due_to_timeout) {
219                         /* Set the vconf flag to 0 here, if BT need to be enabled
220                         bt_off_due_to_timeout variable already hold the old value */
221
222                         if (vconf_set_int(BT_OFF_DUE_TO_TIMEOUT, 0) != 0)
223                                 BT_ERR("Set vconf failed");
224                 }
225
226
227                 if ((bt_status != VCONFKEY_BT_STATUS_OFF || bt_off_due_to_timeout) &&
228                         (status == BT_DEACTIVATED)) {
229                         BT_DBG("Previous session was enabled.");
230
231                         /* Enable the BT */
232                         _bt_enable_adapter();
233                 }
234
235                 if ((bt_le_status == VCONFKEY_BT_LE_STATUS_ON) && (le_status == BT_LE_DEACTIVATED)) {
236                         BT_DBG("Previous session was le enabled. Turn BT LE on automatically.");
237
238
239                         /* Enable the BT LE */
240                         _bt_enable_adapter_le();
241
242                 } else {
243                         status = _bt_adapter_get_status();
244                         le_status = _bt_adapter_get_le_status();
245                         BT_DBG("State: %d, LE State: %d", status, le_status);
246
247                         if ((status != BT_ACTIVATING && status != BT_ACTIVATED) &&
248                                         (le_status != BT_LE_ACTIVATING && le_status != BT_LE_ACTIVATED)) {
249                                 _bt_terminate_service(NULL);
250                         }
251                 }
252         }
253         return FALSE;
254 }
255
256 int _bt_service_initialize(void)
257 {
258         int ret;
259
260         if (is_initialized == TRUE)
261                 return BLUETOOTH_ERROR_NONE;
262
263         /* Security Initialization */
264         if (_bt_service_cynara_init() != BLUETOOTH_ERROR_NONE) {
265                 BT_ERR("Fail to init cynara");
266                 return EXIT_FAILURE;
267         }
268
269         /* Flight mode handler */
270         _bt_service_register_vconf_handler();
271
272         /* Event sender Init */
273         ret = _bt_init_service_event_sender();
274         if (ret != BLUETOOTH_ERROR_NONE) {
275                 BT_ERR("Fail to init event sender");
276                 return ret;
277         }
278
279         ret = _bt_init_hf_local_term_event_sender();
280         if (ret != BLUETOOTH_ERROR_NONE) {
281                 BT_ERR("Fail to init core event sender");
282                 return ret;
283         }
284
285         /* Event reciever Init */
286         if (!TIZEN_PROFILE_TV) {
287                 if (_bt_init_obex_event_receiver() != BLUETOOTH_ERROR_NONE)
288                         BT_ERR("Fail to init obex event reciever");
289         }
290
291 #ifdef TIZEN_FEATURE_BT_PAN_NAP
292         /* Event reciever Init */
293         if (_bt_init_pan_nap_event_receiver() != BLUETOOTH_ERROR_NONE) {
294                 BT_ERR("Fail to init PAN NAP reciever");
295                 return 0;
296         }
297 #endif
298 #ifdef TIZEN_FEATURE_BT_IPSP
299         if (_bt_init_ipsp_receiver() != BLUETOOTH_ERROR_NONE) {
300                 BT_ERR("Fail to init ipsp reciever");
301                 return 0;
302         }
303 #endif
304         ret = _bt_service_register();
305         if (ret != BLUETOOTH_ERROR_NONE) {
306                 BT_ERR("Fail to register service");
307                 return ret;
308         }
309
310         /* BT Stack Init */
311         ret = _bt_stack_init();
312         if (ret != BLUETOOTH_ERROR_NONE) {
313                 BT_ERR("Fail to init BT Stack");
314                 return ret;
315         }
316
317         ret = _bt_service_le_init();
318         if (ret != BLUETOOTH_ERROR_NONE) {
319                 BT_ERR("Fail to init le");
320                 return ret;
321         }
322
323         _bt_init_request_id();
324
325         _bt_init_request_list();
326
327 #ifdef TIZEN_FEATURE_BT_AVC_TARGET
328         ret = _bt_audio_init_absolute_volume_control();
329         if (ret != BLUETOOTH_ERROR_NONE)
330                 BT_ERR("Fail to init AVC");
331 #endif
332
333         is_initialized = TRUE;
334
335         return BLUETOOTH_ERROR_NONE;
336 }
337
338 int main(void)
339 {
340         struct sigaction sa;
341         BT_INFO_C("### Starting the bt-service daemon");
342
343         if (!TIZEN_FEATURE_BT_SUPPORTED) {
344                 BT_INFO_C("BT feature is not supported, terminate bt-service");
345                 return 0;
346         }
347
348         memset(&sa, 0, sizeof(sa));
349         sa.sa_sigaction = __bt_sigterm_handler;
350         sa.sa_flags = SA_SIGINFO;
351         sigaction(SIGINT, &sa, NULL);
352         sigaction(SIGTERM, &sa, NULL);
353
354         __bt_check_factory_mode();
355
356         if (_bt_service_initialize() != BLUETOOTH_ERROR_NONE)
357                 return 0;
358
359         g_timeout_add(500, (GSourceFunc)__bt_check_bt_service, NULL);
360
361         if (terminated == TRUE) {
362                 __bt_release_service();
363                 return 0;
364         }
365
366         bluetooth_plugin_init();
367
368         g_log_set_default_handler(__on_log_glib, NULL);
369
370         main_loop = g_main_loop_new(NULL, FALSE);
371
372         g_main_loop_run(main_loop);
373         BT_DBG("g_main_loop_quit called!");
374
375         bluetooth_plugin_deinit();
376
377         _bt_service_unref_connection();
378
379         if (main_loop != NULL)
380                 g_main_loop_unref(main_loop);
381
382         if (terminated == FALSE)
383                 __bt_release_service();
384
385         return 0;
386 }
387