3f85ab9465f1cc97eb0a9922a4823caa0c1d55a7
[platform/core/connectivity/bluetooth-frwk.git] / bt-service / bt-service-main.c
1 /*
2  * Bluetooth-frwk
3  *
4  * Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact:  Hocheol Seo <hocheol.seo@samsung.com>
7  *               Girishashok Joshi <girish.joshi@samsung.com>
8  *               Chanyeol Park <chanyeol.park@samsung.com>
9  *
10  * Licensed under the Apache License, Version 2.0 (the "License");
11  * you may not use this file except in compliance with the License.
12  * You may obtain a copy of the License at
13  *
14  *              http://www.apache.org/licenses/LICENSE-2.0
15  *
16  * Unless required by applicable law or agreed to in writing, software
17  * distributed under the License is distributed on an "AS IS" BASIS,
18  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  * See the License for the specific language governing permissions and
20  * limitations under the License.
21  *
22  */
23
24 //#include <dbus/dbus-glib.h>
25 #include <glib.h>
26 #include <dlog.h>
27 #include <string.h>
28 #include <vconf.h>
29
30 #ifndef TIZEN_WEARABLE
31 #include <privilege-control.h>
32 #endif
33 #include <bundle.h>
34 #if 0
35 #include <eventsystem.h>
36 #endif
37
38 #include "bt-internal-types.h"
39 #include "bt-service-common.h"
40 #include "bt-service-event.h"
41 #include "bt-service-main.h"
42 #include "bt-service-util.h"
43 #include "bt-request-handler.h"
44 #include "bt-service-adapter.h"
45 #include "bt-service-adapter-le.h"
46
47 static GMainLoop *main_loop;
48 static gboolean terminated = FALSE;
49
50 static void __bt_release_service(void)
51 {
52         _bt_service_unregister_vconf_handler();
53
54         _bt_service_adapter_le_deinit();
55         _bt_deinit_service_event_sender();
56         _bt_deinit_hf_local_term_event_sender();
57         _bt_deinit_service_event_receiver();
58
59         _bt_service_unregister();
60
61         _bt_deinit_proxys();
62
63         _bt_clear_request_list();
64
65         _bt_service_cynara_deinit();
66
67         BT_DBG("Terminating the bt-service daemon");
68 }
69
70 static void __bt_sigterm_handler(int signo, siginfo_t *info, void *data)
71 {
72         int ret;
73
74         BT_INFO("signal [%d] is sent by [%d]", signo, info->si_pid);
75
76 #ifndef TIZEN_TV
77         ret = _bt_recover_adapter();
78         if (ret != BLUETOOTH_ERROR_NONE)
79                 BT_ERR("_bt_recover_adapter is failed : %d", ret);
80 #endif
81         return;
82 }
83
84 gboolean _bt_terminate_service(gpointer user_data)
85 {
86         int bt_status = VCONFKEY_BT_STATUS_OFF;
87
88         if (vconf_get_int(VCONFKEY_BT_STATUS, &bt_status) < 0) {
89                 BT_ERR("no bluetooth device info, so BT was disabled at previous session");
90         } else {
91                 if (bt_status != VCONFKEY_BT_STATUS_OFF) {
92                         if(vconf_set_int(VCONFKEY_BT_STATUS,
93                                         VCONFKEY_BT_STATUS_OFF) != 0)
94                                 BT_ERR("Set vconf failed\n");
95 #if 0
96                         if (_bt_eventsystem_set_value(SYS_EVENT_BT_STATE, EVT_KEY_BT_STATE,
97                                                         EVT_VAL_BT_OFF) != ES_R_OK)
98                                 BT_ERR("Fail to set value");
99 #endif
100                 }
101         }
102
103         if (vconf_get_int(VCONFKEY_BT_LE_STATUS, &bt_status) < 0) {
104                 BT_ERR("no bluetooth device info, so BT was disabled at previous session");
105         } else {
106                 if (bt_status != VCONFKEY_BT_LE_STATUS_OFF) {
107                         if(vconf_set_int(VCONFKEY_BT_LE_STATUS,
108                                         VCONFKEY_BT_LE_STATUS_OFF) != 0)
109                                 BT_ERR("Set vconf failed\n");
110 #if 0
111                         if (_bt_eventsystem_set_value(SYS_EVENT_BT_STATE, EVT_KEY_BT_LE_STATE,
112                                                         EVT_VAL_BT_LE_OFF) != ES_R_OK)
113                                 BT_ERR("Fail to set value");
114 #endif
115                 }
116         }
117
118         if (main_loop != NULL) {
119                 g_main_loop_quit(main_loop);
120         } else {
121                 BT_ERR("main_loop == NULL");
122                 __bt_release_service();
123                 terminated = TRUE;
124                 exit(0);
125         }
126
127         return FALSE;
128 }
129
130 gboolean _bt_reliable_terminate_service(gpointer user_data)
131 {
132         _bt_deinit_service_event_receiver();
133
134         _bt_deinit_proxys();
135
136         _bt_clear_request_list();
137
138         _bt_set_disabled(BLUETOOTH_ERROR_NONE);
139
140         _bt_service_adapter_le_deinit();
141         _bt_deinit_service_event_sender();
142         _bt_deinit_hf_local_term_event_sender();
143
144         _bt_service_unregister();
145
146         terminated = TRUE;
147
148         BT_INFO_C("Terminating the bt-service daemon");
149
150         if (main_loop != NULL) {
151                 g_main_loop_quit(main_loop);
152         } else {
153                 exit(0);
154         }
155
156         return FALSE;
157 }
158
159 static gboolean __bt_check_bt_service(void *data)
160 {
161         int bt_status = VCONFKEY_BT_STATUS_OFF;
162         int bt_le_status = 0;
163         bt_status_t status = BT_DEACTIVATED;
164         bt_le_status_t le_status = BT_LE_DEACTIVATED;
165         int flight_mode_deactivation = 0;
166         int bt_off_due_to_timeout = 0;
167 #if 0
168         int ps_mode_deactivation = 0;
169 #endif
170         status = _bt_adapter_get_status();
171         le_status = _bt_adapter_get_le_status();
172         BT_DBG("State: %d, LE State: %d", status, le_status);
173
174 #ifdef TIZEN_TV
175         if (_bt_get_enable_timer_id() == 0)
176                 _bt_enable_adapter();
177 #else
178         if (vconf_get_int(VCONFKEY_BT_STATUS, &bt_status) < 0) {
179                 BT_DBG("no bluetooth device info, so BT was disabled at previous session");
180         }
181
182         if (vconf_get_int(VCONFKEY_BT_LE_STATUS, &bt_le_status) < 0) {
183                 BT_ERR("no bluetooth le info, so BT LE was disabled at previous session");
184         }
185
186         if (vconf_get_int(BT_OFF_DUE_TO_FLIGHT_MODE, &flight_mode_deactivation) != 0)
187                 BT_ERR("Fail to get the flight_mode_deactivation value");
188
189 #if 0
190         if (vconf_get_int(BT_OFF_DUE_TO_POWER_SAVING_MODE, &ps_mode_deactivation) != 0)
191                 BT_ERR("Fail to get the ps_mode_deactivation value");
192 #endif
193
194         if (vconf_get_int(BT_OFF_DUE_TO_TIMEOUT, &bt_off_due_to_timeout) != 0)
195                 BT_ERR("Fail to get BT_OFF_DUE_TO_TIMEOUT");
196
197         if ((bt_status != VCONFKEY_BT_STATUS_OFF || bt_off_due_to_timeout) &&
198                 (status == BT_DEACTIVATED)) {
199                 BT_DBG("Previous session was enabled.");
200
201                 /* Enable the BT */
202                 _bt_enable_adapter();
203         } else if (bt_status == VCONFKEY_BT_STATUS_OFF && flight_mode_deactivation == 1) {
204                 _bt_enable_core();
205         }
206
207         if ((bt_le_status == 1) && (le_status == BT_LE_DEACTIVATED)) {
208                 BT_DBG("Previous session was le enabled. Turn BT LE on automatically.");
209
210                 /* Enable the BT LE */
211                 _bt_enable_adapter_le();
212         } else {
213                 status = _bt_adapter_get_status();
214                 le_status = _bt_adapter_get_le_status();
215                 BT_DBG("State: %d, LE State: %d", status, le_status);
216
217                 if ((status != BT_ACTIVATING && status != BT_ACTIVATED) &&
218                                 (le_status != BT_LE_ACTIVATING && le_status != BT_LE_ACTIVATED)){
219                 }
220         }
221 #endif
222         return FALSE;
223 }
224
225 int main(void)
226 {
227         struct sigaction sa;
228         BT_INFO_C("Starting the bt-service daemon");
229
230         memset(&sa, 0, sizeof(sa));
231         sa.sa_sigaction = __bt_sigterm_handler;
232         sa.sa_flags = SA_SIGINFO;
233         sigaction(SIGINT, &sa, NULL);
234         sigaction(SIGTERM, &sa, NULL);
235
236         g_type_init();
237
238         /* Security Initialization */
239         if (_bt_service_cynara_init() != BLUETOOTH_ERROR_NONE) {
240                 BT_ERR("Fail to init cynara");
241                 return EXIT_FAILURE;
242         }
243 /* TODO: The below privilege check doesn't work properly. It should be resolved later. */
244 #if 0
245 #ifndef TIZEN_WEARABLE
246         if (perm_app_set_privilege("bluetooth-frwk-service", NULL, NULL) !=
247                 PC_OPERATION_SUCCESS)
248                 BT_ERR("Failed to set app privilege");
249 #endif
250 #endif
251         /* Event reciever Init */
252         if (_bt_init_service_event_receiver() != BLUETOOTH_ERROR_NONE) {
253                 BT_ERR("Fail to init event reciever");
254                 return 0;
255         }
256
257         /* Event sender Init */
258         if (_bt_init_service_event_sender() != BLUETOOTH_ERROR_NONE) {
259                 BT_ERR("Fail to init event sender");
260                 return 0;
261         }
262
263         if (_bt_init_hf_local_term_event_sender() != BLUETOOTH_ERROR_NONE) {
264                 BT_ERR("Fail to init core event sender");
265                 return 0;
266         }
267
268         if (_bt_service_register() != BLUETOOTH_ERROR_NONE) {
269                 BT_ERR("Fail to register service");
270                 return 0;
271         }
272
273         if (_bt_service_adapter_le_init() != BLUETOOTH_ERROR_NONE) {
274                 BT_ERR("Fail to init le");
275                 return 0;
276         }
277
278         _bt_init_request_id();
279
280         _bt_init_request_list();
281
282         g_timeout_add(500, (GSourceFunc)__bt_check_bt_service, NULL);
283
284         if (terminated == TRUE) {
285                 __bt_release_service();
286                 return 0;
287         }
288
289         main_loop = g_main_loop_new(NULL, FALSE);
290
291         g_main_loop_run(main_loop);
292         BT_DBG("g_main_loop_quit called!");
293
294         if (main_loop != NULL) {
295                 g_main_loop_unref(main_loop);
296         }
297
298         if (terminated == FALSE)
299                 __bt_release_service();
300
301         return 0;
302 }
303