Merge "Implement get_att_mtu logic in hal gatt client" into tizen
[platform/core/connectivity/bluetooth-frwk.git] / bt-service-adaptation / services / gatt / bt-service-gatt.c
1 /*
2  * Bluetooth-frwk
3  *
4  * Copyright (c) 2016-2017 Samsung Electronics Co., Ltd.
5  *
6  * Contact: Anupam Roy (anupam.r@samsung.com)
7  *
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *              http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  *
20  */
21 #include <glib.h>
22 #include <dlog.h>
23 #include "bt-service-common.h"
24 #include "bt-service-core-adapter.h"
25 #include "bt-service-event-receiver.h"
26 #include "bt-request-handler.h"
27 #include "bluetooth-api.h"
28
29 #include "bluetooth-api.h"
30 #include "bt-internal-types.h"
31 #include "bt-service-util.h"
32 #include "bt-service-common.h"
33 #include "bt-service-event.h"
34
35 #include "bt-internal-types.h"
36 #include "bt-service-gatt.h"
37 #include "bt-service-gatt.h"
38 #include "bt-service-core-device.h"
39 #include "bt-service-core-adapter-le.h"
40 #ifdef TIZEN_GATT_CLIENT
41 #include "bluetooth-gatt-client-api.h"
42 #endif
43
44 #include <oal-hardware.h>
45 #include <oal-manager.h>
46 #include <oal-event.h>
47 #include <oal-adapter-mgr.h>
48 #include <oal-device-mgr.h>
49 #include <oal-gatt.h>
50
51 #define BT_GATT_TRANSPORT_LE 0
52 #define BT_GATT_TRANSPORT_BR_EDR 1
53 #define BT_GATT_TRANSPORT_LE_BR_EDR 2
54 #define BT_UUID_STRING_MAX 64
55 #define BT_SENDER_MAX_LENGTH 50
56 #define MAX_APPS_SUPPORTED 11 /* Slot 0 is not used */
57 #define BT_DEFAULT_ATT_MTU 23
58
59 #ifdef TIZEN_GATT_CLIENT
60 #define NUM_UUID 20
61 #else
62 #define NUM_UUID 10
63 #endif
64
65
66 #define UUID_MAX_LEN 50
67
68
69 #define BDADDR_ANY   (&(bluetooth_device_address_t) {{0, 0, 0, 0, 0, 0} })
70
71 #ifdef TIZEN_GATT_CLIENT
72 char uuid_list[NUM_UUID][BT_UUID_STRING_MAX] = {"0000b00b-0000-0000-f065-080080fa49b5", /* Used by BLEAPP */
73         "0000b00b-1111-1111-0123-456789ab0cd2", /* Used by BLEAPP */
74         "0000b00b-2222-1111-0123-456789ab0cd2",
75         "0000b00b-3333-1111-0123-456789ab0cd2",
76         "0000b00b-4444-1111-0123-456789ab0cd2",
77         "0000b00b-5555-1111-0123-456789ab0cd2",
78         "0000b00b-6666-1111-0123-456789ab0cd2",
79         "0000b00b-7777-1111-0123-456789ab0cd2",
80         "0000b00b-8888-1111-0123-456789ab0cd2",
81         "0000b00b-9999-1111-0123-456789ab0cd2",
82         "0000b00b-aaaa-1111-0123-456789ab0cd2",
83         "0000b00b-bbbb-1111-0123-456789ab0cd2",
84         "0000b00b-cccc-1111-0123-456789ab0cd2",
85         "0000b00b-dddd-1111-0123-456789ab0cd2",
86         "0000b00b-eeee-1111-0123-456789ab0cd2",
87         "0000b00b-ffff-1111-0123-456789ab0cd2",
88         "0000b00c-0000-1111-0123-456789ab0cd2",
89         "0000b00c-1111-1111-0123-456789ab0cd2",
90         "0000b00c-2222-1111-0123-456789ab0cd2",
91         "0000b00c-3333-1111-0123-456789ab0cd2"};
92 #else
93 char uuid_list[NUM_UUID][BT_UUID_STRING_MAX] = {"0000b00b-0000-0000-f065-080080fa49b5", /* Used by BLEAPP */
94         "0000b00b-1111-1111-0123-456789ab0cd2", /* Used by BLEAPP */
95         "0000b00b-2222-1111-0123-456789ab0cd2",
96         "0000b00b-3333-1111-0123-456789ab0cd2",
97         "0000b00b-4444-1111-0123-456789ab0cd2",
98         "0000b00b-5555-1111-0123-456789ab0cd2",
99         "0000b00b-6666-1111-0123-456789ab0cd2",
100         "0000b00b-7777-1111-0123-456789ab0cd2",
101         "0000b00b-8888-1111-0123-456789ab0cd2",
102         "0000b00b-9999-1111-0123-456789ab0cd2"};
103 #endif
104
105 #ifdef TIZEN_GATT_CLIENT
106 /* Reserved GATT client Instance UUID. This is used only internally by bt-service */
107 #define DEFAULT_GATT_CLIENT_UUID "0000a00a-1111-1111-0123-456789abcdef"
108
109 static int gatt_default_client = -1;
110
111 typedef struct {
112         gboolean is_registered;
113         bluetooth_device_address_t addr;
114         unsigned char svc_uuid[BLUETOOTH_UUID_HEX_MAX_LEN];
115         int svc_inst;
116         unsigned char char_uuid[BLUETOOTH_UUID_HEX_MAX_LEN];
117         int char_inst;
118 } bt_gatt_notif_reg_info_t;
119
120 struct gatt_out_conn_info_t {
121         int client_id;                                   /* This value unique identifies a GATT Client instance */
122         char *addr;                                      /* Remote GATT Server address */
123 };
124
125 /* Linked List of outgoing gatt connection list
126    Note: This is valid only for local GATT client  */
127 static GSList *outgoing_gatt_conn_list = NULL;
128
129 /* GATT Server Info(Local Client) List Structure */
130 struct gatt_server_info_t {
131         int connection_id;                               /* This value will uniquely identify a GATT client-server connection */
132         int client_id;                                   /* This value unique identifies a GATT Client instance */
133         char *addr;                                      /* Remote GATT Server address */
134 };
135
136 struct gatt_client_info_t {
137         int connection_id;                               /* This value will uniquely identify a GATT client-server connection */
138         int instance_id;                                 /* This value unique identifies a GATT server instance */
139         char *addr;                                      /* Remote GATT client address */
140 };
141
142 /* TODO:
143  * Remove this feature if code is verified
144  * Remove gatt_client/server_info_t and use gatt_conn_info_t
145  * Remove gatt_client/server_info_list and use gatt_conn_info_list
146  */
147 #define __INTEGRATE_GATT_INFO__
148 #ifndef __INTEGRATE_GATT_INFO__
149 /* Linked List of connected Remote GATT Servers */
150 static GSList *gatt_server_info_list = NULL;
151 /* Linked List of connected Remote GATT clients */
152 static GSList *gatt_client_info_list = NULL;
153 #else
154 /* GATT Connection Info List Structure */
155 struct gatt_conn_info_t {
156         char *addr;        /* Remote GATT address */
157         int connection_id; /* This value will uniquely identify a GATT client-server connection */
158         int client_id;     /* This value unique identifies a GATT Client instance */
159         int instance_id;   /* This value unique identifies a GATT Server instance */
160 };
161
162 /* Linked List of connected Remote GATT info */
163 static GSList *gatt_conn_info_list = NULL;
164 #define gatt_server_info_t gatt_conn_info_t
165 #define gatt_client_info_t gatt_conn_info_t
166 #define gatt_server_info_list gatt_conn_info_list
167 #define gatt_client_info_list gatt_conn_info_list
168 #endif
169
170 typedef struct {
171         gboolean is_changed;
172         unsigned char uuid[BLUETOOTH_UUID_HEX_MAX_LEN]; /* If any service added */
173 } bt_gatt_svc_changed_info_t;
174
175
176 typedef struct {
177         int conn_id;
178         //      bluetooth_device_address_t address; /* Remote BLE Device Address */
179         GSList *services;                   /* List of all services of above remote device */
180         int count;                          /* Number of services browsed from remote device */
181         bt_gatt_svc_changed_info_t info;
182 } bt_gatt_service_info_list_t;
183
184 typedef struct {
185         unsigned char uuid[BLUETOOTH_UUID_HEX_MAX_LEN];
186         int inst_id;
187         int is_primary;
188         GSList *chars;
189         GSList *included_svcs;
190         gboolean is_removed;            /* 0 => Service is added, 1=> removed */
191 } bt_gatt_service_info_t;
192
193 typedef struct {
194         unsigned char uuid[BLUETOOTH_UUID_HEX_MAX_LEN];
195         int inst_id;
196         int props;
197         int val_len;
198         unsigned char val[BLUETOOTH_GATT_ATT_DATA_LENGTH_MAX];
199         GSList *descs;
200 } bt_gatt_char_info_t;
201
202 typedef struct {
203         unsigned char uuid[BLUETOOTH_UUID_HEX_MAX_LEN];
204         int inst_id;
205         int val_len;
206         unsigned char val[BLUETOOTH_GATT_ATT_DATA_LENGTH_MAX];
207 } bt_gatt_descriptor_info_t;
208
209 typedef struct {
210         unsigned char uuid[BLUETOOTH_UUID_HEX_MAX_LEN];
211         int inst_id;
212 } bt_gatt_included_service_info_t;
213
214 static GSList *list_gatt_info = NULL;
215
216 #endif
217
218 /* App Information structure */
219 typedef struct {
220         int adv_handle;
221         char sender[BT_SENDER_MAX_LENGTH];
222         char uuid[BT_UUID_STRING_MAX];
223         int instance_id;
224         int adv_instance;
225         bluetooth_advertising_data_t adv_data; /* Will store adv data for specific slot */
226         int adv_data_len;
227         bluetooth_scan_resp_data_t scan_rsp;   /* Will store scan rsp data for specific slot */
228         int scan_rsp_len;
229         gboolean is_initialized;
230         GSList *service_handles;
231 #ifdef TIZEN_GATT_CLIENT
232         int client_id;                      /* GATT Client instance ID */
233         bluetooth_device_address_t address; /* Remote BLE Device Address */
234         gboolean is_watcher_enabled;
235 #endif
236 } bt_service_app_info_t;
237
238 /* GATT Server Request Info Structure */
239 struct gatt_server_req_info {
240         int connection_id;                               /* This value will uniquely identify a GATT client-server connection */
241         int request_id;                                  /* This is an unique transaction ID assigned against each request by stack */
242         int attribute_handle;                            /* GATT server attribute handle */
243         int offset;                                      /* GATT server attribute offset on which request is invoked by GATT client */
244         bluetooth_gatt_att_request_type_e request_type;  /* Read or Write request */
245         char *addr;                                      /* Remote GATT client address */
246 };
247
248 /* GATT Indicate confirm result  */
249 struct gatt_indicate_cfm_result_info_t {
250         int result;                                      /* Result of event */
251         char *addr;                                      /* Remote GATT client address */
252         int att_hdl;                                     /* Characteristic Attribute handle */
253         int completed;                                   /* 1 if last event, otheriwse 0 */
254 };
255
256 /* Request Search Utility method */
257 static struct gatt_server_req_info *__bt_gatt_server_find_request_info(int request_id,
258                 bluetooth_gatt_att_request_type_e req_type);
259
260 static int __bt_gatt_send_indication_to_all_connected_clients(bluetooth_gatt_att_data_t *data,
261                 bluetooth_gatt_server_indication_params_t *param);
262
263 static void __bt_remove_all_service_handles(bt_service_app_info_t *app_info);
264
265 static void __bt_free_service_info(bt_gatt_service_info_t *service_info);
266
267 static int __bt_unregister_gatt_client_instance(int client_if);
268
269 static void __bt_service_reset_gatt_data(void);
270
271 #ifdef TIZEN_GATT_CLIENT
272 static void __bt_handle_client_instance_registered(event_gattc_register_t *data);
273 static void __bt_handle_client_connected(event_gattc_conn_t *event_data);
274 static void __bt_handle_client_disconnected(event_gattc_conn_t *event_data);
275 static void __bt_handle_client_service_search_completed(event_gattc_conn_status_t *event_data);
276 static void __bt_handle_client_service_search_result(event_gattc_service_result_t *event_data);
277 static void __bt_handle_client_characteristic_search_result(
278                 event_gattc_characteristic_result_t *event_data);
279 static void __bt_handle_client_descriptor_search_result(event_gattc_descriptor_result_t *event_data);
280 static void __bt_handle_client_characteristic_read_data(event_gattc_read_data *event_data);
281 static void __bt_handle_client_descriptor_read_data(event_gattc_read_data *event_data);
282 static void __bt_handle_client_characteristic_write_data(event_gattc_write_data *event_data);
283 static void __bt_handle_client_descriptor_write_data(event_gattc_write_data *event_data);
284 static void __bt_hanlde_le_device_disconnection(event_dev_conn_status_t *event_data);
285 static void __bt_handle_client_notification_registered(event_gattc_regdereg_notify_t *event_data,
286                 gboolean is_registered);
287 static void __bt_handle_client_notification_data(event_gattc_notify_data *event_data);
288 static void __bt_handle_client_service_changed_ind(event_gattc_service_changed_data *event_data);
289 static void __bt_handle_client_mtu_exchange_completed(event_gattc_mtu_configured_t *event_data);
290 #endif
291
292 static int __bt_unregister_gatt_server_instance(int server_instance);
293 static void __bt_cleanup_remote_services(struct gatt_server_info_t *conn_info);
294
295 /*mtu device list*/
296 struct gatt_mtu_info_t {
297         char *addr;               /* Remote GATT Server address */
298         int att_mtu;
299 };
300
301 static GSList *gatt_mtu_info_list = NULL;
302
303 static struct gatt_mtu_info_t *__bt_find_mtu_gatt_device(char *address);
304 static void __bt_remove_mtu_gatt_device(char *address);
305 static void __bt_add_mtu_gatt_device(char *address);
306 static void __bt_update_mtu_gatt_device(char *address, int mtu);
307
308 /* Linked List of GATT requests from Remote GATT Clients */
309 static GSList *gatt_server_requests = NULL;
310
311 /* Number of clients to be notified to */
312 static int num_indicate_clients;
313
314 /* List of applications */
315 static bt_service_app_info_t numapps[MAX_APPS_SUPPORTED];
316
317 static void __bt_gatt_handle_pending_request_info(int result,
318                 int service_function, void *data, unsigned int size);
319
320 static void __bt_handle_server_instance_registered(event_gatts_register_t *data);
321
322 static void __bt_gatt_event_handler(int event_type, gpointer event_data);
323
324 typedef enum {
325         BT_GATT_SERVER = 1,
326         BT_GATT_CLIENT,
327 } bt_gatt_type_e;
328
329 void _bt_check_adv_app_termination(const char *name)
330 {
331         bt_service_app_info_t *app = NULL;
332         int k;
333         int apps[MAX_APPS_SUPPORTED] = { 0, };
334
335         ret_if(NULL == name);
336
337         memset(&apps, -1, sizeof(apps));
338
339         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
340                 app = &numapps[k];
341
342                 /* Search for a app which has same sender and stop adv is running */
343                 if (strcasecmp(app->sender, name) == 0 && app->is_initialized == TRUE) {
344                         BT_DBG("numapps[%d] Match found, name: %s", k, name);
345
346                         /* TODO 2: Need to manage app info as list, not array.
347                                    This loop always run for MAX count if any apps are terminated.
348                          */
349
350                         /* Save instances of all apps that need to be unregistered */
351                         if (app->instance_id != -1) {
352                                 /* GATT server */
353                                 /* Unregister all service handles with stack */
354                                 __bt_remove_all_service_handles(app);
355
356                                 /* If Advertising is enabled, stop it */
357                                 if (app->adv_handle != 0) {
358                                         BT_INFO("Stop advertising on instance ID [%d]", app->instance_id);
359                                         /* Disable adv if running */
360                                         BT_INFO("Disable Advertising Adv Handle [%d] sender [%s]",
361                                                         app->adv_handle, name);
362                                         _bt_set_advertising(app->sender, app->adv_handle, FALSE, FALSE);
363                                 }
364
365                                 apps[app->instance_id] = BT_GATT_SERVER;  /* App holds a GATT server Instance */
366                         } else if (app->client_id != -1) {
367                                 /* GATT client */
368                                 apps[app->client_id] = BT_GATT_CLIENT;    /* App holds a GATT client Instance */
369                         }
370                 }
371         }
372
373         /* Unregister all apps one by one */
374         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
375                 if (apps[k] == BT_GATT_SERVER) {
376                         BT_INFO("Unregister server app[%d]", k);
377                         /* Unregister server instance */
378                         __bt_unregister_gatt_server_instance(k);
379                 } else if (apps[k] == BT_GATT_CLIENT) {
380                         BT_INFO("Unregister client app[%d]", k);
381                         /* Unregister client instance */
382                         __bt_unregister_gatt_client_instance(k);
383                 }
384         }
385 }
386
387 static int __bt_gatt_send_indication_to_all_connected_clients(bluetooth_gatt_att_data_t *data,
388                 bluetooth_gatt_server_indication_params_t *param)
389 {
390         GSList *l;
391         int ret = OAL_STATUS_SUCCESS;
392         int result = OAL_STATUS_INTERNAL_ERROR;
393
394         BT_INFO("Current total number of connected clients [%d]", g_slist_length(gatt_client_info_list));
395         for (l = gatt_client_info_list; l != NULL; l = l->next) {
396                 struct gatt_client_info_t *info = l->data;
397
398                 if (info) {
399                         BT_INFO("GATT Remote client address [%s] connection Id [%d]", info->addr, info->connection_id);
400
401                         ret = gatts_send_indication(param->instance_id, param->atrribute_handle,
402                                         info->connection_id, data->length,
403                                         param->need_confirmation, (char *)(&data->data[0]));
404
405                         BT_INFO("Send Indication to GATT client [%s] result: [%d]", info->addr, ret);
406                         if (ret == OAL_STATUS_SUCCESS) {
407                                 BT_INFO("Send Indication sent successfully to GATT client [%s]", info->addr);
408                                 result = ret;
409                                 num_indicate_clients++;
410                         }
411                 }
412         }
413         BT_INFO("Indication sending done for total number of clients [%d]", num_indicate_clients);
414         return result;
415 }
416
417 static struct gatt_server_req_info *__bt_gatt_server_find_request_info(int request_id,
418                 bluetooth_gatt_att_request_type_e req_type)
419 {
420         GSList *l;
421
422         for (l = gatt_server_requests; l != NULL; l = l->next) {
423                 struct gatt_server_req_info *req_info = l->data;
424
425                 if (req_info && req_info->request_id == request_id && req_info->request_type == req_type) {
426                         BT_DBG("GATT Server request info found Req ID [%d] handle [%d] conn ID [%d]",
427                                         req_info->request_id, req_info->attribute_handle, req_info->connection_id);
428                         return req_info;
429                 }
430         }
431         BT_ERR("Gatt Request not found");
432         return NULL;
433 }
434
435 void _bt_get_adv_handle_from_instance(int server_inst, int *adv_handle)
436 {
437         BT_DBG("+");
438         int k;
439         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
440                 if (numapps[k].is_initialized == 1 && numapps[k].instance_id == server_inst) {
441                         *adv_handle = numapps[k].adv_handle;
442                         break;
443                 }
444         }
445 }
446
447 #ifdef TIZEN_GATT_CLIENT
448 char * _bt_gatt_get_default_gatt_client_uuid(void)
449 {
450         return g_strdup(DEFAULT_GATT_CLIENT_UUID);
451 }
452
453
454 static void __bt_register_default_gatt_client()
455 {
456         char *uuid_str;
457         oal_uuid_t uuid;
458
459         uuid_str = _bt_gatt_get_default_gatt_client_uuid();
460         _bt_string_to_uuid(uuid_str, (service_uuid_t*)&uuid);
461
462         BT_INFO("Register Default GATT client uuid [%s]", uuid_str);
463
464         if (OAL_STATUS_SUCCESS != gattc_register(&uuid)) /* for only Smart Control */
465                 BT_ERR("gattc register failed");
466
467         g_free(uuid_str);
468 }
469 #endif
470
471 int _bt_gatt_init(void)
472 {
473         const char *stack_name = NULL;
474         int result;
475
476         BT_DBG("+");
477
478         result = gatt_enable();
479         if (result != OAL_STATUS_SUCCESS) {
480                 BT_ERR("gatt Init failed");
481                 return _bt_convert_oal_status_to_bt_error(result);
482         }
483
484         /* Register gatt event handler */
485         _bt_service_register_event_handler_callback(BT_GATT_MODULE, __bt_gatt_event_handler);
486
487         __bt_service_reset_gatt_data();
488
489         stack_name = oal_get_stack_name();
490
491         if (stack_name && g_strcmp0(stack_name, "bluez") == 0) {
492                 /*In the platform, defacult gatt client should be registered */
493                 __bt_register_default_gatt_client();
494         }
495
496         BT_DBG("-");
497         return BLUETOOTH_ERROR_NONE;
498 }
499
500 static void __bt_service_reset_gatt_data(void)
501 {
502         int k;
503
504         BT_INFO("Rest numapp");
505
506         /* Reset data */
507         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
508                         numapps[k].is_initialized = 0;
509                         numapps[k].instance_id = -1;
510                         numapps[k].adv_handle = 0;
511                         numapps[k].adv_instance = -1;
512                         memset(numapps[k].sender, 0x00, sizeof(numapps[k].sender));
513                         memset(numapps[k].uuid, 0x00, sizeof(numapps[k].uuid));
514                         memset(numapps[k].adv_data.data, 0x00, BLUETOOTH_ADVERTISING_DATA_LENGTH_MAX);
515                         memset(numapps[k].scan_rsp.data, 0x00, BLUETOOTH_ADVERTISING_DATA_LENGTH_MAX);
516                         numapps[k].adv_data_len = 0;
517                         numapps[k].scan_rsp_len = 0;
518
519                         /* GATT client */
520                         numapps[k].client_id = -1;
521                         memset(numapps[k].address.addr, 0x00, BLUETOOTH_ADDRESS_LENGTH);
522                         numapps[k].is_watcher_enabled = FALSE;
523         }
524 }
525
526 void _bt_gatt_deinit(void)
527 {
528         BT_INFO("GATT deinit");
529
530         /* Un-register the default gatt client before */
531         __bt_unregister_gatt_client_instance(gatt_default_client);
532
533         if (OAL_STATUS_SUCCESS != gatt_disable())
534                 BT_ERR("gatt deinit failed");
535
536         /* Un-register gatt event handler */
537         _bt_service_unregister_event_handler_callback(BT_GATT_MODULE);
538
539         __bt_service_reset_gatt_data();
540 }
541
542 void _bt_update_adv_handle(const char *sender, int adv_handle)
543 {
544         int k;
545         BT_DBG("Sender [%s] Adv handle [%d]", sender, adv_handle);
546         bt_service_app_info_t *info = NULL;
547
548         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
549                 info = &numapps[k];
550                 /* Do not update client instance */
551                 if (info->instance_id == -1)
552                         continue;
553                 /* Search for a app which has same sender and adv handle as 0 */
554                 if (!g_strcmp0(info->sender, sender) && info->adv_handle == 0)
555                         info->adv_handle = adv_handle;
556         }
557 }
558
559 int _bt_is_sender_gatt_server_with_no_adv(const char *sender, int adv_handle)
560 {
561         int k;
562         BT_DBG("Sender [%s] Adv handle [%d]", sender, adv_handle);
563         bt_service_app_info_t *info = NULL;
564
565         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
566                 info = &numapps[k];
567                 /* Search for a app which has same sender and adv handle as 0
568                    It is possible that same sender but different adv handle */
569                 if (!g_strcmp0(info->sender, sender) && info->adv_handle == 0) {
570                         //info->adv_handle = adv_handle;
571                         return info->instance_id;
572                 }
573         }
574         return -1;
575 }
576
577 int _bt_get_allocated_server_instance(const char *sender, int adv_handle, gboolean use_reserved_slot)
578 {
579         int k;
580         BT_DBG("Sender [%s] Adv handle [%d]", sender, adv_handle);
581         bt_service_app_info_t *info = NULL;
582
583         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
584                 info = &numapps[k];
585
586                 /* Exact matching of Adv handle + sender combination */
587                 if (!g_strcmp0(info->sender, sender) && info->adv_handle == adv_handle)
588                         return info->instance_id;
589 #if 0
590                 if (!g_strcmp0(info->sender, sender) && info->adv_handle == -1)
591                         return info->instance_id;
592 #endif
593         }
594         return -1;
595 }
596
597 char * _bt_get_sender_and_handle(int server_instance, int *adv_handle)
598 {
599         int k;
600         bt_service_app_info_t *info = NULL;
601
602         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
603                 info = &numapps[k];
604
605                 if (info->instance_id == server_instance && info->adv_handle != 0) {
606                         *adv_handle = info->adv_handle;
607                         BT_DBG("Server instance [%d] Adv handle [%d] Sender [%s]", server_instance, *adv_handle, info->sender);
608                         return g_strdup(info->sender);
609                 }
610         }
611         return NULL;
612 }
613
614 void _bt_set_new_adv_data(bluetooth_advertising_data_t *adv, int len, int instance)
615 {
616         int k;
617         BT_DBG("");
618         bt_service_app_info_t *info = NULL;
619         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
620                 info = &numapps[k];
621
622                 if (info->instance_id == instance) {
623                         memcpy(info->adv_data.data, &adv->data, len);
624                         break;
625                 }
626         }
627 }
628
629 void _bt_set_new_scan_rsp_data(bluetooth_scan_resp_data_t *scan, int len, int instance)
630 {
631         int k;
632         BT_DBG("");
633         bt_service_app_info_t *info = NULL;
634         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
635                 info = &numapps[k];
636
637                 if (info->instance_id == instance) {
638                         memcpy(info->scan_rsp.data, &scan->data, len);
639                         break;
640                 }
641         }
642 }
643
644 void _bt_get_previous_adv_data(bluetooth_advertising_data_t *adv, int *len, int instance)
645 {
646         int k;
647         bt_service_app_info_t *info = NULL;
648
649         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
650                 info = &numapps[k];
651
652                 if (info->instance_id == instance) {
653                         memcpy(&adv->data, info->adv_data.data, info->adv_data_len);
654                         *len = info->adv_data_len;
655                         break;
656                 }
657         }
658 }
659
660 void _bt_get_previous_scan_rsp_data(bluetooth_scan_resp_data_t *scan, int *len, int instance)
661 {
662         int k;
663         BT_DBG("");
664         bt_service_app_info_t *info = NULL;
665
666         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
667                 info = &numapps[k];
668
669                 if (info->instance_id == instance) {
670                         memcpy(&scan->data, info->scan_rsp.data, info->scan_rsp_len);
671                         *len = info->scan_rsp_len;
672                         break;
673                 }
674         }
675 }
676
677 static int __bt_unregister_gatt_client_instance(int client_if)
678 {
679         int ret = OAL_STATUS_SUCCESS;
680         int k;
681
682         BT_INFO("DeAllocate client instance ID [%d]", client_if);
683
684         /* Reset data: instance_id parameter could be either for GATT Server or for GATT client  */
685         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
686                 if (numapps[k].client_id == client_if) {
687                         BT_INFO("This is a GATT client app, unregister: Slot [%d] vacant", k);
688                         numapps[k].client_id = -1;
689                         numapps[k].is_initialized = FALSE;
690                         memset(numapps[k].sender, 0x00, sizeof(numapps[k].sender));
691                         memset(numapps[k].uuid, 0x00, sizeof(numapps[k].uuid));
692                         memset(&numapps[k].address.addr, 0x00, sizeof(bluetooth_device_address_t));
693
694                         /* Its a GATT Client Instance */
695                         ret = gattc_deregister(client_if);
696                         if (ret != OAL_STATUS_SUCCESS) {
697                                 BT_ERR("DeAllocate GATT Client instance with stack Fail ret: %d", ret);
698                                 return _bt_convert_oal_status_to_bt_error(ret);
699                         }
700                         break;
701                 }
702         }
703         return BLUETOOTH_ERROR_NONE;
704 }
705
706 static int __bt_unregister_gatt_server_instance(int server_instance)
707 {
708         int ret = OAL_STATUS_SUCCESS;
709         int k;
710
711         /* Unregister the server instance */
712         ret = gatts_unregister(server_instance);
713         if (ret != OAL_STATUS_SUCCESS) {
714                 BT_ERR("DeAllocate server instance with stack Fail ret: %d", ret);
715                 return _bt_convert_oal_status_to_bt_error(ret);
716         }
717         BT_INFO("DeAllocated server instance with stack successful..");
718
719         /* Reset data */
720         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
721                 if (numapps[k].instance_id == server_instance) {
722                         numapps[k].is_initialized = 0;
723                         numapps[k].instance_id = -1;
724                         numapps[k].adv_handle = 0;
725                         numapps[k].adv_instance = -1;
726                         memset(numapps[k].sender, 0x00, sizeof(numapps[k].sender));
727                         memset(numapps[k].uuid, 0x00, sizeof(numapps[k].uuid));
728                         memset(numapps[k].adv_data.data, 0x00, BLUETOOTH_ADVERTISING_DATA_LENGTH_MAX);
729                         memset(numapps[k].scan_rsp.data, 0x00, BLUETOOTH_ADVERTISING_DATA_LENGTH_MAX);
730                         numapps[k].adv_data_len = 0;
731                         numapps[k].scan_rsp_len = 0;
732                         break;
733                 }
734         }
735         BT_DBG("Going8 to reset numapp block num [%d]", k);
736         return BLUETOOTH_ERROR_NONE;
737 }
738
739 static void __bt_remove_all_service_handles(bt_service_app_info_t *app_info)
740 {
741         GSList *l;
742         int *handle = NULL;
743         int ret = OAL_STATUS_SUCCESS;
744         int count;
745
746         if (app_info == NULL)
747                 return;
748
749         count = g_slist_length(app_info->service_handles);
750         BT_INFO("Before handle removal: current count [%d]", count);
751
752         for (l = app_info->service_handles; l != NULL;) {
753                 handle = l->data;
754                 l = g_slist_next(l);
755
756                 if (handle) {
757                         BT_INFO("Server Handle to be Removed [%d] Instance ID [%d]", *handle, app_info->instance_id);
758                         if (_bt_gatt_server_stop_service(app_info->sender, *handle, app_info->instance_id) != BLUETOOTH_ERROR_NONE)
759                                 continue;
760
761                         ret = gatts_delete_service(app_info->instance_id, *handle);
762                         if (ret != OAL_STATUS_SUCCESS) {
763                                 BT_ERR("ret: %d", ret);
764                                 continue;
765                         } else {
766                                 app_info->service_handles = g_slist_remove(app_info->service_handles, handle);
767                                 g_free(handle);
768                                 handle = NULL;
769                                 count = g_slist_length(app_info->service_handles);
770                                 BT_INFO("After deleting current count [%d]", count);
771                         }
772                 }
773         }
774 }
775
776 int _bt_unregister_server_instance(const char *sender, int adv_handle)
777 {
778         BT_INFO("Unregister Allocated server instance request Sender [%s] Adv handle [%d]", sender, adv_handle);
779         int result = BLUETOOTH_ERROR_NONE;
780         int apps[MAX_APPS_SUPPORTED];
781         int server_instance;
782         int k;
783
784         memset(&apps, -1, sizeof(apps));
785
786         if (adv_handle == 0) {
787                 BT_DBG("Its a direct GATT Server app request to unregister");
788                 /* Unregister server instance for each app with same sender (case: GATT Server with multiple adv handle) */
789                 bt_service_app_info_t *info = NULL;
790
791                 for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
792                         info = &numapps[k];
793
794                         /* Exact matching of sender */
795                         if (!g_strcmp0(info->sender, sender)) {
796                                 BT_INFO("Unregister GATT server instance [%d]", info->instance_id);
797                                 /* Unregister all service handles with stack */
798                                 __bt_remove_all_service_handles(info);
799
800                                 /* Disable adv if running */
801                                 BT_INFO("Disable Advertising Adv Handle [%d] sender [%s]",
802                                                 info->adv_handle, sender);
803                                 _bt_set_advertising(sender, info->adv_handle, FALSE, FALSE);
804
805                                 /* Save all instances which need to be unregistered */
806                                 apps[info->instance_id] = 1;
807                         }
808                 }
809         } else {
810                 BT_DBG("Its an Internal unregister request by adv application");
811                 server_instance = _bt_get_allocated_server_instance(sender, adv_handle, FALSE);
812                 BT_DBG("Its an Internal unregister request by adv application: Adv disabled srv instance [%d]", server_instance);
813                 if (server_instance == -1) {
814                         BT_ERR("No allocated server instance to be removed");
815                         return BLUETOOTH_ERROR_INVALID_PARAM;
816                 }
817                 if (!numapps[server_instance].service_handles) {
818                         BT_INFO("There are no Service handles with this app, safe to unregister");
819                         /* Unregister server instance only if this sender does not have any gatt services in it */
820                         result = __bt_unregister_gatt_server_instance(server_instance);
821                 } else {
822                         numapps[server_instance].adv_handle = 0;
823                         memset(numapps[server_instance].adv_data.data, 0x00, BLUETOOTH_ADVERTISING_DATA_LENGTH_MAX);
824                         numapps[server_instance].adv_data_len = 0;
825                         memset(numapps[server_instance].scan_rsp.data, 0x00, BLUETOOTH_ADVERTISING_DATA_LENGTH_MAX);
826                         numapps[server_instance].scan_rsp_len = 0;
827                 }
828                 return result;
829         }
830
831         /* Unregister all apps one by one */
832         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
833                 if (apps[k] == 1) {
834                         BT_INFO("Unregister app[%d]", k);
835                         /* Unregister server instance */
836                         __bt_unregister_gatt_server_instance(k);
837                 }
838         }
839
840         return result;
841 }
842
843 int _bt_register_server_instance(const char *sender, int adv_handle)
844 {
845         int ret = OAL_STATUS_SUCCESS;
846         char *uuid_string = NULL;
847         int slot = -1;
848         int k;
849         oal_uuid_t uuid;
850
851         BT_INFO("Check on which instance Server instance can be initialized....");
852         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
853                 if (numapps[k].is_initialized == 1) {
854                         BT_DBG("Instance ID [%d] is already in use..Check next slot", numapps[k].instance_id);
855                 } else {
856                         slot = k;
857                         BT_DBG("Time to register GATT Server..UUID to be used is [%s] slot [%d]", uuid_list[slot-1], slot);
858                         break;
859                 }
860         }
861
862         if (slot == -1) {
863                 BT_ERR("No Slot if free for GATT Server registration..");
864                 return BLUETOOTH_ERROR_REGISTRATION_FAILED;
865         }
866
867         uuid_string = g_malloc0(BT_UUID_STRING_MAX);
868         _bt_string_to_uuid(uuid_list[slot-1], (service_uuid_t*)&uuid);
869         g_strlcpy(uuid_string, uuid_list[slot-1], BT_UUID_STRING_MAX);
870         BT_INFO("Copied UUID string [%s] slot [%d]", uuid_string, slot);
871
872         /* Register GATT Server */
873         ret = gatts_register(&uuid);
874         if (ret != OAL_STATUS_SUCCESS) {
875                 BT_ERR("ret: %d", ret);
876                 g_free(uuid_string);
877                 return _bt_convert_oal_status_to_bt_error(ret);
878         }
879         BT_DBG("GATT Server registration call successfully accepted by OAL..wait for Instance Initialized event from OAL..");
880         /* Return & wait for GATT Server Instance Initialization event */
881         memset(numapps[slot].sender, 0x00, sizeof(numapps[slot].sender));
882         memset(numapps[slot].uuid, 0x00, sizeof(numapps[slot].uuid));
883
884         g_strlcpy(numapps[slot].sender, sender, sizeof(numapps[slot].sender));
885         g_strlcpy(numapps[slot].uuid, uuid_string, sizeof(numapps[slot].uuid));
886
887         numapps[slot].is_initialized = 0; /* Set initialization from app registered callback */
888         numapps[slot].adv_handle = adv_handle;
889
890         g_free(uuid_string);
891         return BLUETOOTH_ERROR_NONE;
892 }
893
894 /* Event handlers */
895 static void __bt_gatt_handle_pending_request_info(int result,
896                 int service_function, void *data, unsigned int size)
897 {
898         GSList *l;
899         GArray *out_param;
900         invocation_info_t *req_info = NULL;
901         ret_if(data == NULL);
902
903         for (l = _bt_get_invocation_list(); l != NULL; ) {
904                 req_info = l->data;
905                 l = g_slist_next(l);
906                 if (req_info == NULL || req_info->service_function != service_function)
907                         continue;
908
909                 switch (service_function) {
910 #ifndef GATT_DIRECT
911                 case BT_GATT_SERVER_REGISTER: {
912                         bt_service_app_info_t *param = (bt_service_app_info_t*)data;
913
914                         if (!g_strcmp0(req_info->sender, param->sender)) {
915                                 BT_DBG("GATT Server app found [%s]", req_info->sender);
916
917                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
918                                 g_array_append_vals(out_param, &param->instance_id, sizeof(int));
919                                 _bt_service_method_return(req_info->context, out_param, result);
920
921                                 _bt_free_info_from_invocation_list(req_info);
922                                 g_array_free(out_param, TRUE);
923                         }
924                         break;
925                 }
926                 case BT_GATT_SERVER_START_SERVICE:
927                 case BT_GATT_SERVER_DELETE_SERVICE: {
928                         bt_service_app_info_t *param = (bt_service_app_info_t*)data;
929
930                         int *saved_instance_id = (int*)req_info->user_data;
931                         if (!g_strcmp0(req_info->sender, param->sender) && param->instance_id == *saved_instance_id) {
932                                 BT_DBG("GATT Server app found [%s] Instance ID [%d] Reply DBUS",
933                                                 req_info->sender, *saved_instance_id);
934
935                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
936                                 g_array_append_vals(out_param, &saved_instance_id, sizeof(int));
937                                 _bt_service_method_return(req_info->context, out_param, result);
938
939                                 _bt_free_info_from_invocation_list(req_info);
940                                 g_array_free(out_param, TRUE);
941                         }
942                         break;
943                 }
944                 case BT_GATT_SERVER_ADD_SERVICE:
945                 case BT_GATT_SERVER_ADD_DESCRIPTOR:
946                 case BT_GATT_SERVER_ADD_CHARACTERISTIC: {
947                         int *handle = (int*)data;
948                         BT_DBG("Characteristic added: Handle [%d]", *handle);
949                         out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
950
951                         g_array_append_vals(out_param, handle, sizeof(int));
952                         _bt_service_method_return(req_info->context, out_param, result);
953
954                         _bt_free_info_from_invocation_list(req_info);
955                         g_array_free(out_param, TRUE);
956                         break;
957                 }
958 #endif
959                 case BT_CONNECT_LE:
960                 case BT_DISCONNECT_LE: {
961 #ifdef TIZEN_GATT_CLIENT
962                        char *addr = (char*)req_info->user_data;
963                        bluetooth_device_address_t address;
964
965                         if (!g_strcmp0(addr, (char*)data)) {
966                                 BT_INFO("GATT Client connect-disconnect call pending for app [%s] addr [%s]",
967                                                 req_info->sender, addr + 12);
968                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
969                                 _bt_convert_addr_string_to_type(address.addr, addr);
970
971                                 g_array_append_vals(out_param, (bluetooth_device_address_t*)&address,
972                                                 sizeof(bluetooth_device_address_t));
973                                 _bt_service_method_return(req_info->context, out_param, result);
974
975                                 _bt_free_info_from_invocation_list(req_info);
976                                 g_array_free(out_param, TRUE);
977                         }
978 #else
979                         out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
980
981                         g_array_append_vals(out_param, (bluetooth_device_address_t*)data,
982                                         sizeof(bluetooth_device_address_t));
983                         _bt_service_method_return(req_info->context, out_param, result);
984
985                         _bt_free_info_from_invocation_list(req_info);
986
987                         g_array_free(out_param, TRUE);
988 #endif
989                         break;
990                 }
991 #ifdef TIZEN_GATT_CLIENT
992                 case BT_GATT_CLIENT_REGISTER: {
993                         bt_service_app_info_t *param = (bt_service_app_info_t*)data;
994
995                         if (!g_strcmp0(req_info->sender, param->sender)) {
996                                 BT_DBG("GATT Client app found [%s] created client ID [%d]",
997                                                 req_info->sender, param->client_id);
998
999                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
1000                                 g_array_append_vals(out_param, &param->client_id, sizeof(int));
1001                                 _bt_service_method_return(req_info->context, out_param, result);
1002
1003                                 _bt_free_info_from_invocation_list(req_info);
1004                                 g_array_free(out_param, TRUE);
1005                         }
1006                         break;
1007                 }
1008                 case BT_GATT_GET_PRIMARY_SERVICES: {
1009                         bt_services_browse_info_t *param = (bt_services_browse_info_t*)data;
1010                         char *address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1011                         _bt_convert_addr_type_to_string(address,
1012                                         (unsigned char *)(&param->device_addr.addr));
1013
1014                         /* Match address to determine same request */
1015                         if (!g_strcmp0((char*)req_info->user_data, address)) {
1016                                 BT_DBG("GATT Client app found [%s] Remote address [%s]",
1017                                                 req_info->sender, address);
1018
1019                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
1020                                 g_array_append_vals(out_param, param,
1021                                                 sizeof(bt_services_browse_info_t));
1022
1023                                 //g_array_append_vals(out_param, &param->client_id, sizeof(int));
1024                                 _bt_service_method_return(req_info->context, out_param, result);
1025
1026                                 _bt_free_info_from_invocation_list(req_info);
1027                                 g_array_free(out_param, TRUE);
1028                         }
1029                         g_free(address);
1030                         break;
1031                 }
1032                 case BT_GATT_GET_SERVICE_PROPERTIES: {
1033                         bt_char_browse_info_t param;
1034                         memcpy((void*)&param, data, sizeof(bt_char_browse_info_t));
1035                         //bt_char_browse_info_t *param = (bt_char_browse_info_t*)data;
1036
1037                         bluetooth_gatt_client_svc_prop_info_t *prop = (bluetooth_gatt_client_svc_prop_info_t*)req_info->user_data;
1038
1039                         /* Match both address and service properties to determine same request */
1040                         if (!memcmp(param.device_addr.addr,
1041                                         prop->device_address.addr,
1042                                         sizeof(bluetooth_device_address_t)) &&
1043                                         !memcmp(param.svc_uuid, prop->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) &&
1044                                         param.svc_inst_id == prop->svc.instance_id) {
1045                                 BT_DBG("Returning Service properties");
1046
1047                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
1048                                 g_array_append_vals(out_param, &param, sizeof(bt_char_browse_info_t));
1049                                 _bt_service_method_return(req_info->context, out_param, result);
1050
1051                                 _bt_free_info_from_invocation_list(req_info);
1052                                 g_array_free(out_param, TRUE);
1053                         }
1054                         break;
1055                 }
1056                 case BT_GATT_GET_CHARACTERISTIC_PROPERTIES: {
1057                         bt_descriptor_browse_info_t *param = (bt_descriptor_browse_info_t*)data;
1058
1059                         bluetooth_gatt_client_char_prop_info_t *prop = (bluetooth_gatt_client_char_prop_info_t*)req_info->user_data;
1060
1061                         /* Match both address, service properties &char properties to determine same request */
1062                         if (!memcmp(param->device_addr.addr,
1063                                         prop->device_address.addr,
1064                                         sizeof(bluetooth_device_address_t)) &&
1065                                         !memcmp(param->svc_uuid, prop->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) &&
1066                                         param->svc_inst_id == prop->svc.instance_id &&
1067                                         !memcmp(param->char_uuid, prop->characteristic.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) &&
1068                                         param->char_inst_id == prop->characteristic.instance_id) {
1069                                 BT_DBG("Returning Characteristic properties");
1070                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
1071                                                 g_array_append_vals(out_param, param, sizeof(bt_descriptor_browse_info_t));
1072                                 _bt_service_method_return(req_info->context, out_param, result);
1073
1074                                 _bt_free_info_from_invocation_list(req_info);
1075                                 g_array_free(out_param, TRUE);
1076                         }
1077                         break;
1078                 }
1079                 case BT_GATT_WATCH_CHARACTERISTIC: {
1080                         bt_gatt_notif_reg_info_t *param = (bt_gatt_notif_reg_info_t*)data;
1081                         bluetooth_gatt_client_char_prop_info_t *prop = (bluetooth_gatt_client_char_prop_info_t*)req_info->user_data;
1082
1083                         /* Match both address, service properties &char properties to determine same request */
1084                         if (!memcmp(param->addr.addr,
1085                                         prop->device_address.addr,
1086                                         sizeof(bluetooth_device_address_t)) &&
1087                                         !memcmp(param->svc_uuid, prop->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) &&
1088                                         param->svc_inst == prop->svc.instance_id &&
1089                                         !memcmp(param->char_uuid, prop->characteristic.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) &&
1090                                         param->char_inst == prop->characteristic.instance_id) {
1091                                 BT_INFO("Characteristic Watch Successful: Is registered [%d]",
1092                                                 param->is_registered);
1093                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
1094                                 g_array_append_vals(out_param, param, sizeof(bt_gatt_notif_reg_info_t));
1095                                 _bt_service_method_return(req_info->context, out_param, result);
1096                                 _bt_free_info_from_invocation_list(req_info);
1097                                 g_array_free(out_param, TRUE);
1098                         }
1099                         break;
1100                 }
1101                 case BT_GATT_READ_CHARACTERISTIC:
1102                 case BT_GATT_WRITE_CHARACTERISTIC_VALUE_BY_TYPE: {
1103                          bluetooth_gatt_client_char_prop_info_t *param = (bluetooth_gatt_client_char_prop_info_t*)data;
1104
1105                          char *addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
1106                          bluetooth_gatt_client_char_prop_info_t *prop = (bluetooth_gatt_client_char_prop_info_t*)req_info->user_data;
1107                          _bt_convert_addr_type_to_string(addr, prop->device_address.addr);
1108
1109                          if (!memcmp(param, prop, sizeof(bluetooth_gatt_client_char_prop_info_t))) {
1110                                  BT_DBG("Gatt Char read or write request matched for address [%s]", addr);
1111                                  out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
1112                                  g_array_append_vals(out_param, param, sizeof(bluetooth_gatt_client_char_prop_info_t));
1113                                  _bt_service_method_return(req_info->context, out_param, result);
1114
1115                                  _bt_free_info_from_invocation_list(req_info);
1116                                  g_array_free(out_param, TRUE);
1117                         }
1118                         g_free(addr);
1119                          break;
1120                 }
1121                 case BT_GATT_READ_DESCRIPTOR_VALUE:
1122                 case BT_GATT_WRITE_DESCRIPTOR_VALUE: {
1123                          bluetooth_gatt_client_desc_prop_info_t *param = (bluetooth_gatt_client_desc_prop_info_t*)data;
1124
1125                          char *addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
1126                          bluetooth_gatt_client_desc_prop_info_t *prop = (bluetooth_gatt_client_desc_prop_info_t*)req_info->user_data;
1127                          _bt_convert_addr_type_to_string(addr, prop->device_address.addr);
1128
1129                          if (!memcmp(param, prop, sizeof(bluetooth_gatt_client_desc_prop_info_t))) {
1130                                  BT_DBG("Descriptor read or write request matched for address [%s]", addr);
1131                                  out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
1132                                  g_array_append_vals(out_param, param, sizeof(bluetooth_gatt_client_desc_prop_info_t));
1133                                  _bt_service_method_return(req_info->context, out_param, result);
1134
1135                                  _bt_free_info_from_invocation_list(req_info);
1136                                  g_array_free(out_param, TRUE);
1137                         }
1138                         g_free(addr);
1139                         break;
1140                 }
1141                 case BT_REQ_ATT_MTU: {
1142                         char *addr = (char*)req_info->user_data;
1143                         bluetooth_device_address_t address;
1144
1145                         if (!g_strcmp0(addr, (char*)data)) {
1146                                 BT_DBG("GATT Client BT_REQ_ATT_MTU call pending for app [%s] addr [%s]",
1147                                                 req_info->sender, addr);
1148                                 out_param = g_array_new(FALSE, FALSE, sizeof(gchar));
1149                                 _bt_convert_addr_string_to_type(address.addr, addr);
1150
1151                                 g_array_append_vals(out_param, (bluetooth_device_address_t*)&address,
1152                                                 sizeof(bluetooth_device_address_t));
1153                                 _bt_service_method_return(req_info->context, out_param, result);
1154
1155                                 _bt_free_info_from_invocation_list(req_info);
1156                                 g_array_free(out_param, TRUE);
1157                         }
1158                 }
1159 #endif
1160                 default:
1161                         break;
1162                 }
1163         }
1164 }
1165
1166 static void __bt_handle_server_instance_registered(event_gatts_register_t *data)
1167 {
1168         bt_service_app_info_t *info = NULL;
1169         int k;
1170         char *uuid_string = g_malloc0(BT_UUID_STRING_MAX);
1171
1172         _bt_uuid_to_string(&(data->server_uuid), uuid_string);
1173         BT_INFO("Instance ID is Intialized [%d] UUID initialized [%s]", data->server_inst, uuid_string);
1174
1175         /* Check if the just registered Instance ID belongs to BLEAPP or GATT Server */
1176         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
1177                 info = &numapps[k];
1178
1179                 if (g_strcmp0(info->uuid, uuid_string) == 0) {
1180                         BT_INFO("Found GATT Server.. UUID [%s], sender [%s]", info->uuid, info->sender);
1181                         info->is_initialized = TRUE;
1182                         info->instance_id = data->server_inst;
1183                         info->adv_instance = data->server_inst;
1184                         __bt_gatt_handle_pending_request_info(BLUETOOTH_ERROR_NONE, BT_GATT_SERVER_REGISTER,
1185                                         (void*)info, sizeof(bt_service_app_info_t));
1186                         break;
1187                 }
1188         }
1189         g_free(uuid_string);
1190 }
1191
1192 static void __bt_handle_gatt_server_service_added(event_gatts_srvc_prm_t *event)
1193 {
1194         int result = BLUETOOTH_ERROR_NONE;
1195         int svc_handle = 0;
1196         int *handle;
1197         int count;
1198         bt_service_app_info_t *info = NULL;
1199         int k;
1200
1201         char *uuid_str = g_malloc0(BT_UUID_STRING_MAX);
1202         _bt_uuid_to_string(&(event->gatt_srvc_id.id.uuid), uuid_str);
1203         BT_INFO("GATT Added Service  UUID: [%s] Server Ins [%d] Service hdl [%d] Is Primary [%d]\n",
1204                         uuid_str, event->gatt_srvc_stat.server_inst, svc_handle, event->gatt_srvc_id.is_prmry);
1205
1206         if (event->gatt_srvc_stat.status != OAL_STATUS_SUCCESS) {
1207                 result = BLUETOOTH_ERROR_INTERNAL;
1208                 svc_handle = 0;  /* Service handle set to 0 indicates.
1209                                     0 is reserved by BT SIG, cant be used by app*/
1210         } else
1211                 svc_handle = event->gatt_srvc_stat.servic_hndl;
1212
1213         BT_INFO("GATT Added Service  Status [%d] Server Ins [%d] Service hdl [%d] Is Primary [%d]\n",
1214                         event->gatt_srvc_stat.status, event->gatt_srvc_stat.server_inst, svc_handle, event->gatt_srvc_id.is_prmry);
1215
1216         /* Check if the just registered Instance ID belongs to BLEAPP or GATT Server */
1217         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
1218                 info = &numapps[k];
1219
1220                 if (info->instance_id == event->gatt_srvc_stat.server_inst) {
1221                         BT_INFO("numapps[%d] Found GATT Server.. UUID [%s], sender [%s]", k, info->uuid, info->sender);
1222                         __bt_gatt_handle_pending_request_info(result, BT_GATT_SERVER_ADD_SERVICE,
1223                                         (int*)&svc_handle, sizeof(int));
1224
1225                         /* Add Service Handle */
1226                         if (svc_handle > 0) {
1227                                 handle = g_malloc0(sizeof(int));
1228                                 *handle = svc_handle;
1229                                 numapps[k].service_handles = g_slist_append(numapps[k].service_handles, handle);
1230                                 count = g_slist_length(numapps[k].service_handles);
1231                                 BT_INFO("Added Service handle [%d] to list..current count [%d]", svc_handle, count);
1232                         }
1233                         break;
1234                 }
1235         }
1236
1237         g_free(uuid_str);
1238 }
1239
1240 static void __bt_handle_gatt_server_characteristic_added(event_gatts_srvc_charctr_t *event)
1241 {
1242         int result = BLUETOOTH_ERROR_NONE;
1243         int char_handle;
1244         bt_service_app_info_t *info = NULL;
1245         int k;
1246         char *uuid_str = g_malloc0(BT_UUID_STRING_MAX);
1247
1248         BT_INFO("GATT Server Char added status [%d]", event->gatt_srvc_stat.status);
1249         BT_INFO("GATT Server_inst: [%d]", event->gatt_srvc_stat.server_inst);
1250         BT_INFO("GATT Service Handle: [%d]", event->gatt_srvc_stat.servic_hndl);
1251         BT_INFO("GATT Add characteristic  Status: [%d]", event->gatt_srvc_stat.status);
1252         BT_INFO("GATT Service characteristic Handle: [%d]", event->charctr_hndl);
1253
1254         if (event->gatt_srvc_stat.status != OAL_STATUS_SUCCESS) {
1255                 result = BLUETOOTH_ERROR_INTERNAL;
1256                 char_handle = 0;  /* characteristic handle set to 0 indicates.
1257                                      0 is reserved by BT SIG, cant be used by app*/
1258         } else
1259                 char_handle = event->charctr_hndl;
1260
1261
1262         /* Check if the just registered Instance ID belongs to BLEAPP or GATT Server */
1263         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
1264                 info = &numapps[k];
1265
1266                 if (info->instance_id == event->gatt_srvc_stat.server_inst) {
1267                         BT_INFO("Found GATT Server.. UUID [%s], sender [%s]", info->uuid, info->sender);
1268                         __bt_gatt_handle_pending_request_info(result, BT_GATT_SERVER_ADD_CHARACTERISTIC,
1269                                         (int*)&char_handle, sizeof(int));
1270                         break;
1271                 }
1272         }
1273
1274
1275         _bt_uuid_to_string(&(event->charctr_uuid), uuid_str);
1276         BT_INFO("GATT Added Characteristic:  UUID: [%s]", uuid_str);
1277
1278         g_free(uuid_str);
1279 }
1280
1281 static void __bt_handle_gatt_server_descriptor_added(event_gatts_srvc_descr_t* event)
1282 {
1283         int result = BLUETOOTH_ERROR_NONE;
1284         int desc_handle;
1285         bt_service_app_info_t *info = NULL;
1286         int k;
1287         char *uuid_str = g_malloc0(BT_UUID_STRING_MAX);
1288
1289         BT_INFO("GATT Server Descriptor added status [%d]", event->gatt_srvc_stat.status);
1290         BT_INFO("GATT Server_inst: [%d]", event->gatt_srvc_stat.server_inst);
1291         BT_INFO("GATT Service Handle: [%d]", event->gatt_srvc_stat.servic_hndl);
1292         BT_INFO("GATT Add Descriptor  Status: [%d]", event->gatt_srvc_stat.status);
1293         BT_INFO("GATT Service Descriptor Handle: [%d]", event->descrptr_hndl);
1294
1295         if (event->gatt_srvc_stat.status != OAL_STATUS_SUCCESS) {
1296                 result = BLUETOOTH_ERROR_INTERNAL;
1297                 desc_handle = 0;  /* Service handle set to 0 indicates.
1298                                      0 is reserved by BT SIG, cant be used by app*/
1299         } else
1300                 desc_handle = event->descrptr_hndl;
1301
1302         /* Check if the just registered Instance ID belongs to BLEAPP or GATT Server */
1303         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
1304                 info = &numapps[k];
1305
1306                 if (info->instance_id == event->gatt_srvc_stat.server_inst) {
1307                         BT_INFO("Found GATT Server.. UUID [%s], sender [%s]", info->uuid, info->sender);
1308                         __bt_gatt_handle_pending_request_info(result, BT_GATT_SERVER_ADD_DESCRIPTOR,
1309                                         (int*)&desc_handle, sizeof(int));
1310                         break;
1311                 }
1312         }
1313
1314         _bt_uuid_to_string(&(event->descrptr_uuid), uuid_str);
1315         BT_INFO("GATT Added Descriptor:  UUID: [%s]", uuid_str);
1316
1317         g_free(uuid_str);
1318 }
1319
1320 static void __bt_handle_gatt_server_service_started(event_gatts_srvc_t *event)
1321 {
1322         bt_service_app_info_t *info = NULL;
1323         int result = BLUETOOTH_ERROR_NONE;
1324         int k;
1325         BT_INFO("GATT Server Service Started..");
1326
1327
1328         BT_INFO("GATT Server_inst: [%d]", event->server_inst);
1329         BT_INFO("GATT Service Handle: [%d]", event->servic_hndl);
1330         BT_INFO("GATT Service Started Status: [%d]", event->status);
1331
1332         if (event->status != OAL_STATUS_SUCCESS) {
1333                 BT_ERR("GATT Server Service Start Failed Err: [%d]", event->status);
1334                 result = BLUETOOTH_ERROR_INTERNAL;
1335         }
1336
1337         /* Check if the just registered Instance ID belongs to requester */
1338         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
1339                 info = &numapps[k];
1340
1341                 if (info->instance_id == event->server_inst) {
1342                         BT_INFO("Found GATT Server.. UUID [%s], sender [%s]", info->uuid, info->sender);
1343                         __bt_gatt_handle_pending_request_info(result, BT_GATT_SERVER_START_SERVICE,
1344                                         (void*)info, sizeof(bt_service_app_info_t));
1345                         break;
1346                 }
1347         }
1348 }
1349
1350 static void __bt_handle_gatt_server_service_stopped(event_gatts_srvc_t *event)
1351 {
1352         int result = BLUETOOTH_ERROR_NONE;
1353         bt_service_app_info_t *info = NULL;
1354         int k;
1355         BT_INFO("GATT Server Service Stopped..");
1356
1357         BT_INFO("GATT Server_inst: [%d]", event->server_inst);
1358         BT_INFO("GATT Service Handle: [%d]", event->servic_hndl);
1359         BT_INFO("GATT Service Stopped Status: [%d]", event->status);
1360
1361         if (event->status != OAL_STATUS_SUCCESS) {
1362                 BT_ERR("GATT Server Service Stop Failed Err: [%d]", event->status);
1363                 result = BLUETOOTH_ERROR_INTERNAL;
1364         }
1365
1366         /* Check if the just registered Instance ID belongs to requester */
1367         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
1368                 info = &numapps[k];
1369
1370                 if (info->instance_id == event->server_inst) {
1371                         BT_INFO("Found GATT Server.. UUID [%s], sender [%s]", info->uuid, info->sender);
1372                         __bt_gatt_handle_pending_request_info(result, BT_GATT_SERVER_STOP_SERVICE,
1373                                         (void*)info, sizeof(bt_service_app_info_t));
1374                         break;
1375                 }
1376         }
1377 }
1378
1379 static void __bt_handle_gatt_server_service_deleted(event_gatts_srvc_t *event)
1380 {
1381         int result = BLUETOOTH_ERROR_NONE;
1382         bt_service_app_info_t *info = NULL;
1383         int k;
1384         BT_INFO("GATT Server Service Deleted..");
1385
1386         BT_INFO("GATT Server_inst: [%d]", event->server_inst);
1387         BT_INFO("GATT Service Handle: [%d]", event->servic_hndl);
1388         BT_INFO("GATT Service Deleted Status: [%d]", event->status);
1389
1390         if (event->status != OAL_STATUS_SUCCESS) {
1391                 BT_ERR("GATT Server Service Delete Failed Err: [%d]", event->status);
1392                 result = BLUETOOTH_ERROR_INTERNAL;
1393         }
1394
1395         /* Check if the just registered Instance ID belongs to requester */
1396         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
1397                 info = &numapps[k];
1398
1399                 if (info->instance_id == event->server_inst) {
1400                         BT_INFO("Found GATT Server.. UUID [%s], sender [%s]", info->uuid, info->sender);
1401                         __bt_gatt_handle_pending_request_info(result, BT_GATT_SERVER_DELETE_SERVICE,
1402                                         (void*)info, sizeof(bt_service_app_info_t));
1403                         break;
1404                 }
1405         }
1406 }
1407
1408 struct gatt_client_info_t *_bt_find_remote_gatt_client_info(char *address)
1409 {
1410         GSList *l;
1411         struct gatt_client_info_t *info = NULL;
1412         for (l = gatt_client_info_list; l != NULL; l = g_slist_next(l)) {
1413                 info = (struct gatt_client_info_t*)l->data;
1414                 if (info == NULL)
1415                         continue;
1416
1417                 if (!g_strcmp0(info->addr, address)) {
1418                         BT_DBG("Remote GATT client found addr[%s]", info->addr);
1419                         return info;
1420                 }
1421         }
1422         return NULL;
1423 }
1424
1425 static struct gatt_client_info_t *__bt_find_remote_gatt_client_info_from_conn_id(int conn_id)
1426 {
1427         GSList *l;
1428         struct gatt_client_info_t *info = NULL;
1429
1430         for (l = gatt_client_info_list; l != NULL; l = g_slist_next(l)) {
1431                 info = (struct gatt_client_info_t*)l->data;
1432                 if (info == NULL)
1433                         continue;
1434
1435                 if (info->connection_id == conn_id) {
1436                         BT_INFO("Remote GATT client found addr[%s]", info->addr);
1437                         return info;
1438                 }
1439         }
1440         return NULL;
1441 }
1442
1443 #ifdef TIZEN_GATT_CLIENT
1444 struct gatt_server_info_t *_bt_find_remote_gatt_server_info(char *address)
1445 {
1446         GSList *l;
1447         struct gatt_server_info_t *info = NULL;
1448         for (l = gatt_server_info_list; l != NULL; l = g_slist_next(l)) {
1449                 info = (struct gatt_server_info_t*)l->data;
1450                 if (info == NULL)
1451                         continue;
1452
1453                 if (!g_strcmp0(info->addr, address)) {
1454                         BT_DBG("Remote GATT Server found addr[%s] connection_id %d", info->addr, info->connection_id);
1455                         return info;
1456                 }
1457         }
1458         return NULL;
1459 }
1460
1461 static struct gatt_out_conn_info_t* __bt_find_gatt_outgoing_conn_info(char *address)
1462 {
1463         GSList *l;
1464         struct gatt_out_conn_info_t *info = NULL;
1465         for (l = outgoing_gatt_conn_list; l != NULL; l = g_slist_next(l)) {
1466                 info = (struct gatt_out_conn_info_t*)l->data;
1467                 if (info == NULL)
1468                         continue;
1469
1470                 if (!g_strcmp0(info->addr, address)) {
1471                         BT_INFO("Outgoing connection info found addr[%s]", info->addr + 12);
1472                         return info;
1473                 }
1474         }
1475         return NULL;
1476 }
1477 #endif
1478
1479 #ifdef TIZEN_GATT_CLIENT
1480 static void __bt_handle_gatt_server_connection_state(event_gatts_conn_t *event)
1481 {
1482         int result = BLUETOOTH_ERROR_NONE;
1483         struct gatt_client_info_t *client_info = NULL;
1484 #ifndef __INTEGRATE_GATT_INFO__
1485         struct gatt_server_info_t *server_info = NULL;
1486 #endif
1487         bluetooth_device_address_t dev_addr;
1488         GVariant *param = NULL;
1489         int ret;
1490
1491         char *address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1492
1493         memcpy(dev_addr.addr, event->address.addr, 6);
1494
1495         /* REPLY dbus Context to application which called BT_CONNECT_LE. There is status
1496            in this event */
1497         _bt_convert_addr_type_to_string(address,
1498                         (unsigned char *)dev_addr.addr);
1499
1500         if (event->status != OAL_STATUS_SUCCESS)
1501                 result = BLUETOOTH_ERROR_INTERNAL;
1502
1503         __bt_gatt_handle_pending_request_info(result, BT_CONNECT_LE,
1504                         address, BT_ADDRESS_STRING_SIZE);
1505
1506         BT_INFO("GATT Server Connedted: Remote Client addr[%s] Server Instance [%d] Connection ID [%d]",
1507                         address + 12, event->server_inst, event->conn_id);
1508
1509
1510         /* Check if device is already in connected list */
1511         client_info = _bt_find_remote_gatt_client_info(address);
1512
1513         if (!client_info) {
1514                 BT_DBG("Conn Info absent: But no need to Send Local GATT Server Connected event to apps");
1515
1516                 param = g_variant_new("(is)", result, address);
1517
1518                 /* Send event to application */
1519                 _bt_send_event(BT_DEVICE_EVENT,
1520                                 BLUETOOTH_EVENT_GATT_SERVER_CONNECTED, /* Local device is GATT server */
1521                                 param);
1522
1523                 /* Save client connection info */
1524                 client_info = g_new0(struct gatt_client_info_t, 1);
1525                 client_info->addr = g_strdup(address);
1526                 BT_INFO("Added GATT client addr[%s]", client_info->addr + 12);
1527                 client_info->connection_id = event->conn_id;
1528 #ifdef __INTEGRATE_GATT_INFO__
1529                 client_info->client_id = -1;
1530 #endif
1531                 client_info->instance_id = event->server_inst;
1532                 gatt_client_info_list = g_slist_append(gatt_client_info_list, client_info);
1533                 BT_INFO("Total num of connected Remote GATT Clients [%d]", g_slist_length(gatt_client_info_list));
1534
1535 #ifndef __INTEGRATE_GATT_INFO__
1536                 /* Save server connection info */
1537                 server_info = g_new0(struct gatt_server_info_t, 1);
1538                 server_info->addr = g_strdup(address);
1539                 server_info->client_id = -1;
1540                 BT_INFO("Added GATT server addr[%s]", server_info->addr + 12);
1541                 server_info->connection_id = event->conn_id;
1542                 gatt_server_info_list = g_slist_append(gatt_server_info_list, server_info);
1543                 BT_INFO("Total num of connected Remote GATT Servers [%d]", g_slist_length(gatt_server_info_list));
1544 #endif
1545
1546                 ret = gattc_add_connection_info((bt_address_t *)&dev_addr, event->conn_id, event->server_inst);
1547                 if (ret != OAL_STATUS_SUCCESS) {
1548                         BT_ERR("gattc register server instance failed");
1549                 }
1550         }
1551
1552         __bt_add_mtu_gatt_device(address);
1553
1554         g_free(address);
1555 }
1556
1557 /* GATT Server Dis connected */
1558 static void __bt_handle_gatt_server_disconnection_state(event_gatts_conn_t *event)
1559 {
1560         int result = BLUETOOTH_ERROR_NONE;
1561         struct gatt_client_info_t *client_info = NULL;
1562 #ifndef __INTEGRATE_GATT_INFO__
1563         struct gatt_server_info_t *server_info = NULL;
1564 #endif
1565         bluetooth_device_address_t dev_addr;
1566         GVariant *param = NULL;
1567         char address[BT_ADDRESS_STRING_SIZE];
1568
1569         memcpy(dev_addr.addr, event->address.addr, 6);
1570
1571         /* REPLY dbus Context to application which called BT_DISCONNECT_LE. There is status
1572            in this event */
1573         _bt_convert_addr_type_to_string(address,
1574                         (unsigned char *)dev_addr.addr);
1575
1576         if (event->status != OAL_STATUS_SUCCESS)
1577                 result = BLUETOOTH_ERROR_INTERNAL;
1578
1579         if (NULL ==  _bt_get_request_info_data(BT_DISCONNECT_LE, address)) {
1580                 if (NULL !=  _bt_get_request_info_data(BT_CONNECT_LE, address)) {
1581                         result = BLUETOOTH_ERROR_INTERNAL;
1582
1583                         __bt_gatt_handle_pending_request_info(result, BT_CONNECT_LE,
1584                                         address, BT_ADDRESS_STRING_SIZE);
1585
1586                         BT_ERR("Failed to connect Local GATT Server Remote Client addr[%s]", address + 12);
1587                         return;
1588                 }
1589         } else {
1590                 __bt_gatt_handle_pending_request_info(result, BT_DISCONNECT_LE,
1591                                 address, BT_ADDRESS_STRING_SIZE);
1592         }
1593
1594         BT_INFO("Local GATT Server DisConnected: Remote Client addr[%s] Server Instance [%d] Connection ID [%d]",
1595                         address + 12, event->server_inst, event->conn_id);
1596         /* Remove Connection info */
1597         client_info = _bt_find_remote_gatt_client_info(address);
1598         if (client_info) {
1599                 BT_DBG("No need to Send Local GATT Server Disconnected event to apps, just remove remote client info");
1600
1601                 param = g_variant_new("(is)", result, address);
1602                 /* Send event to application */
1603                 _bt_send_event(BT_DEVICE_EVENT,
1604                                 BLUETOOTH_EVENT_GATT_SERVER_DISCONNECTED, /* Local device is GATT server */
1605                                 param);
1606
1607 #ifndef __INTEGRATE_GATT_INFO__
1608                 /* Remove server info from list */
1609                 server_info = _bt_find_remote_gatt_server_info(address);
1610                 if (server_info)
1611                         gatt_server_info_list = g_slist_remove(gatt_server_info_list, server_info);
1612                 else
1613                         BT_INFO("Can not find conn info, already removed!");
1614
1615                 /* Remove all services from info list_gatt_info */
1616                 __bt_cleanup_remote_services(server_info);
1617 #else
1618                 /* Remove all services from info list_gatt_info */
1619                 __bt_cleanup_remote_services(client_info);
1620 #endif
1621
1622                 /* Remove client info from List */
1623                 gatt_client_info_list = g_slist_remove(gatt_client_info_list, client_info);
1624                 BT_INFO("Total num of connected GATT clients [%d]", g_slist_length(gatt_client_info_list));
1625                 g_free(client_info->addr);
1626                 g_free(client_info);
1627         }
1628
1629         __bt_remove_mtu_gatt_device(address);
1630 }
1631 #else
1632
1633 static void __bt_handle_gatt_server_connection_state(event_gatts_conn_t *event)
1634 {
1635         int result = BLUETOOTH_ERROR_NONE;
1636         struct gatt_client_info_t *conn_info = NULL;
1637         bt_service_app_info_t *info = NULL;
1638         bluetooth_device_address_t dev_addr;
1639         GVariant *param = NULL;
1640         int k;
1641
1642         char *address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1643
1644         memcpy(dev_addr.addr, event->address.addr, 6);
1645
1646
1647         /* Check if the just registered Instance ID belongs to BLEAPP or GATT Server */
1648         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
1649                 info = &numapps[k];
1650
1651                 if (info->instance_id == event->server_inst) {
1652                         BT_INFO("Found GATT Server.. UUID [%s], sender [%s]", info->uuid, info->sender);
1653                         __bt_gatt_handle_pending_request_info(result, BT_CONNECT_LE,
1654                                         (bluetooth_device_address_t*)&dev_addr, sizeof(bluetooth_device_address_t));
1655
1656                         break;
1657                 }
1658         }
1659
1660         /* Send event to BT-API */
1661         _bt_convert_addr_type_to_string(address,
1662                         (unsigned char *)dev_addr.addr);
1663
1664         BT_INFO("GATT Server Connedted: Remote Client addr[%s] Server Instance [%d] Connection ID [%d]",
1665                         address, event->server_inst, event->conn_id);
1666
1667
1668         /* Check if device is already in connected list */
1669         conn_info = _bt_find_remote_gatt_client_info(address);
1670
1671         if (!conn_info) {
1672                 param = g_variant_new("(is)", result, address);
1673                 /* Send event to application */
1674                 _bt_send_event(BT_GATT_SERVER_EVENT,
1675                                 BLUETOOTH_EVENT_GATT_CONNECTED,
1676                                 param);
1677
1678                 /* Save Connection info */
1679                 conn_info = g_new0(struct gatt_client_info_t, 1);
1680                 conn_info->addr = g_strdup(address);
1681                 BT_INFO("Added GATT client addr[%s]", conn_info->addr);
1682                 conn_info->connection_id = event->conn_id;
1683                 conn_info->instance_id = event->server_inst;
1684                 gatt_client_info_list = g_slist_append(gatt_client_info_list, conn_info);
1685                 BT_INFO("Total num of connected GATT clients [%d]", g_slist_length(gatt_client_info_list));
1686         }
1687
1688         g_free(address);
1689 }
1690
1691 /* GATT Server Dis connected */
1692 static void __bt_handle_gatt_server_disconnection_state(event_gatts_conn_t *event)
1693 {
1694         int result = BLUETOOTH_ERROR_NONE;
1695         struct gatt_client_info_t *conn_info = NULL;
1696         bluetooth_device_address_t dev_addr;
1697         bt_service_app_info_t *info = NULL;
1698         GVariant *param = NULL;
1699         int k;
1700
1701         char *address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1702
1703         memcpy(dev_addr.addr, event->address.addr, 6);
1704
1705         /* Check if the just registered Instance ID belongs to BLEAPP or GATT Server */
1706         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
1707                 info = &numapps[k];
1708
1709                 if (info->instance_id == event->server_inst) {
1710                         BT_INFO("Found GATT Server.. UUID [%s], sender [%s]", info->uuid, info->sender);
1711                         __bt_gatt_handle_pending_request_info(result, BT_DISCONNECT_LE,
1712                                         (bluetooth_device_address_t*)&dev_addr, sizeof(bluetooth_device_address_t));
1713
1714                         break;
1715                 }
1716         }
1717
1718         /* Send event to BT-API */
1719         _bt_convert_addr_type_to_string(address,
1720                         (unsigned char *)dev_addr.addr);
1721
1722         BT_INFO("GATT Server DisConnected: Remote Client addr[%s] Server Instance [%d] Connection ID [%d]",
1723                         address, event->server_inst, event->conn_id);
1724
1725         param = g_variant_new("(is)", result, address);
1726         /* Send event to application */
1727         _bt_send_event(BT_GATT_SERVER_EVENT,
1728                         BLUETOOTH_EVENT_GATT_DISCONNECTED,
1729                         param);
1730
1731         /* Remove Connection info */
1732         conn_info = _bt_find_remote_gatt_client_info(address);
1733         if (conn_info) {
1734                 BT_INFO("Remove GATT client info from List..");
1735                 /* Remove info from List */
1736                 gatt_client_info_list = g_slist_remove(gatt_client_info_list, conn_info);
1737                 BT_INFO("Total num of connected GATT clients [%d]", g_slist_length(gatt_client_info_list));
1738                 g_free(conn_info->addr);
1739                 g_free(conn_info);
1740         }
1741
1742         g_free(address);
1743 }
1744 #endif
1745
1746
1747 static void __bt_handle_gatt_server_acquire_write_requested(event_gatts_srvc_acquire_attr_t *event)
1748 {
1749         GVariant *param = NULL;
1750         int result = BLUETOOTH_ERROR_NONE;
1751         struct gatt_server_req_info *req_info = NULL;
1752         bluetooth_device_address_t dev_addr;
1753         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
1754
1755         BT_INFO("GATT Server ACQUIRE  Write Req");
1756         BT_DBG("        conn id %d, trans id %d, attr andle %d", event->attr_trans.conn_id,
1757                         event->attr_trans.trans_id, event->attr_trans.attr_handle);
1758
1759         //address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1760         memcpy(dev_addr.addr, event->address.addr, 6);
1761
1762         req_info = g_new0(struct gatt_server_req_info, 1);
1763         req_info->request_id = event->attr_trans.trans_id;
1764         req_info->attribute_handle = event->attr_trans.attr_handle;
1765         req_info->connection_id = event->attr_trans.conn_id;
1766         req_info->request_type = BLUETOOTH_GATT_REQUEST_TYPE_ACQUIRE_WRITE;
1767         gatt_server_requests = g_slist_append(gatt_server_requests, req_info);
1768
1769         _bt_convert_addr_type_to_string(address,
1770                         (unsigned char *)dev_addr.addr);
1771
1772         param = g_variant_new("(iiiiiis)", result,
1773                         event->attr_trans.conn_id,
1774                         event->attr_trans.trans_id,
1775                         event->attr_trans.attr_handle,
1776                         event->mtu, event->attr_trans.offset, address);
1777         BT_DBG("remote address : [%s]", address);
1778
1779         _bt_send_event(BT_GATT_SERVER_EVENT,
1780                         BLUETOOTH_EVENT_GATT_SERVER_ACQUIRE_WRITE,
1781                         param);
1782
1783 }
1784
1785 static void __bt_handle_gatt_server_acquire_notify_requested(event_gatts_srvc_acquire_attr_t *event)
1786 {
1787         GVariant *param = NULL;
1788         int result = BLUETOOTH_ERROR_NONE;
1789         struct gatt_server_req_info *req_info = NULL;
1790         bluetooth_device_address_t dev_addr;
1791         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
1792
1793         BT_INFO("GATT Server ACQUIRE  Notify Req");
1794         BT_DBG("conn id %d, trans id %d, attr handle %d, req address %s",
1795                         event->attr_trans.conn_id, event->attr_trans.trans_id,
1796                         event->attr_trans.attr_handle, address);
1797
1798         memcpy(dev_addr.addr, event->address.addr, 6);
1799         _bt_convert_addr_type_to_string(address,
1800                         (unsigned char *)dev_addr.addr);
1801         BT_DBG("remote address : [%s]", address);
1802
1803         req_info = g_new0(struct gatt_server_req_info, 1);
1804         req_info->request_id = event->attr_trans.trans_id;
1805         req_info->attribute_handle = event->attr_trans.attr_handle;
1806         req_info->connection_id = event->attr_trans.conn_id;
1807         req_info->request_type = BLUETOOTH_GATT_REQUEST_TYPE_ACQUIRE_NOTIFY;
1808         gatt_server_requests = g_slist_append(gatt_server_requests, req_info);
1809
1810         param = g_variant_new("(iiiiiis)", result,
1811                         event->attr_trans.conn_id,
1812                         event->attr_trans.trans_id,
1813                         event->attr_trans.attr_handle,
1814                         event->mtu, event->attr_trans.offset,
1815                         address);
1816
1817          _bt_send_event(BT_GATT_SERVER_EVENT,
1818                                  BLUETOOTH_EVENT_GATT_SERVER_ACQUIRE_NOTIFY,
1819                                  param);
1820 }
1821
1822 static void __bt_handle_gatt_server_write_requested(event_gatts_srvc_write_attr_t *event)
1823 {
1824         char *address;
1825         bluetooth_device_address_t dev_addr;
1826         GVariant *param = NULL;
1827         int result = BLUETOOTH_ERROR_NONE;
1828         gboolean need_resp;
1829         gboolean is_prepare_write;
1830         char *write_val;
1831         GVariant *data = NULL;
1832         int i;
1833         struct gatt_server_req_info *req_info = NULL;
1834         BT_INFO("GATT Server Write Requested");
1835
1836         memcpy(dev_addr.addr, event->address.addr, 6);
1837
1838         BT_INFO("GATT Server Write Req Connection ID: [%d]", event->attr_trans.conn_id);
1839         BT_INFO("GATT Server Write Req Transaction ID:[%d]", event->attr_trans.trans_id);
1840         BT_INFO("GATT Server Write Req Attribute Handle: [%d]", event->attr_trans.attr_handle);
1841         BT_INFO("GATT Server Write Req Attribute Offset: [%d]", event->attr_trans.offset);
1842         BT_INFO("GATT Server Write Req value length [%d]", event->length);
1843         BT_INFO("GATT Server Write Req needs response: [%d]", event->need_rsp);
1844         BT_INFO("GATT Server Write Req Is Prep: [%d]", event->is_prep);
1845
1846         if (event->length <= 0) {
1847                 BT_INFO("GATT Server write requested, but length of attr value is 0");
1848                 return;
1849         }
1850
1851         need_resp = event->need_rsp;
1852         is_prepare_write = event->is_prep;
1853
1854         write_val = g_memdup(&event->value[0], event->length);
1855
1856         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1857         _bt_convert_addr_type_to_string(address,
1858                         (unsigned char *)dev_addr.addr);
1859
1860         BT_INFO("GATT Server Write Request from remote client [%s]", address);
1861         /* DEBUG */
1862         if (event->length > 0) {
1863                 for (i = 0; i < event->length; i++)
1864                         BT_DBG("Data[%d] = [0x%x]", i, event->value[i]);
1865         }
1866         /* Save Write Request Info */
1867         req_info = g_new0(struct gatt_server_req_info, 1);
1868         req_info->request_id = event->attr_trans.trans_id;
1869         req_info->attribute_handle = event->attr_trans.attr_handle;
1870         req_info->connection_id = event->attr_trans.conn_id;
1871         req_info->addr = address;
1872         req_info->offset = event->attr_trans.offset;
1873         req_info->request_type = BLUETOOTH_GATT_REQUEST_TYPE_WRITE;
1874         gatt_server_requests = g_slist_append(gatt_server_requests, req_info);
1875
1876         data = g_variant_new_from_data(
1877                         G_VARIANT_TYPE_BYTESTRING,
1878                         write_val,
1879                         event->length,
1880                         TRUE, NULL, NULL);
1881
1882         param = g_variant_new("(iiiiiibbsn@ay)", result,
1883                         event->attr_trans.conn_id,
1884                         event->attr_trans.trans_id,
1885                         event->attr_trans.attr_handle,
1886                         event->attr_trans.offset,
1887                         event->length,
1888                         need_resp,
1889                         is_prepare_write,
1890                         address,
1891                         event->length,
1892                         data);
1893
1894          _bt_send_event(BT_GATT_SERVER_EVENT,
1895                          BLUETOOTH_EVENT_GATT_SERVER_VALUE_CHANGED,
1896                         param);
1897
1898         g_free(write_val);
1899 }
1900
1901 static void __bt_handle_gatt_server_read_requested(event_gatts_srvc_read_attr_t *event)
1902 {
1903         char *address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1904         bluetooth_device_address_t dev_addr;
1905         int result = BLUETOOTH_ERROR_NONE;
1906         struct gatt_server_req_info *req_info = NULL;
1907         GVariant *param = NULL;
1908         gboolean is_long;
1909
1910         memcpy(dev_addr.addr, event->address.addr, 6);
1911         _bt_convert_addr_type_to_string(address,
1912                         (unsigned char *)dev_addr.addr);
1913
1914         BT_DBG("conn_id %d, trans id %d, attr handle %d, offset %d, is_long %d, addr %s",
1915                         event->attr_trans.conn_id, event->attr_trans.trans_id,
1916                         event->attr_trans.attr_handle, event->attr_trans.offset,
1917                         event->is_long, address);
1918
1919         is_long = event->is_long;
1920
1921         /* Save Read Request Info */
1922         req_info = g_new0(struct gatt_server_req_info, 1);
1923         req_info->request_id = event->attr_trans.trans_id;
1924         req_info->attribute_handle = event->attr_trans.attr_handle;
1925         req_info->connection_id = event->attr_trans.conn_id;
1926         req_info->addr = address;
1927         req_info->offset = event->attr_trans.offset;
1928         req_info->request_type = BLUETOOTH_GATT_REQUEST_TYPE_READ;
1929         gatt_server_requests = g_slist_append(gatt_server_requests, req_info);
1930
1931         /* Send event to BT-API */
1932         param = g_variant_new("(iiiiibs)", result,
1933                         event->attr_trans.conn_id,
1934                         event->attr_trans.trans_id,
1935                         event->attr_trans.attr_handle,
1936                         event->attr_trans.offset,
1937                         is_long,
1938                         address);
1939
1940         _bt_send_event(BT_GATT_SERVER_EVENT,
1941                         BLUETOOTH_EVENT_GATT_SERVER_READ_REQUESTED,
1942                         param);
1943 }
1944
1945 static void __bt_handle_gatt_server_indicate_confirmed(event_gatts_ind_cnfrm_t *event)
1946 {
1947         bluetooth_device_address_t dev_addr;
1948         char *address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1949         int cur_connected_clients;
1950         static int recvd = 0;
1951         gboolean completed = 0;
1952         GVariant *param = NULL;
1953
1954         /* OAL event does provide error, so MW assumes event will never contain wrong data,
1955            incase of any issues, check with OAL */
1956         int result = BLUETOOTH_ERROR_NONE;
1957
1958         memcpy(dev_addr.addr, event->address.addr, 6);
1959         _bt_convert_addr_type_to_string(address,
1960                         (unsigned char *)dev_addr.addr);
1961
1962         BT_INFO("Indication sent to GATT client [%s] conn_ ID [%d] transaction ID [%d] Att handle [%d]",
1963                         address, event->conn_id, event->trans_id, event->attr_handle);
1964
1965
1966         cur_connected_clients = g_slist_length(gatt_client_info_list);
1967         BT_INFO("Number of connected clients during sending Indication [%d] & current connected count [%d]",
1968                         num_indicate_clients, cur_connected_clients);
1969
1970         recvd++;
1971         if (recvd == num_indicate_clients) {
1972                 BT_INFO("Gatt indication confirm event for last GATT client.. [%s]", address);
1973                 completed = 1; /* Last event */
1974                 recvd = 0; /* Reset */
1975                 num_indicate_clients = 0;
1976         }
1977
1978         param = g_variant_new("(isib)",
1979                         result,
1980                         address,
1981                         event->attr_handle,
1982                         completed);
1983
1984         /* Send event to BT-API */
1985         _bt_send_event(BT_GATT_SERVER_EVENT,
1986                         BLUETOOTH_EVENT_GATT_SERVER_NOTIFICATION_COMPLETED,
1987                         param);
1988
1989         BT_INFO("Received Indication confirm for client number [%d]", recvd);
1990         g_free(address);
1991 }
1992
1993 /* Tizen Platform Specific */
1994 static void __bt_handle_gatt_server_notification_changed(event_gatts_notif_t *event)
1995 {
1996         bluetooth_device_address_t dev_addr;
1997         char *address = g_malloc0(BT_ADDRESS_STRING_SIZE);
1998         GVariant *param = NULL;
1999         gboolean notify;
2000
2001         /* OAL event does provide error, so MW assumes event will never contain wrong data,
2002            incase of any issues, check with OAL */
2003         int result = BLUETOOTH_ERROR_NONE;
2004
2005         memcpy(dev_addr.addr, event->address.addr, 6);
2006         _bt_convert_addr_type_to_string(address,
2007                         (unsigned char *)dev_addr.addr);
2008
2009         BT_INFO("notification_changed [%s] conn_ ID [%d] transaction ID [%d] Att handle [%d] Notify[%d]",
2010                         address, event->conn_id, event->trans_id, event->attr_handle, event->notify);
2011
2012         /* Set Notifcation status */
2013         notify = event->notify;
2014
2015         param = g_variant_new("(isib)",
2016                         result,
2017                         address,
2018                         event->attr_handle,
2019                         notify);
2020
2021         /* Send event to BT-API */
2022         _bt_send_event(BT_GATT_SERVER_EVENT,
2023                         BLUETOOTH_EVENT_GATT_SERVER_NOTIFICATION_STATE_CHANGED,
2024                         param);
2025
2026         g_free(address);
2027 }
2028
2029 static void __bt_handle_gatt_mtu_changed_event(event_gatts_mtu_changed_t *event)
2030 {
2031         int result = BLUETOOTH_ERROR_NONE;
2032         struct gatt_client_info_t *conn_info = NULL;
2033         GVariant *param = NULL;
2034         guint8 status = 0;
2035
2036         conn_info = __bt_find_remote_gatt_client_info_from_conn_id(event->conn_id);
2037         if (conn_info == NULL) {
2038                 BT_ERR("Cant find connection Information");
2039                 return;
2040         }
2041         BT_INFO("Got connection Info GATT client [%s] MTU Size [%d]",
2042                         conn_info->addr, event->mtu_size);
2043
2044         __bt_update_mtu_gatt_device(conn_info->addr, event->mtu_size);
2045
2046         param = g_variant_new("(isqy)",
2047                         result,
2048                         conn_info->addr,
2049                         event->mtu_size,
2050                         status);
2051
2052         /* Send event to BT-API */
2053         _bt_send_event(BT_GATT_SERVER_EVENT,
2054                         BLUETOOTH_EVENT_GATT_ATT_MTU_CHANGED,
2055                         param);
2056 }
2057
2058 static void __bt_gatt_event_handler(int event_type, gpointer event_data)
2059 {
2060         switch (event_type) {
2061                 case OAL_EVENT_BLE_SERVER_INSTANCE_INITIALISED: {
2062                 BT_INFO("OAL Event: Server Instance Registered");
2063                 /* GATT Server Registered event is handled in MAIN thread context */
2064                 __bt_handle_server_instance_registered((event_gatts_register_t *)event_data);
2065                 break;
2066                                                                 }
2067         case OAL_EVENT_GATTS_SERVICE_ADDED: {
2068                 BT_INFO("OAL Event: GATT Service added");
2069                 __bt_handle_gatt_server_service_added((event_gatts_srvc_prm_t *)event_data);
2070                 break;
2071         }
2072         case OAL_EVENT_GATTS_CHARACTERISTIC_ADDED: {
2073                 BT_INFO("OAL Event: GATT characteristic added");
2074                 __bt_handle_gatt_server_characteristic_added((event_gatts_srvc_charctr_t *)event_data);
2075                 break;
2076         }
2077         case OAL_EVENT_GATTS_DESCRIPTOR_ADDED: {
2078                 BT_INFO("OAL Event: GATT descriptor added");
2079                 __bt_handle_gatt_server_descriptor_added((event_gatts_srvc_descr_t *)event_data);
2080                 break;
2081         }
2082         case OAL_EVENT_GATTS_SERVICE_STARTED: {
2083                 BT_INFO("OAL Event: GATT Service started");
2084                 __bt_handle_gatt_server_service_started((event_gatts_srvc_t *)event_data);
2085                 break;
2086         }
2087         case OAL_EVENT_GATTS_SERVICE_STOPED: {
2088                 BT_INFO("OAL Event: GATT Service stopped");
2089                 __bt_handle_gatt_server_service_stopped((event_gatts_srvc_t *)event_data);
2090                 break;
2091         }
2092         case OAL_EVENT_GATTS_SERVICE_DELETED: {
2093                 BT_INFO("OAL Event: GATT Service deleted");
2094                 __bt_handle_gatt_server_service_deleted((event_gatts_srvc_t *) event_data);
2095                 break;
2096         }
2097         case OAL_EVENT_GATTS_CONNECTION_COMPLETED: {
2098                 BT_INFO("OAL Event: GATT Server Connected");
2099                 __bt_handle_gatt_server_connection_state((event_gatts_conn_t *)event_data);
2100                 break;
2101         }
2102         case OAL_EVENT_GATTS_DISCONNECTION_COMPLETED: {
2103                 BT_INFO("OAL Event: GATT Server Disconnected");
2104                 __bt_handle_gatt_server_disconnection_state((event_gatts_conn_t *)event_data);
2105                 break;
2106         }
2107         case OAL_EVENT_GATTS_REQUEST_READ: {
2108                 BT_DBG("OAL Event: GATT Server Read Request");
2109                 __bt_handle_gatt_server_read_requested((event_gatts_srvc_read_attr_t *)event_data);
2110                 break;
2111         }
2112         case OAL_EVENT_GATTS_REQUEST_WRITE: {
2113                 BT_DBG("OAL Event: GATT Server Write Request");
2114                 __bt_handle_gatt_server_write_requested((event_gatts_srvc_write_attr_t *)event_data);
2115                 break;
2116         }
2117         case OAL_EVENT_GATTS_REQUEST_ACQUIRE_WRITE: {
2118                 BT_INFO("OAL Event: GATT Server Acquire  Write Request");
2119                 __bt_handle_gatt_server_acquire_write_requested((event_gatts_srvc_acquire_attr_t*)event_data);
2120                 break;
2121         }
2122         case OAL_EVENT_GATTS_REQUEST_ACQUIRE_NOTIFY: {
2123                 BT_INFO("OAL Event: GATT ServerAcquire Notify  Request");
2124                 __bt_handle_gatt_server_acquire_notify_requested((event_gatts_srvc_acquire_attr_t*)event_data);
2125                 break;
2126         }
2127         case OAL_EVENT_GATTS_IND_CONFIRM: {
2128                 BT_INFO("OAL Event: GATT Server Indication confirmed");
2129                 __bt_handle_gatt_server_indicate_confirmed((event_gatts_ind_cnfrm_t *)event_data);
2130                 break;
2131         }
2132         case OAL_EVENT_GATTS_NOTIFICATION: { /* Tizen Platform Specific */
2133                 BT_INFO("OAL Event: GATT Server DisConnected");
2134                 __bt_handle_gatt_server_notification_changed((event_gatts_notif_t *)event_data);
2135                 break;
2136         }
2137         case OAL_EVENT_GATTS_MTU_CHANGED: {
2138                 BT_INFO("OAL Event: GATT Server MTU changed event callback");
2139                 __bt_handle_gatt_mtu_changed_event((event_gatts_mtu_changed_t *)event_data);
2140                 break;
2141         }
2142 #ifdef TIZEN_GATT_CLIENT
2143         case OAL_EVENT_GATTC_REGISTRATION: {
2144                 BT_INFO("OAL Event: GATT Client instance Registered");
2145                 __bt_handle_client_instance_registered((event_gattc_register_t *) event_data);
2146                 break;
2147         }
2148         case OAL_EVENT_GATTC_CONNECTION_COMPLETED: {
2149                 BT_INFO("OAL Event: GATT Client Connected");
2150                 __bt_handle_client_connected((event_gattc_conn_t *) event_data);
2151                 break;
2152         }
2153         case OAL_EVENT_GATTC_DISCONNECTION_COMPLETED: {
2154                 BT_INFO("OAL Event: GATT Client DisConnected");
2155                 __bt_handle_client_disconnected((event_gattc_conn_t *) event_data);
2156                 break;
2157         }
2158         case OAL_EVENT_GATTC_SERVICE_SEARCH_RESULT: {
2159                 BT_DBG("OAL Event: GATT Client Service Search Result");
2160                 __bt_handle_client_service_search_result((event_gattc_service_result_t *) event_data);
2161                 break;
2162         }
2163         case OAL_EVENT_GATTC_SERVICE_SEARCH_DONE: {
2164                 BT_INFO("OAL Event: GATT Client Service Completed");
2165                 __bt_handle_client_service_search_completed((event_gattc_conn_status_t *) event_data);
2166                 break;
2167         }
2168         case OAL_EVENT_GATTC_CHARAC_SERACH_RESULT: {
2169                 BT_DBG("OAL Event: GATT Client Characteristic Search Result");
2170                 __bt_handle_client_characteristic_search_result((event_gattc_characteristic_result_t *) event_data);
2171                 break;
2172         }
2173         case OAL_EVENT_GATTC_DESC_SERACH_RESULT: {
2174                 BT_DBG("OAL Event: GATT Client Descriptor Search Result");
2175                 __bt_handle_client_descriptor_search_result((event_gattc_descriptor_result_t *) event_data);
2176                 break;
2177         }
2178         case OAL_EVENT_GATTC_READ_CHARAC: {
2179                 BT_DBG("OAL Event: GATT Client Characteristic Read Data");
2180                 __bt_handle_client_characteristic_read_data((event_gattc_read_data *) event_data);
2181                 break;
2182         }
2183         case OAL_EVENT_GATTC_READ_DESCR: {
2184                 BT_DBG("OAL Event: GATT Client Descriptor Read Data");
2185                 __bt_handle_client_descriptor_read_data((event_gattc_read_data *) event_data);
2186                 break;
2187         }
2188         case OAL_EVENT_GATTC_WRITE_CHARAC: {
2189                 BT_DBG("OAL Event: GATT Client Characteristic Write Data");
2190                 __bt_handle_client_characteristic_write_data((event_gattc_write_data *) event_data);
2191                 break;
2192         }
2193         case OAL_EVENT_GATTC_WRITE_DESCR: {
2194                 BT_DBG("OAL Event: GATT Client Descriptor Write Data");
2195                 __bt_handle_client_descriptor_write_data((event_gattc_write_data *) event_data);
2196                 break;
2197         }
2198         case OAL_EVENT_DEVICE_LE_DISCONNECTED: {
2199                 BT_INFO("OAL Event: LE device disconnected");
2200                 __bt_hanlde_le_device_disconnection((event_dev_conn_status_t *)event_data);
2201                 break;
2202         }
2203         case OAL_EVENT_GATTC_NOTIFICATION_REGISTERED: {
2204                 BT_INFO("OAL Event: GATT Client Notification Registered");
2205                 __bt_handle_client_notification_registered((event_gattc_regdereg_notify_t *) event_data, TRUE);
2206                 break;
2207         }
2208         case OAL_EVENT_GATTC_NOTIFICATION_DEREGISTERED: {
2209                 BT_INFO("OAL Event: GATT Client Notification Registered");
2210                 __bt_handle_client_notification_registered((event_gattc_regdereg_notify_t *) event_data, FALSE);
2211                 break;
2212         }
2213         case OAL_EVENT_GATTC_NOTIFY_DATA: {
2214                 BT_DBG("OAL Event: GATT Client Notification Data");
2215                 __bt_handle_client_notification_data((event_gattc_notify_data *) event_data);
2216                 break;
2217         }
2218         case OAL_EVENT_GATTC_SERVICE_CHANGED_IND: {
2219                 BT_INFO("OAL Event: GATT Client service changed indication");
2220                 __bt_handle_client_service_changed_ind((event_gattc_service_changed_data *)event_data);
2221                 break;
2222         }
2223         case OAL_EVENT_GATTC_MTU_EXCHANGE_COMPLETED: {
2224                 BT_INFO("OAL Event: GATT Client MTU Exchange Complete");
2225                 __bt_handle_client_mtu_exchange_completed((event_gattc_mtu_configured_t *) event_data);
2226                 break;
2227         }
2228 #endif
2229         default:
2230                 BT_DBG("Unhandled OAL event = 0x%x", event_type);
2231                 break;
2232         }
2233 }
2234
2235 int _bt_gatt_server_add_service(char *sender, int service_type,
2236                 int num_handles, char *svc_uuid, int instance_id)
2237 {
2238         BT_CHECK_PARAMETER(svc_uuid, return);
2239         BT_CHECK_PARAMETER(sender, return);
2240         int ret = OAL_STATUS_SUCCESS;
2241
2242         oal_gatt_srvc_id_t svc_data;
2243
2244         svc_data.is_prmry = service_type;
2245         svc_data.id.inst_id = instance_id;
2246
2247         BT_INFO("Service UUID [%s] Num handles [%d] Instance ID [%d]", svc_uuid, num_handles, instance_id);
2248         _bt_string_to_uuid(svc_uuid, (service_uuid_t*)&svc_data.id.uuid);
2249
2250         ret = gatts_add_service(instance_id, &svc_data, num_handles);
2251         if (ret != OAL_STATUS_SUCCESS) {
2252                 BT_ERR("ret: %d", ret);
2253                 return _bt_convert_oal_status_to_bt_error(ret);
2254         }
2255
2256         return BLUETOOTH_ERROR_NONE;
2257 }
2258
2259
2260 int _bt_gatt_server_add_included_service(char *sender, int instance_id,
2261                 int service_handle, int included_svc_handle)
2262 {
2263         BT_CHECK_PARAMETER(sender, return);
2264         int ret = OAL_STATUS_SUCCESS;
2265
2266         ret = gatts_add_included_services(instance_id, service_handle, included_svc_handle);
2267         if (ret != OAL_STATUS_SUCCESS) {
2268                 BT_ERR("ret: %d", ret);
2269                 return _bt_convert_oal_status_to_bt_error(ret);
2270         }
2271         return BLUETOOTH_ERROR_NONE;
2272 }
2273
2274 int _bt_gatt_server_add_characteristic(char *sender, char *char_uuid,
2275                 bluetooth_gatt_server_attribute_params_t *param)
2276 {
2277         BT_CHECK_PARAMETER(char_uuid, return);
2278         BT_CHECK_PARAMETER(sender, return);
2279         BT_CHECK_PARAMETER(param, return);
2280         int ret = OAL_STATUS_SUCCESS;
2281
2282         oal_uuid_t uuid = {{0} };
2283
2284         BT_INFO("Char UUID [%s] Instance ID [%d]", char_uuid, param->instance_id);
2285         _bt_string_to_uuid(char_uuid, (service_uuid_t*)&uuid);
2286
2287         BT_INFO("Char permission From API [0x%x]", param->permissions);
2288
2289         ret = gatts_add_characteristics(param->instance_id, param->service_handle, &uuid,
2290                         param->properties, (int)param->permissions);
2291         if (ret != OAL_STATUS_SUCCESS) {
2292                 BT_ERR("ret: %d", ret);
2293                 return _bt_convert_oal_status_to_bt_error(ret);
2294         }
2295         return BLUETOOTH_ERROR_NONE;
2296 }
2297
2298 int _bt_gatt_server_add_descriptor(char *sender, char *desc_uuid,
2299                 bt_gatt_permission_t *param, int service_handle, int instance_id)
2300 {
2301         BT_CHECK_PARAMETER(desc_uuid, return);
2302         BT_CHECK_PARAMETER(sender, return);
2303         BT_CHECK_PARAMETER(param, return);
2304         int ret = OAL_STATUS_SUCCESS;
2305
2306         oal_uuid_t uuid = {{0} };
2307
2308         BT_INFO("Descriptor UUID [%s] Instance ID [%d] Service handle [%d]",
2309                         desc_uuid, service_handle, instance_id);
2310
2311         _bt_string_to_uuid(desc_uuid, (service_uuid_t*)&uuid);
2312
2313         BT_INFO("Descriptor permission From API [0x%x]", *param);
2314         ret = gatts_add_descriptor(instance_id, service_handle, &uuid, (int)*param);
2315
2316         if (ret != OAL_STATUS_SUCCESS) {
2317                 BT_ERR("ret: %d", ret);
2318                 return _bt_convert_oal_status_to_bt_error(ret);
2319         }
2320         return BLUETOOTH_ERROR_NONE;
2321 }
2322
2323 int _bt_gatt_server_start_service(char *sender, int service_handle, int instance_id)
2324 {
2325         BT_CHECK_PARAMETER(sender, return);
2326         int ret = OAL_STATUS_SUCCESS;
2327
2328         ret = gatts_start_service(instance_id, service_handle, BT_GATT_TRANSPORT_LE);
2329         if (ret != OAL_STATUS_SUCCESS) {
2330                 BT_ERR("ret: %d", ret);
2331                 return _bt_convert_oal_status_to_bt_error(ret);
2332         }
2333         return BLUETOOTH_ERROR_NONE;
2334 }
2335
2336 int _bt_gatt_server_stop_service(char *sender, int service_handle, int instance_id)
2337 {
2338         BT_CHECK_PARAMETER(sender, return);
2339         int ret = OAL_STATUS_SUCCESS;
2340
2341         ret = gatts_stop_service(instance_id, service_handle);
2342         if (ret != OAL_STATUS_SUCCESS) {
2343                 BT_ERR("ret: %d", ret);
2344                 return _bt_convert_oal_status_to_bt_error(ret);
2345         }
2346         return BLUETOOTH_ERROR_NONE;
2347 }
2348
2349 int _bt_gatt_server_delete_service(char *sender, int service_handle, int instance_id)
2350 {
2351         BT_CHECK_PARAMETER(sender, return);
2352         int ret = OAL_STATUS_SUCCESS;
2353         GSList *l;
2354         int *handle = NULL;
2355
2356         ret = gatts_delete_service(instance_id, service_handle);
2357         if (ret != OAL_STATUS_SUCCESS) {
2358                 BT_ERR("ret: %d", ret);
2359                 return _bt_convert_oal_status_to_bt_error(ret);
2360         }
2361
2362         /* Remove the Service Handle */
2363         for (l = numapps[instance_id].service_handles; l != NULL;) {
2364                 handle = l->data;
2365                 l = g_slist_next(l);
2366                 if (handle && *handle == service_handle) {
2367                         BT_INFO("Remove Service handle [%d]", *handle);
2368                         numapps[instance_id].service_handles = g_slist_remove(numapps[instance_id].service_handles, handle);
2369                         g_free(handle);
2370                         handle = NULL;
2371                 }
2372         }
2373
2374         return BLUETOOTH_ERROR_NONE;
2375 }
2376
2377 int _bt_gatt_server_send_response(char *sender, bluetooth_gatt_att_data_t *data,
2378                 bluetooth_gatt_server_response_params_t *param)
2379 {
2380         BT_CHECK_PARAMETER(sender, return);
2381         BT_CHECK_PARAMETER(data, return);
2382         BT_CHECK_PARAMETER(param, return);
2383         struct gatt_server_req_info *req_info = NULL;
2384         int ret = OAL_STATUS_SUCCESS;
2385
2386         oal_gatt_response_t response;
2387
2388         BT_DBG("GATT Server Response: Req Type [%d] req_id [%d] status [%d] auth_req [%d] offset[%d] data len[%d]",
2389                         param->req_type, param->request_id,
2390                         param->response_status, param->auth_req,
2391                         data->offset, data->length);
2392
2393         /* Search for matching Request in List */
2394         req_info = __bt_gatt_server_find_request_info(param->request_id, param->req_type);
2395         if (!req_info) {
2396                 BT_ERR("GATT Server Req Info not found for current response..return Error");
2397                 return BLUETOOTH_ERROR_NOT_IN_OPERATION;
2398         }
2399
2400         memset(&response, 0x00, sizeof(oal_gatt_response_t));
2401
2402         response.handle = req_info->attribute_handle;
2403         response.attr_value.auth_req = param->auth_req;
2404         response.attr_value.handle = req_info->attribute_handle;
2405         response.attr_value.offset = data->offset;
2406         response.attr_value.len = data->length;
2407         memcpy(&response.attr_value.value, &data->data, data->length);
2408
2409
2410         ret = gatts_send_response(req_info->connection_id, param->request_id,
2411                         param->response_status, &response);
2412
2413         if (ret != OAL_STATUS_SUCCESS) {
2414                 BT_ERR("ret: %d", ret);
2415                 return _bt_convert_oal_status_to_bt_error(ret);
2416         }
2417
2418         /* Remove GATT server request from list */
2419         gatt_server_requests = g_slist_remove(gatt_server_requests, req_info);
2420         g_free(req_info->addr);
2421
2422         return BLUETOOTH_ERROR_NONE;
2423 }
2424
2425 int _bt_gatt_server_acquire_send_response(char *sender, bluetooth_gatt_server_acquire_response_params_t *param ,        void *fd_list)
2426 {
2427         BT_CHECK_PARAMETER(sender, return);
2428         BT_CHECK_PARAMETER(param, return);
2429         struct gatt_server_req_info *req_info = NULL;
2430         int ret = OAL_STATUS_SUCCESS;
2431
2432
2433         BT_INFO("GATT acquire Server Response: Req Type [%d] req_id [%d] fd  [%d] mtu[%d]",
2434                         param->req_type, param->request_id,
2435                          param->fd,
2436                         param->mtu);
2437
2438         /* Search for matching Request in List */
2439         req_info = __bt_gatt_server_find_request_info(param->request_id, param->req_type);
2440         if (!req_info) {
2441                 BT_ERR("GATT acquire Server Req Info not found for current response..return Error");
2442                 return BLUETOOTH_ERROR_NOT_IN_OPERATION;
2443         }
2444
2445         ret = gatt_send_response_acquire(req_info->connection_id, param->request_id, 0, param->fd, param->mtu, fd_list);
2446
2447         if (ret != OAL_STATUS_SUCCESS) {
2448                 BT_ERR("ret: %d", ret);
2449                 return _bt_convert_oal_status_to_bt_error(ret);
2450         }
2451
2452         /* Remove GATT server request from list */
2453         gatt_server_requests = g_slist_remove(gatt_server_requests, req_info);
2454         g_free(req_info->addr);
2455
2456         return BLUETOOTH_ERROR_NONE;
2457 }
2458
2459
2460
2461 int _bt_gatt_server_send_indication(char *sender, bluetooth_device_address_t *dev_addr,
2462                 bluetooth_gatt_att_data_t *data,
2463                 bluetooth_gatt_server_indication_params_t *param)
2464 {
2465         BT_CHECK_PARAMETER(sender, return);
2466         BT_CHECK_PARAMETER(data, return);
2467         BT_CHECK_PARAMETER(param, return);
2468         char *address;
2469         gboolean all_send = FALSE;
2470         int ret = OAL_STATUS_SUCCESS;
2471         struct gatt_client_info_t *conn;
2472
2473         address = g_malloc0(BT_ADDRESS_STRING_SIZE);
2474         _bt_convert_addr_type_to_string(address, dev_addr->addr);
2475
2476         if (memcmp(dev_addr->addr, BDADDR_ANY, 6) == 0) {
2477                 BT_INFO("GATT Server: Send Indication to all connected GATT clients..");
2478                 all_send = TRUE;
2479         } else {
2480                 BT_INFO("GATT Server: Send Indication to connected GATT client addr [%s]", address);
2481         }
2482
2483         /* Attempt to send Notification/Indication to all Connected GATT clients */
2484         if (all_send) {
2485                 ret = __bt_gatt_send_indication_to_all_connected_clients(data, param);
2486                 if (ret != OAL_STATUS_SUCCESS) {
2487                         BT_ERR("ret: %d", ret);
2488                         g_free(address);
2489                         return _bt_convert_oal_status_to_bt_error(ret);
2490                 }
2491
2492         } else {
2493                 conn = _bt_find_remote_gatt_client_info(address);
2494                 if (conn) {
2495                         ret = gatts_send_indication(param->instance_id, param->atrribute_handle,
2496                                         conn->connection_id, data->length,
2497                                         param->need_confirmation, (char *)(&data->data[0]));
2498
2499                         if (ret != OAL_STATUS_SUCCESS) {
2500                                 BT_ERR("ret: %d", ret);
2501                                 BT_INFO("Indication failed to send to Remote GATT Client [%s]", address);
2502                                 g_free(address);
2503                                 return _bt_convert_oal_status_to_bt_error(ret);
2504                         }
2505                         BT_INFO("Indication sent to Remote GATT Client [%s] wait for Notification completed event from OAL", address);
2506                         g_free(address);
2507                         num_indicate_clients = 1;
2508                         return BLUETOOTH_ERROR_NONE;
2509                 }
2510                 BT_ERR("Remote GATT client [%s] is not connected..Cant send Indication!!", address);
2511                 g_free(address);
2512                 return BLUETOOTH_ERROR_NOT_CONNECTED;
2513         }
2514         g_free(address);
2515         return BLUETOOTH_ERROR_NONE;
2516 }
2517
2518 int _bt_gatt_server_update_attribute_value(char *sender, int instance_id,
2519                 bluetooth_gatt_server_update_value_t *param)
2520 {
2521         BT_CHECK_PARAMETER(sender, return);
2522         BT_CHECK_PARAMETER(param, return);
2523         int ret = OAL_STATUS_SUCCESS;
2524
2525         oal_gatt_value_t value;
2526         BT_DBG("GATT Server Update value: Instance ID [%d] attr handle [%d] Value len [%d]",
2527                         instance_id, param->attribute_handle, param->length);
2528
2529         memset(&value, 0x00, sizeof(oal_gatt_value_t));
2530
2531         value.handle = param->attribute_handle;
2532         value.len = param->length;
2533         memcpy(&value.value, &param->data.data, param->length);
2534
2535         ret = gatts_update_att_value(instance_id, &value);
2536
2537         if (ret != OAL_STATUS_SUCCESS) {
2538                 BT_ERR("ret: %d", ret);
2539                 return _bt_convert_oal_status_to_bt_error(ret);
2540         }
2541
2542         return BLUETOOTH_ERROR_NONE;
2543 }
2544
2545 int _bt_request_att_mtu(bluetooth_device_address_t *device_address,
2546                 unsigned int mtu)
2547 {
2548         struct gatt_server_info_t *conn_info = NULL;
2549         char *addr = NULL;
2550         int ret = OAL_STATUS_SUCCESS;
2551
2552         addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
2553         _bt_convert_addr_type_to_string(addr, device_address->addr);
2554
2555         /* Check if remote GATT Server is connected or not */
2556         conn_info = _bt_find_remote_gatt_server_info(addr);
2557         if (conn_info == NULL) {
2558                 BT_ERR("GATT Server is not yet connected..");
2559                 g_free(addr);
2560                 return BLUETOOTH_ERROR_NOT_CONNECTED;
2561         }
2562
2563         ret = gattc_configure_mtu(conn_info->connection_id, mtu);
2564         if (ret != OAL_STATUS_SUCCESS) {
2565                 BT_ERR("ret: %d", ret);
2566                 g_free(addr);
2567                 return _bt_convert_oal_status_to_bt_error(ret);
2568         }
2569
2570         g_free(addr);
2571         return BLUETOOTH_ERROR_NONE;
2572 }
2573
2574 int _bt_get_att_mtu(bluetooth_device_address_t *address,
2575                 unsigned int *mtu)
2576 {
2577         BT_CHECK_PARAMETER(address, return);
2578         BT_CHECK_PARAMETER(mtu, return);
2579         struct gatt_client_info_t *conn_info = NULL;
2580         char addr[BT_ADDRESS_STRING_SIZE] = { 0 };
2581         int ret = OAL_STATUS_SUCCESS;
2582         int stack_mtu;
2583
2584         _bt_convert_addr_type_to_string(addr, address->addr);
2585
2586         BT_INFO("Get current MTU size for the remote client:DevAddress:[%s]", addr);
2587
2588         conn_info = _bt_find_remote_gatt_client_info(addr);
2589         if (conn_info) {
2590                 BT_INFO("GATT Client [%s] is connected, conn Id [%d] Instance ID [%d]",
2591                                 conn_info->addr, conn_info->connection_id, conn_info->instance_id);
2592         } else {
2593                 BT_ERR("GATT Client [%s] is not yet connected..", addr);
2594                 return BLUETOOTH_ERROR_NOT_CONNECTED;
2595         }
2596
2597         if (conn_info->instance_id == -1) {
2598                 ret = gattc_get_att_mtu(conn_info->connection_id, &stack_mtu);
2599                 if (ret != OAL_STATUS_SUCCESS) {
2600                         BT_ERR("ret: %d", ret);
2601                         return _bt_convert_oal_status_to_bt_error(ret);
2602                 }
2603         } else {
2604                 ret = gatts_get_att_mtu(conn_info->connection_id, &stack_mtu);
2605                 if (ret != OAL_STATUS_SUCCESS) {
2606                         BT_ERR("ret: %d", ret);
2607                         return _bt_convert_oal_status_to_bt_error(ret);
2608                 }
2609         }
2610
2611         BT_INFO("ATT MTU received from OAL [%d]", stack_mtu);
2612         *mtu = (unsigned int)stack_mtu;
2613
2614         if (*mtu == 0) {
2615                 BT_ERR("MTU value is zero, GATT Client [%s] is not yet connected..", addr);
2616                 return BLUETOOTH_ERROR_NOT_CONNECTED;
2617         }
2618
2619         return BLUETOOTH_ERROR_NONE;
2620 }
2621
2622 #ifdef TIZEN_GATT_CLIENT
2623 /* GATT Client utility static functions */
2624 static bt_gatt_service_info_list_t *__bt_get_service_info_list(int conn_id)
2625 {
2626         GSList *l;
2627         bt_gatt_service_info_list_t *info = NULL;
2628
2629         for (l = list_gatt_info; l != NULL; l = g_slist_next(l)) {
2630                 info = (bt_gatt_service_info_list_t *)l->data;
2631                 if (info == NULL)
2632                         continue;
2633
2634                 if (info->conn_id == conn_id)
2635                         return info;
2636
2637         }
2638         return NULL;
2639 }
2640
2641 static bt_gatt_service_info_t *__bt_find_matching_service(
2642                 bt_gatt_service_info_list_t *svc_list, oal_gatt_srvc_id_t *svc)
2643 {
2644         GSList *l;
2645         bt_gatt_service_info_t *info = NULL;
2646
2647         for (l = svc_list->services; l != NULL; l = g_slist_next(l)) {
2648                 info = (bt_gatt_service_info_t *)l->data;
2649                 if (info == NULL)
2650                         continue;
2651
2652                 /* Match UUID and instance ID */
2653                 if (!memcmp(&svc->id.uuid.uuid, &info->uuid, BLUETOOTH_UUID_HEX_MAX_LEN)
2654                                 && (svc->id.inst_id == info->inst_id)) {
2655                         return info;
2656                 }
2657         }
2658         return NULL;
2659 }
2660
2661 static bt_gatt_char_info_t *__bt_find_matching_charc(
2662                 bt_gatt_service_info_t *svc_info, oal_gatt_id_t *charc)
2663 {
2664         GSList *l;
2665         bt_gatt_char_info_t *info = NULL;
2666
2667         for (l = svc_info->chars; l != NULL; l = g_slist_next(l)) {
2668                 info = (bt_gatt_char_info_t *)l->data;
2669                 if (info == NULL)
2670                         continue;
2671
2672                 /* Match UUID and instance ID */
2673                 if (!memcmp(&charc->uuid.uuid, &info->uuid, BLUETOOTH_UUID_HEX_MAX_LEN)
2674                                 && (charc->inst_id == info->inst_id)) {
2675                         return info;
2676                 }
2677         }
2678         return NULL;
2679 }
2680
2681 static bt_gatt_descriptor_info_t *__bt_find_matching_desc(
2682                 bt_gatt_char_info_t *char_info, oal_gatt_id_t *desc)
2683 {
2684         GSList *l;
2685         bt_gatt_descriptor_info_t *info = NULL;
2686
2687         for (l = char_info->descs; l != NULL; l = g_slist_next(l)) {
2688                 info = (bt_gatt_descriptor_info_t *)l->data;
2689                 if (info == NULL)
2690                         continue;
2691
2692                 /* Match UUID and instance ID */
2693                 if (!memcmp(&desc->uuid, &info->uuid, BLUETOOTH_UUID_HEX_MAX_LEN)
2694                                 && (desc->inst_id == info->inst_id)) {
2695                         return info;
2696                 }
2697         }
2698         return NULL;
2699 }
2700
2701
2702 static struct gatt_server_info_t *__bt_find_remote_gatt_server_info_from_conn_id(int conn_id)
2703 {
2704         GSList *l;
2705         struct gatt_server_info_t *info = NULL;
2706
2707         for (l = gatt_server_info_list; l != NULL; l = g_slist_next(l)) {
2708                 info = (struct gatt_server_info_t*)l->data;
2709                 if (info == NULL)
2710                         continue;
2711
2712                 if (info->connection_id == conn_id)
2713                         return info;
2714         }
2715         return NULL;
2716 }
2717
2718 static bt_gatt_service_info_t* __bt_find_removed_service(bt_gatt_service_info_list_t *svc_list)
2719 {
2720         GSList *l;
2721         bt_gatt_service_info_t *info = NULL;
2722
2723         for (l = svc_list->services; l != NULL; l = g_slist_next(l)) {
2724                 info = (bt_gatt_service_info_t*)l->data;
2725                 if (info == NULL)
2726                         continue;
2727
2728                 /* Service is marked a removed */
2729                 if (info->is_removed == 1)
2730                         return info;
2731         }
2732         return NULL;
2733 }
2734
2735 static void __bt_remove_service_info_from_list(bt_gatt_service_info_t *svc_info)
2736 {
2737 #if 0
2738         GSList *l;
2739         GSList *l1;
2740         GSList *l2;
2741         bt_gatt_char_info_t *charc = NULL;
2742         bt_gatt_included_service_info_t *incl = NULL;
2743         bt_gatt_descriptor_info_t *desc = NULL;
2744
2745         /* Remove all Characteristic and Descriptors within characteristic */
2746         for (l = svc_info->chars; l != NULL;) {
2747                 charc = (bt_gatt_char_info_t*)l->data;
2748                 l = g_slist_next(l); /* Incase if l is removed, saving next to l */
2749
2750                 if (charc == NULL)
2751                         continue;
2752
2753                 /* Inside Characteristic */
2754                 for (l1 = charc->descs; l1 != NULL;) {
2755
2756                         desc = (bt_gatt_descriptor_info_t*)l1->data;
2757                         l1 = g_slist_next(l1);
2758
2759                         if (desc == NULL)
2760                                 continue;
2761
2762                         /* Remove Descriptor */
2763                         charc->descs = g_slist_remove(charc->descs, desc);
2764                         g_free(desc);
2765                 }
2766                 /* Remove Characteristic */
2767                 svc_info->chars = g_slist_remove(svc_info->chars, charc);
2768                 g_free(charc);
2769         }
2770
2771         /* Remove all Included Services */
2772         for (l2 = svc_info->included_svcs; l2 != NULL;) {
2773                 incl = (bt_gatt_included_service_info_t*)l2->data;
2774                 l2 = g_slist_next(l2); /* Incase if l is removed, saving next to l */
2775
2776                 if (incl == NULL)
2777                         continue;
2778
2779                 /* Remove included service */
2780                 svc_info->included_svcs = g_slist_remove(svc_info->included_svcs, incl);
2781                 g_free(incl);
2782         }
2783 #endif
2784 }
2785
2786
2787 static void __bt_build_service_browse_info(int conn_id,
2788                 bt_services_browse_info_t* info)
2789 {
2790         GSList *l;
2791         bt_gatt_service_info_list_t *svc_info_list;
2792         bt_gatt_service_info_t *svc_info;
2793
2794         service_uuid_t uuid;
2795         struct gatt_server_info_t *conn_info = NULL;
2796         int count = 0;
2797         char uuid_string[BLUETOOTH_UUID_STRING_MAX];
2798
2799         conn_info = __bt_find_remote_gatt_server_info_from_conn_id(conn_id);
2800         if (conn_info == NULL) {
2801                 BT_ERR("Cant find connection Information");
2802                 return;
2803         }
2804
2805         _bt_convert_addr_string_to_type(info->device_addr.addr, conn_info->addr);
2806
2807         svc_info_list = __bt_get_service_info_list(conn_id);
2808         if (!svc_info_list)
2809                 return;
2810
2811         info->count = g_slist_length(svc_info_list->services);
2812         BT_DBG("Total services present in the svc info list for this conn id [%d] is [%d]",
2813                         conn_id, info->count);
2814
2815         for (l = svc_info_list->services; l != NULL; l = g_slist_next(l)) {
2816                 svc_info = (bt_gatt_service_info_t*)l->data;
2817                 if (svc_info == NULL)
2818                         continue;
2819
2820                 memcpy(&uuid.uuid, &svc_info->uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
2821                 _bt_uuid_to_string(&uuid, uuid_string);
2822
2823                 BT_INFO("[%d]  %s  [%s]", count, uuid_string, _bt_convert_uuid_to_string(uuid_string));
2824
2825                 /* Fill UUID of service */
2826                 g_strlcpy(info->uuids[count], uuid_string,
2827                                 BLUETOOTH_UUID_STRING_MAX);
2828
2829                 /* Fill instance ID of service */
2830                 info->inst_id[count] = svc_info->inst_id;
2831
2832                 /* Fill primary service or not info */
2833                 info->primary[count] = svc_info->is_primary;
2834
2835                 /* Increment count of services browsed */
2836                 count++;
2837         }
2838 }
2839
2840 static void __bt_build_char_browse_info(int conn_id,
2841                 bt_gatt_service_info_t *svc_info,
2842                 bt_char_browse_info_t* info)
2843 {
2844         GSList *l;
2845         bt_gatt_char_info_t *char_info;
2846         service_uuid_t uuid;
2847
2848         struct gatt_server_info_t *conn_info = NULL;
2849         int count = 0;
2850         char uuid_string[BLUETOOTH_UUID_STRING_MAX];
2851
2852         conn_info = __bt_find_remote_gatt_server_info_from_conn_id(conn_id);
2853         if (conn_info == NULL) {
2854                 BT_ERR("Cant find connection Information");
2855                 return;
2856         }
2857
2858         /* Fill default data, this will be required even in case of failure */
2859         _bt_convert_addr_string_to_type(info->device_addr.addr, conn_info->addr);
2860         memcpy(&info->svc_uuid, svc_info->uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
2861         info->svc_inst_id = svc_info->inst_id;
2862
2863         if (!svc_info->chars) {
2864                 BT_ERR("No Chars browsed for address [%s]", conn_info->addr);
2865                 return;
2866         }
2867
2868         info->count = g_slist_length(svc_info->chars);
2869
2870         for (l = svc_info->chars; l != NULL; l = g_slist_next(l)) {
2871                 char_info = (bt_gatt_char_info_t*)l->data;
2872                 if (char_info == NULL)
2873                         continue;
2874
2875                 memcpy(&uuid.uuid, &char_info->uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
2876                 _bt_uuid_to_string(&uuid, uuid_string);
2877
2878                 /* Fill UUID of characteristic */
2879                 g_strlcpy(info->uuids[count], uuid_string,
2880                                 BLUETOOTH_UUID_STRING_MAX);
2881
2882                 /* Fill instance ID of characteristic */
2883                 info->inst_id[count] = char_info->inst_id;
2884
2885                 /* Fill property of characteristic */
2886                 info->props[count] = char_info->props;
2887
2888                 /* Increment count of services browsed */
2889                 count++;
2890         }
2891         BT_DBG("Total characteristics browsed [%d]", count);
2892 }
2893
2894 static void __bt_build_descriptor_browse_info(int conn_id,
2895                 bt_gatt_service_info_t *svc_info,
2896                 bt_gatt_char_info_t *char_info,
2897                 bt_descriptor_browse_info_t* info)
2898 {
2899         GSList *l;
2900         bt_gatt_descriptor_info_t *desc_info;
2901
2902         service_uuid_t uuid;
2903         struct gatt_server_info_t *conn_info = NULL;
2904         int count = 0;
2905         char uuid_string[BLUETOOTH_UUID_STRING_MAX];
2906
2907         conn_info = __bt_find_remote_gatt_server_info_from_conn_id(conn_id);
2908
2909         /* Fill default data, this will be required even in case of failure */
2910         _bt_convert_addr_string_to_type(info->device_addr.addr, conn_info->addr);
2911         memcpy(&info->svc_uuid, svc_info->uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
2912         info->svc_inst_id = svc_info->inst_id;
2913         memcpy(&info->char_uuid, char_info->uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
2914         info->char_inst_id = char_info->inst_id;
2915
2916         /* Fill property of the parent characteristic of this descriptor */
2917         info->char_props_map = char_info->props;
2918
2919         info->count = g_slist_length(char_info->descs);
2920
2921         if (!char_info->descs) {
2922                 BT_ERR("No Descriptors browsed for address [%s]", conn_info->addr + 12);
2923                 return;
2924         }
2925
2926         for (l = char_info->descs; l != NULL; l = g_slist_next(l)) {
2927                 desc_info = (bt_gatt_descriptor_info_t*)l->data;
2928                 if (desc_info == NULL)
2929                         continue;
2930
2931                 memcpy(&uuid.uuid, &desc_info->uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
2932                 _bt_uuid_to_string(&uuid, uuid_string);
2933
2934                 /* Fill UUID of Descriptor */
2935                 g_strlcpy(info->uuids[count], uuid_string,
2936                                 BLUETOOTH_UUID_STRING_MAX);
2937
2938                 /* Fill instance ID of Descriptor */
2939                 info->inst_id[count] = desc_info->inst_id;
2940
2941
2942                 /* Increment count of Descriptor browsed */
2943                 count++;
2944         }
2945
2946         BT_INFO("Total descriptors browsed [%d]", count);
2947 }
2948
2949 static void __bt_free_service_info(bt_gatt_service_info_t *svc)
2950 {
2951         GSList *ll, *lll, *llll;
2952         bt_gatt_char_info_t *chr = NULL;
2953         bt_gatt_descriptor_info_t *desc = NULL;
2954         bt_gatt_included_service_info_t *incl_svc = NULL;
2955
2956         BT_DBG("Service info Is Prim[%d] Inst ID [%d]", svc->is_primary, svc->inst_id);
2957         /* Delete all chars and its descriptors */
2958         for (ll = svc->chars; ll != NULL; ) {
2959                 chr = (bt_gatt_char_info_t *)ll->data;
2960                 ll = g_slist_next(ll);
2961                 if (chr == NULL)
2962                         continue;
2963
2964                 for (lll = chr->descs; lll != NULL; ) {
2965                         desc = (bt_gatt_descriptor_info_t *)lll->data;
2966                         lll = g_slist_next(lll);
2967                         if (desc == NULL)
2968                                 continue;
2969                         chr->descs = g_slist_remove(chr->descs, desc);
2970                         g_free(desc);
2971                 }
2972                 svc->chars = g_slist_remove(svc->chars, chr);
2973                 g_free(chr);
2974         }
2975
2976         /* Delete all included services */
2977         for (llll = svc->included_svcs; llll != NULL; ) {
2978                 incl_svc = (bt_gatt_included_service_info_t *)llll->data;
2979                 llll = g_slist_next(llll);
2980                 if (incl_svc == NULL)
2981                         continue;
2982                 svc->included_svcs = g_slist_remove(svc->included_svcs, incl_svc);
2983                 g_free(incl_svc);
2984         }
2985 }
2986
2987 static void __bt_cleanup_remote_services(struct gatt_server_info_t *conn_info)
2988 {
2989         bt_gatt_service_info_list_t *svc_info_list = NULL;
2990         bt_gatt_service_info_t *svc = NULL;
2991         GSList *l;
2992
2993         svc_info_list = __bt_get_service_info_list(conn_info->connection_id);
2994         if (!svc_info_list) {
2995                 BT_INFO("Could not find Svc Info list for the connection ID [%d]",
2996                                 conn_info->connection_id);
2997                 return;
2998         }
2999
3000         BT_INFO("Start Cleanup of all services. Num Services [%d]", g_slist_length(svc_info_list->services));
3001         for (l = svc_info_list->services; l != NULL; ) {
3002                 svc = (bt_gatt_service_info_t *)l->data;
3003                 l = g_slist_next(l);
3004                 if (svc == NULL)
3005                         continue;
3006
3007                 __bt_free_service_info(svc);
3008                 svc_info_list->services = g_slist_remove(svc_info_list->services, svc);
3009                 g_free(svc);
3010         }
3011
3012         list_gatt_info = g_slist_remove(list_gatt_info, svc_info_list);
3013         g_free(svc_info_list);
3014 }
3015
3016 int _bt_register_gatt_client_instance(const char *sender,
3017                 bluetooth_device_address_t *address)
3018 {
3019         int ret = OAL_STATUS_SUCCESS;
3020         char *uuid_string = NULL;
3021         int slot = -1;
3022         int k;
3023         oal_uuid_t uuid;
3024
3025         /* App should ensure that it should not send */
3026         BT_INFO("Check on which instance GATT Client instance can be initialized....");
3027         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
3028                 if (numapps[k].is_initialized == 1) {
3029                         BT_DBG("Instance ID [%d] is already in use..Check next slot",
3030                                         numapps[k].instance_id);
3031                 } else {
3032                         slot = k;
3033                         BT_DBG("Time to register GATT client instancer..UUID to be used is [%s] slot [%d]",
3034                                         uuid_list[slot-1], slot);
3035                         break;
3036                 }
3037         }
3038
3039         if (slot == -1) {
3040                 BT_ERR("No Slot if free for GATT Client registration..");
3041                 return BLUETOOTH_ERROR_REGISTRATION_FAILED;
3042         }
3043
3044         uuid_string = g_malloc0(BT_UUID_STRING_MAX);
3045         _bt_string_to_uuid(uuid_list[slot-1], (service_uuid_t*)&uuid);
3046         g_strlcpy(uuid_string, uuid_list[slot-1], BT_UUID_STRING_MAX);
3047         BT_INFO("Copied UUID string [%s] slot [%d]", uuid_string, slot);
3048
3049         /* Register GATT Client */
3050         ret = gattc_register(&uuid);
3051         if (ret != OAL_STATUS_SUCCESS) {
3052                 BT_ERR("ret: %d", ret);
3053                 g_free(uuid_string);
3054                 return _bt_convert_oal_status_to_bt_error(ret);
3055         }
3056
3057         BT_DBG("GATT Client registration call successfully accepted by OAL..wait for Instance Initialized event from OAL..");
3058
3059         /* Return & wait for GATT Client Instance Initialization event */
3060         memset(numapps[slot].sender, 0x00, sizeof(numapps[slot].sender));
3061         memset(numapps[slot].uuid, 0x00, sizeof(numapps[slot].uuid));
3062
3063         g_strlcpy(numapps[slot].sender, sender, sizeof(numapps[slot].sender));
3064         g_strlcpy(numapps[slot].uuid, uuid_string, sizeof(numapps[slot].uuid));
3065
3066         /* Address is saved here. When event comes, sender + address are matched for replying pending
3067            request. It is impossible for same sender to have requests with two same addresses */
3068         memcpy(&numapps[slot].address.addr, address->addr, sizeof(bluetooth_device_address_t));
3069
3070         numapps[slot].is_initialized = TRUE; /* Set initialization to true here itself */
3071
3072         g_free(uuid_string);
3073         return BLUETOOTH_ERROR_NONE;
3074
3075 }
3076
3077
3078
3079 /* GATT client events */
3080 static void __bt_handle_client_instance_registered(event_gattc_register_t *data)
3081 {
3082         bt_service_app_info_t *info = NULL;
3083         int k;
3084         char *uuid_string = g_malloc0(BT_UUID_STRING_MAX);
3085
3086         _bt_uuid_to_string(&(data->client_uuid), uuid_string);
3087         BT_INFO("Client ID is Initialized [%d] UUID initialized [%s]", data->client_if, uuid_string);
3088
3089         /* Platform GATT client framwork does not use Default GATT client instance
3090            This GATT client instance is never deregistred in the lifetime of bt-service */
3091         if (g_strcmp0(uuid_string, DEFAULT_GATT_CLIENT_UUID) == 0) {
3092                 BT_INFO("Default client Instance Registered");
3093                 gatt_default_client = data->client_if;
3094                 g_free(uuid_string);
3095                 return;
3096         }
3097
3098         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
3099                 info = &numapps[k];
3100
3101                 if (g_strcmp0(info->uuid, uuid_string) == 0) {
3102                         BT_INFO("Found GATT client..  sender [%s]  Slot [%d] occupied", info->sender, k);
3103                         info->is_initialized = TRUE;
3104                         info->client_id = data->client_if;
3105                         __bt_gatt_handle_pending_request_info(BLUETOOTH_ERROR_NONE, BT_GATT_CLIENT_REGISTER,
3106                                         (void*)info, sizeof(bt_service_app_info_t));
3107                         break;
3108                 }
3109         }
3110         g_free(uuid_string);
3111 }
3112
3113 static void __bt_handle_client_connected(event_gattc_conn_t *event_data)
3114 {
3115         int result = BLUETOOTH_ERROR_NONE;
3116         struct gatt_server_info_t *conn_info = NULL;
3117         struct gatt_out_conn_info_t *out_conn_info = NULL;
3118
3119         GVariant *param = NULL;
3120
3121         char *address = g_malloc0(BT_ADDRESS_STRING_SIZE);
3122         _bt_convert_addr_type_to_string(address,
3123                         (unsigned char *)event_data->address.addr);
3124
3125         if (event_data->status != OAL_STATUS_SUCCESS)
3126                 result = BLUETOOTH_ERROR_INTERNAL;
3127
3128         /* DBUS Return fo BT_CONNECT_LE for all the apps */
3129         __bt_gatt_handle_pending_request_info(result, BT_CONNECT_LE, address,
3130                         BT_ADDRESS_STRING_SIZE);
3131
3132         BT_INFO("Local GATT Client Connected: Remote addr[%s] Client Interface [%d] Connection ID [%d] status[%d]",
3133                         address, event_data->client_if, event_data->conn_id, event_data->status);
3134
3135         if (result == BLUETOOTH_ERROR_NONE) {
3136                 /* Check if device is already in connected list */
3137                 conn_info = _bt_find_remote_gatt_server_info(address);
3138
3139                 if (!conn_info) {
3140                         /* Send event to BT-API */
3141                         param = g_variant_new("(is)", result, address);
3142                         _bt_send_event(BT_DEVICE_EVENT,
3143                                         BLUETOOTH_EVENT_GATT_CLIENT_CONNECTED, /* Local device is GATT client */
3144                                         param);
3145
3146                         /* Save Connection info */
3147                         conn_info = g_new0(struct gatt_server_info_t, 1);
3148                         conn_info->addr = g_strdup(address);
3149                         conn_info->client_id = event_data->client_if;
3150 #ifdef __INTEGRATE_GATT_INFO__
3151                         conn_info->instance_id = -1;
3152 #endif
3153                         conn_info->connection_id = event_data->conn_id;
3154                         gatt_server_info_list = g_slist_append(gatt_server_info_list, conn_info);
3155                         BT_DBG("Total num of connected Remote GATT server devices [%d]",
3156                                         g_slist_length(gatt_server_info_list));
3157
3158 #if 0
3159                         BT_INFO("Do a Internal refresh");
3160                         if (OAL_STATUS_SUCCESS != gattc_refresh(conn_info->client_id, &event_data->address))
3161                                 BT_ERR("GATT database refresh failed!!");
3162                         else
3163                                 BT_INFO("GATT database refresh Success!!");
3164 #endif
3165                 } else
3166                         BT_ERR("Local GATT Client connected event for addr[%s], but device is in connected list already", address);
3167
3168                 __bt_add_mtu_gatt_device(address);
3169         } else
3170                 BT_ERR("GATT Client Connection failed!!");
3171
3172         /* If outgoing connection Info is present, then remove it */
3173         out_conn_info = __bt_find_gatt_outgoing_conn_info(address);
3174         if (out_conn_info) {
3175                 BT_ERR("Outgoing Client connect request was sent");
3176                 outgoing_gatt_conn_list = g_slist_remove(outgoing_gatt_conn_list, out_conn_info);
3177                 g_free(out_conn_info->addr);
3178                 g_free(out_conn_info);
3179         }
3180         g_free(address);
3181 }
3182
3183 static void __bt_handle_client_disconnected(event_gattc_conn_t *event_data)
3184 {
3185         int result = BLUETOOTH_ERROR_NONE;
3186
3187         struct gatt_server_info_t *conn_info = NULL;
3188         struct gatt_out_conn_info_t *out_conn_info = NULL;
3189
3190         GVariant *param = NULL;
3191
3192         char *address = g_malloc0(BT_ADDRESS_STRING_SIZE);
3193         _bt_convert_addr_type_to_string(address,
3194                         (unsigned char *)event_data->address.addr);
3195
3196         if (event_data->status != OAL_STATUS_SUCCESS)
3197                 result = BLUETOOTH_ERROR_INTERNAL;
3198
3199         if (NULL ==  _bt_get_request_info_data(BT_DISCONNECT_LE, address)) {
3200                 if (NULL !=  _bt_get_request_info_data(BT_CONNECT_LE, address)) {
3201                         result = BLUETOOTH_ERROR_INTERNAL;
3202                         __bt_gatt_handle_pending_request_info(result, BT_CONNECT_LE,
3203                                         address, BT_ADDRESS_STRING_SIZE);
3204                         BT_ERR("Failed to connect Local GATT Remote addr[%s]", address);
3205                         g_free(address);
3206                         return;
3207                 }
3208         } else {
3209                 /* DBUS Return for BT_DISCONNECT_LE for all the apps */
3210                 __bt_gatt_handle_pending_request_info(result, BT_DISCONNECT_LE, address,
3211                                 BT_ADDRESS_STRING_SIZE);
3212         }
3213         BT_INFO("Local GATT Client DisConnected: Remote addr[%s] Client Interface [%d] Connection ID [%d] status [%d]",
3214                         address + 12, event_data->client_if, event_data->conn_id, event_data->status);
3215
3216         /* Remove Connection info */
3217         conn_info = _bt_find_remote_gatt_server_info(address);
3218
3219         if (conn_info) {
3220                 param = g_variant_new("(is)", result, address);
3221                 /* Send event to application */
3222                 _bt_send_event(BT_DEVICE_EVENT,
3223                                 BLUETOOTH_EVENT_GATT_CLIENT_DISCONNECTED,
3224                                 param);
3225
3226                 BT_INFO("Remove GATT server info from List..");
3227                 /* Remove all services from info list_gatt_info */
3228                 __bt_cleanup_remote_services(conn_info);
3229
3230                 /* Remove info from List */
3231                 gatt_server_info_list = g_slist_remove(gatt_server_info_list, conn_info);
3232                 BT_INFO("Total num of connected GATT servers [%d]", g_slist_length(gatt_server_info_list));
3233                 g_free(conn_info->addr);
3234                 g_free(conn_info);
3235         } else
3236                 BT_INFO("Can not find conn info, already removed!");
3237
3238         __bt_remove_mtu_gatt_device(address);
3239
3240         /* If outgoing connection Info is present, then remove it */
3241         out_conn_info = __bt_find_gatt_outgoing_conn_info(address);
3242         if (out_conn_info) {
3243                 BT_ERR("Client Disconnected event, but outgoing connect request was sent");
3244                 outgoing_gatt_conn_list = g_slist_remove(outgoing_gatt_conn_list, out_conn_info);
3245                 g_free(out_conn_info->addr);
3246                 g_free(out_conn_info);
3247         }
3248         g_free(address);
3249 }
3250
3251
3252 static void __bt_handle_client_service_search_result(
3253                 event_gattc_service_result_t *event_data)
3254 {
3255         /* Pre: status is never fail from OAL */
3256
3257         /* Find service list from address */
3258         bt_gatt_service_info_list_t *svc_info_list;
3259         bt_gatt_service_info_t *svc_info;
3260
3261         svc_info_list = __bt_get_service_info_list(event_data->conn_status.conn_id);
3262         if (!svc_info_list) {
3263                 BT_DBG("Service info list not present for connection ID %d, means first time browse", event_data->conn_status.conn_id);
3264                 /* Means for this conn_id, no services are ever browsed, first time,
3265                    create service info list for this conn_id */
3266                 svc_info_list = g_malloc0(sizeof(bt_gatt_service_info_list_t));
3267                 svc_info_list->conn_id = event_data->conn_status.conn_id;
3268                 list_gatt_info = g_slist_append(list_gatt_info, svc_info_list);
3269         }
3270
3271         /* send list and current service's uuid and instance id to find it  */
3272         svc_info = __bt_find_matching_service(svc_info_list, &event_data->srvc_id);
3273         /* If not found, check if service changed, if yes, means this is a new service added
3274            in remote GATT device, update uuid info in svc info list structure, to be used when
3275            search is completed */
3276         if (!svc_info) {
3277                 if (svc_info_list->info.is_changed) {
3278                         BT_DBG("Service Changed indication already found for connection ID %d", event_data->conn_status.conn_id);
3279                         memcpy(svc_info_list->info.uuid, event_data->srvc_id.id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
3280                 }
3281                 /* Create and add new service in service list */
3282                 svc_info = g_malloc0(sizeof(bt_gatt_service_info_t));
3283                 memcpy(svc_info->uuid, event_data->srvc_id.id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
3284                 svc_info->inst_id = event_data->srvc_id.id.inst_id;
3285                 svc_info->is_primary = event_data->srvc_id.is_prmry;
3286                 svc_info_list->services = g_slist_append(svc_info_list->services, svc_info);
3287                 BT_DBG("Service created and added in Svc info list or connection ID %d", event_data->conn_status.conn_id);
3288         } else {
3289                 /* If returned matching service info, then just update service_rmeoved value inside it to 0 */
3290                 svc_info->is_removed = 0;
3291         }
3292 }
3293
3294 static void __bt_handle_client_service_search_completed(
3295                 event_gattc_conn_status_t *event_data)
3296 {
3297         struct gatt_server_info_t *conn_info = NULL;
3298         bt_gatt_service_info_list_t *svc_info_list;
3299         bt_gatt_service_info_t *svc_info;
3300         bt_services_browse_info_t browse_info;
3301         unsigned char uuid_empty[BLUETOOTH_UUID_HEX_MAX_LEN];
3302
3303         memset(&uuid_empty, 0x00, BLUETOOTH_UUID_HEX_MAX_LEN);
3304         memset(&browse_info, 0x00, sizeof(bt_services_browse_info_t));
3305         BT_INFO("Primary Services browsing completed status[%d] conn ID [%d]",
3306                         event_data->status, event_data->conn_id);
3307
3308         conn_info = __bt_find_remote_gatt_server_info_from_conn_id(event_data->conn_id);
3309
3310         svc_info_list = __bt_get_service_info_list(event_data->conn_id);
3311         if (!svc_info_list) {
3312                 BT_ERR("No services browsed ever for addr [%s]", conn_info->addr);
3313
3314                 /* Just build response and return ERROR */
3315                 __bt_build_service_browse_info(event_data->conn_id, &browse_info);
3316
3317                 __bt_gatt_handle_pending_request_info(BLUETOOTH_ERROR_INTERNAL,
3318                                 BT_GATT_GET_PRIMARY_SERVICES, &browse_info,
3319                                 sizeof(bt_services_browse_info_t));
3320                 return;
3321         }
3322
3323         /* If fail, then send event with error  */
3324         if (event_data->status != OAL_STATUS_SUCCESS) {
3325                 /* Just build response and return ERROR */
3326                 __bt_build_service_browse_info(event_data->conn_id, &browse_info);
3327
3328                 __bt_gatt_handle_pending_request_info(BLUETOOTH_ERROR_INTERNAL,
3329                                 BT_GATT_GET_PRIMARY_SERVICES, &browse_info,
3330                                 sizeof(bt_services_browse_info_t));
3331                 return;
3332         }
3333
3334         /* If success, then find service info list from address */
3335
3336         /* If svc_changed == 1 and uuid valid, means a new service is added*/
3337         if (svc_info_list->info.is_changed && !memcmp(uuid_empty, svc_info_list->info.uuid, BLUETOOTH_UUID_HEX_MAX_LEN)) {
3338                 /* TODO: Send event -Service added with instance ID and UUID of newly added service */
3339                 BT_INFO("new service added");
3340
3341                 BT_INFO("TODO new service added");
3342         }
3343
3344         /* If svc_changed == 1 and uuid invalid, then a service is removed */
3345         if (svc_info_list->info.is_changed && memcmp(uuid_empty, svc_info_list->info.uuid, BLUETOOTH_UUID_HEX_MAX_LEN)) {
3346                 /* Scan through the service info list to find service with is_removed = 1*/
3347                 svc_info = __bt_find_removed_service(svc_info_list);
3348
3349                 /* TODO Send event - Service removed with instance ID and UUID of just rmeoved service */
3350
3351                 /* Remove that service info from service info list */
3352                 svc_info_list->services = g_slist_remove(svc_info_list->services, svc_info);
3353
3354                 /* Delete that service completely from svc_info list*/
3355                 __bt_remove_service_info_from_list(svc_info);
3356                 g_free(svc_info);
3357         }
3358
3359         /* Reset svc_changed = 0, and reset UUID = all 0's */
3360         svc_info_list->info.is_changed = 0;
3361         memset(&svc_info_list->info.uuid, 0x00, BLUETOOTH_UUID_HEX_MAX_LEN);
3362
3363         /* Build Reply and send to service browse primary services request of pending apps */
3364         __bt_build_service_browse_info(event_data->conn_id, &browse_info);
3365
3366         __bt_gatt_handle_pending_request_info(BLUETOOTH_ERROR_NONE,
3367                         BT_GATT_GET_PRIMARY_SERVICES, &browse_info,
3368                         sizeof(bt_services_browse_info_t));
3369 }
3370
3371
3372 static void __bt_handle_client_characteristic_search_result(
3373                 event_gattc_characteristic_result_t *event_data)
3374 {
3375         bt_gatt_service_info_list_t *svc_info_list;
3376         bt_gatt_service_info_t *svc_info;
3377         bt_gatt_char_info_t *char_info;
3378         bt_char_browse_info_t browse_info;
3379
3380         memset(&browse_info, 0x00, sizeof(bt_char_browse_info_t));
3381
3382         /* If success */
3383         if (event_data->conn_status.status == OAL_STATUS_SUCCESS) {
3384                 /* Find service info list from address */
3385                 svc_info_list = __bt_get_service_info_list(event_data->conn_status.conn_id);
3386                 if (svc_info_list == NULL) {
3387                         BT_ERR("svc_info_list is NULL");
3388                         return;
3389                 }
3390
3391                 /* Find matching service info from svc info list */
3392                 svc_info = __bt_find_matching_service(svc_info_list, &event_data->srvc_id);
3393                 if (svc_info == NULL) {
3394                         BT_ERR("svc_info is NULL");
3395                         return;
3396                 }
3397
3398                 /* Find Matching char from service info in event */
3399                 char_info = __bt_find_matching_charc(svc_info, &event_data->char_id);
3400                 /* If not found, then add new characteristic and return */
3401                 if (!char_info) {
3402                         BT_DBG("Add new characteristic");
3403                         char_info = g_malloc0(sizeof(bt_gatt_char_info_t));
3404                         memcpy(char_info->uuid, event_data->char_id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
3405
3406                         char_info->inst_id = event_data->char_id.inst_id;
3407                         char_info->props = event_data->char_prop;
3408                         svc_info->chars = g_slist_append(svc_info->chars, char_info);
3409                 } else {
3410                         /* If found, then return */
3411                         BT_DBG("update char property as Characteristic browsed is already present");
3412                         char_info->props |= event_data->char_prop;
3413                 }
3414         } else {
3415                 /* If Not success: Means Charc browse is completed  */
3416                 /* Find char list from service in event */
3417                 /* Find service list from address */
3418                 svc_info_list = __bt_get_service_info_list(event_data->conn_status.conn_id);
3419                 if (svc_info_list == NULL) {
3420                         BT_ERR("svc_info_list is NULL");
3421                         return;
3422                 }
3423
3424                 /* Find service info from service in event */
3425                 svc_info = __bt_find_matching_service(svc_info_list, &event_data->srvc_id);
3426                 if (svc_info == NULL) {
3427                         BT_ERR("svc_info is NULL");
3428                         return;
3429                 }
3430
3431                 /* Build char list from service in event */
3432                 __bt_build_char_browse_info(event_data->conn_status.conn_id,
3433                                 svc_info, &browse_info);
3434
3435                 /* Create response and return by sending event*/
3436                 /* Build Reply and send to service browse All Included services request of pending apps */
3437                 __bt_gatt_handle_pending_request_info(BLUETOOTH_ERROR_NONE,
3438                                 BT_GATT_GET_SERVICE_PROPERTIES,
3439                                 &browse_info,
3440                                 sizeof(bt_char_browse_info_t));
3441         }
3442 }
3443
3444 static void __bt_handle_client_descriptor_search_result(
3445                 event_gattc_descriptor_result_t *event_data)
3446 {
3447         bt_gatt_service_info_list_t *svc_info_list;
3448         bt_gatt_service_info_t *svc_info;
3449         bt_gatt_char_info_t *char_info;
3450         bt_gatt_descriptor_info_t *desc_info;
3451         bt_descriptor_browse_info_t browse_info;
3452
3453         BT_DBG("descriptor search result status [%d]", event_data->conn_status.status);
3454
3455         memset(&browse_info, 0x00, sizeof(bt_descriptor_browse_info_t));
3456
3457         /* If success */
3458         if (event_data->conn_status.status == OAL_STATUS_SUCCESS) {
3459                 /* Find service list from address */
3460                 svc_info_list = __bt_get_service_info_list(event_data->conn_status.conn_id);
3461                 if (svc_info_list == NULL) {
3462                         BT_ERR("svc_info_list is NULL");
3463                         return;
3464                 }
3465
3466                 svc_info = __bt_find_matching_service(svc_info_list, &event_data->srvc_id);
3467                 if (svc_info == NULL) {
3468                         BT_ERR("svc_info is NULL");
3469                         return;
3470                 }
3471
3472                 char_info = __bt_find_matching_charc(svc_info, &event_data->char_id);
3473                 if (char_info == NULL) {
3474                         BT_ERR("char_info is NULL");
3475                         return;
3476                 }
3477
3478                 desc_info = __bt_find_matching_desc(char_info, &event_data->descr_id);
3479                 /* If not found, add new descriptor and return */
3480                 if (!desc_info) {
3481                         desc_info = g_malloc0(sizeof(bt_gatt_descriptor_info_t));
3482                         memcpy(desc_info->uuid, event_data->descr_id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
3483
3484                         desc_info->inst_id = event_data->descr_id.inst_id;
3485                         char_info->descs = g_slist_append(char_info->descs, desc_info);
3486
3487                 } else {
3488                         /* If found, then return */
3489                         BT_DBG("Descriptor browsed is already presesnt");
3490                 }
3491         } else {
3492                 /* If Not success */
3493                 /* Find service list from address */
3494                 /* Find included service list from service in event */
3495                 /* Create response and return by sending event*/
3496                 svc_info_list = __bt_get_service_info_list(event_data->conn_status.conn_id);
3497                 if (svc_info_list == NULL) {
3498                         BT_ERR("svc_info_list is NULL");
3499                         return;
3500                 }
3501
3502                 /* Find service info from service in event */
3503                 svc_info = __bt_find_matching_service(svc_info_list, &event_data->srvc_id);
3504                 if (svc_info == NULL) {
3505                         BT_ERR("svc_info is NULL");
3506                         return;
3507                 }
3508
3509                 /* Find char info from char in event */
3510                 char_info = __bt_find_matching_charc(svc_info, &event_data->char_id);
3511                 if (char_info == NULL) {
3512                         BT_ERR("char_info is NULL");
3513                         return;
3514                 }
3515
3516                 /* Build descriptor list from char in event */
3517                 __bt_build_descriptor_browse_info(event_data->conn_status.conn_id,
3518                                 svc_info, char_info, &browse_info);
3519
3520                 /* DBUS returni */
3521                 __bt_gatt_handle_pending_request_info(BLUETOOTH_ERROR_NONE,
3522                                 BT_GATT_GET_CHARACTERISTIC_PROPERTIES,
3523                                 &browse_info,
3524                                 sizeof(bt_descriptor_browse_info_t));
3525         }
3526 }
3527
3528 static void __bt_handle_client_characteristic_read_data(
3529                 event_gattc_read_data *event_data)
3530 {
3531         int result = BLUETOOTH_ERROR_NONE;
3532         struct gatt_server_info_t *conn_info = NULL;
3533         bluetooth_gatt_client_char_prop_info_t read_info;
3534
3535         /* Read Information data structures */
3536         GVariant *param = NULL;
3537         GVariant *data = NULL;
3538         GVariant *data_svc_uuid = NULL;
3539         GVariant *data_char_uuid = NULL;
3540         char *read_val = NULL;
3541         char *svc_uuid = NULL;
3542         char *char_uuid = NULL;
3543         int uuid_len = 16;
3544
3545         //memset(&read_info, 0x00, sizeof(bt_gatt_handle_property_t));
3546         memset(&read_info, 0x00, sizeof(bluetooth_gatt_client_char_prop_info_t));
3547
3548         /* Extract Address from conn_id of event data */
3549         conn_info = __bt_find_remote_gatt_server_info_from_conn_id(
3550                         event_data->uuid_status.conn_status.conn_id);
3551
3552         BT_INFO("Characteristic Read result from addr [%s] status [%d]",
3553                         conn_info->addr, event_data->uuid_status.conn_status.status);
3554
3555         /* Fill char in buffer */
3556         memcpy(&read_info.characteristic.uuid,
3557                         event_data->uuid_status.char_id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
3558         read_info.characteristic.instance_id = event_data->uuid_status.char_id.inst_id;
3559
3560         /* Fill Service in buffer */
3561         memcpy(&read_info.svc.uuid,
3562                         event_data->uuid_status.srvc_id.id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
3563         read_info.svc.instance_id = event_data->uuid_status.srvc_id.id.inst_id;
3564
3565         /* Fill remote device address */
3566         _bt_convert_addr_string_to_type(read_info.device_address.addr, conn_info->addr);
3567
3568         /* Fill data and reply to all apps waiting for Read result on the same characteristic
3569 Note: Even in case of failure, address, handles and result code should be returned */
3570         if (event_data->uuid_status.conn_status.status != OAL_STATUS_SUCCESS)
3571                 result = BLUETOOTH_ERROR_INTERNAL;
3572         else {
3573                 if (event_data->data_len > 0) {
3574                         /* DEBUG */
3575                 //      for (i = 0; i < event_data->data_len; i++)
3576                 //              BT_INFO("Data[%d] = [0x%x]", i, event_data->data[i]);
3577
3578                         /* Read data */
3579                         read_val = g_memdup(&event_data->data[0], event_data->data_len);
3580
3581                         data = g_variant_new_from_data(
3582                                         G_VARIANT_TYPE_BYTESTRING,
3583                                         read_val,
3584                                         event_data->data_len,
3585                                         TRUE, NULL, NULL);
3586                 } else {
3587                         BT_ERR("Characteristic Read success, but no data!!!");
3588
3589                         data = g_variant_new_from_data(
3590                                         G_VARIANT_TYPE_BYTESTRING,
3591                                         NULL,
3592                                         0,
3593                                         FALSE, NULL, NULL);
3594                 }
3595
3596                 /* SVC uuid */
3597                 svc_uuid = g_memdup(&event_data->uuid_status.srvc_id.id.uuid.uuid[0], uuid_len);
3598
3599                 data_svc_uuid = g_variant_new_from_data(
3600                                 G_VARIANT_TYPE_BYTESTRING,
3601                                 svc_uuid,
3602                                 16,
3603                                 TRUE, NULL, NULL);
3604
3605                 /* Char uuid */
3606                 char_uuid = g_memdup(&event_data->uuid_status.char_id.uuid.uuid[0], uuid_len);
3607
3608                 data_char_uuid = g_variant_new_from_data(
3609                                 G_VARIANT_TYPE_BYTESTRING,
3610                                 char_uuid,
3611                                 16,
3612                                 TRUE, NULL, NULL);
3613
3614                 param = g_variant_new("(isn@ayin@ayin@ay)", result,
3615                                 conn_info->addr,
3616                                 16,
3617                                 data_svc_uuid,
3618                                 event_data->uuid_status.srvc_id.id.inst_id,
3619                                 16,
3620                                 data_char_uuid,
3621                                 event_data->uuid_status.char_id.inst_id,
3622                                 event_data->data_len,
3623                                 data);
3624
3625                 /* Send Event */
3626                 _bt_send_event(BT_GATT_CLIENT_EVENT,
3627                                 BLUETOOTH_EVENT_GATT_READ_CHAR,
3628                                 param);
3629         }
3630         /* Send DBUS return */
3631         __bt_gatt_handle_pending_request_info(result,
3632                         BT_GATT_READ_CHARACTERISTIC,
3633                         &read_info,
3634                         sizeof(bluetooth_gatt_client_char_prop_info_t));
3635
3636         if (read_val)
3637                 g_free(read_val);
3638         if (svc_uuid)
3639                 g_free(svc_uuid);
3640         if (char_uuid)
3641                 g_free(char_uuid);
3642 }
3643
3644 /* Modified */
3645 static void __bt_handle_client_descriptor_read_data(
3646                 event_gattc_read_data *event_data)
3647 {
3648         int result = BLUETOOTH_ERROR_NONE;
3649         struct gatt_server_info_t *conn_info = NULL;
3650         bluetooth_gatt_client_desc_prop_info_t read_info;
3651
3652         /* Read Information data structures */
3653         GVariant *param = NULL;
3654         GVariant *data = NULL;
3655         GVariant *data_svc_uuid = NULL;
3656         GVariant *data_char_uuid = NULL;
3657         GVariant *data_desc_uuid = NULL;
3658         char *read_val = NULL;
3659         char *svc_uuid = NULL;
3660         char *char_uuid = NULL;
3661         char *desc_uuid = NULL;
3662         int i;
3663         int uuid_len = 16;
3664
3665         memset(&read_info, 0x00, sizeof(bluetooth_gatt_client_desc_prop_info_t));
3666
3667         /* Extract Address from conn_id of event data */
3668         conn_info = __bt_find_remote_gatt_server_info_from_conn_id(
3669                         event_data->uuid_status.conn_status.conn_id);
3670
3671         BT_INFO("Descriptor Read result from addr [%s] status [%d]",
3672                         conn_info->addr, event_data->uuid_status.conn_status.status);
3673
3674         /* Fill descriptor informations in buffer */
3675         memcpy(&read_info.descriptor.uuid,
3676                         event_data->uuid_status.descr_id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
3677         read_info.descriptor.instance_id = event_data->uuid_status.descr_id.inst_id;
3678
3679         /* Fill Characteristic informations in buffer */
3680         memcpy(&read_info.characteristic.uuid,
3681                         event_data->uuid_status.char_id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
3682         read_info.characteristic.instance_id = event_data->uuid_status.char_id.inst_id;
3683
3684         /* Fill Service informations in buffer */
3685         memcpy(&read_info.svc.uuid,
3686                         event_data->uuid_status.srvc_id.id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
3687         read_info.svc.instance_id = event_data->uuid_status.srvc_id.id.inst_id;
3688
3689         /* Fill remote device address */
3690         _bt_convert_addr_string_to_type(read_info.device_address.addr, conn_info->addr);
3691
3692         /* Fill data and reply to all apps waiting for Read result on the same characteristic */
3693         if (event_data->uuid_status.conn_status.status != OAL_STATUS_SUCCESS)
3694                 result = BLUETOOTH_ERROR_INTERNAL;
3695         else {
3696                 BT_INFO("desc data len:%d", event_data->data_len);
3697                 if (event_data->data_len > 0) {
3698                         /* DEBUG */
3699                         for (i = 0; i < event_data->data_len; i++)
3700                                 BT_DBG("Data[%d] = [0x%x]", i, event_data->data[i]);
3701
3702                         /* Read data */
3703                         read_val = g_memdup(&event_data->data[0], event_data->data_len);
3704
3705                         data = g_variant_new_from_data(
3706                                         G_VARIANT_TYPE_BYTESTRING,
3707                                         read_val,
3708                                         event_data->data_len,
3709                                         TRUE, NULL, NULL);
3710                 } else {
3711                         BT_INFO("Descriptor Read success, but no data!!!");
3712
3713                         data = g_variant_new_from_data(
3714                                         G_VARIANT_TYPE_BYTESTRING,
3715                                         NULL,
3716                                         0,
3717                                         FALSE, NULL, NULL);
3718                 }
3719                 /* SVC uuid */
3720                 svc_uuid = g_memdup(&event_data->uuid_status.srvc_id.id.uuid.uuid[0], uuid_len);
3721
3722                 data_svc_uuid = g_variant_new_from_data(
3723                                 G_VARIANT_TYPE_BYTESTRING,
3724                                 svc_uuid,
3725                                 16,
3726                                 TRUE, NULL, NULL);
3727
3728                 /* Char uuid */
3729                 char_uuid = g_memdup(&event_data->uuid_status.char_id.uuid.uuid[0], uuid_len);
3730
3731                 data_char_uuid = g_variant_new_from_data(
3732                                 G_VARIANT_TYPE_BYTESTRING,
3733                                 char_uuid,
3734                                 16,
3735                                 TRUE, NULL, NULL);
3736
3737                 /* Desc uuid */
3738                 desc_uuid = g_memdup(&event_data->uuid_status.descr_id.uuid.uuid[0], uuid_len);
3739
3740                 data_desc_uuid = g_variant_new_from_data(
3741                                 G_VARIANT_TYPE_BYTESTRING,
3742                                 desc_uuid,
3743                                 16,
3744                                 TRUE, NULL, NULL);
3745
3746                 param = g_variant_new("(isn@ayin@ayin@ayin@ay)", result,
3747                                 conn_info->addr,
3748                                 uuid_len,
3749                                 data_svc_uuid,
3750                                 event_data->uuid_status.srvc_id.id.inst_id,
3751                                 16,
3752                                 data_char_uuid,
3753                                 event_data->uuid_status.char_id.inst_id,
3754                                 16,
3755                                 data_desc_uuid,
3756                                 event_data->uuid_status.descr_id.inst_id,
3757                                 event_data->data_len,
3758                                 data);
3759
3760                 /* Send Event */
3761                 _bt_send_event(BT_GATT_CLIENT_EVENT,
3762                                         BLUETOOTH_EVENT_GATT_READ_DESC,
3763                                         param);
3764         }
3765         BT_INFO("Send DBUS rpely for GATT Read Descriptor");
3766         /* Send DBUS return */
3767         __bt_gatt_handle_pending_request_info(result,
3768                         BT_GATT_READ_DESCRIPTOR_VALUE,
3769                         &read_info,
3770                         sizeof(bluetooth_gatt_client_desc_prop_info_t));
3771         if (read_val)
3772                 g_free(read_val);
3773         if (svc_uuid)
3774                 g_free(svc_uuid);
3775         if (char_uuid)
3776                 g_free(char_uuid);
3777         if (desc_uuid)
3778                 g_free(desc_uuid);
3779 }
3780
3781 static void __bt_handle_client_characteristic_write_data(
3782                 event_gattc_write_data *event_data)
3783 {
3784         int result = BLUETOOTH_ERROR_NONE;
3785         struct gatt_server_info_t *conn_info = NULL;
3786         bluetooth_gatt_client_char_prop_info_t write_info;
3787
3788         /* Read Information data structures */
3789         GVariant *param = NULL;
3790         GVariant *data_svc_uuid = NULL;
3791         GVariant *data_char_uuid = NULL;
3792         char *svc_uuid = NULL;
3793         char *char_uuid = NULL;
3794         int uuid_len = 16;
3795
3796         memset(&write_info, 0x00, sizeof(bluetooth_gatt_client_char_prop_info_t));
3797
3798         /* Extract Address from conn_id of event data */
3799         conn_info = __bt_find_remote_gatt_server_info_from_conn_id(
3800                         event_data->conn_status.conn_id);
3801
3802         BT_DBG("Characteristic Write callback from addr [%s] status [%d]",
3803                         conn_info->addr, event_data->conn_status.status);
3804
3805         /* Fill char in buffer */
3806         memcpy(&write_info.characteristic.uuid,
3807                         event_data->char_id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
3808         write_info.characteristic.instance_id = event_data->char_id.inst_id;
3809
3810         /* Fill Service in buffer */
3811         memcpy(&write_info.svc.uuid,
3812                         event_data->srvc_id.id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
3813         write_info.svc.instance_id = event_data->srvc_id.id.inst_id;
3814
3815         /* Fill remote device address */
3816         _bt_convert_addr_string_to_type(write_info.device_address.addr, conn_info->addr);
3817
3818         if (event_data->conn_status.status != OAL_STATUS_SUCCESS) {
3819                 result = BLUETOOTH_ERROR_INTERNAL;
3820                 goto done;
3821         }
3822
3823         /* Build event */
3824         /* SVC uuid */
3825         svc_uuid = g_memdup(&event_data->srvc_id.id.uuid.uuid[0], uuid_len);
3826
3827         data_svc_uuid = g_variant_new_from_data(
3828                         G_VARIANT_TYPE_BYTESTRING,
3829                         svc_uuid,
3830                         uuid_len,
3831                         TRUE, NULL, NULL);
3832
3833         /* Char uuid */
3834         char_uuid = g_memdup(&event_data->char_id.uuid.uuid[0], uuid_len);
3835
3836         data_char_uuid = g_variant_new_from_data(
3837                         G_VARIANT_TYPE_BYTESTRING,
3838                         char_uuid,
3839                         uuid_len,
3840                         TRUE, NULL, NULL);
3841
3842         param = g_variant_new("(isn@ayin@ayi)", result,
3843                         conn_info->addr,
3844                         16,
3845                         data_svc_uuid,
3846                         event_data->srvc_id.id.inst_id,
3847                         16,
3848                         data_char_uuid,
3849                         event_data->char_id.inst_id);
3850
3851         /* Send Event */
3852         _bt_send_event(BT_GATT_CLIENT_EVENT,
3853                         BLUETOOTH_EVENT_GATT_WRITE_CHAR,
3854                         param);
3855
3856         /* Free data */
3857         if (svc_uuid)
3858                 g_free(svc_uuid);
3859         if (char_uuid)
3860                 g_free(char_uuid);
3861 done:
3862         /* Send DBUS return */
3863         __bt_gatt_handle_pending_request_info(result,
3864                         BT_GATT_WRITE_CHARACTERISTIC_VALUE_BY_TYPE,
3865                         &write_info,
3866                         sizeof(bluetooth_gatt_client_char_prop_info_t));
3867 }
3868
3869
3870 static void __bt_handle_client_descriptor_write_data(
3871                 event_gattc_write_data *event_data)
3872 {
3873         int result = BLUETOOTH_ERROR_NONE;
3874         struct gatt_server_info_t *conn_info = NULL;
3875         bluetooth_gatt_client_desc_prop_info_t write_info;
3876
3877         /* Write Information data structures */
3878         GVariant *param = NULL;
3879         GVariant *data_svc_uuid = NULL;
3880         GVariant *data_char_uuid = NULL;
3881         GVariant *data_desc_uuid = NULL;
3882         char *svc_uuid = NULL;
3883         char *char_uuid = NULL;
3884         char *desc_uuid = NULL;
3885         int uuid_len = 16;
3886
3887         memset(&write_info, 0x00, sizeof(bluetooth_gatt_client_desc_prop_info_t));
3888
3889         /* Extract Address from conn_id of event data */
3890         conn_info = __bt_find_remote_gatt_server_info_from_conn_id(
3891                         event_data->conn_status.conn_id);
3892
3893         if (NULL == conn_info) {
3894                 BT_ERR("Failed to get the conn info for conn_id [%d]", event_data->conn_status.conn_id);
3895                 return;
3896         }
3897
3898         BT_INFO("Descriptor Write callback from addr [%s] status [%d]",
3899                         conn_info->addr, event_data->conn_status.status);
3900
3901         /* Fill descriptor informations in buffer */
3902         memcpy(&write_info.descriptor.uuid,
3903                         event_data->descr_id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
3904         write_info.descriptor.instance_id = event_data->descr_id.inst_id;
3905
3906         /* Fill Characteristic informations in buffer */
3907         memcpy(&write_info.characteristic.uuid,
3908                         event_data->char_id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
3909         write_info.characteristic.instance_id = event_data->char_id.inst_id;
3910
3911         /* Fill Service informations in buffer */
3912         memcpy(&write_info.svc.uuid,
3913                         event_data->srvc_id.id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
3914         write_info.svc.instance_id = event_data->srvc_id.id.inst_id;
3915
3916         /* Fill remote device address */
3917         _bt_convert_addr_string_to_type(write_info.device_address.addr, conn_info->addr);
3918
3919         if (event_data->conn_status.status != OAL_STATUS_SUCCESS) {
3920                 result = BLUETOOTH_ERROR_INTERNAL;
3921                 goto done;
3922         }
3923
3924         /* Build event */
3925         /* SVC uuid */
3926         svc_uuid = g_memdup(&event_data->srvc_id.id.uuid.uuid[0], uuid_len);
3927
3928         data_svc_uuid = g_variant_new_from_data(
3929                         G_VARIANT_TYPE_BYTESTRING,
3930                         svc_uuid,
3931                         uuid_len,
3932                         TRUE, NULL, NULL);
3933
3934         /* Char uuid */
3935         char_uuid = g_memdup(&event_data->char_id.uuid.uuid[0], uuid_len);
3936
3937         data_char_uuid = g_variant_new_from_data(
3938                         G_VARIANT_TYPE_BYTESTRING,
3939                         char_uuid,
3940                         uuid_len,
3941                         TRUE, NULL, NULL);
3942
3943         /* Desc uuid */
3944         desc_uuid = g_memdup(&event_data->descr_id.uuid.uuid[0], uuid_len);
3945
3946         data_desc_uuid = g_variant_new_from_data(
3947                         G_VARIANT_TYPE_BYTESTRING,
3948                         desc_uuid,
3949                         uuid_len,
3950                         TRUE, NULL, NULL);
3951
3952         param = g_variant_new("(isn@ayin@ayin@ayi)", result,
3953                         conn_info->addr,
3954                         16,
3955                         data_svc_uuid,
3956                         event_data->srvc_id.id.inst_id,
3957                         16,
3958                         data_char_uuid,
3959                         event_data->char_id.inst_id,
3960                         16,
3961                         data_desc_uuid,
3962                         event_data->descr_id.inst_id);
3963
3964         /* Send Event */
3965         _bt_send_event(BT_GATT_CLIENT_EVENT,
3966                         BLUETOOTH_EVENT_GATT_WRITE_DESC,
3967                         param);
3968
3969         /* Free data */
3970         if (svc_uuid)
3971                 g_free(svc_uuid);
3972         if (char_uuid)
3973                 g_free(char_uuid);
3974         if (desc_uuid)
3975                 g_free(desc_uuid);
3976 done:
3977         /* Send DBUS return */
3978         __bt_gatt_handle_pending_request_info(result,
3979                         BT_GATT_WRITE_DESCRIPTOR_VALUE,
3980                         &write_info,
3981                         sizeof(bluetooth_gatt_client_desc_prop_info_t));
3982 }
3983
3984 static void __bt_hanlde_le_device_disconnection(event_dev_conn_status_t *event_data)
3985 {
3986         int result = BLUETOOTH_ERROR_INTERNAL;
3987         char *address = g_malloc0(BT_ADDRESS_STRING_SIZE);
3988
3989         _bt_convert_addr_type_to_string(address, (unsigned char *)event_data->address.addr);
3990
3991         /* DBUS Return with fail of pending BT_CONNECT_LE for all the apps */
3992         BT_INFO("Local GATT Client disconnected: Remote addr[%s] ", address + 12);
3993
3994         __bt_gatt_handle_pending_request_info(result, BT_CONNECT_LE, address,
3995                                                  BT_ADDRESS_STRING_SIZE);
3996         g_free(address);
3997 }
3998
3999 static void __bt_handle_client_notification_registered(
4000                 event_gattc_regdereg_notify_t *event_data,
4001                 gboolean is_registered)
4002 {
4003         int result = BLUETOOTH_ERROR_NONE;
4004         struct gatt_server_info_t *conn_info = NULL;
4005         bt_gatt_notif_reg_info_t notif_info;
4006         BT_INFO("+");
4007
4008         memset(&notif_info, 0x00, sizeof(bt_gatt_notif_reg_info_t));
4009
4010         BT_INFO("Client Interface [%d] status [%d]",
4011                         event_data->conn_id,
4012                         event_data->status);
4013
4014         /* Extract Address from conn_id of event data */
4015         conn_info = __bt_find_remote_gatt_server_info_from_conn_id(event_data->conn_id);
4016         if (!conn_info) {
4017                 BT_INFO("Connection Info is not present, return");
4018                 return;
4019         }
4020         BT_INFO("Notification Registered for addr [%s]", conn_info->addr);
4021
4022         /* Fill svc informations in buffer */
4023         memcpy(&notif_info.svc_uuid,
4024                         event_data->srvc_id.id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4025         notif_info.svc_inst = event_data->srvc_id.id.inst_id;
4026
4027         /* Fill char in buffer */
4028         memcpy(&notif_info.char_uuid,
4029                         event_data->char_id.uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4030         notif_info.char_inst = event_data->char_id.inst_id;
4031
4032         /* Fill remote device address */
4033         _bt_convert_addr_string_to_type(notif_info.addr.addr, conn_info->addr);
4034
4035         notif_info.is_registered = is_registered;
4036
4037         if (event_data->status != OAL_STATUS_SUCCESS)
4038                 result = BLUETOOTH_ERROR_INTERNAL;
4039
4040         /* Send DBUS Return for BT_GATT_WATCH_CHARACTERISTIC */
4041         __bt_gatt_handle_pending_request_info(result,
4042                         BT_GATT_WATCH_CHARACTERISTIC,
4043                         &notif_info,
4044                         sizeof(bt_gatt_notif_reg_info_t));
4045 }
4046
4047 static void __bt_handle_client_notification_data(event_gattc_notify_data *event_data)
4048 {
4049         /* No status in this event from OAL */
4050         int result = BLUETOOTH_ERROR_NONE;
4051
4052         /* Read Information data structures */
4053         GVariant *param = NULL;
4054         GVariant *data = NULL;
4055         GVariant *data_svc_uuid = NULL;
4056         GVariant *data_char_uuid = NULL;
4057         char *read_val = NULL;
4058         char *svc_uuid = NULL;
4059         char *char_uuid = NULL;
4060         char *addr = NULL;
4061         int i;
4062         int uuid_len = 16;
4063         BT_INFO("+");
4064
4065         BT_INFO("Notifcation of charc data changed");
4066
4067         if (event_data->data_len > 0) {
4068                 /* DEBUG */
4069                 for (i = 0; i < event_data->data_len; i++)
4070                         BT_INFO("Data[%d] = [0x%x]", i, event_data->data[i]);
4071
4072                 /* Fill address */
4073                 addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
4074                 _bt_convert_addr_type_to_string(addr,
4075                                 (unsigned char *)&(event_data->address.addr));
4076
4077                 /* Read data */
4078                 read_val = g_memdup(&event_data->data[0], event_data->data_len);
4079
4080                 data = g_variant_new_from_data(
4081                                 G_VARIANT_TYPE_BYTESTRING,
4082                                 read_val,
4083                                 event_data->data_len,
4084                                 TRUE, NULL, NULL);
4085                 /* SVC uuid */
4086                 svc_uuid = g_memdup(&event_data->srvc_id.id.uuid.uuid[0], uuid_len);
4087
4088                 data_svc_uuid = g_variant_new_from_data(
4089                                 G_VARIANT_TYPE_BYTESTRING,
4090                                 svc_uuid,
4091                                 uuid_len,
4092                                 TRUE, NULL, NULL);
4093
4094                 /* Char uuid */
4095                 char_uuid = g_memdup(&event_data->char_id.uuid.uuid[0], uuid_len);
4096
4097                 data_char_uuid = g_variant_new_from_data(
4098                                 G_VARIANT_TYPE_BYTESTRING,
4099                                 char_uuid,
4100                                 uuid_len,
4101                                 TRUE, NULL, NULL);
4102
4103                 /* Build Param */
4104                 param = g_variant_new("(isn@ayin@ayin@ay)", result,
4105                                 addr,
4106                                 16,
4107                                 data_svc_uuid,
4108                                 event_data->srvc_id.id.inst_id,
4109                                 16,
4110                                 data_char_uuid,
4111                                 event_data->char_id.inst_id,
4112                                 event_data->data_len,
4113                                 data);
4114
4115                 /* Send Event */
4116                 _bt_send_event(BT_GATT_CLIENT_EVENT,
4117                                 BLUETOOTH_EVENT_GATT_CHAR_VAL_CHANGED,
4118                                 param);
4119         } else {
4120                 BT_ERR("No Data!!");
4121         }
4122         /* Free data */
4123         if (read_val)
4124                 g_free(read_val);
4125         if (svc_uuid)
4126                 g_free(svc_uuid);
4127         if (char_uuid)
4128                 g_free(char_uuid);
4129         if (addr)
4130                 g_free(addr);
4131 }
4132
4133 static void __bt_handle_client_service_changed_ind(event_gattc_service_changed_data *event_data)
4134 {
4135         bt_gatt_service_info_list_t *svc_info_list;
4136         GSList *l;
4137         bt_gatt_service_info_t *svc_info;
4138         GVariant *param = NULL;
4139         char *address_str = NULL;
4140         char *uuid_str = NULL;
4141
4142         svc_info_list = __bt_get_service_info_list(event_data->conn_id);
4143         if (svc_info_list == NULL) {
4144                 BT_ERR("svc_info_list is NULL");
4145                 return;
4146         }
4147
4148         if (event_data->change_type) {
4149                 /* Add service UUID in list */
4150                 svc_info = g_malloc0(sizeof(bt_gatt_service_info_t));
4151                 memcpy(svc_info->uuid, event_data->uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4152                 svc_info->inst_id = event_data->inst_id;
4153                 svc_info->is_primary = 1; // TODO: Need to check is_primary is required or not
4154                 svc_info_list->services = g_slist_append(svc_info_list->services, svc_info);
4155                 BT_DBG("Service created and added in Svc info list or connection ID %d", event_data->conn_id);
4156         } else {
4157                 /* Remove service UUID in list */
4158                 for (l = svc_info_list->services; l != NULL; l = g_slist_next(l)) {
4159                         svc_info = (bt_gatt_service_info_t *)l->data;
4160                         if (svc_info == NULL)
4161                                 continue;
4162
4163                         if (!memcmp(svc_info->uuid, event_data->uuid.uuid, BLUETOOTH_UUID_HEX_MAX_LEN)) {
4164                                 svc_info_list->services = g_slist_remove(svc_info_list->services, svc_info);
4165                                 __bt_free_service_info(svc_info);
4166                                 break;
4167                         }
4168                 }
4169         }
4170
4171         address_str = g_malloc0(BT_ADDRESS_STRING_SIZE);
4172         uuid_str = g_malloc0(BT_UUID_STRING_MAX);
4173         _bt_convert_addr_type_to_string(address_str, event_data->address.addr);
4174         _bt_uuid_to_string(&event_data->uuid, uuid_str);
4175
4176         param = g_variant_new("(iiss)", event_data->inst_id, event_data->change_type, address_str, uuid_str);
4177
4178         _bt_send_event(BT_GATT_CLIENT_EVENT,
4179                         BLUETOOTH_EVENT_GATT_CLIENT_SERVICE_CHANGED,
4180                         param);
4181         g_free(address_str);
4182         g_free(uuid_str);
4183 }
4184
4185 gboolean _bt_is_remote_gatt_device_connected(bluetooth_device_address_t *address)
4186 {
4187         char *addr;
4188         struct gatt_server_info_t *conn_info =  NULL;
4189         gboolean connected = FALSE;
4190
4191         addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
4192         _bt_convert_addr_type_to_string(addr,
4193                         (unsigned char *)&(address->addr));
4194
4195         BT_DBG("Check GATT connection status of [%s]", addr);
4196         /* Check if device is already in connected list */
4197         conn_info = _bt_find_remote_gatt_server_info(addr);
4198         if (conn_info) {
4199                 BT_DBG("Remote GATT Server device [%s] is Connected", conn_info->addr);
4200                 connected = TRUE;
4201         } else {
4202                 struct gatt_client_info_t *client_info = NULL;
4203
4204                 BT_DBG("Remote GATT Server Device [%s] is not Connected", addr);
4205
4206                 /* Check if device is already in connected list */
4207                 client_info = _bt_find_remote_gatt_client_info(addr);
4208                 if (client_info) {
4209                         BT_DBG("Remote Client device [%s] is Connected", client_info->addr);
4210                         connected = TRUE;
4211                 } else {
4212                         BT_DBG("Remote GATT Client Device [%s] is not Connected", addr);
4213                 }
4214         }
4215
4216         g_free(addr);
4217         return connected;
4218 }
4219
4220 void _bt_handle_invocation_context(int function_name, void *data)
4221 {
4222         switch (function_name) {
4223         case BT_CONNECT_LE:
4224                 __bt_gatt_handle_pending_request_info(BLUETOOTH_ERROR_NONE, BT_CONNECT_LE,
4225                                 (char *)data, BT_ADDRESS_STRING_SIZE);
4226                 break;
4227         default:
4228                 break;
4229         }
4230 }
4231
4232 int _bt_connect_le_device(bluetooth_device_address_t *address,
4233                 int auto_connect, int client_id)
4234 {
4235         struct gatt_server_info_t *conn_info = NULL;
4236         struct gatt_out_conn_info_t *out_conn_info = NULL;
4237
4238         invocation_info_t *req_info = NULL;
4239         int ret = OAL_STATUS_SUCCESS;
4240         char *addr;
4241         char *remote_address = NULL;
4242
4243         BT_CHECK_PARAMETER(address, return);
4244
4245         addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
4246         _bt_convert_addr_type_to_string(addr, address->addr);
4247         BT_DBG("GATT Client connect request for address [%s] client instance [%d]",
4248                         addr, client_id);
4249
4250
4251         /* Check if Remote Device is already under connection progress */
4252         req_info = _bt_get_request_info_data_from_function_name(BT_CONNECT_LE);
4253         if (req_info) {
4254                 remote_address = (char*)req_info->user_data;
4255                 if (remote_address && !strcasecmp(remote_address, addr)) {/* Address matched */
4256                         BT_DBG("Already Connection ongoing for same remote GATT Server address [%s]", remote_address);
4257                         /* Return and wait for events to be sent to all apps */
4258                         g_free(addr);
4259                         return BLUETOOTH_ERROR_IN_PROGRESS;
4260                 }
4261         }
4262
4263         /* Check if remote GATT Server is connected or not */
4264         conn_info = _bt_find_remote_gatt_server_info(addr);
4265         if (conn_info) {
4266                 BT_ERR("GATT Server is already connected..");
4267                 g_free(addr);
4268                 return BLUETOOTH_ERROR_ALREADY_CONNECT;
4269         }
4270
4271         /* TODO Check Requirement of holding Advertisement before initiating LE connect */
4272
4273         /* Check if app sent 0 client id for connection, in such case, use default gatt client ID */
4274         if (client_id == 0) {
4275                 /* GATT CLient connect request sent by an app without any client instance [0] */
4276                 BT_DBG("Assign default GATT client id [%d]", gatt_default_client);
4277                 client_id = gatt_default_client;
4278         }
4279
4280         BT_INFO("Connect using CLient ID [%d]", client_id);
4281         ret = gattc_connect(client_id, (bt_address_t*)(address), auto_connect);
4282
4283         if (ret != OAL_STATUS_SUCCESS) {
4284                 BT_ERR("gattc_connect is failed. ret: %d", ret);
4285                 g_free(addr);
4286                 return _bt_convert_oal_status_to_bt_error(ret);
4287         }
4288
4289         /* Mark this as outgoing connection */
4290         out_conn_info = g_new0(struct gatt_out_conn_info_t, 1);
4291         out_conn_info->addr = g_strdup(addr);
4292         out_conn_info->client_id = client_id;
4293         BT_INFO("Added outgoing connection info addr[%s]", out_conn_info->addr + 12);
4294         outgoing_gatt_conn_list = g_slist_append(outgoing_gatt_conn_list, out_conn_info);
4295
4296         g_free(addr);
4297         return BLUETOOTH_ERROR_NONE;
4298 }
4299
4300 int _bt_gatt_get_primary_services(char *address)
4301 {
4302         BT_CHECK_PARAMETER(address, return);
4303         struct gatt_server_info_t *conn_info = NULL;
4304         invocation_info_t *req_info = NULL;
4305         int ret = OAL_STATUS_SUCCESS;
4306
4307         /* Check if any app is already browsing primary services on the same remote GATT Server */
4308         req_info = _bt_get_request_info_data(BT_GATT_GET_PRIMARY_SERVICES, address);
4309         if (req_info) {
4310                 BT_INFO("Already Primary Service Browsing ongoing for same rmeote GATT Server");
4311                 /* Return and wait for events to be sent to all apps */
4312                 return BLUETOOTH_ERROR_NONE;
4313         }
4314
4315         /* Check if remote GATT Server is connected or not */
4316         conn_info = _bt_find_remote_gatt_server_info(address);
4317         if (!conn_info) {
4318                 BT_ERR("GATT Server is not yet connected..");
4319                 return BLUETOOTH_ERROR_NOT_CONNECTED;
4320         }
4321
4322         BT_INFO("Get all services. GATT Server [%s] is connected, conn Id [%d]",
4323                         conn_info->addr + 12, conn_info->connection_id);
4324
4325         /* Send Primary Service Browsing request to stack */
4326         ret = gattc_search_service(conn_info->connection_id, NULL);
4327         if (ret != OAL_STATUS_SUCCESS) {
4328                 BT_ERR("ret: %d", ret);
4329                 return _bt_convert_oal_status_to_bt_error(ret);
4330         }
4331         return BLUETOOTH_ERROR_NONE;
4332 }
4333
4334 int _bt_gatt_get_all_characteristic(bluetooth_gatt_client_svc_prop_info_t *svc)
4335 {
4336         BT_CHECK_PARAMETER(svc, return);
4337         struct gatt_server_info_t *conn_info = NULL;
4338         invocation_info_t *req_info = NULL;
4339         bluetooth_gatt_client_svc_prop_info_t *prop;
4340         oal_gatt_srvc_id_t srvc_id;
4341         int ret = OAL_STATUS_SUCCESS;
4342         char *addr;
4343
4344         /* Check if any app is already browsing characteristics of the same service on the same remote GATT Server */
4345         req_info = _bt_get_request_info_data_from_function_name(BT_GATT_GET_SERVICE_PROPERTIES);
4346         if (req_info) {
4347                 prop = (bluetooth_gatt_client_svc_prop_info_t*)req_info->user_data;
4348                 if (prop && !memcmp(svc->device_address.addr, prop->device_address.addr, sizeof(bluetooth_device_address_t))
4349                                 && !memcmp(prop->svc.uuid, svc->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN)
4350                                 && prop->svc.instance_id == svc->svc.instance_id) {
4351                         BT_INFO("Already Properties browsing for Primary Service ongoing for same remote GATT Server");
4352                         /* Return and wait for events to be sent to all apps */
4353                         return BLUETOOTH_ERROR_NONE;
4354                 }
4355         }
4356
4357         addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
4358         _bt_convert_addr_type_to_string(addr, svc->device_address.addr);
4359
4360         /* Check if remote GATT Server is connected or not */
4361         conn_info = _bt_find_remote_gatt_server_info(addr);
4362         if (!conn_info) {
4363                 BT_ERR("GATT Server is not yet connected..");
4364                 g_free(addr);
4365                 return BLUETOOTH_ERROR_NOT_CONNECTED;
4366         }
4367
4368         BT_DBG("Get all charc. GATT Server [%s] is connected, conn Id [%d]",
4369                         conn_info->addr, conn_info->connection_id);
4370
4371         srvc_id.is_prmry = TRUE;
4372         srvc_id.id.inst_id = svc->svc.instance_id;
4373         memcpy(srvc_id.id.uuid.uuid, svc->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4374
4375         /* Search All Characteristic */
4376         ret = gattc_get_characteristic(conn_info->connection_id, &srvc_id, NULL);
4377         if (ret != OAL_STATUS_SUCCESS) {
4378                 BT_ERR("ret: %d", ret);
4379                 g_free(addr);
4380                 return _bt_convert_oal_status_to_bt_error(ret);
4381         }
4382         g_free(addr);
4383         return BLUETOOTH_ERROR_NONE;
4384 }
4385
4386 int _bt_gatt_get_all_characteristic_properties(
4387                 bluetooth_gatt_client_char_prop_info_t *chr)
4388 {
4389         struct gatt_server_info_t *conn_info = NULL;
4390         invocation_info_t *req_info = NULL;
4391         bluetooth_gatt_client_char_prop_info_t *prop;
4392         oal_gatt_srvc_id_t srvc_id;
4393         oal_gatt_id_t char_id;
4394         int ret = OAL_STATUS_SUCCESS;
4395         char *addr;
4396
4397         BT_CHECK_PARAMETER(chr, return);
4398
4399         /* Check if any app is already browsing descriptors of the same char of
4400            particular service on the same remote GATT Server */
4401         req_info = _bt_get_request_info_data_from_function_name(BT_GATT_GET_CHARACTERISTIC_PROPERTIES);
4402         if (req_info) {
4403                 prop = (bluetooth_gatt_client_char_prop_info_t*)req_info->user_data;
4404                 if (prop && !memcmp(chr->device_address.addr, prop->device_address.addr, sizeof(bluetooth_device_address_t)) /* Address matched */
4405                                 && !memcmp(chr->svc.uuid, prop->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) /* Service UUID matched */
4406                                 && chr->svc.instance_id == prop->svc.instance_id /* Service Instance ID matched */
4407                                 && !memcmp(chr->characteristic.uuid, prop->characteristic.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) /* Characteristic UUID matched */
4408                                 && chr->characteristic.instance_id == prop->characteristic.instance_id) { /* Characteristic Instance ID matched */
4409                         BT_INFO("Already Properties browsing for Characteristic ongoing for same remote GATT Server");
4410                         /* Return and wait for events to be sent to all apps */
4411                         return BLUETOOTH_ERROR_NONE;
4412                 }
4413         }
4414
4415         addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
4416         _bt_convert_addr_type_to_string(addr, chr->device_address.addr);
4417
4418         /* Check if remote GATT Server is connected or not */
4419         conn_info = _bt_find_remote_gatt_server_info(addr);
4420         if (!conn_info) {
4421                 BT_ERR("GATT Server is not yet connected..");
4422                 g_free(addr);
4423                 return BLUETOOTH_ERROR_NOT_CONNECTED;
4424         }
4425
4426         BT_DBG("Get all desc. GATT Server [%s] is connected, conn Id [%d]",
4427                         conn_info->addr, conn_info->connection_id);
4428
4429         srvc_id.is_prmry = TRUE;
4430         srvc_id.id.inst_id = chr->svc.instance_id;
4431         memcpy(srvc_id.id.uuid.uuid, chr->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4432
4433         char_id.inst_id = chr->characteristic.instance_id;
4434         memcpy(char_id.uuid.uuid, chr->characteristic.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4435
4436         /* Search All Descriptors */
4437         ret = gattc_get_descriptor(conn_info->connection_id, &srvc_id, &char_id, NULL);
4438         if (ret != OAL_STATUS_SUCCESS) {
4439                 BT_ERR("ret: %d", ret);
4440                 g_free(addr);
4441                 return _bt_convert_oal_status_to_bt_error(ret);
4442         }
4443         g_free(addr);
4444         return BLUETOOTH_ERROR_NONE;
4445 }
4446
4447 int _bt_gatt_read_characteristic_value(
4448                 bluetooth_gatt_client_char_prop_info_t *chr)
4449 {
4450         struct gatt_server_info_t *conn_info = NULL;
4451         invocation_info_t *req_info = NULL;
4452         bluetooth_gatt_client_char_prop_info_t *prop;
4453         oal_gatt_srvc_id_t srvc_id;
4454         oal_gatt_id_t char_id;
4455         int ret = OAL_STATUS_SUCCESS;
4456         char *addr;
4457
4458         BT_CHECK_PARAMETER(chr, return);
4459
4460         /* Check if any app is already Reading characteristic of the same char of
4461            particular service on the same remote GATT Server */
4462         req_info = _bt_get_request_info_data_from_function_name(BT_GATT_READ_CHARACTERISTIC);
4463         if (req_info) {
4464                 prop = (bluetooth_gatt_client_char_prop_info_t*)req_info->user_data;
4465                 if (prop && !memcmp(chr->device_address.addr, prop->device_address.addr, sizeof(bluetooth_device_address_t)) /* Address matched */
4466                                 && !memcmp(chr->svc.uuid, prop->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) /* Service UUID matched */
4467                                 && chr->svc.instance_id == prop->svc.instance_id /* Service Instance ID matched */
4468                                 && !memcmp(chr->characteristic.uuid, prop->characteristic.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) /* Characteristic UUID matched */
4469                                 && chr->characteristic.instance_id == prop->characteristic.instance_id) { /* Characteristic Instance ID matched */
4470                         BT_INFO("Already Characteristic value Read operation in progress for same remote GATT Server");
4471                         /* Return and wait for events to be sent to all apps */
4472                         return BLUETOOTH_ERROR_NONE;
4473                 }
4474         }
4475
4476         addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
4477         _bt_convert_addr_type_to_string(addr, chr->device_address.addr);
4478
4479         /* Check if remote GATT Server is connected or not */
4480         conn_info = _bt_find_remote_gatt_server_info(addr);
4481         if (conn_info) {
4482                 BT_DBG("GATT Server [%s] is connected, conn Id [%d]",
4483                                 conn_info->addr, conn_info->connection_id);
4484         } else {
4485                 BT_ERR("GATT Server is not yet connected..");
4486                 g_free(addr);
4487                 return BLUETOOTH_ERROR_NOT_CONNECTED;
4488         }
4489
4490         srvc_id.is_prmry = TRUE;
4491         srvc_id.id.inst_id = chr->svc.instance_id;
4492         memcpy(srvc_id.id.uuid.uuid, chr->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4493
4494         char_id.inst_id = chr->characteristic.instance_id;
4495         memcpy(char_id.uuid.uuid, chr->characteristic.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4496
4497         /* Search All Descriptors */
4498         ret = gattc_read_characteristic(conn_info->connection_id, &srvc_id, &char_id, OAL_GATT_AUTH_REQ_NONE);
4499         if (ret != OAL_STATUS_SUCCESS) {
4500                 BT_ERR("ret: %d", ret);
4501                 g_free(addr);
4502                 return _bt_convert_oal_status_to_bt_error(ret);
4503         }
4504         g_free(addr);
4505         return BLUETOOTH_ERROR_NONE;
4506 }
4507
4508 int _bt_gatt_read_descriptor_value(
4509                 bluetooth_gatt_client_desc_prop_info_t *desc)
4510 {
4511         struct gatt_server_info_t *conn_info = NULL;
4512         invocation_info_t *req_info = NULL;
4513         bluetooth_gatt_client_desc_prop_info_t *prop;
4514         oal_gatt_srvc_id_t srvc_id;
4515         oal_gatt_id_t char_id;
4516         oal_gatt_id_t desc_id;
4517         int ret = OAL_STATUS_SUCCESS;
4518         char *addr;
4519
4520         BT_CHECK_PARAMETER(desc, return);
4521
4522         /* Check if any app is already Reading descriptors of the same char of
4523            particular service on the same remote GATT Server */
4524         req_info = _bt_get_request_info_data_from_function_name(BT_GATT_READ_DESCRIPTOR_VALUE);
4525         if (req_info) {
4526                 prop = (bluetooth_gatt_client_desc_prop_info_t*)req_info->user_data;
4527                 if (prop && !memcmp(desc->device_address.addr, prop->device_address.addr, sizeof(bluetooth_device_address_t)) /* Address matched */
4528                                 && !memcmp(desc->svc.uuid, prop->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) /* Service UUID matched */
4529                                 && desc->svc.instance_id == prop->svc.instance_id /* Service Instance ID matched */
4530                                 && !memcmp(desc->characteristic.uuid, prop->characteristic.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) /* Characteristic UUID matched */
4531                                 && desc->characteristic.instance_id == prop->characteristic.instance_id /* Characteristic Instance ID matched */
4532                                 && !memcmp(desc->descriptor.uuid, prop->descriptor.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) /* Descriptor UUID matched */
4533                                 && desc->descriptor.instance_id == prop->descriptor.instance_id) { /* Descriptor Instance ID matched */
4534                         BT_INFO("Already Descriptor value Read operation in progress for same remote GATT Server");
4535                         /* Return and wait for events to be sent to all apps */
4536                         return BLUETOOTH_ERROR_NONE;
4537                 }
4538         }
4539
4540         addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
4541         _bt_convert_addr_type_to_string(addr, desc->device_address.addr);
4542
4543         /* Check if remote GATT Server is connected or not */
4544         conn_info = _bt_find_remote_gatt_server_info(addr);
4545         if (conn_info) {
4546                 BT_DBG("GATT Server [%s] is connected, conn Id [%d]",
4547                                 conn_info->addr, conn_info->connection_id);
4548         } else {
4549                 BT_ERR("GATT Server is not yet connected..");
4550                 g_free(addr);
4551                 return BLUETOOTH_ERROR_NOT_CONNECTED;
4552         }
4553
4554         srvc_id.is_prmry = TRUE;
4555         srvc_id.id.inst_id = desc->svc.instance_id;
4556         memcpy(srvc_id.id.uuid.uuid, desc->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4557
4558         char_id.inst_id = desc->characteristic.instance_id;
4559         memcpy(char_id.uuid.uuid, desc->characteristic.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4560
4561         desc_id.inst_id = desc->descriptor.instance_id;
4562         memcpy(desc_id.uuid.uuid, desc->descriptor.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4563
4564         /* Search All Descriptors */
4565         ret = gattc_read_descriptor(conn_info->connection_id, &srvc_id, &char_id,
4566                         &desc_id, OAL_GATT_AUTH_REQ_NONE);
4567         if (ret != OAL_STATUS_SUCCESS) {
4568                 BT_ERR("ret: %d", ret);
4569                 g_free(addr);
4570                 return _bt_convert_oal_status_to_bt_error(ret);
4571         }
4572         g_free(addr);
4573         return BLUETOOTH_ERROR_NONE;
4574 }
4575
4576 /*acquire Notify*/
4577 int _bt_gatt_acquire_notify(bluetooth_gatt_client_char_prop_info_t *chr, int *fd, int *mtu)
4578 {
4579         struct gatt_server_info_t *conn_info = NULL;
4580         oal_gatt_srvc_id_t srvc_id;
4581         oal_gatt_id_t char_id;
4582         int ret = OAL_STATUS_SUCCESS;
4583         char *addr;
4584
4585         BT_CHECK_PARAMETER(chr, return);
4586
4587         addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
4588         _bt_convert_addr_type_to_string(addr, chr->device_address.addr);
4589
4590         /* Check if remote GATT Server is connected or not */
4591         conn_info = _bt_find_remote_gatt_server_info(addr);
4592         if (conn_info) {
4593                 BT_DBG("GATT Server [%s] is connected, conn Id [%d]",
4594                                 conn_info->addr, conn_info->connection_id);
4595         } else {
4596                 BT_ERR("GATT Server is not yet connected..");
4597                 g_free(addr);
4598                 return BLUETOOTH_ERROR_NOT_CONNECTED;
4599         }
4600
4601         srvc_id.is_prmry = TRUE;
4602         srvc_id.id.inst_id = chr->svc.instance_id;
4603         memcpy(srvc_id.id.uuid.uuid, chr->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4604
4605         char_id.inst_id = chr->characteristic.instance_id;
4606         memcpy(char_id.uuid.uuid, chr->characteristic.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4607
4608         ret = gattc_acquire_notify(conn_info->connection_id, &srvc_id, &char_id, fd, mtu);
4609
4610         if (ret != OAL_STATUS_SUCCESS) {
4611                 BT_ERR("ret: %d", ret);
4612                 g_free(addr);
4613                 return _bt_convert_oal_status_to_bt_error(ret);
4614         }
4615         BT_INFO("GATT characterstics FD [%d]  mtu[%d]", *fd, *mtu);
4616         g_free(addr);
4617         return BLUETOOTH_ERROR_NONE;
4618 }
4619
4620 /*acquire Write*/
4621 int _bt_gatt_acquire_write(bluetooth_gatt_client_char_prop_info_t *chr, int *fd, int *mtu)
4622 {
4623
4624         struct gatt_server_info_t *conn_info = NULL;
4625         oal_gatt_srvc_id_t srvc_id;
4626         oal_gatt_id_t char_id;
4627         int ret = OAL_STATUS_SUCCESS;
4628         char *addr;
4629
4630         BT_CHECK_PARAMETER(chr, return);
4631
4632         addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
4633         _bt_convert_addr_type_to_string(addr, chr->device_address.addr);
4634
4635         /* Check if remote GATT Server is connected or not */
4636         conn_info = _bt_find_remote_gatt_server_info(addr);
4637         if (conn_info) {
4638                 BT_DBG("GATT Server [%s] is connected, conn Id [%d]",
4639                                 conn_info->addr, conn_info->connection_id);
4640         } else {
4641                 BT_ERR("GATT Server is not yet connected..");
4642                 g_free(addr);
4643                 return BLUETOOTH_ERROR_NOT_CONNECTED;
4644         }
4645
4646         srvc_id.is_prmry = TRUE;
4647         srvc_id.id.inst_id = chr->svc.instance_id;
4648         memcpy(srvc_id.id.uuid.uuid, chr->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4649
4650         char_id.inst_id = chr->characteristic.instance_id;
4651         memcpy(char_id.uuid.uuid, chr->characteristic.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4652
4653                 ret = gattc_acquire_write(conn_info->connection_id, &srvc_id, &char_id,
4654                                         OAL_GATT_AUTH_REQ_NONE, fd, mtu);
4655         if (ret != OAL_STATUS_SUCCESS) {
4656                 BT_ERR("ret: %d", ret);
4657                 g_free(addr);
4658                 return _bt_convert_oal_status_to_bt_error(ret);
4659         }
4660         BT_INFO("GATT characterstics FD [%d]  mtu [%d]", *fd, *mtu);
4661         g_free(addr);
4662         return BLUETOOTH_ERROR_NONE;
4663
4664 }
4665
4666
4667 /* Write Characteristic */
4668 int _bt_gatt_write_characteristic_value_by_type(
4669                 bluetooth_gatt_client_char_prop_info_t *chr,
4670                 bluetooth_gatt_att_data_t *data,
4671                 bluetooth_gatt_write_type_e write_type)
4672 {
4673         struct gatt_server_info_t *conn_info = NULL;
4674         invocation_info_t *req_info = NULL;
4675         bluetooth_gatt_client_char_prop_info_t *prop;
4676         oal_gatt_srvc_id_t srvc_id;
4677         oal_gatt_id_t char_id;
4678         int ret = OAL_STATUS_SUCCESS;
4679         char *addr;
4680
4681         BT_CHECK_PARAMETER(chr, return);
4682         BT_CHECK_PARAMETER(data, return);
4683
4684         /* Check if any app is already writing same char of
4685            particular service on the same remote GATT Server */
4686         req_info = _bt_get_request_info_data_from_function_name(BT_GATT_WRITE_CHARACTERISTIC_VALUE_BY_TYPE);
4687         if (req_info) {
4688                 prop = (bluetooth_gatt_client_char_prop_info_t*)req_info->user_data;
4689                 if (prop && !memcmp(chr->device_address.addr, prop->device_address.addr, sizeof(bluetooth_device_address_t)) /* Address matched */
4690                                 && !memcmp(chr->svc.uuid, prop->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) /* Service UUID matched */
4691                                 && chr->svc.instance_id == prop->svc.instance_id /* Service Instance ID matched */
4692                                 && !memcmp(chr->characteristic.uuid, prop->characteristic.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) /* Characteristic UUID matched */
4693                                 && chr->characteristic.instance_id == prop->characteristic.instance_id) { /* Characteristic Instance ID matched */
4694                         BT_INFO("Already Characteristic Write Value operation in progress for same remote GATT Server");
4695                         /* Return and wait for events to be sent to all apps */
4696                         return BLUETOOTH_ERROR_NONE;
4697                 }
4698         }
4699
4700         addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
4701         _bt_convert_addr_type_to_string(addr, chr->device_address.addr);
4702
4703         /* Check if remote GATT Server is connected or not */
4704         conn_info = _bt_find_remote_gatt_server_info(addr);
4705         if (conn_info) {
4706                 BT_DBG("GATT Server [%s] is connected, conn Id [%d]",
4707                                 conn_info->addr, conn_info->connection_id);
4708         } else {
4709                 BT_ERR("GATT Server is not yet connected..");
4710                 g_free(addr);
4711                 return BLUETOOTH_ERROR_NOT_CONNECTED;
4712         }
4713
4714         srvc_id.is_prmry = TRUE;
4715         srvc_id.id.inst_id = chr->svc.instance_id;
4716         memcpy(srvc_id.id.uuid.uuid, chr->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4717
4718         char_id.inst_id = chr->characteristic.instance_id;
4719         memcpy(char_id.uuid.uuid, chr->characteristic.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4720
4721         /* Write CHar value */
4722         ret = gattc_write_characteristic(conn_info->connection_id,
4723                         &srvc_id, &char_id,
4724                         (oal_gatt_write_type_t)write_type, data->length,
4725                         OAL_GATT_AUTH_REQ_NONE, (char *)(&data->data[0]));
4726         if (ret != OAL_STATUS_SUCCESS) {
4727                 BT_ERR("ret: %d", ret);
4728                 g_free(addr);
4729                 return _bt_convert_oal_status_to_bt_error(ret);
4730         }
4731         g_free(addr);
4732         return BLUETOOTH_ERROR_NONE;
4733 }
4734
4735 /* Write Descriptor */
4736 int _bt_gatt_write_descriptor_value_by_type(
4737                 bluetooth_gatt_client_desc_prop_info_t *desc,
4738                 bluetooth_gatt_att_data_t *data,
4739                 bluetooth_gatt_write_type_e write_type)
4740 {
4741         struct gatt_server_info_t *conn_info = NULL;
4742         invocation_info_t *req_info = NULL;
4743         bluetooth_gatt_client_desc_prop_info_t *prop;
4744         oal_gatt_srvc_id_t srvc_id;
4745         oal_gatt_id_t char_id;
4746         oal_gatt_id_t desc_id;
4747         int ret = OAL_STATUS_SUCCESS;
4748         char *addr;
4749         int k;
4750
4751         BT_CHECK_PARAMETER(desc, return);
4752         BT_CHECK_PARAMETER(data, return);
4753
4754         BT_INFO("+");
4755
4756         /* Check if any app is already writing on same Descriptor of the same char of
4757            particular service on the same remote GATT Server */
4758         req_info = _bt_get_request_info_data_from_function_name(BT_GATT_WRITE_DESCRIPTOR_VALUE);
4759         if (req_info) {
4760                 prop = (bluetooth_gatt_client_desc_prop_info_t*)req_info->user_data;
4761                 if (prop && !memcmp(desc->device_address.addr, prop->device_address.addr, sizeof(bluetooth_device_address_t)) /* Address matched */
4762                                 && !memcmp(desc->svc.uuid, prop->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) /* Service UUID matched */
4763                                 && desc->svc.instance_id == prop->svc.instance_id /* Service Instance ID matched */
4764                                 && !memcmp(desc->characteristic.uuid, prop->characteristic.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) /* Characteristic UUID matched */
4765                                 && desc->characteristic.instance_id == prop->characteristic.instance_id /* Characteristic Instance ID matched */
4766                                 && !memcmp(desc->descriptor.uuid, prop->descriptor.uuid, BLUETOOTH_UUID_HEX_MAX_LEN) /* Descriptor UUID matched */
4767                                 && desc->descriptor.instance_id == prop->descriptor.instance_id) { /* Descriptor Instance ID matched */
4768                         BT_INFO("Already Descriptor value Write operation in progress for same remote GATT Server");
4769                         /* Return and wait for events to be sent to all apps */
4770                         return BLUETOOTH_ERROR_NONE;
4771                 }
4772         }
4773
4774         addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
4775         _bt_convert_addr_type_to_string(addr, desc->device_address.addr);
4776
4777         /* Check if remote GATT Server is connected or not */
4778         conn_info = _bt_find_remote_gatt_server_info(addr);
4779         if (conn_info) {
4780                 BT_DBG("GATT Server [%s] is connected, conn Id [%d]",
4781                                 conn_info->addr, conn_info->connection_id);
4782         } else {
4783                 BT_ERR("GATT Server is not yet connected..");
4784                 g_free(addr);
4785                 return BLUETOOTH_ERROR_NOT_CONNECTED;
4786         }
4787
4788         srvc_id.is_prmry = TRUE;
4789         srvc_id.id.inst_id = desc->svc.instance_id;
4790         memcpy(srvc_id.id.uuid.uuid, desc->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4791
4792         char_id.inst_id = desc->characteristic.instance_id;
4793         memcpy(char_id.uuid.uuid, desc->characteristic.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4794
4795         desc_id.inst_id = desc->descriptor.instance_id;
4796         memcpy(desc_id.uuid.uuid, desc->descriptor.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4797
4798         /* DEBUG */
4799         BT_INFO("Connection ID [%d] write type [%d] data length [%d]", conn_info->connection_id, write_type, data->length);
4800         for (k = 0; k < data->length; k++)
4801                 BT_INFO("Data[%d] [0x%x]", k, data->data[k]);
4802
4803         ret = gattc_write_descriptor(conn_info->connection_id,
4804                         &srvc_id, &char_id, &desc_id,
4805                         (oal_gatt_write_type_t)write_type, data->length,
4806                         OAL_GATT_AUTH_REQ_NONE, (char *)(&data->data[0]));
4807         if (ret != OAL_STATUS_SUCCESS) {
4808                 BT_ERR("ret: %d", ret);
4809                 g_free(addr);
4810                 return _bt_convert_oal_status_to_bt_error(ret);
4811         }
4812         g_free(addr);
4813         return BLUETOOTH_ERROR_NONE;
4814 }
4815
4816 int _bt_gatt_watch_characteristic(
4817                 bluetooth_gatt_client_char_prop_info_t *chr,
4818                 int client_id,
4819                 gboolean is_notify)
4820 {
4821         struct gatt_server_info_t *conn_info = NULL;
4822         oal_gatt_srvc_id_t srvc_id;
4823         oal_gatt_id_t char_id;
4824         int ret = OAL_STATUS_SUCCESS;
4825         char *addr;
4826
4827         BT_CHECK_PARAMETER(chr, return);
4828
4829         BT_INFO("Client ID [%d] Is Notify [%d]", client_id, is_notify);
4830
4831         addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
4832         _bt_convert_addr_type_to_string(addr, chr->device_address.addr);
4833
4834         /* Check if remote GATT Server is connected or not */
4835         conn_info = _bt_find_remote_gatt_server_info(addr);
4836         if (conn_info) {
4837                 BT_DBG("GATT Server [%s] is connected, conn Id [%d]",
4838                                 conn_info->addr, conn_info->connection_id);
4839         } else {
4840                 BT_ERR("GATT Server is not yet connected..");
4841                 g_free(addr);
4842                 return BLUETOOTH_ERROR_NOT_CONNECTED;
4843         }
4844         srvc_id.is_prmry = TRUE;
4845         srvc_id.id.inst_id = chr->svc.instance_id;
4846         memcpy(srvc_id.id.uuid.uuid, chr->svc.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4847
4848         char_id.inst_id = chr->characteristic.instance_id;
4849         memcpy(char_id.uuid.uuid, chr->characteristic.uuid, BLUETOOTH_UUID_HEX_MAX_LEN);
4850
4851         /* Register or unregister Notification characteristic */
4852         if (is_notify)
4853                 ret = gattc_register_for_notification(conn_info->connection_id,
4854                                 (bt_address_t*)&(chr->device_address),
4855                                 &srvc_id, &char_id);
4856         else
4857                 ret = gattc_deregister_for_notification(conn_info->connection_id,
4858                                 (bt_address_t*)&(chr->device_address),
4859                                 &srvc_id, &char_id);
4860
4861         BT_INFO("Result[%d]", ret);
4862         if (ret != OAL_STATUS_SUCCESS) {
4863                 BT_ERR("ret: %d", ret);
4864                 g_free(addr);
4865                 return _bt_convert_oal_status_to_bt_error(ret);
4866         }
4867         g_free(addr);
4868         return BLUETOOTH_ERROR_NONE;
4869 }
4870
4871
4872 int _bt_disconnect_le_device(bluetooth_device_address_t *address,
4873                 int client_id)
4874 {
4875         struct gatt_server_info_t *conn_info = NULL;
4876         struct gatt_client_info_t *rem_client_conn_info = NULL;
4877         invocation_info_t *req_info = NULL;
4878         int ret = OAL_STATUS_SUCCESS;
4879         char *addr;
4880         char *remote_address = NULL;
4881
4882         BT_CHECK_PARAMETER(address, return);
4883
4884         addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
4885         _bt_convert_addr_type_to_string(addr, address->addr);
4886         BT_INFO("GATT Client Disconnect request for address [%s]", addr + 12);
4887
4888         /* Check if Remote Device is already under connection progress */
4889         req_info = _bt_get_request_info_data_from_function_name(BT_DISCONNECT_LE);
4890         if (req_info) {
4891                 remote_address = (char*)req_info->user_data;
4892                 if (remote_address && !strcasecmp(remote_address, addr)) {/* Address matched */
4893                         BT_DBG("Already DisConnection ongoing for same remote GATT Server address [%s]", remote_address);
4894                         /* Return success and wait for events to be sent to all apps */
4895                         g_free(addr);
4896                         return BLUETOOTH_ERROR_IN_PROGRESS;
4897                 }
4898         }
4899         /* Check if remote GATT Server is connected or not */
4900         conn_info = _bt_find_remote_gatt_server_info(addr);
4901         if (conn_info) {
4902                 /* Check if app sent 0 client id for Disconnection, in such case, use default gatt client ID */
4903                 if (client_id == 0) {
4904                         BT_INFO("GATT CLient Disconnect request sent by an app without any client instance [%d]",
4905                                         client_id);
4906                         BT_INFO("Assign default GATT client id [%d]", gatt_default_client);
4907                         client_id = gatt_default_client;
4908                 }
4909
4910                 BT_INFO("Disconnect remote gatt server using CLient ID [%d] Connection ID [%d]", client_id, conn_info->connection_id);
4911                 ret = gattc_disconnect(client_id, (bt_address_t*)(address),
4912                                 conn_info->connection_id);
4913         } else {
4914                 /* check if remote client is connected */
4915                 rem_client_conn_info = _bt_find_remote_gatt_client_info(addr);
4916
4917                 if (!rem_client_conn_info || client_id != 0) {
4918                         BT_ERR("GATT device is not connected..");
4919                         g_free(addr);
4920                         return BLUETOOTH_ERROR_NOT_IN_OPERATION;
4921                 }
4922
4923                 BT_INFO("Disconnect remote gatt client ");
4924
4925                 ret = gatts_disconnect(rem_client_conn_info->instance_id,
4926                         (bt_address_t*)(address), rem_client_conn_info->connection_id);
4927         }
4928
4929         if (ret != OAL_STATUS_SUCCESS) {
4930                 BT_ERR("ret: %d", ret);
4931                 g_free(addr);
4932                 return _bt_convert_oal_status_to_bt_error(ret);
4933         }
4934         g_free(addr);
4935         return BLUETOOTH_ERROR_NONE;
4936 }
4937
4938 int _bt_gatt_watch_service_changed_indication(const char *sender,
4939                 bluetooth_device_address_t *address,
4940                 gboolean is_enabled)
4941 {
4942         int k;
4943         bt_service_app_info_t *info = NULL;
4944
4945         BT_INFO("%s Servic changed Indication watcher for app [%s]",
4946                         is_enabled ? "Enable":"Disable", sender);
4947
4948         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
4949                 info = &numapps[k];
4950
4951                 if (g_strcmp0(sender, info->sender) == 0 &&
4952                                 memcmp(info->address.addr, address->addr,
4953                                         sizeof(bluetooth_device_address_t)) == 0) {
4954                         BT_DBG("Found GATT client App.. [%s], sender [%s]", info->uuid, info->sender);
4955                         info->is_watcher_enabled = is_enabled;
4956                 }
4957         }
4958
4959         return BLUETOOTH_ERROR_NONE;
4960 }
4961
4962 int _bt_unregister_gatt_client_instance(const char *sender, int client_id)
4963 {
4964         bt_service_app_info_t *info = NULL;
4965         int k, ret;
4966
4967         BT_DBG("Unregister Allocated GATT Client instance [%s] Client ID [%d]", sender, client_id);
4968
4969         /* Unregister CLient instance associated with address X. It is possible that another app still
4970            has client_id valid for same remote address */
4971         for (k = 1; k < MAX_APPS_SUPPORTED; k++) {
4972                 info = &numapps[k];
4973
4974                 /* Exact matching of sender */
4975                 if (!g_strcmp0(info->sender, sender) && info->client_id == client_id) {  /* Check for only valid GATT client Instance */
4976                         numapps[k].client_id = -1;
4977                         numapps[k].is_initialized = FALSE;
4978                         memset(numapps[k].sender, 0x00, sizeof(numapps[k].sender));
4979                         memset(numapps[k].uuid, 0x00, sizeof(numapps[k].uuid));
4980                         memset(&numapps[k].address.addr, 0x00, sizeof(bluetooth_device_address_t));
4981
4982                         /* Its a GATT Client Instance */
4983                         ret = gattc_deregister(client_id);
4984                         if (ret != OAL_STATUS_SUCCESS) {
4985                                 BT_ERR("DeAllocate GATT Client instance with stack Fail ret: %d", ret);
4986                                 return _bt_convert_oal_status_to_bt_error(ret);
4987                         } else {
4988                                 return BLUETOOTH_ERROR_NONE;
4989                         }
4990                 }
4991         }
4992
4993         return BLUETOOTH_ERROR_NOT_FOUND;
4994 }
4995
4996 static void __bt_handle_client_mtu_exchange_completed(event_gattc_mtu_configured_t *event_data)
4997 {
4998         int result = BLUETOOTH_ERROR_NONE;
4999         struct gatt_server_info_t *conn_info = NULL;
5000         GVariant *param = NULL;
5001         guint16 mtu = 0;
5002         guint8 status = 0;
5003
5004         conn_info = __bt_find_remote_gatt_server_info_from_conn_id(event_data->conn_id);
5005         if (conn_info == NULL) {
5006                 BT_ERR("Cant find connection Information");
5007                 return;
5008         }
5009
5010         BT_DBG("GATT Client: MTU Configured from addr [%s] status [%d] MTU size [%d]",
5011                         conn_info->addr, event_data->status, event_data->mtu);
5012
5013         if (event_data->status != OAL_STATUS_SUCCESS)
5014                 result = BLUETOOTH_ERROR_INTERNAL;
5015
5016         /* DBUS Return fo BT_REQ_ATT_MTU for all the apps */
5017         __bt_gatt_handle_pending_request_info(result, BT_REQ_ATT_MTU, conn_info->addr,
5018                         BT_ADDRESS_STRING_SIZE);
5019
5020         if (result == BLUETOOTH_ERROR_NONE) {
5021                 mtu = event_data->mtu;
5022                 param = g_variant_new("(isqy)",
5023                                 result,
5024                                 conn_info->addr,
5025                                 mtu,
5026                                 status);
5027
5028                 /* Send event to BT-API */
5029                 _bt_send_event(BT_DEVICE_EVENT,
5030                                 BLUETOOTH_EVENT_GATT_ATT_MTU_CHANGED,
5031                                 param);
5032
5033                 /* Update the MTU for current connection */
5034                 __bt_update_mtu_gatt_device(conn_info->addr, event_data->mtu);
5035         }
5036 }
5037
5038 static struct gatt_mtu_info_t *__bt_find_mtu_gatt_device(char *address)
5039 {
5040         GSList *l = NULL;
5041         struct gatt_mtu_info_t *info = NULL;
5042
5043         for (l = gatt_mtu_info_list; l != NULL; l = g_slist_next(l)) {
5044                 info = (struct gatt_mtu_info_t*)l->data;
5045                 if (info == NULL)
5046                         continue;
5047
5048                 if (!g_strcmp0(info->addr, address)) {
5049                         BT_DBG("Remote GATT device found addr[%s]", info->addr);
5050                         return info;
5051                 }
5052         }
5053
5054         BT_DBG("Not found Remote GATT device addr[%s]", address);
5055         return NULL;
5056 }
5057
5058 static void __bt_remove_mtu_gatt_device(char *address)
5059 {
5060         struct gatt_mtu_info_t *dev_info = NULL;
5061
5062         dev_info = __bt_find_mtu_gatt_device(address);
5063
5064         if (dev_info) {
5065                 BT_DBG("removing the gatt device from mtu list");
5066                 gatt_mtu_info_list = g_slist_remove(gatt_mtu_info_list, dev_info);
5067                 g_free(dev_info->addr);
5068                 g_free(dev_info);
5069         }
5070 }
5071
5072 static void __bt_add_mtu_gatt_device(char *address)
5073 {
5074         struct gatt_mtu_info_t *dev_info = NULL;
5075
5076         dev_info = __bt_find_mtu_gatt_device(address);
5077
5078         if (!dev_info) {
5079                 BT_DBG("adding the gatt device in mtu list");
5080                 dev_info = g_new0(struct gatt_mtu_info_t, 1);
5081                 dev_info->addr = g_strdup(address);
5082                 dev_info->att_mtu = BT_DEFAULT_ATT_MTU;
5083                 gatt_mtu_info_list = g_slist_append(gatt_mtu_info_list, dev_info);
5084         }
5085 }
5086
5087 static void __bt_update_mtu_gatt_device(char *address, int mtu)
5088 {
5089         struct gatt_mtu_info_t *dev_info = NULL;
5090
5091         dev_info = __bt_find_mtu_gatt_device(address);
5092
5093         if (dev_info) {
5094                 dev_info->att_mtu = mtu;
5095         }
5096 }
5097
5098 int _bt_gatt_get_data_batching_available_packets(
5099                 guint *available_packets)
5100 {
5101         int ret = OAL_STATUS_SUCCESS;
5102
5103         BT_CHECK_PARAMETER(available_packets, return);
5104
5105         ret = gatt_get_data_batching_available_packets(available_packets);
5106         if (ret != OAL_STATUS_SUCCESS) {
5107                 BT_ERR("ret: %d", ret);
5108                 return _bt_convert_oal_status_to_bt_error(ret);
5109         }
5110
5111         return BLUETOOTH_ERROR_NONE;
5112 }
5113
5114 int _bt_gatt_enable_data_batching(bluetooth_device_address_t *address,
5115                 int packet_threshold, int timeout)
5116 {
5117         int ret = OAL_STATUS_SUCCESS;
5118         char remote_address[BT_ADDRESS_STRING_SIZE] = { 0 };
5119
5120         BT_CHECK_PARAMETER(address, return);
5121
5122         _bt_convert_addr_type_to_string(remote_address, address->addr);
5123         BT_INFO("Enable GATT data batching. address[%s] packet_threshold[%d] timeout[%d]",
5124                         remote_address, packet_threshold, timeout);
5125
5126         ret = gatt_enable_data_batching((bt_address_t*)(address), packet_threshold, timeout);
5127
5128         if (ret != OAL_STATUS_SUCCESS) {
5129                 BT_ERR("ret: %d", ret);
5130                 return _bt_convert_oal_status_to_bt_error(ret);
5131         }
5132
5133         return BLUETOOTH_ERROR_NONE;
5134 }
5135
5136 int _bt_gatt_disable_data_batching(bluetooth_device_address_t *address)
5137 {
5138         int ret = OAL_STATUS_SUCCESS;
5139         char remote_address[BT_ADDRESS_STRING_SIZE] = { 0 };
5140
5141         BT_CHECK_PARAMETER(address, return);
5142
5143         _bt_convert_addr_type_to_string(remote_address, address->addr);
5144         BT_INFO("Disable GATT data batching. address[%s]", remote_address);
5145
5146         ret = gatt_disable_data_batching((bt_address_t*)(address));
5147
5148         if (ret != OAL_STATUS_SUCCESS) {
5149                 BT_ERR("ret: %d", ret);
5150                 return _bt_convert_oal_status_to_bt_error(ret);
5151         }
5152
5153         return BLUETOOTH_ERROR_NONE;
5154 }
5155
5156 #endif