Enhance debug message
[platform/core/connectivity/bluetooth-frwk.git] / bt-service / bt-service-device.c
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *              http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16  */
17
18 #include <glib.h>
19 #include <gio/gio.h>
20 #include <dlog.h>
21 #include <string.h>
22 #include <syspopup_caller.h>
23 #include <vconf.h>
24 #include <bundle_internal.h>
25
26
27 #include "bluetooth-api.h"
28 #include "bt-internal-types.h"
29
30 #include "bt-service-common.h"
31 #include "bt-service-adapter-le.h"
32 #include "bt-service-event.h"
33 #include "bt-service-device.h"
34 #include "bt-service-rfcomm-client.h"
35 #include "bt-service-util.h"
36 #include "bt-service-agent.h"
37 #include "bt-service-network.h"
38 #include "bt-service-adapter.h"
39 #include "bt-service-gap-agent.h"
40 #include "bt-service-pbap.h"
41
42 #define BT_SYSPOPUP_IPC_RESPONSE_OBJECT "/org/projectx/bt_syspopup_res"
43 #define BT_SYSPOPUP_INTERFACE "User.Bluetooth.syspopup"
44 #define BT_SYSPOPUP_METHOD_RESPONSE "Response"
45
46 #define BT_LE_CONN_INTERVAL_MIN 7.5 /* msec */
47 #define BT_LE_CONN_INTERVAL_MAX 4000 /* msec */
48 #define BT_LE_CONN_SUPER_TO_MIN 100 /* msec */
49 #define BT_LE_CONN_SUPER_TO_MAX 32000 /* msec */
50 #define BT_LE_CONN_SLAVE_LATENCY_MAX 499
51 #define BT_LE_CONN_INTERVAL_SPLIT 1.25 /* msec */
52 #define BT_LE_CONN_TO_SPLIT 10 /* msec */
53 #define BT_DEVICE_PIN_CODE_SLOT_MAX 10
54
55 #define BT_LE_CONN_PARAM_DEFAULT_SUPERVISION_TIMEOUT    6000    /* msec */
56
57 #define BT_LE_CONN_PARAM_BALANCED_MIN_INTERVAL  30      /* msec */
58 #define BT_LE_CONN_PARAM_BALANCED_MAX_INTERVAL  50      /* msec */
59 #define BT_LE_CONN_PARAM_BALANCED_SLAVE_LATENCY 0       /* event */
60
61 #define BT_LE_CONN_PARAM_LOW_LATENCY_MIN_INTERVAL       10      /* msec */
62 #define BT_LE_CONN_PARAM_LOW_LATENCY_MAX_INTERVAL       30      /* msec */
63 #define BT_LE_CONN_PARAM_LOW_LATENCY_SLAVE_LATENCY      0       /* event */
64
65 #define BT_LE_CONN_PARAM_LOW_POWER_MIN_INTERVAL         80      /* msec */
66 #define BT_LE_CONN_PARAM_LOW_POWER_MAX_INTERVAL         100     /* msec */
67 #define BT_LE_CONN_PARAM_LOW_POWER_SLAVE_LATENCY        2       /* event */
68
69 #define PROFILE_SUPPORTED 0x3 /* This corresponds to binary 0b11*/
70
71 typedef struct {
72         int req_id;
73         int result;
74         char *addr;
75         gboolean is_autopair;
76         GDBusProxy *device_proxy;
77         GDBusProxy *adapter_proxy;
78         void *agent;
79         unsigned short conn_type;
80         gboolean bonding_wo_discovery;
81 } bt_funcion_data_t;
82
83 typedef struct {
84         char *address;
85         char *pin_code;
86 } bt_pin_code_info_t;
87
88 typedef struct {
89         int req_id;
90         bluetooth_device_address_t bd_addr;
91         gboolean auto_connect;
92 } bt_pending_le_conn_info_s;
93
94 gboolean is_device_creating;
95 bt_funcion_data_t *bonding_info;
96 bt_funcion_data_t *searching_info;
97 bt_funcion_data_t *att_mtu_req_info;
98
99 static GSList *pin_info_list = NULL;
100 static bt_pending_le_conn_info_s *pending_le_conn_info = NULL;
101 static guint pending_le_conn_timer_id = 0;
102
103 /* This HID Mouse does not support pairing precedure. need to skip it. */
104 #define SMB_MOUSE_LAP_ADDR "00:12:A1"
105
106 static void __bt_bond_device_cb(GDBusProxy *proxy, GAsyncResult *res,
107                                         gpointer user_data);
108
109 static int __bt_retry_bond(void);
110
111
112 /*static void __bt_decline_pair_request()
113 {
114         GVariant *out_param1;
115         GVariant *out_param2;
116         request_info_t *req_info;
117         bluetooth_device_info_t dev_info;
118         bt_remote_dev_info_t *remote_dev_info;
119         GVariant *uuid_list, *manufacture_data;
120         GVariant *param;
121
122         BT_DBG("+");
123         if (bonding_info) {
124                 req_info = _bt_get_request_info(bonding_info->req_id);
125                 if (req_info == NULL) {
126                         BT_ERR("req_info == NULL");
127                         goto done;
128                 }
129                 remote_dev_info = _bt_get_remote_device_info(bonding_info->addr);
130         } else {
131                 BT_DBG("bonding_info is NULL");
132                 BT_DBG("-");
133                 return;
134         }
135
136         uuid_list =  g_variant_new_from_data((const GVariantType *)"as",
137                                                 remote_dev_info->uuids, remote_dev_info->uuid_count,
138                                                 TRUE, NULL, NULL);
139
140         manufacture_data = g_variant_new_from_data((const GVariantType *)"ay",
141                                                 remote_dev_info->manufacturer_data, remote_dev_info->manufacturer_data_len,
142                                                 TRUE, NULL, NULL);
143
144         param = g_variant_new("isunsbuba{s}na{y})",
145                         bonding_info->result,
146                         bonding_info->addr,
147                         remote_dev_info->class,
148                         remote_dev_info->rssi,
149                         remote_dev_info->name,
150                         remote_dev_info->paired,
151                         remote_dev_info->connected,
152                         remote_dev_info->trust,
153                         uuid_list,
154                         remote_dev_info->manufacturer_data_len,
155                         manufacture_data);
156
157
158         //Send the event to application
159         if (remote_dev_info != NULL) {
160                 _bt_send_event(BT_ADAPTER_EVENT,
161                         BLUETOOTH_EVENT_BONDING_FINISHED,
162                         param);
163
164                 _bt_free_device_info(remote_dev_info);
165         }
166
167         if (req_info->context == NULL)
168                 goto done;
169
170         memset(&dev_info, 0x00, sizeof(bluetooth_device_info_t));
171         _bt_convert_addr_string_to_type(dev_info.device_address.addr,
172                                         bonding_info->addr);
173
174         out_param1 = g_variant_new_from_data((const GVariantType *)"ay",
175                 &dev_info, sizeof(bluetooth_device_info_t), TRUE, NULL, NULL);
176
177         out_param2 = g_variant_new_from_data((const GVariantType *)"i",
178                 &bonding_info->result, sizeof(int), TRUE, NULL, NULL);
179
180
181         g_dbus_method_invocation_return_value(req_info->context,
182                         g_variant_new("@ayi", out_param1, out_param2));
183
184
185         _bt_delete_request_list(req_info->req_id);
186 done:
187
188         g_free(bonding_info->addr);
189         g_free(bonding_info);
190         bonding_info = NULL;
191
192         BT_DBG("-");
193 } */
194
195 #ifdef TIZEN_PROFILE_WEARABLE
196 static gboolean __bt_syspopup_timer_cb(gpointer user_data)
197 {
198         int ret;
199         bundle *b;
200         retv_if(user_data == NULL, FALSE);
201
202         b = (bundle *)user_data;
203
204         ret = syspopup_launch("bt-syspopup", b);
205         if (ret < 0) {
206                 BT_ERR("Sorry!! Cannot launch popup return = %d, Retrying...", ret);
207         } else {
208                 BT_DBG("Hurray!!! Finally Popup launched");
209                 bundle_free(b);
210         }
211         return (ret < 0) ? TRUE : FALSE;
212 }
213
214 static gboolean __bt_launch_unable_to_pairing_syspopup(int result)
215 {
216         BT_DBG("+");
217         int ret = 0;
218         bundle *b = NULL;
219         GDBusConnection *conn;
220
221         conn = _bt_gdbus_get_system_gconn();
222         if (conn == NULL)
223                 return FALSE;
224
225         b = bundle_create();
226         if (b == NULL)
227                 return FALSE;
228
229         bundle_add(b, "event-type", "unable-to-pairing");
230
231         if (result == BLUETOOTH_ERROR_TIMEOUT)
232                 bundle_add(b, "error", "timeout");
233         else if (result == BLUETOOTH_ERROR_AUTHENTICATION_FAILED)
234                 bundle_add(b, "error", "authfailed");
235         else
236                 bundle_add(b, "error", "error");
237
238         ret = syspopup_launch("bt-syspopup", b);
239         if (0 > ret) {
240                 BT_ERR("Popup launch failed...retry %d \n", ret);
241                 g_timeout_add(200, (GSourceFunc) __bt_syspopup_timer_cb,
242                                 b);
243         } else {
244                 bundle_free(b);
245         }
246
247         BT_DBG("-");
248         return TRUE;
249 }
250 #endif
251
252 gboolean _bt_is_device_creating(void)
253 {
254         return is_device_creating;
255 }
256
257 gboolean _bt_is_bonding_device_address(const char *address)
258 {
259         if (bonding_info == NULL || bonding_info->addr == NULL)
260                 return FALSE;
261
262         if (g_strcmp0(bonding_info->addr, address) == 0) {
263                 BT_DBG("[%s]  is bonding device", address);
264                 return TRUE;
265         }
266
267         BT_DBG("[%s]  is NOT bonding device", address);
268         return FALSE;
269 }
270
271 void _bt_set_autopair_status_in_bonding_info(gboolean is_autopair)
272 {
273         ret_if(bonding_info == NULL);
274         bonding_info->is_autopair = is_autopair;
275 }
276
277 void __bt_cancel_search_service_done(void)
278 {
279         int result = BLUETOOTH_ERROR_CANCEL_BY_USER;
280         request_info_t *req_info;
281         bluetooth_device_info_t dev_info;
282         GVariant *out_param1;
283
284         ret_if(searching_info == NULL);
285
286         req_info = _bt_get_request_info(searching_info->req_id);
287         if (req_info == NULL) {
288                 BT_ERR("req_info == NULL");
289                 goto done;
290         }
291
292         if (req_info->context == NULL)
293                 goto done;
294
295         memset(&dev_info, 0x00, sizeof(bluetooth_device_info_t));
296         _bt_convert_addr_string_to_type(dev_info.device_address.addr,
297                                         searching_info->addr);
298
299         out_param1 = g_variant_new_from_data((const GVariantType *)"ay",
300                 &dev_info, sizeof(bluetooth_device_info_t), TRUE, NULL, NULL);
301
302
303         g_dbus_method_invocation_return_value(req_info->context,
304                         g_variant_new("(iv)", result, out_param1));
305
306         _bt_delete_request_list(req_info->req_id);
307
308 done:
309
310         g_free(searching_info->addr);
311         g_free(searching_info);
312         searching_info = NULL;
313 }
314
315 static void __bt_get_uuids(GVariant *value, bt_remote_dev_info_t *info)
316 {
317         ret_if(value == NULL);
318         ret_if(info == NULL);
319
320         gsize uuid_count = 0;
321
322         info->uuids = g_variant_dup_strv(value, &uuid_count);
323         info->uuid_count = (unsigned int)uuid_count;
324
325         BT_DBG("uuid count : %d", uuid_count);
326 }
327
328 bt_remote_dev_info_t *_bt_get_remote_device_info(char *address)
329 {
330         char *object_path = NULL;
331         bt_remote_dev_info_t *dev_info;
332
333         retv_if(address == NULL, NULL);
334
335         object_path = _bt_get_device_object_path(address);
336         retv_if(object_path == NULL, NULL);
337
338         dev_info = _bt_get_remote_device_info_by_object_path(object_path);
339
340         g_free(object_path);
341         return dev_info;
342 }
343
344 bt_remote_dev_info_t *_bt_get_remote_device_info_by_object_path(
345                                                         const char *object_path)
346 {
347         bt_remote_dev_info_t *dev_info;
348         GDBusProxy *adapter_proxy;
349         GDBusProxy *device_proxy;
350         GVariant *value;
351         GVariant *tmp_value;
352         gchar *name;
353         gchar * address;
354         GDBusConnection *conn;
355         GError *error = NULL;
356         GVariant *result = NULL;
357         GVariantIter *value_iter;
358         guint8 m_value;
359         int i = 0;
360
361         adapter_proxy = _bt_get_adapter_proxy();
362         retv_if(adapter_proxy == NULL, NULL);
363
364         retv_if(object_path == NULL, NULL);
365
366         conn = _bt_gdbus_get_system_gconn();
367         if (conn == NULL) {
368                 BT_ERR("conn == NULL");
369                 return NULL;
370         }
371
372         device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
373                                         NULL, BT_BLUEZ_NAME, object_path,
374                                         BT_PROPERTIES_INTERFACE,  NULL, NULL);
375
376         retv_if(device_proxy == NULL, NULL);
377
378         result = g_dbus_proxy_call_sync(device_proxy, "GetAll",
379                                 g_variant_new("(s)", BT_DEVICE_INTERFACE),
380                                 G_DBUS_CALL_FLAGS_NONE,
381                                 -1,
382                                 NULL,
383                                 &error);
384
385         g_object_unref(device_proxy);
386
387         dev_info = g_malloc0(sizeof(bt_remote_dev_info_t));
388
389         if (result != NULL) {
390                 g_variant_get(result , "(@a{sv})", &value);
391                 g_variant_unref(result);
392
393                 tmp_value = g_variant_lookup_value(value, "Alias", G_VARIANT_TYPE_STRING);
394
395                 g_variant_get(tmp_value, "s", &name);
396                 g_variant_unref(tmp_value);
397                 if (name != NULL)
398                         DBG_SECURE("Alias Name [%s]", name);
399                 else {
400                         tmp_value = g_variant_lookup_value(value, "Name", G_VARIANT_TYPE_STRING);
401                         g_variant_get(tmp_value, "s", &name);
402                         g_variant_unref(tmp_value);
403                 }
404
405                 tmp_value = g_variant_lookup_value(value, "IsAliasSet", G_VARIANT_TYPE_BOOLEAN);
406                 if (tmp_value) {
407                         dev_info->is_alias_set = g_variant_get_boolean(tmp_value);
408                         g_variant_unref(tmp_value);
409                 } else {
410                         dev_info->is_alias_set = FALSE;
411                 }
412                 BT_DBG("IsAliasSet: [%s]", dev_info->is_alias_set ? "TRUE" : "FALSE");
413
414                 tmp_value = g_variant_lookup_value(value, "Class", G_VARIANT_TYPE_UINT32);
415                 if (tmp_value) {
416                         dev_info->class = g_variant_get_uint32(tmp_value);
417                         g_variant_unref(tmp_value);
418                 } else
419                         dev_info->class = 0;
420
421                 tmp_value = g_variant_lookup_value(value, "Connected",  G_VARIANT_TYPE_BYTE);
422                 if (tmp_value) {
423                         dev_info->connected = g_variant_get_byte(tmp_value);
424                         g_variant_unref(tmp_value);
425                 } else
426                         dev_info->connected = BLUETOOTH_CONNECTED_LINK_NONE;
427                 BT_DBG("connected link : %d", dev_info->connected);
428
429                 tmp_value = g_variant_lookup_value(value, "Trusted",  G_VARIANT_TYPE_BOOLEAN);
430                 if (tmp_value) {
431                         dev_info->trust = g_variant_get_boolean(tmp_value);
432                         g_variant_unref(tmp_value);
433                 } else
434                         dev_info->trust = FALSE;
435
436                 tmp_value = g_variant_lookup_value(value, "Paired",  G_VARIANT_TYPE_BOOLEAN);
437                 if (tmp_value) {
438                         dev_info->paired = g_variant_get_boolean(tmp_value);
439                         g_variant_unref(tmp_value);
440                 } else
441                         dev_info->paired = FALSE;
442
443                 tmp_value = g_variant_lookup_value(value, "RSSI", G_VARIANT_TYPE_INT16);
444                 if (tmp_value) {
445                         dev_info->rssi = g_variant_get_int16(tmp_value);
446                         g_variant_unref(tmp_value);
447                 } else
448                         dev_info->rssi = 0;
449
450                 tmp_value = g_variant_lookup_value(value, "LastAddrType", G_VARIANT_TYPE_BYTE);
451                 if (tmp_value) {
452                         dev_info->addr_type = g_variant_get_byte(tmp_value);
453                         g_variant_unref(tmp_value);
454                 } else
455                         dev_info->addr_type = 0;
456
457                 tmp_value = g_variant_lookup_value(value, "UUIDs", G_VARIANT_TYPE_STRING_ARRAY);
458                 if (tmp_value) {
459                         __bt_get_uuids(tmp_value, dev_info);
460                         g_variant_unref(tmp_value);
461                 }
462
463                 tmp_value = g_variant_lookup_value(value, "ManufacturerDataLen", G_VARIANT_TYPE_UINT16);
464                 if (tmp_value) {
465                         dev_info->manufacturer_data_len = g_variant_get_uint16(tmp_value);
466                         if (dev_info->manufacturer_data_len > BLUETOOTH_MANUFACTURER_DATA_LENGTH_MAX) {
467                                 BT_ERR("manufacturer_data_len is too long(len = %d)", dev_info->manufacturer_data_len);
468                                 dev_info->manufacturer_data_len = BLUETOOTH_MANUFACTURER_DATA_LENGTH_MAX;
469                         }
470                         g_variant_unref(tmp_value);
471                 } else
472                         dev_info->manufacturer_data_len = 0;
473
474                 tmp_value = g_variant_lookup_value(value, "ManufacturerData", G_VARIANT_TYPE_ARRAY);
475                 if (tmp_value) {
476                         if ((dev_info->manufacturer_data_len == 0) ||
477                                         dev_info->manufacturer_data_len != g_variant_get_size(tmp_value)) {
478                                 BT_ERR("manufacturer data length doesn't match");
479                                 dev_info->manufacturer_data_len = 0;
480                                 dev_info->manufacturer_data = NULL;
481                         } else {
482                                 dev_info->manufacturer_data = g_malloc0(dev_info->manufacturer_data_len);
483                                 g_variant_get(tmp_value, "ay", &value_iter);
484                                 while (g_variant_iter_loop(value_iter, "y", &m_value))
485                                         dev_info->manufacturer_data[i++] = m_value;
486                         }
487                         g_variant_unref(tmp_value);
488                 } else {
489                         BT_INFO("manufacture data is not a G_VARIANT_TYPE_ARRAY ");
490                         dev_info->manufacturer_data_len = 0;
491                         dev_info->manufacturer_data = NULL;
492                 }
493
494                 tmp_value = g_variant_lookup_value(value, "Address", G_VARIANT_TYPE_STRING);
495                 g_variant_get(tmp_value, "s", &address);
496                 g_variant_unref(tmp_value);
497
498                 dev_info->address = g_strdup(address);
499                 dev_info->name = g_strdup(name);
500                 g_free(name);
501                 g_variant_unref(value);
502         } else {
503                 BT_ERR("result  is NULL\n");
504                 g_free(dev_info);
505                 dev_info = NULL;
506         }
507
508         return dev_info;
509 }
510
511 char *_bt_get_bonded_device_name(char *address)
512 {
513         bluetooth_device_address_t device_address = { {0} };
514         bluetooth_device_info_t dev_info;
515
516         retv_if(address == NULL, strdup(""));
517
518         _bt_convert_addr_string_to_type(device_address.addr, address);
519
520         memset(&dev_info, 0x00, sizeof(bluetooth_device_info_t));
521
522         _bt_get_bonded_device_info(&device_address, &dev_info);
523
524         return g_strdup(dev_info.device_name.name);
525 }
526
527 static gboolean __ignore_auto_pairing_request(const char *address)
528 {
529         gchar *buffer;
530         char **lines;
531         int i;
532         char lap_address[BT_LOWER_ADDRESS_LENGTH + 1] = {0,};
533         char *temp_buffer;
534         FILE *fp;
535         long size;
536         size_t result;
537
538         BT_DBG("+\n");
539
540         if (address == NULL)
541                 return FALSE;
542
543         /* Get the LAP(Lower Address part) */
544         /* User BT_LOWER_ADDRESS_LENGTH+1 for lap_address to accomodate
545              a "," */
546         snprintf(lap_address, sizeof(lap_address), ",%s", address);
547
548         fp = fopen(BT_AGENT_AUTO_PAIR_BLACKLIST_FILE, "r");
549
550         if (fp == NULL) {
551                 BT_ERR("fopen failed \n");
552                 return FALSE;
553         }
554
555         fseek(fp, 0, SEEK_END);
556         size = ftell(fp);
557         rewind(fp);
558
559         if (size < 0) {
560                 BT_ERR("Get file size failed \n");
561                 fclose(fp);
562                 return FALSE;
563         }
564
565         buffer = g_malloc0(sizeof(char) * size);
566         result = fread((char *)buffer, 1, size, fp);
567         fclose(fp);
568         if (result != size) {
569                 BT_ERR("Read Error\n");
570                 g_free(buffer);
571                 return FALSE;
572         }
573
574         BT_DBG("Buffer = %s\n", buffer);
575
576         lines = g_strsplit_set(buffer, BT_AGENT_NEW_LINE, 0);
577         g_free(buffer);
578
579         if (lines == NULL)
580                 return FALSE;
581
582         /* Write the data and insert new device data */
583         for (i = 0; lines[i] != NULL; i++) {
584                 if (g_str_has_prefix(lines[i], "AddressBlacklist")) {
585                         temp_buffer = g_strconcat(lines[i], lap_address, NULL);
586                         g_free(lines[i]);
587                         lines[i] = temp_buffer;
588                 }
589         }
590         buffer = g_strjoinv(BT_AGENT_NEW_LINE, lines);
591         g_strfreev(lines);
592         /* Fix : NULL_RETURNS */
593         retv_if(buffer == NULL, FALSE);
594
595         fp = fopen(BT_AGENT_AUTO_PAIR_BLACKLIST_FILE, "w");
596
597         if (fp == NULL) {
598                 BT_ERR("fopen failed \n");
599                 g_free(buffer);
600                 return FALSE;
601         }
602
603         BT_DBG("Buffer = %s\n", buffer);
604         fwrite(buffer, 1, strlen(buffer), fp);
605         fclose(fp);
606
607         g_free(buffer);
608
609         BT_DBG("-\n");
610
611         return FALSE;
612 }
613
614 static int __bt_cancel_bonding(void)
615 {
616         BT_CHECK_PARAMETER(bonding_info, return);
617         BT_CHECK_PARAMETER(bonding_info->addr, return);
618         /* First Cancel the ongoing pairing in bluez otherwise if we send
619          * pair request bluez will send inprogress and we again retry bond so
620          * this cycle continues */
621          GError *err = NULL;
622         g_dbus_proxy_call_sync(bonding_info->device_proxy, "CancelPairing",
623                         NULL, G_DBUS_CALL_FLAGS_NONE,
624                         10000, NULL, &err);
625         if (err) {
626                 BT_ERR("Cancelling bonding request error msg (%s)", err->message);
627                 g_clear_error(&err);
628                 return BLUETOOTH_ERROR_PARING_FAILED;
629         }
630         return BLUETOOTH_ERROR_NONE;
631 }
632
633 static int __bt_retry_bond(void)
634 {
635         BT_CHECK_PARAMETER(bonding_info, return);
636         BT_CHECK_PARAMETER(bonding_info->addr, return);
637
638         g_dbus_proxy_call(bonding_info->device_proxy, "Pair",
639                                 g_variant_new("(y)", bonding_info->conn_type),
640                                 G_DBUS_CALL_FLAGS_NONE,
641                                 BT_MAX_DBUS_TIMEOUT,
642                                 NULL,
643                                 (GAsyncReadyCallback)__bt_bond_device_cb,
644                                 NULL);
645
646         return BLUETOOTH_ERROR_NONE;
647 }
648
649
650 static int __bt_remove_and_bond(void)
651 {
652         GDBusProxy *adapter_proxy;
653         GVariant *result = NULL;
654         GError *err = NULL;
655         char *device_path = NULL;
656
657         BT_CHECK_PARAMETER(bonding_info, return);
658         BT_CHECK_PARAMETER(bonding_info->addr, return);
659
660         adapter_proxy = _bt_get_adapter_proxy();
661         retv_if(adapter_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
662
663         result = g_dbus_proxy_call_sync(adapter_proxy, "FindDevice",
664                                 g_variant_new("(s)", bonding_info->addr),
665                                 G_DBUS_CALL_FLAGS_NONE,
666                                 -1,
667                                 NULL,
668                                 NULL);
669         if (result == NULL)
670                 return BLUETOOTH_ERROR_INTERNAL;
671
672         g_variant_get(result , "(o)", &device_path);
673         g_variant_unref(result);
674
675         retv_if(device_path == NULL, BLUETOOTH_ERROR_INTERNAL);
676
677         result = g_dbus_proxy_call_sync(adapter_proxy, "UnpairDevice",
678                                 g_variant_new("(o)", device_path),
679                                 G_DBUS_CALL_FLAGS_NONE,
680                                 -1,
681                                 NULL,
682                                 &err);
683         g_free(device_path);
684         if (err != NULL) {
685                 BT_ERR("UnpairDevice Fail: %s", err->message);
686                 g_error_free(err);
687                 return BLUETOOTH_ERROR_INTERNAL;
688         }
689
690         return __bt_retry_bond();
691 }
692
693 static int __bt_cancel_and_bond(void)
694 {
695         int ret = BLUETOOTH_ERROR_NONE;
696
697         ret = _bt_agent_reply_cancellation();
698         if (ret != BLUETOOTH_ERROR_NONE) {
699                 BT_ERR("Fail to call reply cancellation");
700                 return ret;
701         }
702         return __bt_retry_bond();
703 }
704
705
706 static void __bt_bond_device_cb(GDBusProxy *proxy, GAsyncResult *res,
707                                         gpointer user_data)
708 {
709         int result = BLUETOOTH_ERROR_NONE;
710         GError *err = NULL;
711         GVariant *reply;
712         GVariant *out_param1;
713         request_info_t *req_info;
714         bluetooth_device_info_t dev_info;
715         bt_remote_dev_info_t *remote_dev_info;
716         GVariant *manufacture_data;
717         GVariant *param;
718
719         /* Terminate ALL system popup */
720         syspopup_destroy_all();
721
722         reply = g_dbus_proxy_call_finish(proxy, res, &err);
723         if (reply)
724                 g_variant_unref(reply);
725
726         is_device_creating = FALSE;
727
728         if (bonding_info == NULL) {
729                 /* Send reply */
730                 BT_ERR("bonding_info == NULL");
731                 if (err)
732                         g_error_free(err);
733                 return;
734         }
735
736         req_info = _bt_get_request_info(bonding_info->req_id);
737         if (req_info == NULL) {
738                 BT_ERR("req_info == NULL");
739                 goto done;
740         }
741
742         if (err != NULL) {
743                 g_dbus_error_strip_remote_error(err);
744                 BT_ERR("Error occured in CreateBonding [%s]", err->message);
745
746                 if (g_strrstr(err->message, "Already Exists")) {
747                         BT_INFO("Existing Bond, remove and retry");
748                         ret_if(__bt_remove_and_bond() == BLUETOOTH_ERROR_NONE);
749
750                         result = BLUETOOTH_ERROR_PARING_FAILED;
751                 } else if (_bt_agent_is_canceled() ||
752                         g_strrstr(err->message, "Authentication Canceled")) {
753                         BT_INFO("Cancelled by USER");
754                         result = BLUETOOTH_ERROR_CANCEL_BY_USER;
755                 } else if (g_strrstr(err->message, "Authentication Rejected")) {
756                         BT_INFO("REJECTED");
757                         result = BLUETOOTH_ERROR_ACCESS_DENIED;
758                 } else if (g_strrstr(err->message, "In Progress")) {
759                         BT_INFO("Bond in progress, cancel and retry");
760                         ret_if(__bt_cancel_and_bond() == BLUETOOTH_ERROR_NONE);
761
762                         result = BLUETOOTH_ERROR_PARING_FAILED;
763                 } else if (g_strrstr(err->message, "Authentication Failed")) {
764                         BT_INFO("Authentication Failed");
765                         if (bonding_info->is_autopair == TRUE) {
766                                 _bt_set_autopair_status_in_bonding_info(FALSE);
767                                 __ignore_auto_pairing_request(bonding_info->addr);
768                         }
769                         result = BLUETOOTH_ERROR_AUTHENTICATION_FAILED;
770                 } else if (g_strrstr(err->message, "Page Timeout")) {
771                         BT_INFO("Page Timeout");
772                         /* This is the special case
773                              As soon as call bluetooth_bond_device, try to cancel bonding.
774                              In this case, before completing to call 'CreatePairedDevice' method
775                              the procedure is stopped. So 'Cancle' error is not return.
776                         */
777                         result = BLUETOOTH_ERROR_HOST_DOWN;
778                 } else if (g_strrstr(err->message, BT_DBUS_TIMEOUT_MESSAGE)) {
779                         BT_INFO("Cancel already running bonding");
780                         if (__bt_cancel_bonding() != BLUETOOTH_ERROR_NONE) {
781                                 BT_INFO("Error while Cancelling bonding");
782                                 /* we need to unref proxy so continue */
783                         }
784                         result = BLUETOOTH_ERROR_INTERNAL;
785                 } else if (g_strrstr(err->message, "Connection Timeout")) {
786                         /* Pairing request timeout */
787                         result = BLUETOOTH_ERROR_TIMEOUT;
788                 } else if (g_strrstr(err->message, "Authentication Timeout")) {
789                         /* Pairing request timeout */
790                         result = BLUETOOTH_ERROR_TIMEOUT;
791                 } else {
792                         BT_DBG("Default case");
793                         result = BLUETOOTH_ERROR_PARING_FAILED;
794                 }
795         }
796
797         if (result == BLUETOOTH_ERROR_PARING_FAILED ||
798                         result == BLUETOOTH_ERROR_AUTHENTICATION_FAILED ||
799                         result == BLUETOOTH_ERROR_TIMEOUT ||
800                         result == BLUETOOTH_ERROR_HOST_DOWN) {
801 #ifdef TIZEN_PROFILE_WEARABLE
802                 int is_sw_running = 0;
803
804                 if (vconf_get_int(VCONFKEY_SETUP_WIZARD_STATE, &is_sw_running))
805                         BT_ERR("vconf_get_int for setup wizard state failed");
806
807                 if (!is_sw_running)
808                         __bt_launch_unable_to_pairing_syspopup(result);
809                 else
810                         BT_ERR("Unable to pair");
811 #endif
812                 bonding_info->result = result;
813         }
814
815         g_object_unref(proxy);
816         bonding_info->device_proxy = NULL;
817
818         if (result != BLUETOOTH_ERROR_NONE) {
819                 if (bonding_info->bonding_wo_discovery) {
820                         GDBusProxy *adapter_proxy;
821                         GVariant *ret = NULL;
822                         GError *error = NULL;
823                         char *device_path;
824
825                         BT_ERR("Bond was tried without discovery. Remove it");
826
827                         adapter_proxy = _bt_get_adapter_proxy();
828                         if (adapter_proxy == NULL) {
829                                 BT_ERR("Cannot get adapter_proxy");
830                                 goto dbus_return;
831                         }
832
833                         device_path = _bt_get_device_object_path(bonding_info->addr);
834                         if (device_path == NULL) {
835                                 BT_ERR("Cannot get device path");
836                                 goto dbus_return;
837                         }
838
839                         ret = g_dbus_proxy_call_sync(adapter_proxy,
840                                         "RemoveDevice",
841                                         g_variant_new("(o)", device_path),
842                                         G_DBUS_CALL_FLAGS_NONE, -1, NULL,
843                                         &error);
844                         if (error != NULL) {
845                                 BT_ERR("RemoveDevice Fail: %s", error->message);
846                                 g_clear_error(&error);
847                         }
848
849                         if (ret)
850                                 g_variant_unref(ret);
851
852                         g_free(device_path);
853                 }
854
855                 goto dbus_return;
856         }
857
858         remote_dev_info = _bt_get_remote_device_info(bonding_info->addr);
859         if (!remote_dev_info)
860                 goto dbus_return;
861
862         GVariant *uuids = NULL;
863         GVariantBuilder *builder = NULL;
864         int i = 0;
865         builder = g_variant_builder_new(G_VARIANT_TYPE("as"));
866         for (i = 0; i < remote_dev_info->uuid_count; i++) {
867                 g_variant_builder_add(builder, "s",
868                         remote_dev_info->uuids[i]);
869         }
870         uuids = g_variant_new("as", builder);
871         g_variant_builder_unref(builder);
872         manufacture_data = g_variant_new_from_data((const GVariantType *)"ay",
873                                                 remote_dev_info->manufacturer_data, remote_dev_info->manufacturer_data_len,
874                                                 TRUE, NULL, NULL);
875
876         param = g_variant_new("(isunsbub@asn@ay)",
877                         result,
878                         bonding_info->addr,
879                         remote_dev_info->class,
880                         remote_dev_info->rssi,
881                         remote_dev_info->name,
882                         remote_dev_info->paired,
883                         remote_dev_info->connected,
884                         remote_dev_info->trust,
885                         uuids,
886                         remote_dev_info->manufacturer_data_len,
887                         manufacture_data);
888
889
890         /* Send the event to application */
891         _bt_send_event(BT_ADAPTER_EVENT,
892                 BLUETOOTH_EVENT_BONDING_FINISHED,
893                 param);
894
895         _bt_free_device_info(remote_dev_info);
896
897 dbus_return:
898         if (req_info->context == NULL)
899                 goto done;
900
901         memset(&dev_info, 0x00, sizeof(bluetooth_device_info_t));
902         _bt_convert_addr_string_to_type(dev_info.device_address.addr,
903                                         bonding_info->addr);
904
905         if (_bt_adapter_get_status() != BT_ACTIVATED)
906                 result = BLUETOOTH_ERROR_NOT_IN_OPERATION;
907
908         out_param1 = g_variant_new_from_data((const GVariantType *)"ay",
909                 &dev_info, sizeof(bluetooth_device_info_t), TRUE, NULL, NULL);
910
911         g_dbus_method_invocation_return_value(req_info->context,
912                         g_variant_new("(iv)", result, out_param1));
913
914         g_variant_unref(out_param1);
915
916         _bt_delete_request_list(req_info->req_id);
917 done:
918         if (err)
919                 g_error_free(err);
920
921         _bt_agent_set_canceled(FALSE);
922
923
924         g_free(bonding_info->addr);
925         g_free(bonding_info);
926         bonding_info = NULL;
927 }
928
929 int _bt_bond_device(int request_id,
930                 bluetooth_device_address_t *device_address,
931                 unsigned short conn_type, GArray **out_param1)
932 {
933         GDBusProxy *proxy;
934         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
935         bluetooth_device_info_t dev_info;
936
937         GDBusConnection *conn;
938         char *device_path = NULL;
939         GDBusProxy *adapter_proxy;
940         GError *error = NULL;
941         gboolean bonding_wo_discovery = FALSE;
942
943         BT_CHECK_PARAMETER(device_address, return);
944
945         if (bonding_info) {
946                 BT_ERR("Bonding in progress");
947
948                 memset(&dev_info, 0x00, sizeof(bluetooth_device_info_t));
949                 memcpy(dev_info.device_address.addr, device_address->addr,
950                                 BLUETOOTH_ADDRESS_LENGTH);
951
952                 g_array_append_vals(*out_param1, &dev_info,
953                                 sizeof(bluetooth_device_info_t));
954
955                 return BLUETOOTH_ERROR_DEVICE_BUSY;
956         }
957
958         conn = _bt_gdbus_get_system_gconn();
959         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
960
961         _bt_convert_addr_type_to_string(address, device_address->addr);
962
963         device_path = _bt_get_device_object_path(address);
964
965         if (device_path == NULL) {
966                 BT_ERR("No searched device");
967                 GVariant *ret = NULL;
968                 adapter_proxy = _bt_get_adapter_proxy();
969                 retv_if(adapter_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
970
971                 ret = g_dbus_proxy_call_sync(adapter_proxy, "CreateDevice",
972                                         g_variant_new("(s)", address),
973                                         G_DBUS_CALL_FLAGS_NONE,
974                                         -1,
975                                         NULL,
976                                         &error);
977
978                 if (error != NULL) {
979                         BT_ERR("CreateDevice Fail: %s", error->message);
980                         g_clear_error(&error);
981                 }
982                 if (ret)
983                         g_variant_unref(ret);
984                 device_path = _bt_get_device_object_path(address);
985                 if (device_path == NULL) {
986                         memset(&dev_info, 0x00, sizeof(bluetooth_device_info_t));
987                         memcpy(dev_info.device_address.addr, device_address->addr,
988                                         BLUETOOTH_ADDRESS_LENGTH);
989
990                         g_array_append_vals(*out_param1, &dev_info,
991                                         sizeof(bluetooth_device_info_t));
992
993                         return BLUETOOTH_ERROR_NOT_PAIRED;
994                 } else {
995                         BT_INFO("device_path is created[%s]", device_path);
996                 }
997                 bonding_wo_discovery = TRUE;
998         }
999
1000         proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
1001                                                                 NULL, BT_BLUEZ_NAME,
1002                                                                 device_path, BT_DEVICE_INTERFACE,  NULL, NULL);
1003
1004         g_free(device_path);
1005         retv_if(proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
1006
1007         bonding_info = g_malloc0(sizeof(bt_funcion_data_t));
1008         bonding_info->addr = g_strdup(address);
1009         bonding_info->req_id = request_id;
1010
1011         bonding_info->device_proxy = proxy;
1012         bonding_info->conn_type = conn_type;
1013         bonding_info->bonding_wo_discovery = bonding_wo_discovery;
1014
1015         is_device_creating = TRUE;
1016
1017         g_dbus_proxy_call(proxy, "Pair",
1018                                 g_variant_new("(y)", conn_type),
1019                                 G_DBUS_CALL_FLAGS_NONE,
1020                                 BT_MAX_DBUS_TIMEOUT,
1021                                 NULL,
1022                                 (GAsyncReadyCallback)__bt_bond_device_cb,
1023                                 NULL);
1024
1025 /* TODO: We need to check if we can pair the specific device using 'pair' API of bluez 5.x */
1026
1027         return BLUETOOTH_ERROR_NONE;
1028 /*fail:
1029         memset(&dev_info, 0x00, sizeof(bluetooth_device_info_t));
1030         _bt_convert_addr_string_to_type(dev_info.device_address.addr,
1031                                         bonding_info->addr);
1032
1033         g_array_append_vals(*out_param1, &dev_info,
1034                                 sizeof(bluetooth_device_info_t));
1035
1036         is_device_creating = FALSE;
1037
1038         g_free(bonding_info->addr);
1039         g_free(bonding_info);
1040         bonding_info = NULL;
1041
1042         return BLUETOOTH_ERROR_INTERNAL;*/
1043 }
1044
1045 int _bt_cancel_bonding(void)
1046 {
1047         int ret = BLUETOOTH_ERROR_NONE;
1048
1049         retv_if(bonding_info == NULL, BLUETOOTH_ERROR_NOT_IN_OPERATION);
1050
1051         ret = _bt_agent_reply_cancellation();
1052         if (ret != BLUETOOTH_ERROR_NONE) {
1053                 BT_ERR("Fail to call reply cancellation");
1054                 return ret;
1055         }
1056
1057         _bt_agent_set_canceled(TRUE);
1058
1059         return BLUETOOTH_ERROR_NONE;
1060 }
1061
1062 static void __bt_unbond_cb(GDBusProxy *proxy, GAsyncResult *res,
1063                                         gpointer user_data)
1064 {
1065         GError *err = NULL;
1066         GVariant *reply;
1067         GVariant *out_param1;
1068         int result = BLUETOOTH_ERROR_NONE;
1069         bt_funcion_data_t *unbonding_info;
1070         bluetooth_device_info_t dev_info;
1071         request_info_t *req_info;
1072
1073         reply = g_dbus_proxy_call_finish(proxy, res, &err);
1074         if (reply)
1075                 g_variant_unref(reply);
1076
1077         unbonding_info = user_data;
1078
1079         if (unbonding_info == NULL) {
1080                 /* Send reply */
1081                 BT_ERR("unbonding_info == NULL");
1082                 goto done;
1083         }
1084
1085         req_info = _bt_get_request_info(unbonding_info->req_id);
1086         if (req_info == NULL) {
1087                 BT_ERR("req_info == NULL");
1088                 goto done;
1089         }
1090
1091         if (err != NULL) {
1092                 BT_ERR("Error occured in RemoveBonding [%s]\n", err->message);
1093                 result = BLUETOOTH_ERROR_INTERNAL;
1094         }
1095
1096         if (req_info->context == NULL)
1097                 goto done;
1098
1099         memset(&dev_info, 0x00, sizeof(bluetooth_device_info_t));
1100         _bt_convert_addr_string_to_type(dev_info.device_address.addr,
1101                                         unbonding_info->addr);
1102
1103         out_param1 = g_variant_new_from_data((const GVariantType *)"ay",
1104                 &dev_info, sizeof(bluetooth_device_info_t), TRUE, NULL, NULL);
1105
1106         g_dbus_method_invocation_return_value(req_info->context,
1107                         g_variant_new("(iv)", result, out_param1));
1108
1109
1110         _bt_delete_request_list(req_info->req_id);
1111
1112 done:
1113         if (err)
1114                 g_error_free(err);
1115
1116         if (unbonding_info) {
1117                 g_free(unbonding_info->addr);
1118                 g_free(unbonding_info);
1119         }
1120 }
1121
1122 int _bt_unbond_device(int request_id,
1123                         bluetooth_device_address_t *device_address,
1124                         GArray **out_param1)
1125 {
1126         char *device_path = NULL;
1127         bt_funcion_data_t *unbonding_info;
1128         GDBusProxy *adapter_proxy = NULL;
1129         GDBusProxy *device_proxy = NULL;
1130         GDBusConnection *conn;
1131         int result = BLUETOOTH_ERROR_INTERNAL;
1132         bluetooth_device_info_t dev_info;
1133         GError *error = NULL;
1134         GVariant *ret = NULL;
1135
1136         BT_CHECK_PARAMETER(device_address, return);
1137
1138         adapter_proxy = _bt_get_adapter_proxy();
1139         retv_if(adapter_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
1140
1141         /* allocate user data so that it can be retrieved in callback */
1142         unbonding_info = g_malloc0(sizeof(bt_funcion_data_t));
1143         unbonding_info->addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1144         unbonding_info->req_id = request_id;
1145
1146         _bt_convert_addr_type_to_string(unbonding_info->addr,
1147                                         device_address->addr);
1148
1149         device_path = _bt_get_device_object_path(unbonding_info->addr);
1150
1151         if (device_path == NULL) {
1152                 BT_ERR("No paired device");
1153                 result = BLUETOOTH_ERROR_NOT_PAIRED;
1154                 goto fail;
1155         }
1156
1157         conn = _bt_gdbus_get_system_gconn();
1158         if (conn == NULL) {
1159                 BT_ERR("conn is NULL");
1160                 result = BLUETOOTH_ERROR_INTERNAL;
1161                 goto fail;
1162         }
1163
1164         device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
1165                                                                 NULL, BT_BLUEZ_NAME,
1166                                                                 device_path, BT_PROPERTIES_INTERFACE,  NULL, NULL);
1167
1168         if (device_proxy != NULL) {
1169
1170                 ret = g_dbus_proxy_call_sync(device_proxy, "Get",
1171                                         g_variant_new("(ss)", BT_DEVICE_INTERFACE, "Paired"),
1172                                         G_DBUS_CALL_FLAGS_NONE,
1173                                         -1,
1174                                         NULL,
1175                                         &error);
1176                 if (error) {
1177                         BT_ERR("Getting property failed: [%s]\n", error->message);
1178                         g_error_free(error);
1179                         result = BLUETOOTH_ERROR_NOT_PAIRED;
1180                         goto fail;
1181                 } else {
1182                         if (!ret) {
1183                                 BT_ERR("No paired device");
1184                                 g_object_unref(device_proxy);
1185                                 result = BLUETOOTH_ERROR_NOT_PAIRED;
1186                                 goto fail;
1187                         }
1188                         g_variant_unref(ret);
1189                 }
1190                 g_object_unref(device_proxy);
1191         }
1192
1193         g_dbus_proxy_call(adapter_proxy, "UnpairDevice",
1194                                 g_variant_new("(o)", device_path),
1195                                 G_DBUS_CALL_FLAGS_NONE,
1196                                 BT_MAX_DBUS_TIMEOUT,
1197                                 NULL,
1198                                 (GAsyncReadyCallback)__bt_unbond_cb,
1199                                 unbonding_info);
1200
1201         g_free(device_path);
1202         return BLUETOOTH_ERROR_NONE;
1203
1204 fail:
1205         memset(&dev_info, 0x00, sizeof(bluetooth_device_info_t));
1206         _bt_convert_addr_string_to_type(dev_info.device_address.addr,
1207                                         unbonding_info->addr);
1208
1209         g_array_append_vals(*out_param1, &dev_info,
1210                                 sizeof(bluetooth_device_info_t));
1211         g_free(device_path);
1212         g_free(unbonding_info->addr);
1213         g_free(unbonding_info);
1214         return result;
1215 }
1216
1217 static void __bt_discover_cb(GDBusProxy *proxy, GAsyncResult *res,
1218                                         gpointer user_data)
1219 {
1220         GError *err = NULL;
1221         GVariant *reply;
1222         GVariant *out_param1;
1223         int result = BLUETOOTH_ERROR_NONE;
1224         bluetooth_device_info_t dev_info;
1225         bt_remote_dev_info_t *remote_dev_info;
1226         request_info_t *req_info;
1227         GVariant *uuid_list, *manufacture_data;
1228         GVariant *param;
1229         GVariantBuilder *builder = NULL;
1230         int i = 0;
1231
1232         reply = g_dbus_proxy_call_finish(proxy, res, &err);
1233         if (reply)
1234                 g_variant_unref(reply);
1235
1236         g_object_unref(proxy);
1237
1238         if (searching_info == NULL) {
1239                 /* Send reply */
1240                 BT_ERR("unbonding_info == NULL");
1241                 goto done;
1242         }
1243
1244         req_info = _bt_get_request_info(searching_info->req_id);
1245         if (req_info == NULL) {
1246                 BT_ERR("req_info == NULL");
1247                 goto done;
1248         }
1249
1250         if (err != NULL) {
1251                 g_dbus_error_strip_remote_error(err);
1252                 BT_ERR("Error occured in Proxy call [%s]\n", err->message);
1253
1254                 if (g_strrstr("Operation canceled", err->message))
1255                         result = BLUETOOTH_ERROR_CANCEL_BY_USER;
1256                 else if (g_strrstr("In Progress", err->message))
1257                         result = BLUETOOTH_ERROR_IN_PROGRESS;
1258                 else if (g_strrstr("Host is down", err->message))
1259                         result = BLUETOOTH_ERROR_HOST_DOWN;
1260                 else
1261                         result = BLUETOOTH_ERROR_CONNECTION_ERROR;
1262
1263                 if (result == BLUETOOTH_ERROR_HOST_DOWN ||
1264                      result == BLUETOOTH_ERROR_CONNECTION_ERROR) {
1265                         remote_dev_info = _bt_get_remote_device_info(searching_info->addr);
1266                         if (remote_dev_info && remote_dev_info->uuids != NULL &&
1267                              remote_dev_info->uuid_count > 0) {
1268                                 result = BLUETOOTH_ERROR_NONE;
1269                                 goto event;
1270                         }
1271                         _bt_free_device_info(remote_dev_info);
1272                 }
1273                 goto dbus_return;
1274         }
1275
1276         remote_dev_info = _bt_get_remote_device_info(searching_info->addr);
1277         if (!remote_dev_info)
1278                 goto dbus_return;
1279
1280 event:
1281         builder = g_variant_builder_new(G_VARIANT_TYPE("as"));
1282         for (i = 0; i < remote_dev_info->uuid_count; i++) {
1283                 g_variant_builder_add(builder, "s",
1284                         remote_dev_info->uuids[i]);
1285         }
1286         uuid_list = g_variant_new("as", builder);
1287         g_variant_builder_unref(builder);
1288         manufacture_data = g_variant_new_from_data((const GVariantType *)"ay",
1289                                                 remote_dev_info->manufacturer_data, remote_dev_info->manufacturer_data_len,
1290                                                 TRUE, NULL, NULL);
1291
1292         param = g_variant_new("(isunsbub@asn@ay)",
1293                         result,
1294                         searching_info->addr,
1295                         remote_dev_info->class,
1296                         remote_dev_info->rssi,
1297                         remote_dev_info->name,
1298                         remote_dev_info->paired,
1299                         remote_dev_info->connected,
1300                         remote_dev_info->trust,
1301                         uuid_list,
1302                         remote_dev_info->manufacturer_data_len,
1303                         manufacture_data);
1304
1305         /* Send the event to application */
1306         _bt_send_event(BT_ADAPTER_EVENT,
1307                 BLUETOOTH_EVENT_SERVICE_SEARCHED,
1308                 param);
1309
1310         _bt_free_device_info(remote_dev_info);
1311
1312 dbus_return:
1313         if (req_info->context == NULL)
1314                 goto done;
1315
1316         memset(&dev_info, 0x00, sizeof(bluetooth_device_info_t));
1317         _bt_convert_addr_string_to_type(dev_info.device_address.addr,
1318                                         searching_info->addr);
1319
1320         out_param1 = g_variant_new_from_data((const GVariantType *)"ay",
1321                 &dev_info, sizeof(bluetooth_device_info_t), TRUE, NULL, NULL);
1322
1323         g_dbus_method_invocation_return_value(req_info->context,
1324                         g_variant_new("(iv)", result, out_param1));
1325
1326
1327         _bt_delete_request_list(req_info->req_id);
1328 done:
1329         if (err)
1330                 g_error_free(err);
1331
1332         if (searching_info) {
1333                 g_free(searching_info->addr);
1334                 g_free(searching_info);
1335                 searching_info = NULL;
1336         }
1337 }
1338
1339 int _bt_search_device(int request_id,
1340                         bluetooth_device_address_t *device_address)
1341 {
1342         char *device_path = NULL;
1343         GDBusProxy *device_proxy = NULL;
1344         GDBusConnection *conn;
1345
1346         GDBusProxy *adapter_proxy;
1347         int result = BLUETOOTH_ERROR_INTERNAL;
1348
1349         BT_CHECK_PARAMETER(device_address, return);
1350
1351         if (bonding_info) {
1352                 BT_ERR("Bonding in progress");
1353                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1354         }
1355
1356         if (searching_info) {
1357                 BT_ERR("Service searching in progress");
1358                 return BLUETOOTH_ERROR_DEVICE_BUSY;
1359         }
1360
1361         adapter_proxy = _bt_get_adapter_proxy();
1362         retv_if(adapter_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
1363
1364         /* allocate user data so that it can be retrieved in callback */
1365         searching_info = g_malloc0(sizeof(bt_funcion_data_t));
1366         searching_info->addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1367         searching_info->req_id = request_id;
1368
1369         _bt_convert_addr_type_to_string(searching_info->addr,
1370                                         device_address->addr);
1371
1372         conn = _bt_gdbus_get_system_gconn();
1373         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
1374
1375
1376         device_path = _bt_get_device_object_path(searching_info->addr);
1377
1378         if (device_path == NULL) {
1379                 BT_ERR("No paired device");
1380                 result = BLUETOOTH_ERROR_NOT_PAIRED;
1381                 goto fail;
1382         }
1383
1384         device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
1385                                                                 NULL, BT_BLUEZ_NAME,
1386                                                                 device_path, BT_DEVICE_INTERFACE,  NULL, NULL);
1387         g_free(device_path);
1388         if (device_proxy == NULL) {
1389                 result = BLUETOOTH_ERROR_INTERNAL;
1390                 goto fail;
1391         }
1392
1393         g_dbus_proxy_call(device_proxy, "DiscoverServices",
1394                         g_variant_new("(s)", ""),
1395                         G_DBUS_CALL_FLAGS_NONE,
1396                         BT_MAX_DBUS_TIMEOUT,
1397                         NULL,
1398                         (GAsyncReadyCallback)__bt_discover_cb,
1399                         searching_info);
1400
1401         searching_info->device_proxy = device_proxy;
1402
1403         return BLUETOOTH_ERROR_NONE;
1404 fail:
1405
1406         g_free(searching_info->addr);
1407         g_free(searching_info);
1408         searching_info = NULL;
1409         return result;
1410 }
1411
1412 int _bt_cancel_search_device(void)
1413 {
1414         GVariant *ret = NULL;
1415         GError *err = NULL;
1416
1417         retv_if(searching_info == NULL, BLUETOOTH_ERROR_NOT_IN_OPERATION);
1418
1419         if (searching_info->device_proxy) {
1420                 ret = g_dbus_proxy_call_sync(searching_info->device_proxy, "CancelDiscovery",
1421                                 NULL,
1422                                 G_DBUS_CALL_FLAGS_NONE,
1423                                 -1,
1424                                 NULL,
1425                                 &err);
1426                 if (ret)
1427                         g_variant_unref(ret);
1428         }
1429         __bt_cancel_search_service_done();
1430
1431         return BLUETOOTH_ERROR_NONE;
1432 }
1433
1434 int _bt_set_alias(bluetooth_device_address_t *device_address,
1435                                       const char *alias)
1436 {
1437         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
1438         gchar *device_path = NULL;
1439         GDBusProxy *adapter_proxy;
1440         GDBusProxy *device_proxy;
1441         GVariant *ret = NULL;
1442         GError *error = NULL;
1443         GDBusConnection *conn;
1444
1445         BT_CHECK_PARAMETER(device_address, return);
1446         BT_CHECK_PARAMETER(alias, return);
1447
1448         adapter_proxy = _bt_get_adapter_proxy();
1449         retv_if(adapter_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
1450
1451         conn = _bt_gdbus_get_system_gconn();
1452         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
1453
1454         _bt_convert_addr_type_to_string(address, device_address->addr);
1455
1456         device_path = _bt_get_device_object_path(address);
1457
1458         if (device_path == NULL) {
1459                 BT_ERR("No paired device");
1460                 return BLUETOOTH_ERROR_NOT_PAIRED;
1461         }
1462
1463         device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
1464                                                                 NULL, BT_BLUEZ_NAME,
1465                                                                 device_path, BT_PROPERTIES_INTERFACE,  NULL, NULL);
1466
1467         g_free(device_path);
1468         retv_if(device_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
1469
1470         ret = g_dbus_proxy_call_sync(device_proxy, "Set",
1471                                 g_variant_new("(ssv)", BT_DEVICE_INTERFACE,  "Alias", g_variant_new("s", alias)),
1472                                 G_DBUS_CALL_FLAGS_NONE,
1473                                 -1,
1474                                 NULL,
1475                                 &error);
1476         if (ret)
1477                 g_variant_unref(ret);
1478
1479         g_object_unref(device_proxy);
1480
1481         if (error) {
1482                  BT_ERR("SetProperty error: [%s]", error->message);
1483                  g_error_free(error);
1484                  return BLUETOOTH_ERROR_INTERNAL;
1485         }
1486
1487         return BLUETOOTH_ERROR_NONE;
1488 }
1489
1490 int _bt_set_authorization(bluetooth_device_address_t *device_address,
1491                                       gboolean authorize)
1492 {
1493         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
1494         gchar *device_path = NULL;
1495         GDBusProxy *device_proxy;
1496         gboolean previous_value;
1497         GError *error = NULL;
1498         GDBusConnection *conn;
1499         GVariant *result = NULL;
1500         GVariant *temp = NULL;
1501         int ret = BLUETOOTH_ERROR_NONE;
1502
1503         BT_CHECK_PARAMETER(device_address, return);
1504
1505         conn = _bt_gdbus_get_system_gconn();
1506         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
1507
1508         _bt_convert_addr_type_to_string(address, device_address->addr);
1509
1510         device_path = _bt_get_device_object_path(address);
1511
1512         if (device_path == NULL) {
1513                 BT_ERR("No paired device");
1514                 return BLUETOOTH_ERROR_NOT_PAIRED;
1515         }
1516
1517         device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
1518                                                                 NULL, BT_BLUEZ_NAME,
1519                                                                 device_path, BT_PROPERTIES_INTERFACE,  NULL, NULL);
1520
1521         g_free(device_path);
1522         retv_if(device_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
1523
1524         result = g_dbus_proxy_call_sync(device_proxy, "Get",
1525                                 g_variant_new("(ss)", BT_DEVICE_INTERFACE, "Trusted"),
1526                                 G_DBUS_CALL_FLAGS_NONE,
1527                                 -1,
1528                                 NULL,
1529                                 &error);
1530         if (error != NULL) {
1531                 BT_ERR("Getting property failed: [%s]\n", error->message);
1532                 g_error_free(error);
1533                 g_object_unref(device_proxy);
1534                 return BLUETOOTH_ERROR_INTERNAL;
1535         }
1536
1537         g_variant_get(result, "(v)", &temp);
1538         previous_value = g_variant_get_boolean(temp);
1539         g_variant_unref(temp);
1540         g_variant_unref(result);
1541         /* If the input is same with previous value, return error. */
1542         if (previous_value == authorize) {
1543                 BT_ERR("Same value: %d", previous_value);
1544                 g_object_unref(device_proxy);
1545                 ret = BLUETOOTH_ERROR_INVALID_PARAM;
1546                 goto done;
1547         }
1548
1549         result = g_dbus_proxy_call_sync(device_proxy, "Set",
1550                                  g_variant_new("(ssv)", BT_DEVICE_INTERFACE, "Trusted", g_variant_new("b", authorize)),
1551                                  G_DBUS_CALL_FLAGS_NONE,
1552                                  -1,
1553                                  NULL,
1554                                  &error);
1555
1556         g_object_unref(device_proxy);
1557         if (error) {
1558                  BT_ERR("SetProperty error: [%s]", error->message);
1559                  g_error_free(error);
1560                  ret = BLUETOOTH_ERROR_INTERNAL;
1561         }
1562 done:
1563         if (result)
1564                 g_variant_unref(result);
1565
1566         return ret;
1567 }
1568
1569 int _bt_is_gatt_connected(bluetooth_device_address_t *device_address,
1570                         gboolean *is_connected)
1571 {
1572         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
1573         char *object_path = NULL;
1574
1575         GDBusProxy *device_proxy;
1576         GError *error = NULL;
1577         GVariant *value;
1578         GVariant *tmp_value;
1579         GDBusConnection *conn;
1580         GVariant *result = NULL;
1581         int ret = BLUETOOTH_ERROR_NONE;
1582
1583         BT_CHECK_PARAMETER(device_address, return);
1584
1585         conn = _bt_gdbus_get_system_gconn();
1586         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
1587
1588         _bt_convert_addr_type_to_string(address, device_address->addr);
1589
1590         object_path = _bt_get_device_object_path(address);
1591         retv_if(object_path == NULL, BLUETOOTH_ERROR_NOT_PAIRED);
1592
1593         device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
1594                         NULL, BT_BLUEZ_NAME, object_path,
1595                         BT_PROPERTIES_INTERFACE,  NULL, NULL);
1596         g_free(object_path);
1597         retv_if(device_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
1598
1599         result = g_dbus_proxy_call_sync(device_proxy, "GetAll",
1600                         g_variant_new("(s)", BT_DEVICE_INTERFACE),
1601                         G_DBUS_CALL_FLAGS_NONE,
1602                         -1,
1603                         NULL,
1604                         &error);
1605         if (result == NULL) {
1606                 if (error != NULL) {
1607                         BT_ERR("Error occured in Proxy call [%s]\n", error->message);
1608                         g_error_free(error);
1609                 }
1610                 g_object_unref(device_proxy);
1611                 return BLUETOOTH_ERROR_INTERNAL;
1612         }
1613
1614         g_variant_get(result , "(@a{sv})", &value);
1615         g_variant_unref(result);
1616
1617         tmp_value = g_variant_lookup_value(value, "GattConnected", G_VARIANT_TYPE_BOOLEAN);
1618         if (tmp_value == NULL) {
1619                 g_object_unref(device_proxy);
1620                 g_variant_unref(value);
1621                 return BLUETOOTH_ERROR_INTERNAL;
1622         }
1623
1624         *is_connected = g_variant_get_boolean(tmp_value);
1625
1626         BT_DBG("gatt is connected : %d", *is_connected);
1627
1628         g_variant_unref(tmp_value);
1629         g_variant_unref(value);
1630         g_object_unref(device_proxy);
1631
1632         return ret;
1633 }
1634
1635 int _bt_is_device_connected(bluetooth_device_address_t *device_address,
1636                         int connection_type, gboolean *is_connected)
1637 {
1638         char *object_path = NULL;
1639         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
1640         char secure_address[BT_ADDRESS_STRING_SIZE] = { 0 };
1641         GDBusProxy *device_proxy = NULL;
1642         GDBusProxy *adapter_proxy = NULL;
1643         GDBusConnection *conn;
1644         GError *error = NULL;
1645         GVariant *tmp_value = NULL;
1646         GVariant *value = NULL;
1647         GVariant *result = NULL;
1648         char *uuid = NULL;
1649
1650         retv_if(device_address == NULL, BLUETOOTH_ERROR_INVALID_PARAM);
1651         retv_if(is_connected == NULL, BLUETOOTH_ERROR_INVALID_PARAM);
1652
1653         _bt_convert_addr_type_to_string(address, device_address->addr);
1654         _bt_convert_addr_string_to_secure_string(secure_address, address);
1655
1656         *is_connected = FALSE;
1657         BT_DBG("%s connection_type: 0x%02x", secure_address, connection_type);
1658
1659         if (connection_type == BLUETOOTH_RFCOMM_SERVICE)
1660                 return _bt_rfcomm_is_device_connected(device_address,
1661                                                 is_connected);
1662         else if (connection_type == BLUETOOTH_GATT_SERVICE)
1663                 return _bt_is_gatt_connected(device_address, is_connected);
1664         else if (connection_type == BLUETOOTH_PBAP_SERVICE)
1665                 return _bt_pbap_is_connected(device_address, is_connected);
1666
1667         adapter_proxy = _bt_get_adapter_proxy();
1668         retv_if(adapter_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
1669
1670         conn = _bt_gdbus_get_system_gconn();
1671         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
1672
1673         _bt_convert_addr_type_to_string(address, device_address->addr);
1674
1675         if (connection_type == BLUETOOTH_NAP_SERVER_SERVICE) {
1676                 object_path = _bt_get_adapter_path();
1677                 device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
1678                                                                         NULL, BT_BLUEZ_NAME,
1679                                                                         object_path, BT_NETWORK_SERVER_INTERFACE,  NULL, NULL);
1680                 g_free(object_path);
1681                 if (device_proxy == NULL) {
1682                         BT_DBG("Device don't have this service");
1683                         return BLUETOOTH_ERROR_INTERNAL;
1684                 }
1685
1686                 result = g_dbus_proxy_call_sync(device_proxy, "GetProperties",
1687                                         g_variant_new("(s)", address),
1688                                         G_DBUS_CALL_FLAGS_NONE,
1689                                         -1,
1690                                         NULL,
1691                                         &error);
1692
1693                 if (result == NULL) {
1694                         BT_ERR("[GetProperties] Error occured in Proxy call");
1695                         if (error) {
1696                                 BT_ERR("%s", error->message);
1697                                 g_error_free(error);
1698                         }
1699                         *is_connected = FALSE;
1700                         g_object_unref(device_proxy);
1701                         return BLUETOOTH_ERROR_NONE;
1702                 }
1703                 g_variant_get(result , "(@a{sv})", &value);
1704                 g_variant_unref(result);
1705
1706                 if (value) {
1707                         tmp_value = g_variant_lookup_value(value,
1708                                                         "Connected",
1709                                                         G_VARIANT_TYPE_BOOLEAN);
1710                         if (tmp_value) {
1711                                 *is_connected = g_variant_get_boolean(tmp_value);
1712                                 g_variant_unref(tmp_value);
1713                         }
1714                         g_variant_unref(value);
1715                 }
1716         } else if (connection_type == BLUETOOTH_NAP_SERVICE) {
1717                 return _bt_is_network_connected(_bt_get_net_conn(),
1718                                                 device_address->addr, is_connected);
1719         } else {
1720                 uuid = _bt_get_profile_uuid128(connection_type);
1721                 if (uuid == NULL) {
1722                         BT_ERR("connection_type: %d, uuid is NULL", connection_type);
1723                         return BLUETOOTH_ERROR_INTERNAL;
1724                 }
1725                 BT_DBG("uuid %s [%s]", uuid, _bt_convert_uuid_to_string(uuid));
1726
1727                 object_path = _bt_get_device_object_path(address);
1728                 if (!object_path) {
1729                         BT_ERR("object_path is NULL");
1730                         g_free(uuid);
1731                         return BLUETOOTH_ERROR_NOT_PAIRED;
1732                 }
1733
1734                 device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
1735                                                                         NULL, BT_BLUEZ_NAME,
1736                                                                         object_path, BT_DEVICE_INTERFACE,  NULL, NULL);
1737                 g_free(object_path);
1738                 if (device_proxy == NULL) {
1739                         BT_DBG("Device don't have this service");
1740                         g_free(uuid);
1741                         return BLUETOOTH_ERROR_INTERNAL;
1742                 }
1743
1744                 result = g_dbus_proxy_call_sync(device_proxy, "IsConnectedProfile",
1745                                         g_variant_new("(s)", uuid),
1746                                         G_DBUS_CALL_FLAGS_NONE,
1747                                         -1,
1748                                         NULL,
1749                                         &error);
1750
1751                 if (result == NULL) {
1752                         BT_ERR("[IsConnectedProfile] Error occured in Proxy call");
1753                         if (error) {
1754                                 BT_ERR("%s", error->message);
1755                                 if (g_strrstr(error->message, "Not Connected"))
1756                                         BT_DBG("Not connected");
1757                                 g_error_free(error);
1758                         }
1759                         *is_connected = FALSE;
1760                         g_object_unref(device_proxy);
1761                         g_free(uuid);
1762                         return BLUETOOTH_ERROR_NONE;
1763                 }
1764                 g_variant_get(result, "(b)", is_connected);
1765                 g_free(uuid);
1766                 g_variant_unref(result);
1767         }
1768
1769         g_object_unref(device_proxy);
1770         return BLUETOOTH_ERROR_NONE;
1771 }
1772
1773 int _bt_get_connected_link(bluetooth_device_address_t *device_address,
1774                         bluetooth_connected_link_t *connected)
1775 {
1776         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
1777         char *object_path = NULL;
1778
1779         GDBusProxy *device_proxy;
1780         GError *error = NULL;
1781         GDBusConnection *conn;
1782         GVariant *tmp_value = NULL;
1783         GVariant *value = NULL;
1784         GVariant *result = NULL;
1785
1786         BT_CHECK_PARAMETER(device_address, return);
1787
1788         conn = _bt_gdbus_get_system_gconn();
1789         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
1790
1791         _bt_convert_addr_type_to_string(address, device_address->addr);
1792
1793         object_path = _bt_get_device_object_path(address);
1794         retv_if(object_path == NULL, BLUETOOTH_ERROR_NOT_PAIRED);
1795
1796         device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
1797                                                                 NULL, BT_BLUEZ_NAME,
1798                                                                 object_path, BT_PROPERTIES_INTERFACE,  NULL, NULL);
1799         g_free(object_path);
1800         if (device_proxy == NULL) {
1801                 *connected = BLUETOOTH_CONNECTED_LINK_NONE;
1802                 return BLUETOOTH_ERROR_NONE;
1803         }
1804
1805         result = g_dbus_proxy_call_sync(device_proxy, "GetAll",
1806                                         g_variant_new("(s)", BT_DEVICE_INTERFACE),
1807                                         G_DBUS_CALL_FLAGS_NONE,
1808                                         -1,
1809                                         NULL,
1810                                         &error);
1811
1812         if (error != NULL) {
1813                 BT_ERR("Error occured in Proxy call [%s]\n", error->message);
1814                 g_error_free(error);
1815                 g_object_unref(device_proxy);
1816                 return BLUETOOTH_ERROR_INTERNAL;
1817         }
1818
1819         g_variant_get(result , "(@a{sv})", &value);
1820         g_variant_unref(result);
1821
1822         tmp_value = g_variant_lookup_value(value, "Connected", G_VARIANT_TYPE_BYTE);
1823         if (tmp_value != NULL) {
1824                 *connected = g_variant_get_byte(tmp_value);
1825                 g_variant_unref(tmp_value);
1826                 g_object_unref(device_proxy);
1827                 return BLUETOOTH_ERROR_NONE;
1828         } else  {
1829                 BT_ERR("g_variant value is NULL");
1830                 return BLUETOOTH_ERROR_INTERNAL;
1831         }
1832 }
1833
1834 static void __le_connection_req_cb(GDBusProxy *proxy, GAsyncResult *res,
1835                 gpointer user_data)
1836 {
1837         GError *err = NULL;
1838         GVariant *out_param1;
1839         GVariant *reply;
1840         int result = BLUETOOTH_ERROR_NONE;
1841         bt_function_data_t *func_data = user_data;
1842         request_info_t *req_info = NULL;
1843         bluetooth_device_address_t device_addr = { {0} };
1844
1845         reply = g_dbus_proxy_call_finish(proxy, res, &err);
1846         g_object_unref(proxy);
1847
1848         if (reply == NULL) {
1849                 BT_ERR("ConnectLE / DisconnectLE DBus call error");
1850                 if (err) {
1851                         BT_ERR("Error: %s", err->message);
1852                         g_clear_error(&err);
1853                 }
1854                 result = BLUETOOTH_ERROR_INTERNAL;
1855         } else {
1856                 g_variant_unref(reply);
1857         }
1858
1859         if (func_data == NULL) {
1860                 BT_ERR("func_data is NULL");
1861                 goto done;
1862         }
1863
1864         req_info = _bt_get_request_info(func_data->req_id);
1865         if (req_info == NULL) {
1866                 BT_ERR("req_info is NULL");
1867                 goto done;
1868         }
1869
1870         if (req_info->context == NULL) {
1871                 BT_ERR("req_info->context is NULL");
1872                 goto done;
1873         }
1874
1875         _bt_convert_addr_string_to_type(device_addr.addr,
1876                         (const char *)func_data->address);
1877
1878         out_param1 = g_variant_new_from_data((const GVariantType *)"ay",
1879                         &device_addr, sizeof(bluetooth_device_address_t), TRUE,
1880                         NULL, NULL);
1881
1882         g_dbus_method_invocation_return_value(req_info->context,
1883                         g_variant_new("(iv)", result, out_param1));
1884
1885 done:
1886         if (req_info)
1887                 _bt_delete_request_list(req_info->req_id);
1888
1889         if (func_data) {
1890                 g_free(func_data->address);
1891                 g_free(func_data);
1892         }
1893 }
1894
1895 static int __bt_connect_le_device_internal(int req_id, const bluetooth_device_address_t *bd_addr,
1896         gboolean auto_connect)
1897 {
1898         char device_address[BT_ADDRESS_STRING_SIZE] = { 0 };
1899         gchar *device_path = NULL;
1900         GDBusProxy *device_proxy = NULL;
1901         GDBusConnection *conn;
1902         int ret = BLUETOOTH_ERROR_NONE;
1903         bt_function_data_t *func_data;
1904
1905         BT_CHECK_PARAMETER(bd_addr, return);
1906
1907         conn = _bt_gdbus_get_system_gconn();
1908         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
1909
1910         _bt_convert_addr_type_to_string(device_address,
1911                         (unsigned char *)bd_addr->addr);
1912         device_path = _bt_get_device_object_path(device_address);
1913         if (device_path == NULL) {
1914                 BT_ERR_C("device_path NULL : [%s]", device_address);
1915                 ret = BLUETOOTH_ERROR_INTERNAL;
1916                 return ret;
1917         }
1918
1919         device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
1920                         NULL, BT_BLUEZ_NAME,
1921                         device_path, BT_DEVICE_INTERFACE,  NULL, NULL);
1922         g_free(device_path);
1923         retv_if(device_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
1924
1925         func_data = g_malloc0(sizeof(bt_function_data_t));
1926         func_data->address = g_strdup(device_address);
1927         if (func_data->address == NULL) {
1928                 BT_ERR("Unable to allocate memory for address");
1929                 ret = BLUETOOTH_ERROR_MEMORY_ALLOCATION;
1930                 goto fail;
1931         }
1932
1933         func_data->req_id = req_id;
1934
1935         g_dbus_proxy_call(device_proxy, "ConnectLE",
1936                         g_variant_new("(b)", auto_connect),
1937                         G_DBUS_CALL_FLAGS_NONE,
1938                         BT_MAX_DBUS_TIMEOUT,
1939                         NULL,
1940                         (GAsyncReadyCallback)__le_connection_req_cb, func_data);
1941
1942         return ret;
1943
1944 fail:
1945         if (device_proxy)
1946                 g_object_unref(device_proxy);
1947
1948         g_free(func_data->address);
1949         g_free(func_data);
1950
1951         return ret;
1952 }
1953
1954 static gboolean __bt_connect_le_timer_cb(gpointer user_data)
1955 {
1956         BT_INFO("Try to initiate pending LE connection");
1957
1958         pending_le_conn_timer_id = 0;
1959
1960         __bt_connect_le_device_internal(pending_le_conn_info->req_id,
1961                 &pending_le_conn_info->bd_addr,
1962                 pending_le_conn_info->auto_connect);
1963
1964         g_free(pending_le_conn_info);
1965         pending_le_conn_info = NULL;
1966
1967         return FALSE;
1968 }
1969
1970 void _bt_pending_connect_le_device(void)
1971 {
1972         if (pending_le_conn_timer_id > 0) {
1973                 g_source_remove(pending_le_conn_timer_id);
1974                 __bt_connect_le_timer_cb(NULL);
1975         }
1976 }
1977
1978 int _bt_connect_le_device(int req_id, const bluetooth_device_address_t *bd_addr,
1979                 gboolean auto_connect)
1980 {
1981         int ret = BLUETOOTH_ERROR_NONE;
1982
1983         BT_CHECK_PARAMETER(bd_addr, return);
1984
1985         ret = _bt_hold_current_advertising();
1986         if (ret == BLUETOOTH_ERROR_NONE) {
1987                 BT_INFO("Current advertising is held");
1988                 pending_le_conn_info = g_malloc0(sizeof(bt_pending_le_conn_info_s));
1989                 pending_le_conn_info->req_id = req_id;
1990                 memcpy(pending_le_conn_info->bd_addr.addr, bd_addr->addr,
1991                                 BLUETOOTH_ADDRESS_LENGTH);
1992                 pending_le_conn_info->auto_connect = auto_connect;
1993
1994                 pending_le_conn_timer_id =
1995                         g_timeout_add(1000, __bt_connect_le_timer_cb, NULL);
1996
1997                 return BLUETOOTH_ERROR_NONE;
1998         }
1999
2000         BT_ERR("Unable to hold advertising");
2001
2002         return __bt_connect_le_device_internal(req_id, bd_addr, auto_connect);
2003 }
2004
2005 int _bt_disconnect_le_device(int req_id,
2006                 const bluetooth_device_address_t *bd_addr)
2007 {
2008         char device_address[BT_ADDRESS_STRING_SIZE] = { 0 };
2009         gchar *device_path;
2010         GDBusProxy *device_proxy;
2011         GDBusConnection *conn;
2012         int ret = BLUETOOTH_ERROR_NONE;
2013         bt_function_data_t *func_data;
2014
2015         BT_CHECK_PARAMETER(bd_addr, return);
2016
2017         conn = _bt_gdbus_get_system_gconn();
2018         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
2019
2020         _bt_convert_addr_type_to_string(device_address,
2021                         (unsigned char *)bd_addr->addr);
2022         device_path = _bt_get_device_object_path(device_address);
2023         if (device_path == NULL) {
2024                 BT_DBG("device_path NULL");
2025                 ret = BLUETOOTH_ERROR_INTERNAL;
2026                 return ret;
2027         }
2028
2029         retv_if(device_path == NULL, BLUETOOTH_ERROR_INTERNAL);
2030
2031         device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
2032                         NULL, BT_BLUEZ_NAME,
2033                         device_path, BT_DEVICE_INTERFACE,  NULL, NULL);
2034         g_free(device_path);
2035         retv_if(device_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2036
2037         func_data = g_malloc0(sizeof(bt_function_data_t));
2038         func_data->address = g_strdup(device_address);
2039         if (func_data->address == NULL) {
2040                 BT_ERR("Unable to allocate memory for address");
2041                 ret = BLUETOOTH_ERROR_MEMORY_ALLOCATION;
2042                 goto fail;
2043         }
2044
2045         func_data->req_id = req_id;
2046
2047         g_dbus_proxy_call(device_proxy, "DisconnectLE",
2048                         NULL,
2049                         G_DBUS_CALL_FLAGS_NONE,
2050                         BT_MAX_DBUS_TIMEOUT,
2051                         NULL,
2052                         (GAsyncReadyCallback)__le_connection_req_cb, func_data);
2053         return ret;
2054
2055 fail:
2056         if (device_proxy)
2057                 g_object_unref(device_proxy);
2058
2059         g_free(func_data->address);
2060         g_free(func_data);
2061
2062         return ret;
2063 }
2064
2065 int _bt_connect_le_ipsp_device(const bluetooth_device_address_t *bd_addr)
2066 {
2067         char device_address[BT_ADDRESS_STRING_SIZE] = { 0 };
2068         gchar *device_path = NULL;
2069         GError *error = NULL;
2070         GDBusProxy *device_proxy = NULL;
2071         GDBusProxy *adapter_proxy;
2072         GDBusConnection *conn;
2073         int ret = BLUETOOTH_ERROR_NONE;
2074
2075         BT_CHECK_PARAMETER(bd_addr, return);
2076
2077         _bt_convert_addr_type_to_string(device_address,
2078                         (unsigned char *)bd_addr->addr);
2079
2080         conn = _bt_gdbus_get_system_gconn();
2081         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
2082
2083         adapter_proxy = _bt_get_adapter_proxy();
2084         retv_if(adapter_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2085
2086         device_path = _bt_get_device_object_path(device_address);
2087         if (device_path == NULL) {
2088                 BT_DBG("device_path NULL");
2089                 ret = BLUETOOTH_ERROR_INTERNAL;
2090                 return ret;
2091         }
2092
2093         retv_if(device_path == NULL, BLUETOOTH_ERROR_INTERNAL);
2094
2095         device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
2096                                                         NULL, BT_BLUEZ_NAME,
2097                                                         device_path, BT_DEVICE_INTERFACE,  NULL, NULL);
2098         g_free(device_path);
2099         retv_if(device_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2100
2101         g_dbus_proxy_call_sync(device_proxy, "ConnectIpsp",
2102                                 NULL,
2103                                 G_DBUS_CALL_FLAGS_NONE,
2104                                 -1,
2105                                 NULL,
2106                                 &error);
2107         if (error) {
2108                 BT_ERR("ConnectIpsp Call Error %s[%s]", error->message, device_address);
2109                 g_error_free(error);
2110                 g_object_unref(device_proxy);
2111                 return BLUETOOTH_ERROR_INTERNAL;
2112         }
2113
2114         g_object_unref(device_proxy);
2115
2116         return ret;
2117 }
2118
2119 int _bt_disconnect_le_ipsp_device(const bluetooth_device_address_t *bd_addr)
2120 {
2121         char device_address[BT_ADDRESS_STRING_SIZE] = { 0 };
2122         gchar *device_path = NULL;
2123         GError *error = NULL;
2124         GDBusProxy *device_proxy = NULL;
2125         GDBusProxy *adapter_proxy;
2126         GDBusConnection *conn;
2127         int ret = BLUETOOTH_ERROR_NONE;
2128
2129         BT_CHECK_PARAMETER(bd_addr, return);
2130
2131         _bt_convert_addr_type_to_string(device_address,
2132                         (unsigned char *)bd_addr->addr);
2133
2134         conn = _bt_gdbus_get_system_gconn();
2135         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
2136
2137         adapter_proxy = _bt_get_adapter_proxy();
2138         retv_if(adapter_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2139
2140         device_path = _bt_get_device_object_path(device_address);
2141         if (device_path == NULL) {
2142                 BT_DBG("device_path NULL");
2143                 ret = BLUETOOTH_ERROR_INTERNAL;
2144                 return ret;
2145         }
2146
2147         retv_if(device_path == NULL, BLUETOOTH_ERROR_INTERNAL);
2148
2149         device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
2150                                                         NULL, BT_BLUEZ_NAME,
2151                                                         device_path, BT_DEVICE_INTERFACE,  NULL, NULL);
2152         g_free(device_path);
2153         retv_if(device_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2154
2155         g_dbus_proxy_call_sync(device_proxy, "DisconnectIpsp",
2156                                 NULL,
2157                                 G_DBUS_CALL_FLAGS_NONE,
2158                                 -1,
2159                                 NULL,
2160                                 &error);
2161         if (error) {
2162                 BT_ERR("DisconnectIpsp Call Error %s[%s]", error->message, device_address);
2163                 g_error_free(error);
2164                 g_object_unref(device_proxy);
2165                 return BLUETOOTH_ERROR_INTERNAL;
2166         }
2167
2168         g_object_unref(device_proxy);
2169
2170         return ret;
2171 }
2172
2173 int _bt_connect_profile(char *address, char *uuid,
2174                                                 void *cb, gpointer func_data)
2175 {
2176         char *object_path;
2177         GDBusProxy *proxy;
2178         GDBusConnection *conn;
2179         GDBusProxy *adapter_proxy;
2180         GVariant *result = NULL;
2181         GError *error = NULL;
2182
2183         conn = _bt_gdbus_get_system_gconn();
2184         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
2185
2186         object_path = _bt_get_device_object_path(address);
2187         if (object_path == NULL) {
2188                 BT_ERR("No searched device");
2189
2190                 adapter_proxy = _bt_get_adapter_proxy();
2191                 retv_if(adapter_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2192
2193                 result = g_dbus_proxy_call_sync(adapter_proxy, "CreateDevice",
2194                                          g_variant_new("(s)", address),
2195                                          G_DBUS_CALL_FLAGS_NONE,
2196                                          -1,
2197                                          NULL,
2198                                          &error);
2199
2200                 if (error != NULL) {
2201                         BT_ERR("CreateDevice Fail: %s", error->message);
2202                         g_error_free(error);
2203                 }
2204                 if (result)
2205                         g_variant_unref(result);
2206
2207                 object_path = _bt_get_device_object_path(address);
2208         }
2209         retv_if(object_path == NULL, BLUETOOTH_ERROR_INTERNAL);
2210
2211         proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
2212                                                                 NULL, BT_BLUEZ_NAME,
2213                                                                 object_path, BT_DEVICE_INTERFACE,  NULL, NULL);
2214         g_free(object_path);
2215         retv_if(proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2216
2217         g_dbus_proxy_call(proxy, "ConnectProfile",
2218                                 g_variant_new("(s)", uuid),
2219                                 G_DBUS_CALL_FLAGS_NONE,
2220                                 BT_MAX_DBUS_TIMEOUT,
2221                                 NULL,
2222                                 (GAsyncReadyCallback)cb,
2223                                 func_data);
2224
2225         return BLUETOOTH_ERROR_NONE;
2226 }
2227
2228 int _bt_disconnect_all(char *address)
2229 {
2230         int ret = BLUETOOTH_ERROR_NONE;
2231         char *object_path;
2232         GDBusProxy *proxy;
2233         GDBusConnection *conn;
2234         GVariant *result = NULL;
2235         GError *err = NULL;
2236
2237         BT_DBG("");
2238         conn = _bt_gdbus_get_system_gconn();
2239         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
2240
2241         object_path = _bt_get_device_object_path(address);
2242         retv_if(object_path == NULL, BLUETOOTH_ERROR_INTERNAL);
2243
2244         proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
2245                                         NULL, BT_BLUEZ_NAME,
2246                                         object_path, BT_DEVICE_INTERFACE,  NULL, NULL);
2247         g_free(object_path);
2248         retv_if(proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2249
2250         result = g_dbus_proxy_call_sync(proxy, "Disconnect",
2251                 NULL,
2252                 G_DBUS_CALL_FLAGS_NONE,
2253                 -1, NULL,
2254                 &err);
2255
2256         if (err != NULL) {
2257                 BT_ERR("Dbus Call Error:[%s]", err->message);
2258                 g_error_free(err);
2259                 ret = BLUETOOTH_ERROR_INTERNAL;
2260         }
2261
2262         g_object_unref(proxy);
2263         if (result)
2264                 g_variant_unref(result);
2265
2266         return ret;
2267 }
2268
2269 int _bt_disconnect_profile(char *address, char *uuid,
2270                                                 void *cb, gpointer func_data)
2271 {
2272         char *object_path;
2273         GDBusProxy *proxy;
2274         GDBusConnection *conn;
2275
2276         conn = _bt_gdbus_get_system_gconn();
2277         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
2278
2279         object_path = _bt_get_device_object_path(address);
2280         retv_if(object_path == NULL, BLUETOOTH_ERROR_INTERNAL);
2281
2282         proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
2283                                                                 NULL, BT_BLUEZ_NAME,
2284                                                                 object_path, BT_DEVICE_INTERFACE,  NULL, NULL);
2285         g_free(object_path);
2286         retv_if(proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2287
2288         g_dbus_proxy_call(proxy, "DisconnectProfile",
2289                                         g_variant_new("(s)", uuid),
2290                                         G_DBUS_CALL_FLAGS_NONE,
2291                                         BT_MAX_DBUS_TIMEOUT,
2292                                         NULL,
2293                                         (GAsyncReadyCallback)cb,
2294                                         func_data);
2295
2296         return BLUETOOTH_ERROR_NONE;
2297 }
2298
2299 int _bt_enable_rssi(bluetooth_device_address_t *bd_addr, int link_type,
2300                 int low_threshold, int in_range_threshold, int high_threshold)
2301 {
2302         int ret = BLUETOOTH_ERROR_NONE;
2303         GDBusProxy *proxy;
2304         GVariant *result = NULL;
2305         GError *error = NULL;
2306         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
2307
2308         BT_CHECK_PARAMETER(bd_addr, return);
2309         BT_DBG("BD Address [%2.2X %2.2X %2.2X %2.2X %2.2X %2.2X] Link Type[%d]",
2310                         bd_addr->addr[0], bd_addr->addr[1],
2311                         bd_addr->addr[2], bd_addr->addr[3],
2312                         bd_addr->addr[4], bd_addr->addr[5],
2313                         link_type);
2314         BT_DBG("Enable RSSI: [Threshold %d %d %d]", low_threshold,
2315                         in_range_threshold, high_threshold);
2316
2317         _bt_convert_addr_type_to_string(address, bd_addr->addr);
2318
2319         proxy = _bt_get_adapter_proxy();
2320         retv_if(proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2321
2322         result = g_dbus_proxy_call_sync(proxy, "EnableRssi",
2323                                 g_variant_new("(siiii)", address, link_type, low_threshold, in_range_threshold, high_threshold),
2324                                 G_DBUS_CALL_FLAGS_NONE,
2325                                 -1,
2326                                 NULL,
2327                                 &error);
2328         if (error != NULL) {
2329                         BT_ERR("Dbus Call Error:[%s]", error->message);
2330                         g_error_free(error);
2331                         ret = BLUETOOTH_ERROR_INTERNAL;
2332         }
2333
2334         if (result)
2335                 g_variant_unref(result);
2336
2337         return ret;
2338 }
2339
2340 int _bt_get_rssi_strength(bluetooth_device_address_t *bd_addr,
2341                                         int link_type)
2342 {
2343         int ret = BLUETOOTH_ERROR_NONE;
2344         GDBusProxy *proxy;
2345         GVariant *result = NULL;
2346         GError *error = NULL;
2347         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
2348
2349         BT_CHECK_PARAMETER(bd_addr, return);
2350         BT_DBG("BD Address [%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X] Link Type[%d]",
2351                         bd_addr->addr[0], bd_addr->addr[1],
2352                         bd_addr->addr[2], bd_addr->addr[3],
2353                         bd_addr->addr[4], bd_addr->addr[5],
2354                         link_type);
2355
2356         _bt_convert_addr_type_to_string(address, bd_addr->addr);
2357
2358         proxy = _bt_get_adapter_proxy();
2359         retv_if(proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2360
2361         result = g_dbus_proxy_call_sync(proxy, "GetRssiStrength",
2362                                 g_variant_new("(si)", address, link_type),
2363                                 G_DBUS_CALL_FLAGS_NONE,
2364                                 -1,
2365                                 NULL,
2366                                 &error);
2367
2368         if (error != NULL) {
2369                         BT_ERR("Dbus Call Error:[%s]", error->message);
2370                         g_error_free(error);
2371                         ret = BLUETOOTH_ERROR_INTERNAL;
2372         }
2373
2374         if (result)
2375                 g_variant_unref(result);
2376
2377         return ret;
2378 }
2379
2380 int _bt_le_conn_update(unsigned char *device_address,
2381                                 float interval_min, float interval_max,
2382                                 guint16 latency, guint16 time_out)
2383 {
2384         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
2385         gchar *device_path = NULL;
2386         GError *error = NULL;
2387         GDBusProxy *device_proxy = NULL;
2388         GDBusConnection *conn;
2389         GVariant *reply;
2390         guint32 min, max, to;
2391         guint32 min_supervision_to;
2392         int ret = BLUETOOTH_ERROR_NONE;
2393
2394         BT_CHECK_PARAMETER(device_address, return);
2395
2396         BT_INFO("Min interval: %f, Max interval: %f, Latency: %u, Supervision timeout: %u",
2397                         interval_min, interval_max, latency, time_out);
2398
2399         if (interval_min > interval_max ||
2400                         interval_min < BT_LE_CONN_INTERVAL_MIN ||
2401                         interval_max > BT_LE_CONN_INTERVAL_MAX) {
2402                 ret = BLUETOOTH_ERROR_INVALID_PARAM;
2403                 goto fail;
2404         }
2405
2406         if (time_out < BT_LE_CONN_SUPER_TO_MIN ||
2407                         time_out > BT_LE_CONN_SUPER_TO_MAX) {
2408                 ret = BLUETOOTH_ERROR_INVALID_PARAM;
2409                 goto fail;
2410         }
2411
2412         if (latency > BT_LE_CONN_SLAVE_LATENCY_MAX) {
2413                 ret = BLUETOOTH_ERROR_INVALID_PARAM;
2414                 goto fail;
2415         }
2416
2417         /*
2418          * The Supervision_Timeout in milliseconds shall be larger than
2419          * (1 + Conn_Latency) * Conn_Interval_Max * 2,
2420          * where Conn_Interval_Max is given in milliseconds.
2421          */
2422         min_supervision_to = (1 + latency) * interval_max * 2;
2423         if (time_out <= min_supervision_to) {
2424                 ret = BLUETOOTH_ERROR_INVALID_PARAM;
2425                 goto fail;
2426         }
2427
2428         _bt_convert_addr_type_to_string(address, device_address);
2429
2430         BT_DBG("Remote device address: %s", address);
2431
2432         device_path = _bt_get_device_object_path(address);
2433
2434         if (device_path == NULL) {
2435                 BT_ERR("device_path NULL");
2436                 ret = BLUETOOTH_ERROR_INTERNAL;
2437                 goto fail;
2438         }
2439
2440         conn = _bt_gdbus_get_system_gconn();
2441         if (conn == NULL) {
2442                 BT_ERR("conn NULL");
2443                 ret = BLUETOOTH_ERROR_INTERNAL;
2444                 goto fail;
2445         }
2446
2447         device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
2448                                                                 NULL, BT_BLUEZ_NAME,
2449                                                                 device_path, BT_DEVICE_INTERFACE,  NULL, NULL);
2450
2451         g_free(device_path);
2452         retv_if(device_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2453
2454         min = interval_min / BT_LE_CONN_INTERVAL_SPLIT;
2455         max = interval_max / BT_LE_CONN_INTERVAL_SPLIT;
2456         to = time_out / BT_LE_CONN_TO_SPLIT;
2457
2458         reply = g_dbus_proxy_call_sync(device_proxy, "LeConnUpdate",
2459                                 g_variant_new("(uuuu)", min, max, latency, to),
2460                                 G_DBUS_CALL_FLAGS_NONE,
2461                                 -1,
2462                                 NULL,
2463                                 &error);
2464
2465         g_object_unref(device_proxy);
2466         if (reply == NULL) {
2467                 if (error) {
2468                         BT_ERR("Error %s[%s]", error->message, address);
2469                         if (g_strrstr(error->message, "In Progress"))
2470                                 ret = BLUETOOTH_ERROR_IN_PROGRESS;
2471                         else
2472                                 ret = BLUETOOTH_ERROR_INTERNAL;
2473                         g_error_free(error);
2474                         return ret;
2475                 }
2476         }
2477         g_variant_unref(reply);
2478
2479 fail:
2480         return ret;
2481 }
2482
2483 int _bt_set_pin_code(bluetooth_device_address_t *device_address,
2484                                 bluetooth_device_pin_code_t *pin_code)
2485 {
2486         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
2487         GSList *l = NULL;
2488         bt_pin_code_info_t *pin_info = NULL;
2489
2490         BT_CHECK_PARAMETER(device_address, return);
2491         BT_CHECK_PARAMETER(pin_code, return);
2492         retv_if(g_slist_length(pin_info_list) >= BT_DEVICE_PIN_CODE_SLOT_MAX,
2493                         BLUETOOTH_ERROR_NO_RESOURCES);
2494
2495         _bt_convert_addr_type_to_string(address, device_address->addr);
2496
2497         for (l = pin_info_list; l != NULL; l = l->next) {
2498                 pin_info = l->data;
2499
2500                 if (g_strcmp0(pin_info->address, address) == 0) {
2501                         g_free(pin_info->pin_code);
2502                         pin_info->pin_code = g_strdup(pin_code->pin_code);
2503                         return BLUETOOTH_ERROR_NONE;
2504                 }
2505         }
2506
2507         pin_info = g_malloc0(sizeof(bt_pin_code_info_t));
2508         pin_info->address = g_strdup(address);
2509         pin_info->pin_code = g_strdup(pin_code->pin_code);
2510         pin_info_list = g_slist_append(pin_info_list, pin_info);
2511
2512         return BLUETOOTH_ERROR_NONE;
2513 }
2514
2515 gint __bt_compare_address(gpointer *a, gpointer *b)
2516 {
2517         bt_pin_code_info_t *pin_info = (bt_pin_code_info_t *)a;
2518         char *address = (char *)b;
2519         return g_strcmp0(pin_info->address, address);
2520 }
2521
2522 int _bt_unset_pin_code(bluetooth_device_address_t *device_address)
2523 {
2524         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
2525         GSList *l = NULL;
2526         bt_pin_code_info_t *pin_info = NULL;
2527
2528         BT_CHECK_PARAMETER(device_address, return);
2529
2530         _bt_convert_addr_type_to_string(address, device_address->addr);
2531
2532         l = g_slist_find_custom(pin_info_list, address,
2533                 (GCompareFunc)__bt_compare_address);
2534         if (l)
2535                 pin_info = l->data;
2536         if (pin_info) {
2537                 pin_info_list = g_slist_remove(pin_info_list, pin_info);
2538                 g_free(pin_info->address);
2539                 g_free(pin_info->pin_code);
2540                 g_free(pin_info);
2541         }
2542
2543         return BLUETOOTH_ERROR_NONE;
2544 }
2545
2546 int _bt_get_device_pin_code(const char *address, char *pin_code)
2547 {
2548         GSList *l = NULL;
2549
2550         BT_CHECK_PARAMETER(address, return);
2551         BT_CHECK_PARAMETER(pin_code, return);
2552
2553         for (l = pin_info_list; l != NULL; l = l->next) {
2554                 bt_pin_code_info_t *pin_info = l->data;
2555
2556                 if (g_strcmp0(pin_info->address, address) == 0) {
2557                         g_strlcpy(pin_code, pin_info->pin_code,
2558                                         BLUETOOTH_PIN_CODE_MAX_LENGTH + 1);
2559
2560                         return BLUETOOTH_ERROR_NONE;
2561                 }
2562         }
2563
2564         return BLUETOOTH_ERROR_NOT_FOUND;
2565 }
2566
2567 int _bt_get_le_connection_parameter(bluetooth_le_connection_mode_t mode,
2568                 bluetooth_le_connection_param_t *param)
2569 {
2570         if (param == NULL)
2571                 return BLUETOOTH_ERROR_INVALID_PARAM;
2572
2573         if (mode < BLUETOOTH_LE_CONNECTION_MODE_BALANCED ||
2574             mode > BLUETOOTH_LE_CONNECTION_MODE_LOW_POWER)
2575                 return BLUETOOTH_ERROR_INVALID_PARAM;
2576
2577         memset(param, 0x00, sizeof(bluetooth_le_connection_param_t));
2578
2579         switch (mode) {
2580         case BLUETOOTH_LE_CONNECTION_MODE_BALANCED:
2581                 param->interval_min = BT_LE_CONN_PARAM_BALANCED_MIN_INTERVAL;
2582                 param->interval_max = BT_LE_CONN_PARAM_BALANCED_MAX_INTERVAL;
2583                 param->latency = BT_LE_CONN_PARAM_BALANCED_SLAVE_LATENCY;
2584                 param->timeout = BT_LE_CONN_PARAM_DEFAULT_SUPERVISION_TIMEOUT;
2585                 break;
2586
2587         case BLUETOOTH_LE_CONNECTION_MODE_LOW_LATENCY:
2588                 param->interval_min = BT_LE_CONN_PARAM_LOW_LATENCY_MIN_INTERVAL;
2589                 param->interval_max = BT_LE_CONN_PARAM_LOW_LATENCY_MAX_INTERVAL;
2590                 param->latency = BT_LE_CONN_PARAM_LOW_LATENCY_SLAVE_LATENCY;
2591                 param->timeout = BT_LE_CONN_PARAM_DEFAULT_SUPERVISION_TIMEOUT;
2592                 break;
2593
2594         case BLUETOOTH_LE_CONNECTION_MODE_LOW_POWER:
2595                 param->interval_min = BT_LE_CONN_PARAM_LOW_POWER_MIN_INTERVAL;
2596                 param->interval_max = BT_LE_CONN_PARAM_LOW_POWER_MAX_INTERVAL;
2597                 param->latency = BT_LE_CONN_PARAM_LOW_POWER_SLAVE_LATENCY;
2598                 param->timeout = BT_LE_CONN_PARAM_DEFAULT_SUPERVISION_TIMEOUT;
2599                 break;
2600
2601         default:
2602                 BT_ERR("Unhandled mode : %d", mode);
2603                 break;
2604         }
2605
2606         return BLUETOOTH_ERROR_NONE;
2607 }
2608
2609 int _bt_get_trusted_profile_from_flag(bluetooth_trusted_profile_t profile,
2610                 guint trusted_profile_flag, guint *trusted)
2611 {
2612         int trust_profile;
2613         *trusted = FALSE;
2614
2615         switch (profile) {
2616         case TRUSTED_PROFILE_PBAP:
2617                 if (trusted_profile_flag & (PROFILE_SUPPORTED << 0))
2618                         trust_profile = trusted_profile_flag & (1 << 1);
2619                 else
2620                         return BLUETOOTH_ERROR_NOT_SUPPORT;
2621                 break;
2622         case TRUSTED_PROFILE_MAP:
2623                 if (trusted_profile_flag & (PROFILE_SUPPORTED << 2))
2624                         trust_profile = trusted_profile_flag & (1 << 3);
2625                 else
2626                         return BLUETOOTH_ERROR_NOT_SUPPORT;
2627                 break;
2628         case TRUSTED_PROFILE_SAP:
2629                 if (trusted_profile_flag & (PROFILE_SUPPORTED << 4))
2630                         trust_profile = trusted_profile_flag & (1 << 5);
2631                 else
2632                         return BLUETOOTH_ERROR_NOT_SUPPORT;
2633                 break;
2634         case TRUSTED_PROFILE_ALL: /* Return Flag for All profiles*/
2635                 *trusted = trusted_profile_flag;
2636                 return BLUETOOTH_ERROR_NONE;
2637         default:
2638                 return BLUETOOTH_ERROR_NOT_SUPPORT;
2639         }
2640
2641         if (trust_profile)
2642                 *trusted = TRUE;
2643
2644         return BLUETOOTH_ERROR_NONE;
2645 }
2646
2647 int _bt_get_restricted_profile_from_flag(bluetooth_restricted_profile_t profile,
2648                 guint restricted_profile_flag, guint *restricted)
2649 {
2650         int restrict_profile;
2651         *restricted = FALSE;
2652
2653         switch (profile) {
2654         case RESTRICTED_PROFILE_HFP_HS:
2655                         restrict_profile = restricted_profile_flag & (1 << 0);
2656                 break;
2657         case RESTRICTED_PROFILE_A2DP:
2658                         restrict_profile = restricted_profile_flag & (1 << 2);
2659                 break;
2660         default:
2661                 return BLUETOOTH_ERROR_NOT_SUPPORT;
2662         }
2663
2664         if (restrict_profile)
2665                 *restricted = TRUE;
2666
2667         return BLUETOOTH_ERROR_NONE;
2668 }
2669
2670 char *_bt_get_trusted_profile_uuid(bluetooth_trusted_profile_t profile)
2671 {
2672         switch (profile) {
2673         case TRUSTED_PROFILE_PBAP:
2674                 return g_strdup("00001130-0000-1000-8000-00805f9b34fb");
2675         case TRUSTED_PROFILE_MAP:
2676                 return g_strdup("00001134-0000-1000-8000-00805f9b34fb");
2677         case TRUSTED_PROFILE_SAP:
2678                 return g_strdup("0000112D-0000-1000-8000-00805f9b34fb");
2679         case TRUSTED_PROFILE_ALL:
2680                 return NULL;
2681         }
2682
2683         return NULL;
2684 }
2685
2686 char *_bt_get_restricted_profile_uuid(bluetooth_restricted_profile_t profile)
2687 {
2688         switch (profile) {
2689         case RESTRICTED_PROFILE_HFP_HS:
2690                 return g_strdup("0000111e-0000-1000-8000-00805f9b34fb");
2691         case RESTRICTED_PROFILE_A2DP:
2692                 return g_strdup("0000110b-0000-1000-8000-00805f9b34fb");
2693         }
2694
2695         return NULL;
2696 }
2697
2698 bluetooth_trusted_profile_t _bt_get_trusted_profile_enum(const char *uuid)
2699 {
2700         if (g_strcmp0("0000112f-0000-1000-8000-00805f9b34fb", uuid) == 0)
2701                 return TRUSTED_PROFILE_PBAP;
2702         else if (g_strcmp0("00001132-0000-1000-8000-00805f9b34fb", uuid) == 0)
2703                 return TRUSTED_PROFILE_MAP;
2704         else if (g_strcmp0("0000112D-0000-1000-8000-00805f9b34fb", uuid) == 0)
2705                 return TRUSTED_PROFILE_SAP;
2706
2707         return 0; /* 0 - Unknown Profile */
2708 }
2709
2710 int _bt_set_trust_profile(bluetooth_device_address_t *bd_addr,
2711                 bluetooth_trusted_profile_t profile, gboolean trust)
2712 {
2713         int ret = BLUETOOTH_ERROR_NONE;
2714         GDBusConnection *conn;
2715         GDBusProxy *proxy;
2716         GError *error = NULL;
2717         char *device_path = NULL;
2718         char *uuid = NULL;
2719         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
2720         GVariant *reply;
2721
2722         BT_CHECK_PARAMETER(bd_addr, return);
2723         BT_DBG("BD Address [%2.2X %2.2X %2.2X %2.2X %2.2X %2.2X] profile[%d] trust[%d]",
2724                         bd_addr->addr[0], bd_addr->addr[1],
2725                         bd_addr->addr[2], bd_addr->addr[3],
2726                         bd_addr->addr[4], bd_addr->addr[5],
2727                         profile, trust);
2728
2729         conn = _bt_gdbus_get_system_gconn();
2730         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
2731
2732         _bt_convert_addr_type_to_string(address, bd_addr->addr);
2733
2734         device_path = _bt_get_device_object_path(address);
2735         retv_if(device_path == NULL, BLUETOOTH_ERROR_INTERNAL);
2736
2737         proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
2738                         NULL, BT_BLUEZ_NAME, device_path,
2739                         BT_DEVICE_INTERFACE, NULL, NULL);
2740
2741         g_free(device_path);
2742         retv_if(proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2743
2744         uuid = _bt_get_trusted_profile_uuid(profile);
2745         if (uuid == NULL) {
2746                 g_object_unref(proxy);
2747                 return BLUETOOTH_ERROR_NOT_SUPPORT;
2748         }
2749
2750         reply = g_dbus_proxy_call_sync(proxy, "SetTrustedProfile",
2751                         g_variant_new("(sb)", uuid, trust),
2752                         G_DBUS_CALL_FLAGS_NONE, -1,
2753                         NULL, &error);
2754         g_object_unref(proxy);
2755
2756         if (reply == NULL) {
2757                 BT_ERR("Failed to Set Profile Trusted");
2758                 ret = BLUETOOTH_ERROR_INTERNAL;
2759                 if (error) {
2760                         BT_ERR("Error %s[%s]", error->message, address);
2761                         g_error_free(error);
2762                 }
2763                 goto finish;
2764         }
2765         g_variant_unref(reply);
2766
2767 finish:
2768         g_free(uuid);
2769         return ret;
2770 }
2771
2772 int _bt_get_trust_profile(bluetooth_device_address_t *bd_addr,
2773                 bluetooth_trusted_profile_t profile, guint *trust)
2774 {
2775         int ret = BLUETOOTH_ERROR_NONE;
2776         GDBusConnection *conn;
2777         GDBusProxy *proxy;
2778         GError *error = NULL;
2779         char *device_path = NULL;
2780         guint trusted_profile_flag;
2781         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
2782         GVariant *reply;
2783
2784         BT_CHECK_PARAMETER(bd_addr, return);
2785         BT_DBG("BD Address [%2.2X %2.2X %2.2X %2.2X %2.2X %2.2X] profile[%d] trust[%d]",
2786                         bd_addr->addr[0], bd_addr->addr[1],
2787                         bd_addr->addr[2], bd_addr->addr[3],
2788                         bd_addr->addr[4], bd_addr->addr[5],
2789                         profile, *trust);
2790
2791         conn = _bt_gdbus_get_system_gconn();
2792         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
2793
2794         _bt_convert_addr_type_to_string(address, bd_addr->addr);
2795
2796         device_path = _bt_get_device_object_path(address);
2797         retv_if(device_path == NULL, BLUETOOTH_ERROR_INTERNAL);
2798
2799         proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
2800                         NULL, BT_BLUEZ_NAME, device_path,
2801                         BT_PROPERTIES_INTERFACE, NULL, NULL);
2802
2803         g_free(device_path);
2804         retv_if(proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2805
2806         reply = g_dbus_proxy_call_sync(proxy, "Get",
2807                         g_variant_new("(ss)", BT_DEVICE_INTERFACE, "TrustedProfiles"),
2808                         G_DBUS_CALL_FLAGS_NONE, -1,
2809                         NULL, &error);
2810         g_object_unref(proxy);
2811
2812         if (reply == NULL) {
2813                 BT_ERR("Failed to Get Profile Trusted");
2814                 ret = BLUETOOTH_ERROR_INTERNAL;
2815                 if (error) {
2816                         BT_ERR("Error %s[%s]", error->message, address);
2817                         g_error_free(error);
2818                 }
2819                 *trust = 0;
2820         } else {
2821                 GVariant *temp;
2822                 g_variant_get(reply, "(v)", &temp);
2823                 trusted_profile_flag = g_variant_get_uint32(temp);
2824                 BT_DBG("TRUST_FLAG %d", trusted_profile_flag);
2825
2826                 ret = _bt_get_trusted_profile_from_flag(profile,
2827                                 trusted_profile_flag, trust);
2828                 g_variant_unref(temp);
2829                 g_variant_unref(reply);
2830         }
2831
2832         BT_DBG("TRUST %d", *trust);
2833         return ret;
2834 }
2835
2836 int _bt_set_restrict_profile(bluetooth_device_address_t *bd_addr,
2837                 bluetooth_restricted_profile_t profile, gboolean restricted)
2838 {
2839         int ret = BLUETOOTH_ERROR_NONE;
2840         GDBusConnection *conn;
2841         GDBusProxy *proxy;
2842         GError *error = NULL;
2843         char *device_path = NULL;
2844         char *uuid = NULL;
2845         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
2846         GVariant *reply;
2847
2848         BT_CHECK_PARAMETER(bd_addr, return);
2849         BT_DBG("BD Address [%2.2X %2.2X %2.2X %2.2X %2.2X %2.2X] profile[%d] restricted[%d]",
2850                         bd_addr->addr[0], bd_addr->addr[1],
2851                         bd_addr->addr[2], bd_addr->addr[3],
2852                         bd_addr->addr[4], bd_addr->addr[5],
2853                         profile, restricted);
2854
2855         conn = _bt_gdbus_get_system_gconn();
2856         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
2857
2858         _bt_convert_addr_type_to_string(address, bd_addr->addr);
2859
2860         device_path = _bt_get_device_object_path(address);
2861         retv_if(device_path == NULL, BLUETOOTH_ERROR_INTERNAL);
2862
2863         proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
2864                         NULL, BT_BLUEZ_NAME, device_path,
2865                         BT_DEVICE_INTERFACE, NULL, NULL);
2866
2867         g_free(device_path);
2868         retv_if(proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2869
2870         uuid = _bt_get_restricted_profile_uuid(profile);
2871         if (uuid == NULL) {
2872                 g_object_unref(proxy);
2873                 return BLUETOOTH_ERROR_NOT_SUPPORT;
2874         }
2875
2876         reply = g_dbus_proxy_call_sync(proxy, "SetRestrictedProfile",
2877                         g_variant_new("(sb)", uuid, restricted),
2878                         G_DBUS_CALL_FLAGS_NONE, -1,
2879                         NULL, &error);
2880         g_object_unref(proxy);
2881
2882         if (reply == NULL) {
2883                 BT_ERR("Failed to Set Profile Restricted");
2884                 ret = BLUETOOTH_ERROR_INTERNAL;
2885                 if (error) {
2886                         BT_ERR("Error %s[%s]", error->message, address);
2887                         g_error_free(error);
2888                 }
2889                 goto finish;
2890         }
2891         g_variant_unref(reply);
2892
2893 finish:
2894         g_free(uuid);
2895         return ret;
2896 }
2897
2898 int _bt_get_restrict_profile(bluetooth_device_address_t *bd_addr,
2899                 bluetooth_restricted_profile_t profile, guint *restricted)
2900 {
2901         int ret = BLUETOOTH_ERROR_NONE;
2902         GDBusConnection *conn;
2903         GDBusProxy *proxy;
2904         GError *error = NULL;
2905         char *device_path = NULL;
2906         guint restricted_profile_flag;
2907         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
2908         GVariant *reply;
2909
2910         BT_CHECK_PARAMETER(bd_addr, return);
2911         BT_DBG("BD Address [%2.2X %2.2X %2.2X %2.2X %2.2X %2.2X] profile[%d] restricted[%d]",
2912                         bd_addr->addr[0], bd_addr->addr[1],
2913                         bd_addr->addr[2], bd_addr->addr[3],
2914                         bd_addr->addr[4], bd_addr->addr[5],
2915                         profile, *restricted);
2916
2917         conn = _bt_gdbus_get_system_gconn();
2918         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
2919
2920         _bt_convert_addr_type_to_string(address, bd_addr->addr);
2921
2922         device_path = _bt_get_device_object_path(address);
2923         retv_if(device_path == NULL, BLUETOOTH_ERROR_INTERNAL);
2924
2925         proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
2926                         NULL, BT_BLUEZ_NAME, device_path,
2927                         BT_PROPERTIES_INTERFACE, NULL, NULL);
2928
2929         g_free(device_path);
2930         retv_if(proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
2931
2932         reply = g_dbus_proxy_call_sync(proxy, "Get",
2933                         g_variant_new("(ss)", BT_DEVICE_INTERFACE, "RestrictedProfiles"),
2934                         G_DBUS_CALL_FLAGS_NONE, -1,
2935                         NULL, &error);
2936         g_object_unref(proxy);
2937
2938         if (reply == NULL) {
2939                 BT_ERR("Failed to Get Profile Restricted");
2940                 ret = BLUETOOTH_ERROR_INTERNAL;
2941                 if (error) {
2942                         BT_ERR("Error %s[%s]", error->message, address);
2943                         g_error_free(error);
2944                 }
2945                 *restricted = 0;
2946         } else {
2947                 GVariant *temp;
2948                 g_variant_get(reply, "(v)", &temp);
2949                 restricted_profile_flag = g_variant_get_uint32(temp);
2950                 BT_DBG("Restricted_FLAG %d", restricted_profile_flag);
2951
2952                 ret = _bt_get_restricted_profile_from_flag(profile,
2953                                 restricted_profile_flag, restricted);
2954                 g_variant_unref(temp);
2955                 g_variant_unref(reply);
2956         }
2957
2958         BT_DBG("TRUST %d", *restricted);
2959         return ret;
2960 }
2961
2962 static void __bt_request_att_mtu_device_cb(GDBusProxy *proxy, GAsyncResult *res,
2963                                         gpointer user_data)
2964 {
2965         GError *err = NULL;
2966         GVariant *out_param1;
2967         request_info_t *req_info;
2968         GVariant *val = NULL;
2969         GVariant *param = NULL;
2970         guint8 status = 0;
2971         guint16 mtu = 0;
2972         bluetooth_device_address_t device_addr = { {0} };
2973         int result = BLUETOOTH_ERROR_NONE;
2974
2975         BT_DBG("+");
2976         val = g_dbus_proxy_call_finish(proxy, res, &err);
2977
2978         req_info = _bt_get_request_info(att_mtu_req_info->req_id);
2979         if (req_info == NULL) {
2980                 BT_ERR("req_info == NULL");
2981                 g_object_unref(proxy);
2982                 att_mtu_req_info->device_proxy = NULL;
2983                 goto done;
2984         }
2985
2986         if (err != NULL) {
2987                 BT_ERR("Error occured in RequestAttMtu [%s]", err->message);
2988
2989                 if (g_strrstr(err->message, "NotSupported")) {
2990                         BT_INFO("Connection Not Supported");
2991                         result = BLUETOOTH_ERROR_NOT_SUPPORT;
2992                 } else if (g_strrstr(err->message, "NotConnected")) {
2993                         BT_INFO("Not connected");
2994                         result = BLUETOOTH_ERROR_NOT_CONNECTED;
2995                 } else if (g_strrstr(err->message, "InvalidArguments")) {
2996                         BT_INFO("Not connected");
2997                         result = BLUETOOTH_ERROR_INVALID_PARAM;
2998                 } else {
2999                         BT_DBG("Default case");
3000                         result = BLUETOOTH_ERROR_INTERNAL;
3001                 }
3002         }
3003
3004         g_object_unref(proxy);
3005         att_mtu_req_info->device_proxy = NULL;
3006
3007         if (result != BLUETOOTH_ERROR_NONE)
3008                 goto dbus_return;
3009
3010         if (val) {
3011                  g_variant_get(val, "(qy)", &mtu, &status);
3012                  g_variant_unref(val);
3013         }
3014
3015         BT_DBG("MTU %d, Status %d, %s", mtu, status, att_mtu_req_info->addr);
3016
3017         param = g_variant_new("(isqy)",
3018                         result,
3019                         att_mtu_req_info->addr,
3020                         mtu,
3021                         status);
3022
3023         /* Send the event to application */
3024         _bt_send_event(BT_DEVICE_EVENT,
3025                 BLUETOOTH_EVENT_GATT_ATT_MTU_CHANGED,
3026                 param);
3027
3028 dbus_return:
3029         if (req_info->context == NULL)
3030                 goto done;
3031
3032         _bt_convert_addr_string_to_type(device_addr.addr,
3033                                         (const char *)att_mtu_req_info->addr);
3034
3035         out_param1 = g_variant_new_from_data((const GVariantType *)"ay",
3036                         &device_addr, sizeof(bluetooth_device_address_t), TRUE, NULL, NULL);
3037         g_dbus_method_invocation_return_value(req_info->context,
3038                         g_variant_new("(iv)", result, out_param1));
3039
3040         _bt_delete_request_list(req_info->req_id);
3041 done:
3042         if (err)
3043                 g_error_free(err);
3044
3045         g_free(att_mtu_req_info->addr);
3046         g_free(att_mtu_req_info);
3047         att_mtu_req_info = NULL;
3048
3049         BT_DBG("-");
3050 }
3051
3052 int _bt_request_att_mtu(int request_id, bluetooth_device_address_t *device_address,
3053                                                                 unsigned int mtu)
3054 {
3055         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
3056         gchar *device_path = NULL;
3057         GDBusProxy *adapter_proxy;
3058         GDBusProxy *device_proxy;
3059         GDBusConnection *conn;
3060         int ret = BLUETOOTH_ERROR_NONE;
3061
3062         BT_CHECK_PARAMETER(device_address, return);
3063
3064         if (att_mtu_req_info) {
3065                 BT_ERR("ATT MTU request in progress");
3066                 return BLUETOOTH_ERROR_DEVICE_BUSY;
3067         }
3068
3069         conn = _bt_gdbus_get_system_gconn();
3070         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
3071
3072         adapter_proxy = _bt_get_adapter_proxy();
3073         retv_if(adapter_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
3074
3075         _bt_convert_addr_type_to_string(address, device_address->addr);
3076
3077         BT_DBG("Remote device address: %s", address);
3078
3079         device_path = _bt_get_device_object_path(address);
3080
3081         retv_if(device_path == NULL, BLUETOOTH_ERROR_INTERNAL);
3082
3083         device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
3084                                                                 NULL, BT_BLUEZ_NAME,
3085                                                                 device_path, BT_DEVICE_INTERFACE,  NULL, NULL);
3086         g_free(device_path);
3087         retv_if(device_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
3088
3089         att_mtu_req_info = g_malloc0(sizeof(bt_funcion_data_t));
3090         att_mtu_req_info->addr = (char *)g_strdup(address);
3091         att_mtu_req_info->req_id = request_id;
3092         att_mtu_req_info->device_proxy = device_proxy;
3093
3094         g_dbus_proxy_call(device_proxy, "RequestAttMtu",
3095                                 g_variant_new("(q)", mtu),
3096                                 G_DBUS_CALL_FLAGS_NONE,
3097                                 BT_MAX_DBUS_TIMEOUT,
3098                                 NULL,
3099                                 (GAsyncReadyCallback)__bt_request_att_mtu_device_cb,
3100                                 NULL);
3101
3102         return ret;
3103 }
3104
3105 int _bt_get_att_mtu(bluetooth_device_address_t *device_address,
3106                         unsigned int *mtu)
3107 {
3108         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
3109         char *object_path = NULL;
3110
3111         GDBusProxy *device_proxy;
3112         GError *error = NULL;
3113         GVariant *value;
3114         GVariant *tmp_value;
3115         GDBusConnection *conn;
3116         GVariant *result = NULL;
3117         int ret = BLUETOOTH_ERROR_NONE;
3118
3119         BT_CHECK_PARAMETER(device_address, return);
3120
3121         conn = _bt_gdbus_get_system_gconn();
3122         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
3123
3124         _bt_convert_addr_type_to_string(address, device_address->addr);
3125
3126         object_path = _bt_get_device_object_path(address);
3127         retv_if(object_path == NULL, BLUETOOTH_ERROR_NOT_PAIRED);
3128
3129         device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
3130                         NULL, BT_BLUEZ_NAME, object_path,
3131                         BT_PROPERTIES_INTERFACE,  NULL, NULL);
3132         g_free(object_path);
3133         retv_if(device_proxy == NULL, BLUETOOTH_ERROR_INTERNAL);
3134
3135         result = g_dbus_proxy_call_sync(device_proxy, "GetAll",
3136                         g_variant_new("(s)", BT_DEVICE_INTERFACE),
3137                         G_DBUS_CALL_FLAGS_NONE,
3138                         -1,
3139                         NULL,
3140                         &error);
3141         if (result == NULL) {
3142                 if (error != NULL) {
3143                         BT_ERR("Error occured in Proxy call [%s]\n", error->message);
3144                         g_error_free(error);
3145                 }
3146                 g_object_unref(device_proxy);
3147                 return BLUETOOTH_ERROR_INTERNAL;
3148         }
3149
3150         g_variant_get(result , "(@a{sv})", &value);
3151         g_variant_unref(result);
3152
3153         tmp_value = g_variant_lookup_value(value, "AttMtu", G_VARIANT_TYPE_UINT16);
3154         if (tmp_value == NULL) {
3155                 g_object_unref(device_proxy);
3156                 g_variant_unref(value);
3157                 return BLUETOOTH_ERROR_INTERNAL;
3158         }
3159
3160         *mtu = g_variant_get_uint16(tmp_value);
3161
3162         BT_DBG("ATT MTU : %d", *mtu);
3163
3164         g_variant_unref(tmp_value);
3165         g_variant_unref(value);
3166         g_object_unref(device_proxy);
3167
3168         return ret;
3169 }
3170
3171 int _bt_get_device_ida(bluetooth_device_address_t *device_address,
3172                         bluetooth_device_address_t *id_address)
3173 {
3174         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
3175         gchar *device_path = NULL;
3176         const gchar *idaddress = NULL;
3177         GDBusProxy *device_proxy;
3178         GError *error = NULL;
3179         GVariant *result = NULL;
3180         GDBusConnection *conn;
3181         int ret = BLUETOOTH_ERROR_NONE;
3182
3183         BT_CHECK_PARAMETER(device_address, return);
3184
3185         conn = _bt_gdbus_get_system_gconn();
3186         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
3187
3188         _bt_convert_addr_type_to_string(address, device_address->addr);
3189
3190         device_path = _bt_get_device_object_path(address);
3191         retv_if(device_path == NULL, BLUETOOTH_ERROR_NOT_PAIRED);
3192
3193         device_proxy = g_dbus_proxy_new_sync(conn, G_DBUS_PROXY_FLAGS_NONE,
3194                                                                 NULL, BT_BLUEZ_NAME,
3195                                                                 device_path, BT_DEVICE_INTERFACE,  NULL, NULL);
3196         g_free(device_path);
3197         if (!device_proxy) {
3198                 BT_ERR("Unable to get proxy");
3199                 return BLUETOOTH_ERROR_INTERNAL;
3200         }
3201
3202         result = g_dbus_proxy_call_sync(device_proxy, "GetIDAddress",
3203                                  NULL,
3204                                  G_DBUS_CALL_FLAGS_NONE,
3205                                  -1,
3206                                  NULL,
3207                                  &error);
3208
3209         if (result == NULL) {
3210                 BT_ERR("Failed to get device ID address");
3211                 if (error != NULL) {
3212                         BT_ERR("Error occured in Proxy call [%s]\n", error->message);
3213                         g_error_free(error);
3214                 }
3215                 g_object_unref(device_proxy);
3216                 return BLUETOOTH_ERROR_INTERNAL;
3217         }
3218
3219         g_variant_get(result , "(s)", &idaddress);
3220         g_variant_unref(result);
3221
3222         if (idaddress == NULL) {
3223                 BT_ERR("No paired device");
3224                 g_object_unref(device_proxy);
3225                 return BLUETOOTH_ERROR_NOT_PAIRED;
3226         }
3227
3228         BT_DBG("ID Address:%s", idaddress);
3229
3230         if (idaddress)
3231                 _bt_convert_addr_string_to_type(id_address->addr, idaddress);
3232         else
3233                 ret = BLUETOOTH_ERROR_INTERNAL;
3234
3235         g_object_unref(device_proxy);
3236
3237         return ret;
3238 }
3239
3240 int _bt_passkey_reply(const char *passkey, gboolean authentication_reply)
3241 {
3242         GapAgentPrivate *agent = _bt_get_adapter_agent();
3243         retv_if(!agent, BLUETOOTH_ERROR_INTERNAL);
3244
3245         if (authentication_reply)
3246                 gap_agent_reply_pin_code(agent, GAP_AGENT_ACCEPT, passkey, NULL);
3247         else
3248                 gap_agent_reply_pin_code(agent, GAP_AGENT_REJECT, passkey, NULL);
3249
3250         BT_DBG("BT_PASSKEY_REPLY");
3251         return BLUETOOTH_ERROR_NONE;
3252 }
3253
3254 int _bt_passkey_confirmation_reply(gboolean confirmation_reply)
3255 {
3256         GapAgentPrivate *agent = _bt_get_adapter_agent();
3257         retv_if(!agent, BLUETOOTH_ERROR_INTERNAL);
3258
3259         if (confirmation_reply)
3260                 gap_agent_reply_confirmation(agent, GAP_AGENT_ACCEPT, NULL);
3261         else
3262                 gap_agent_reply_confirmation(agent, GAP_AGENT_REJECT, NULL);
3263
3264         BT_DBG("BT_PASSKEY_CONFIRMATION_REPLY");
3265         return BLUETOOTH_ERROR_NONE;
3266 }