Merge "Add the media transport interface to adaptation code" into tizen
[platform/core/connectivity/bluetooth-frwk.git] / bt-oal / oal-manager.c
1 /*
2  * Open Adaptation Layer (OAL)
3  *
4  * Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
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 <dlog.h>
22 #include <string.h>
23 #include <vconf.h>
24 #include <sys/prctl.h>
25 #include <unistd.h>
26 #include <dlfcn.h>
27
28 #include <bluetooth.h>
29
30 #include "oal-internal.h"
31 #include "oal-event.h"
32 #include <oal-hardware.h>
33
34 #define BT_HAL_LIB_NAME                 "libbluetooth.default.so"
35
36 #ifdef ARCH64
37 #define HAL_LIBRARY_PATH                "/usr/lib64"
38 #else
39 #define HAL_LIBRARY_PATH                "/usr/lib"
40 #endif
41
42 #define LIB_PATH_SIZE                   50
43 #define LIB_NAME_SIZE                   50
44
45 static const hw_module_t* module = NULL;
46 static const bt_interface_t *blued_api = NULL;
47
48 static gboolean unload_libs(gpointer data);
49 static bluetooth_device_t* load_hal_lib(void);
50 static const bt_interface_t * get_stack_interface(bluetooth_device_t* bt_device);
51 static int load(const char *libname, const struct hw_module_t **module);
52 static int unload(const struct hw_module_t *module);
53
54 oal_status_t oal_mgr_init_internal(void)
55 {
56         bluetooth_device_t* bt_device;
57
58         bt_device = load_hal_lib();
59
60         if (bt_device == NULL) {
61                 BT_ERR("HAL Library loading failed");
62                 return OAL_STATUS_INTERNAL_ERROR;
63         }
64
65         blued_api = get_stack_interface(bt_device);
66
67         if (blued_api == NULL) {
68                 BT_ERR("Stack Interface failed");
69                 return OAL_STATUS_INTERNAL_ERROR;
70         }
71
72         device_mgr_init(blued_api);
73
74         return adapter_mgr_init(blued_api);
75 }
76
77 oal_status_t oal_bt_init(oal_event_callback cb)
78 {
79         API_TRACE("Version: %s", OAL_VERSION_STR);
80         _bt_event_dispatcher_init(cb);
81         return OAL_STATUS_PENDING;
82 }
83
84 void oal_bt_deinit(void)
85 {
86         BT_INFO("+");
87         blued_api->cleanup();
88         blued_api = NULL;
89         unload_libs(NULL);
90         BT_INFO("-");
91 }
92
93 void oal_mgr_cleanup(void)
94 {
95         /*TODO Unsupported */
96 }
97
98 void oal_mgr_stack_reload(void)
99 {
100         /*TODO Unsupported */
101 }
102
103 gboolean oal_lib_init(gpointer data)
104 {
105         oal_status_t ret;
106         BT_INFO("Going to check Chip Attachment...");
107
108         if (hw_is_module_ready() == OAL_STATUS_SUCCESS) {
109                 if (hw_get_chip_type() == BT_CHIP_TYPE_UNKNOWN) {
110                         BT_DBG("Chip Type Unknown, starting timer...");
111                 } else {
112                         ret = oal_mgr_init_internal();
113                         if (OAL_STATUS_SUCCESS == ret)
114                                 send_event(OAL_EVENT_OAL_INITIALISED_SUCCESS, NULL, 0);
115                         else
116                                 send_event(OAL_EVENT_OAL_INITIALISED_FAILED, NULL, 0);
117                 }
118         } else {
119                 BT_DBG("Chip Not Yet Ready, try again...");
120                 return FALSE;
121         }
122         return TRUE;
123 }
124
125 static gboolean unload_libs(gpointer data)
126 {
127         unload((hw_module_t const*)module);
128         module = NULL;
129         return FALSE;
130 }
131
132 static bluetooth_device_t* load_hal_lib(void)
133 {
134         int err = 0;
135         hw_device_t* device;
136         bluetooth_device_t* bt_device = NULL;
137
138         BT_DBG("Loading HAL lib");
139         if (module == NULL) {
140                 switch (hw_get_chip_type()) {
141                 case BT_CHIP_TYPE_PLATFORM:
142                         BT_INFO("Tizen Platform BT chip: Tizen Platform HAL library will be loaded");
143                         err = load(BT_HAL_LIB_NAME, (const hw_module_t **)&module);
144                         break;
145                 default:
146                         BT_WARN("Chip type Unknown, So no Library Load");
147                         err = -EINVAL;
148                         break;
149                 }
150         } else
151                 BT_WARN("Lib already loaded");
152
153         if (err == 0) {
154                 err = module->methods->open(module, BT_HARDWARE_MODULE_ID, &device);
155                 if (err == 0) {
156                         bt_device = (bluetooth_device_t *)device;
157                         BT_INFO("HAL Library loaded successfullly");
158                 }
159         }
160
161         if (err != 0)
162                 BT_INFO("%d", err);
163         return bt_device;
164 }
165
166 static const bt_interface_t * get_stack_interface(bluetooth_device_t* bt_device)
167 {
168         const bt_interface_t *blued_api = NULL;
169         /* Get the Bluetooth interface */
170         blued_api = bt_device->get_bluetooth_interface();
171
172         return blued_api;
173 }
174
175 static int load(const char *libname, const struct hw_module_t **module)
176 {
177         int status = -ENOENT;
178         char libpath[LIB_PATH_SIZE];
179         void *handle;
180         struct hw_module_t *hmi;
181
182         OAL_CHECK_PARAMETER(libname, return);
183
184         snprintf(libpath, sizeof(libpath), "%s/%s", HAL_LIBRARY_PATH, libname);
185         BT_INFO("Loading Library: %s", libpath);
186
187         /*
188          * load the symbols resolving undefined symbols before
189          * dlopen returns. Since RTLD_GLOBAL is not or'd in with
190          * RTLD_NOW the external symbols will not be global
191          */
192
193         prctl(666, "[bt-service] Load Lib S", strlen("[bt-service] Load Lib S"));
194
195         handle = dlopen(libpath, RTLD_NOW);
196         if (handle == NULL) {
197                 char const *err_str = dlerror();
198                 BT_ERR("load: module=%s\n%s", libpath, err_str ? err_str : "unknown");
199                 status = -EINVAL;
200                 goto done;
201         }
202
203         prctl(666, "[bt-service] Load Lib E", strlen("[bt-service] Load Lib E"));
204
205         /* Get the address of the struct hal_module_info. */
206         const char *sym = HAL_MODULE_INFO_SYM_AS_STR;
207         hmi = (struct hw_module_t *)dlsym(handle, sym);
208         if (hmi == NULL) {
209                 BT_ERR("load: couldn't find symbol %s", sym);
210                 status = -EINVAL;
211                 goto done;
212         }
213
214         /* Check that the id matches */
215         if (strcmp(BT_HARDWARE_MODULE_ID, hmi->id) != 0) {
216                 BT_ERR("load: id=%s != hmi->id=%s", BT_HARDWARE_MODULE_ID, hmi->id);
217                 status = -EINVAL;
218                 goto done;
219         }
220
221         hmi->dso = handle;
222         status = 0;
223
224 done:
225         if (status != 0) {
226                 hmi = NULL;
227                 if (handle != NULL) {
228                         dlclose(handle);
229                         handle = NULL;
230                 }
231         } else {
232                 BT_DBG("loaded HAL id=%s libpath=%s hmi=%p handle=%p",
233                                 BT_HARDWARE_MODULE_ID, libpath, hmi, handle);
234         }
235         *module = hmi;
236         return status;
237 }
238
239 static int unload(const struct hw_module_t *module)
240 {
241         int ret = 1;
242
243         if (module)
244                 ret = dlclose(module->dso);
245
246         if (ret != 0)
247                 BT_ERR("dlclose failed:%d", ret);
248         BT_WARN("Issues with dl: %s\n", dlerror());
249         return ret;
250 }
251
252 void oal_set_debug_mode(gboolean mode)
253 {
254         /*TODO Unsupported */
255 }
256
257 gboolean oal_get_debug_mode(void)
258 {
259         /*TODO Unsupported */
260         return FALSE;
261 }