bca413539359673641e5cbe4be9c210df9f8cd65
[platform/core/connectivity/bluetooth-frwk.git] / bt-service / bt-service-common.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 <stdio.h>
19 #include <string.h>
20 #include <glib.h>
21 #include <dlog.h>
22 #include <fcntl.h>
23 #include <errno.h>
24 #include <termios.h>
25 #include <net_connection.h>
26 #include <dbus/dbus.h>
27 #include <glib.h>
28 #include <dlog.h>
29 #include <fcntl.h>
30 #include <errno.h>
31 #include <termios.h>
32 #include <net_connection.h>
33 #include <bundle.h>
34 #include <eventsystem.h>
35
36 #include "bluetooth-api.h"
37 #include "bt-service-common.h"
38 #include "bt-service-agent.h"
39
40 static GDBusConnection *system_conn;
41 static GDBusConnection *session_conn;
42 static GDBusProxy *manager_proxy;
43 static GDBusProxy *adapter_proxy;
44 static void *net_conn;
45
46 static GDBusProxy *adapter_properties_proxy;
47
48 GDBusConnection *_bt_gdbus_init_system_gconn(void)
49 {
50         GError *error = NULL;
51
52         dbus_threads_init_default();
53
54         if (system_conn != NULL)
55                 return system_conn;
56
57         system_conn = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, &error);
58
59         if (!system_conn) {
60                 BT_ERR("Unable to connect to dbus: %s", error->message);
61                 g_clear_error(&error);
62         }
63
64         return system_conn;
65 }
66
67 GDBusConnection *_bt_gdbus_get_system_gconn(void)
68 {
69         GDBusConnection *local_system_gconn = NULL;
70         GError *error = NULL;
71
72         if (system_conn == NULL) {
73                 system_conn = _bt_gdbus_init_system_gconn();
74         } else if (g_dbus_connection_is_closed(system_conn)) {
75                 local_system_gconn = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, &error);
76
77                 if (!local_system_gconn) {
78                         BT_ERR("Unable to connect to dbus: %s", error->message);
79                         g_clear_error(&error);
80                 }
81
82                 system_conn = local_system_gconn;
83         }
84
85         return system_conn;
86 }
87
88 GDBusConnection *_bt_gdbus_init_session_gconn(void)
89 {
90         GError *error = NULL;
91
92         if (!g_thread_supported())
93                 g_thread_init(NULL);
94
95         dbus_threads_init_default();
96
97         if (session_conn != NULL)
98                 return session_conn;
99
100         session_conn = g_bus_get_sync(G_BUS_TYPE_SESSION, NULL, &error);
101
102         if (!session_conn) {
103                 BT_ERR("Unable to connect to dbus: %s", error->message);
104                 g_clear_error(&error);
105         }
106
107         return session_conn;
108 }
109
110 GDBusConnection *_bt_gdbus_get_session_gconn(void)
111 {
112         GDBusConnection *local_session_gconn = NULL;
113         GError *error = NULL;
114
115         if (session_conn == NULL) {
116                 session_conn = _bt_gdbus_init_session_gconn();
117         } else if (g_dbus_connection_is_closed(session_conn)) {
118                 local_session_gconn = g_bus_get_sync(G_BUS_TYPE_SESSION, NULL, &error);
119
120                 if (!local_session_gconn) {
121                         BT_ERR("Unable to connect to dbus: %s", error->message);
122                         g_clear_error(&error);
123                 }
124
125                 session_conn = local_session_gconn;
126         }
127
128         return session_conn;
129 }
130
131 static GDBusProxy *__bt_init_manager_proxy(void)
132 {
133         GDBusConnection *g_conn;
134         GDBusProxy *proxy;
135
136         dbus_threads_init_default();
137
138         g_conn = _bt_gdbus_get_system_gconn();
139         retv_if(g_conn == NULL, NULL);
140
141         proxy = g_dbus_proxy_new_sync(g_conn, G_DBUS_PROXY_FLAGS_NONE,
142                                                                 NULL, BT_BLUEZ_NAME,
143                                                                 BT_MANAGER_PATH, BT_MANAGER_INTERFACE,  NULL, NULL);
144
145         if (!proxy) {
146                 BT_ERR("Unable to get proxy");
147                 return NULL;
148         }
149
150         manager_proxy = proxy;
151
152         return proxy;
153 }
154
155 static GDBusProxy *__bt_init_adapter_proxy(void)
156 {
157         GDBusConnection *g_conn;
158         GDBusProxy *manager_proxy;
159         GDBusProxy *proxy;
160         char *adapter_path = NULL;
161
162         dbus_threads_init_default();
163
164         g_conn = _bt_gdbus_get_system_gconn();
165         retv_if(g_conn == NULL, NULL);
166
167         manager_proxy = _bt_get_manager_proxy();
168         retv_if(manager_proxy == NULL, NULL);
169
170         adapter_path = _bt_get_adapter_path();
171         retv_if(adapter_path == NULL, NULL);
172
173         proxy = g_dbus_proxy_new_sync(g_conn, G_DBUS_PROXY_FLAGS_NONE,
174                                                                 NULL, BT_BLUEZ_NAME,
175                                                                 adapter_path, BT_ADAPTER_INTERFACE,  NULL, NULL);
176
177         g_free(adapter_path);
178
179         retv_if(proxy == NULL, NULL);
180
181         adapter_proxy = proxy;
182
183         return proxy;
184 }
185
186 static GDBusProxy *__bt_init_adapter_properties_proxy(void)
187 {
188         GDBusConnection *g_conn;
189         GDBusProxy *manager_proxy;
190         GDBusProxy *proxy;
191         char *adapter_path = NULL;
192
193         dbus_threads_init_default();
194
195         g_conn = _bt_gdbus_get_system_gconn();
196         retv_if(g_conn == NULL, NULL);
197
198         manager_proxy = _bt_get_manager_proxy();
199         retv_if(manager_proxy == NULL, NULL);
200
201         adapter_path = _bt_get_adapter_path();
202         retv_if(adapter_path == NULL, NULL);
203
204         proxy = g_dbus_proxy_new_sync(g_conn, G_DBUS_PROXY_FLAGS_NONE,
205                                                                         NULL, BT_BLUEZ_NAME,
206                                                                         adapter_path, BT_PROPERTIES_INTERFACE,  NULL, NULL);
207
208         g_free(adapter_path);
209
210         retv_if(proxy == NULL, NULL);
211
212         adapter_properties_proxy = proxy;
213
214         return proxy;
215 }
216
217 GDBusProxy *_bt_get_manager_proxy(void)
218 {
219         if (manager_proxy) {
220                 const gchar *path =  g_dbus_proxy_get_object_path(manager_proxy);
221                 if (path == NULL) {
222                         BT_ERR("Already proxy released hence creating new proxy");
223                         return  __bt_init_manager_proxy();
224                 }
225                 return manager_proxy;
226         }
227         return  __bt_init_manager_proxy();
228 }
229
230 static void *__bt_init_net_conn(void)
231 {
232         int result;
233         connection_h connection = NULL;
234
235         if (net_conn == NULL) {
236                 result = connection_create(&connection);
237
238         if (result != CONNECTION_ERROR_NONE ||
239                                         connection == NULL) {
240                 BT_DBG("connection_create() failed: %d", result);
241                 net_conn = NULL;
242                 return NULL;
243         }
244                 net_conn = connection;
245         }
246         return net_conn;
247 }
248
249 void *_bt_get_net_conn(void)
250 {
251         return (net_conn) ? net_conn : __bt_init_net_conn();
252 }
253
254 GDBusProxy *_bt_get_adapter_proxy(void)
255 {
256         if (adapter_proxy) {
257                 const char *path =  g_dbus_proxy_get_object_path(adapter_proxy);
258                 if (path == NULL) {
259                         BT_ERR("Already proxy released hence creating new proxy");
260                         return  __bt_init_adapter_proxy();
261                 }
262
263                 return adapter_proxy;
264         }
265         return  __bt_init_adapter_proxy();
266
267 }
268
269 GDBusProxy *_bt_get_adapter_properties_proxy(void)
270 {
271         return (adapter_properties_proxy) ? adapter_properties_proxy :
272                                         __bt_init_adapter_properties_proxy();
273 }
274
275 static char *__bt_extract_adapter_path(GVariantIter *iter)
276 {
277         char *object_path = NULL;
278         GVariantIter *interface_iter;
279         GVariantIter *svc_iter;
280         char *interface_str = NULL;
281
282         /* Parse the signature: oa{sa{sv}}} */
283         while (g_variant_iter_loop(iter, "{&oa{sa{sv}}}", &object_path,
284                         &interface_iter)) {
285
286                 if (object_path == NULL)
287                         continue;
288
289                 while (g_variant_iter_loop(interface_iter, "{&sa{sv}}",
290                                 &interface_str, &svc_iter)) {
291                         if (g_strcmp0(interface_str, "org.bluez.Adapter1") != 0)
292                                 continue;
293
294                         BT_DBG("Object Path: %s", object_path);
295                         g_variant_iter_free(svc_iter);
296                         g_variant_iter_free(interface_iter);
297                         return g_strdup(object_path);
298                 }
299         }
300         return NULL;
301 }
302
303 char *_bt_get_adapter_path(void)
304 {
305         GDBusConnection *conn;
306         GDBusProxy *manager_proxy;
307         GVariant *result = NULL;
308         GVariantIter *iter = NULL;
309         char *adapter_path = NULL;
310
311         conn = _bt_gdbus_get_system_gconn();
312         retv_if(conn == NULL, NULL);
313
314         manager_proxy = _bt_get_manager_proxy();
315         retv_if(manager_proxy == NULL, NULL);
316
317         result = g_dbus_proxy_call_sync(manager_proxy, "GetManagedObjects",
318                                 NULL,
319                                 G_DBUS_CALL_FLAGS_NONE,
320                                 -1,
321                                 NULL,
322                                 NULL);
323         if (!result) {
324                 BT_ERR("Can't get managed objects");
325                 return NULL;
326         }
327
328         /* signature of GetManagedObjects:  a{oa{sa{sv}}} */
329         g_variant_get(result, "(a{oa{sa{sv}}})", &iter);
330
331         adapter_path = __bt_extract_adapter_path(iter);
332         g_variant_iter_free(iter);
333         g_variant_unref(result);
334         return adapter_path;
335 }
336
337 void _bt_deinit_bluez_proxy(void)
338 {
339         if (manager_proxy) {
340                 g_object_unref(manager_proxy);
341                 manager_proxy = NULL;
342         }
343
344         if (adapter_proxy) {
345                 g_object_unref(adapter_proxy);
346                 adapter_proxy = NULL;
347         }
348         if (adapter_properties_proxy) {
349                 g_object_unref(adapter_properties_proxy);
350                 adapter_properties_proxy = NULL;
351         }
352 }
353
354 void _bt_deinit_proxys(void)
355 {
356         int ret;
357         _bt_deinit_bluez_proxy();
358
359         if (system_conn) {
360                 g_object_unref(system_conn);
361                 system_conn = NULL;
362         }
363
364         if (session_conn) {
365                 g_object_unref(session_conn);
366                 session_conn = NULL;
367         }
368
369         if (net_conn) {
370                 ret = connection_destroy(net_conn);
371                 net_conn = NULL;
372                 if (ret != 0)
373                         BT_ERR("connection_destroy failed : %d", ret);
374         }
375 }
376
377 void _bt_convert_device_path_to_address(const char *device_path,
378                                                 char *device_address)
379 {
380         char address[BT_ADDRESS_STRING_SIZE] = { 0 };
381         char *dev_addr;
382
383         ret_if(device_path == NULL);
384         ret_if(device_address == NULL);
385
386         dev_addr = strstr(device_path, "dev_");
387         if (dev_addr != NULL) {
388                 char *pos = NULL;
389                 dev_addr += 4;
390                 g_strlcpy(address, dev_addr, sizeof(address));
391
392                 while ((pos = strchr(address, '_')) != NULL)
393                         *pos = ':';
394
395                 g_strlcpy(device_address, address, BT_ADDRESS_STRING_SIZE);
396         }
397 }
398
399
400 void _bt_convert_addr_string_to_type(unsigned char *addr,
401                                         const char *address)
402 {
403         int i;
404         char *ptr = NULL;
405
406         ret_if(address == NULL);
407         ret_if(addr == NULL);
408
409         for (i = 0; i < BT_ADDRESS_LENGTH_MAX; i++) {
410                 addr[i] = strtol(address, &ptr, 16);
411                 if (ptr[0] != '\0') {
412                         if (ptr[0] != ':')
413                                 return;
414
415                 address = ptr + 1;
416                 }
417         }
418 }
419
420 void _bt_convert_addr_string_to_secure_string(char *addr,
421                                         const char *address)
422 {
423         int len;
424
425         ret_if(address == NULL);
426         ret_if(addr == NULL);
427
428         len = strlen(address);
429         ret_if(len != BT_ADDRESS_STRING_SIZE - 1);
430
431         strncpy(addr, address, len);
432         addr[len] = '\0';
433
434         addr[len-7] = 'X';
435         addr[len-8] = 'X';
436         addr[len-10] = 'X';
437         addr[len-11] = 'X';
438         addr[len-13] = 'X';
439         addr[len-14] = 'X';
440         addr[len-16] = 'X';
441         addr[len-17] = 'X';
442
443         return;
444 }
445
446 void _bt_convert_addr_type_to_string(char *address,
447                                 unsigned char *addr)
448 {
449         ret_if(address == NULL);
450         ret_if(addr == NULL);
451
452         snprintf(address, BT_ADDRESS_STRING_SIZE,
453                         "%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X",
454                         addr[0], addr[1], addr[2],
455                         addr[3], addr[4], addr[5]);
456 }
457
458 void _bt_print_device_address_t(const bluetooth_device_address_t *addr)
459 {
460         BT_DBG("%2.2X:%2.2X:%2.2X:%2.2X:%2.2X:%2.2X\n", addr->addr[0], addr->addr[1], addr->addr[2],
461                                 addr->addr[3], addr->addr[4], addr->addr[5]);
462 }
463
464 void _bt_divide_device_class(bluetooth_device_class_t *device_class,
465                                 unsigned int cod)
466 {
467         ret_if(device_class == NULL);
468
469         device_class->major_class = (unsigned short)(cod & 0x00001F00) >> 8;
470         device_class->minor_class = (unsigned short)((cod & 0x000000FC));
471         device_class->service_class = (unsigned long)((cod & 0x00FF0000));
472
473         if (cod & 0x002000) {
474                 device_class->service_class |=
475                 BLUETOOTH_DEVICE_SERVICE_CLASS_LIMITED_DISCOVERABLE_MODE;
476         }
477 }
478
479 void _bt_free_device_info(bt_remote_dev_info_t *dev_info)
480 {
481         int i;
482
483         ret_if(dev_info == NULL);
484
485         g_free(dev_info->address);
486         g_free(dev_info->name);
487         g_free(dev_info->manufacturer_data);
488
489         if (dev_info->uuids) {
490                 for (i = 0; i < dev_info->uuid_count && dev_info->uuids[i]; i++)
491                         g_free(dev_info->uuids[i]);
492
493                 g_free(dev_info->uuids);
494         }
495
496         g_free(dev_info);
497 }
498
499 void _bt_free_le_device_info(bt_remote_le_dev_info_t *le_dev_info)
500 {
501         ret_if(le_dev_info == NULL);
502
503         g_free(le_dev_info->adv_data);
504         g_free(le_dev_info);
505 }
506
507 int _bt_copy_utf8_string(char *dest, const char *src, unsigned int length)
508 {
509         int i;
510         const char *p = src;
511         char *next;
512         int count;
513
514         if (dest == NULL || src == NULL)
515                 return BLUETOOTH_ERROR_INVALID_PARAM;
516
517         BT_DBG("+src : %s", src);
518         BT_DBG("+dest : %s", dest);
519
520         i = 0;
521         while (*p != '\0' && i < length) {
522                 next = g_utf8_next_char(p);
523                 count = next - p;
524
525                 while (count > 0 && ((i + count) < length)) {
526                         dest[i++] = *p;
527                         p++;
528                         count--;
529                 }
530                 p = next;
531         }
532         return BLUETOOTH_ERROR_NONE;
533 }
534
535 gboolean _bt_utf8_validate(char *name)
536 {
537         BT_DBG("+");
538         gunichar2 *u16;
539         glong items_written = 0;
540
541         if (FALSE == g_utf8_validate(name, -1, NULL))
542                 return FALSE;
543
544         u16 = g_utf8_to_utf16(name, -1, NULL, &items_written, NULL);
545         if (u16 == NULL)
546                 return FALSE;
547
548         g_free(u16);
549
550         if (items_written != g_utf8_strlen(name, -1))
551                 return FALSE;
552
553         BT_DBG("-");
554         return TRUE;
555 }
556
557 int _bt_register_osp_server_in_agent(int type, char *uuid, char *path, int fd)
558 {
559         BT_DBG("+");
560         if (!_bt_agent_register_osp_server(type, uuid, path, fd))
561                 return BLUETOOTH_ERROR_INTERNAL;
562
563         return BLUETOOTH_ERROR_NONE;
564 }
565
566 int _bt_unregister_osp_server_in_agent(int type, char *uuid)
567 {
568         BT_DBG("+");
569         if (!_bt_agent_unregister_osp_server(type, uuid))
570                 return BLUETOOTH_ERROR_INTERNAL;
571
572         return BLUETOOTH_ERROR_NONE;
573 }
574
575 int _bt_set_socket_non_blocking(int socket_fd)
576 {
577         /* Set Nonblocking */
578         long arg;
579
580         arg = fcntl(socket_fd, F_GETFL);
581
582         if (arg < 0)
583                 return -errno;
584
585         if (arg & O_NONBLOCK)
586                 BT_ERR("Already Non-blocking \n");
587
588         arg |= O_NONBLOCK;
589
590         if (fcntl(socket_fd, F_SETFL, arg) < 0)
591                 return -errno;
592
593         return BLUETOOTH_ERROR_NONE;
594 }
595
596 int _bt_set_non_blocking_tty(int sk)
597 {
598         struct termios ti = {0,};
599         int err;
600
601         err = _bt_set_socket_non_blocking(sk);
602
603         if (err < 0) {
604                 BT_ERR("Error in set non blocking!\n");
605                 return err;
606         }
607
608         tcflush(sk, TCIOFLUSH);
609
610         /* Switch tty to RAW mode */
611         cfmakeraw(&ti);
612         tcsetattr(sk, TCSANOW, &ti);
613
614         return BLUETOOTH_ERROR_NONE;
615 }
616
617 static char *__bt_extract_device_path(GVariantIter *iter, char *address)
618 {
619         char *object_path = NULL;
620         char device_address[BT_ADDRESS_STRING_SIZE] = { 0 };
621
622         /* Parse the signature: oa{sa{sv}}} */
623         while (g_variant_iter_loop(iter, "{&oa{sa{sv}}}", &object_path,
624                         NULL)) {
625                 if (!object_path) {
626                         BT_ERR("Unable to get object path");
627                         return NULL;
628                 }
629                 _bt_convert_device_path_to_address(object_path, device_address);
630                 if (g_strcmp0(address, device_address) == 0)
631                         return g_strdup(object_path);
632
633         }
634
635         BT_ERR("Unable to get object path");
636         return NULL;
637 }
638
639 char *_bt_get_device_object_path(char *address)
640 {
641         char *object_path = NULL;
642         GDBusConnection *conn;
643         GDBusProxy *manager_proxy;
644         GVariant *result = NULL;
645         GVariantIter *iter = NULL;
646
647         conn = _bt_gdbus_get_system_gconn();
648         retv_if(conn == NULL, NULL);
649
650         manager_proxy = _bt_get_manager_proxy();
651         retv_if(manager_proxy == NULL, NULL);
652
653         result = g_dbus_proxy_call_sync(manager_proxy, "GetManagedObjects",
654                                 NULL,
655                                 G_DBUS_CALL_FLAGS_NONE,
656                                 -1,
657                                 NULL,
658                                 NULL);
659         if (!result) {
660                 BT_ERR("Can't get managed objects");
661                 return NULL;
662         }
663
664         /* signature of GetManagedObjects:  a{oa{sa{sv}}} */
665         g_variant_get(result, "(a{oa{sa{sv}}})", &iter);
666         object_path = __bt_extract_device_path(iter, address);
667         g_variant_iter_free(iter);
668         g_variant_unref(result);
669         return object_path;
670 }
671
672 char *_bt_get_profile_uuid128(bt_profile_type_t profile_type)
673 {
674         switch (profile_type) {
675         case BT_PROFILE_CONN_RFCOMM:
676                 return strdup(RFCOMM_UUID_STR);
677         case BT_PROFILE_CONN_A2DP:
678                 return strdup(A2DP_SINK_UUID);
679         case BT_PROFILE_CONN_A2DP_SINK:
680                 return strdup(A2DP_SOURCE_UUID);
681         case BT_PROFILE_CONN_HSP:
682                 return strdup(HFP_HS_UUID);
683         case BT_PROFILE_CONN_HID:
684                 return strdup(HID_UUID);
685         case BT_PROFILE_CONN_NAP:
686                 return strdup(NAP_UUID);
687         case BT_PROFILE_CONN_HFG:
688                 return strdup(HFP_AG_UUID);
689         case BT_PROFILE_CONN_PBAP:
690                 return strdup(PBAP_UUID);
691         case BT_PROFILE_CONN_GATT:
692         case BT_PROFILE_CONN_ALL: /* NULL UUID will connect to both the audio profiles*/
693         default:
694                 return NULL;
695         };
696 }
697
698 const char *_bt_convert_uuid_to_string(const char *uuid)
699 {
700         if (!uuid)
701                 return NULL;
702
703         int i;
704         int offset = 0;
705         int uuid_len = 4;
706         static struct {
707                 const char *uuid;
708                 const char *specification_name;
709         } bt_uuid_name[] = {
710                 /* BT Classic Services */
711                 {"1101", "Serial Port Service"},
712                 {"1102", "LAN Access Using PPP Service"},
713                 {"1103", "Dialup Networking Service"},
714                 {"1104", "IrMCSync Service"},
715                 {"1105", "OBEX Object Push Service"},
716                 {"1106", "OBEX File Transfer Service"},
717                 {"1107", "IrMC Sync Command Service"},
718                 {"1108", "Headset Service"},
719                 {"1109", "Cordless Telephony Service"},
720                 {"110A", "Audio Source Service"},
721                 {"110B", "Audio Sink Service"},
722                 {"110C", "AV Remote Control Target Service"},
723                 {"110D", "Advanced Audio Distribution Profile"},
724                 {"110E", "AV Remote Control Service"},
725                 {"110F", "Video Conferencing Service"},
726                 {"1110", "Intercom Service"},
727                 {"1111", "Fax Service"},
728                 {"1112", "Headset Audio Gateway Service"},
729                 {"1113", "WAP Service"},
730                 {"1114", "WAP Client Service"},
731                 {"1115", "PANU Service"},
732                 {"1116", "NAP Service"},
733                 {"1117", "GN Service"},
734                 {"1118", "Direct Printing Service"},
735                 {"1119", "Reference Printing Service"},
736                 {"111A", "Basic Imaging Profile"},
737                 {"111B", "Imaging Responder Service"},
738                 {"111C", "Imaging Automatic Archive Service"},
739                 {"111D", "Imaging Reference Objects Service"},
740                 {"111E", "Handsfree Service"},
741                 {"111F", "Handsfree Audio Gateway Service"},
742                 {"1120", "Direct Printing Reference Objects Service"},
743                 {"1121", "Reflected UI Service"},
744                 {"1122", "Basic Printing Profile"},
745                 {"1123", "Printing Status Service"},
746                 {"1124", "Human Interface Device Service"},
747                 {"1125", "Hardcopy Cable Replacement Profile"},
748                 {"1126", "HCR Print Service"},
749                 {"1127", "HCR Scan Service"},
750                 {"112D", "SIM Access Service"},
751                 {"112E", "Phonebook Access PCE Service"},
752                 {"112F", "Phonebook Access PSE Service"},
753                 {"1130", "Phonebook Access Profile"},
754                 {"1132", "Message Access Server Service"},
755                 {"1133", "Message Notification Server Service"},
756                 {"1134", "Message Access Profile"},
757                 {"1200", "PnP Information Service"},
758                 {"1201", "Generic Networking Service"},
759                 {"1202", "Generic File Transfer Service"},
760                 {"1203", "Generic Audio Service"},
761                 {"1204", "Generic Telephony Service"},
762                 {"1205", "UPnP Service"},
763                 {"1206", "UPnP Ip Service"},
764                 {"1303", "Video Source Service"},
765                 {"1304", "Video Sink Service"},
766                 {"1305", "Video Distribution Profile"},
767                 {"1400", "Health Device Profile"},
768                 {"1401", "HDP Source Service"},
769                 {"1402", "HDP Sink Service"},
770
771                 /* GATT Services */
772                 {"1800", "Generic Access"},
773                 {"1801", "Generic Attribute"},
774                 {"1802", "Immediate Alert"},
775                 {"1803", "Link Loss"},
776                 {"1804", "Tx Power"},
777                 {"1805", "Current Time Service"},
778                 {"1806", "Reference Time Update Service"},
779                 {"1807", "Next DST Change Service"},
780                 {"1808", "Glucose"},
781                 {"1809", "Health Thermometer"},
782                 {"180A", "Device Information"},
783                 {"180D", "Heart Rate"},
784                 {"180F", "Battery Service"},
785                 {"1810", "Blood Pressure"},
786                 {"1811", "Alert Notification Service"},
787                 {"1812", "Human Interface Device"},
788                 {"1813", "Scan Parameters"},
789                 {"1814", "Running Speed and Cadence"},
790                 {"1815", "Automation IO"},
791                 {"1816", "Cycling Speed and Cadence"},
792                 {"1818", "Cycling Power"},
793                 {"1819", "Location and Navigation"},
794                 {"181A", "Environmental Sensing"},
795                 {"181B", "Body Composition"},
796                 {"181C", "User Data"},
797                 {"181D", "Weight Scale"},
798                 {"181E", "Bond Management"},
799                 {"181F", "Continuous Glucose Monitoring"},
800
801                 /* GATT Declarations */
802                 {"2800", "Primary Service Declaration"},
803                 {"2801", "Secondary Service Declaration"},
804                 {"2802", "Include Declaration"},
805                 {"2803", "Characteristic Declaration"},
806
807                 /* GATT Descriptors */
808                 {"2900", "Characteristic Extended Properties"},
809                 {"2901", "Characteristic User Description"},
810                 {"2902", "Client Characteristic Configuration"},
811                 {"2903", "Server Characteristic Configuration"},
812                 {"2904", "Characteristic Format"},
813                 {"2905", "Characteristic Aggregate Formate"},
814                 {"2906", "Valid Range"},
815                 {"2907", "External Report Reference"},
816                 {"2908", "Report Reference"},
817
818                 /* GATT Characteristics */
819                 {"2A00", "Device Name"},
820                 {"2A01", "Appearance"},
821                 {"2A02", "Peripheral Privacy Flag"},
822                 {"2A03", "Reconnection Address"},
823                 {"2A04", "Peripheral Preferred Connection Parameters"},
824                 {"2A05", "Service Changed"},
825                 {"2A06", "Alert Level"},
826                 {"2A07", "Tx Power Level"},
827                 {"2A08", "Date Time"},
828                 {"2A09", "Day of Week"},
829                 {"2A0A", "Day Date Time"},
830                 {"2A11", "Time with DST"},
831                 {"2A12", "Time Accuracy"},
832                 {"2A13", "Time Source"},
833                 {"2A14", "Reference Time Information"},
834                 {"2A16", "Time Update Control Point"},
835                 {"2A17", "Time Update State"},
836                 {"2A18", "Glucose Measurement"},
837                 {"2A19", "Battery Level"},
838                 {"2A1C", "Temperature Measurement"},
839                 {"2A1D", "Temperature Type"},
840                 {"2A1E", "Intermediate Temperature"},
841                 {"2A21", "Measurement Interval"},
842                 {"2A23", "System ID"},
843                 {"2A24", "Model Number String"},
844                 {"2A25", "Serial Number String"},
845                 {"2A26", "Firmware Revision String"},
846                 {"2A27", "Hardware Revision String"},
847                 {"2A28", "Software Revision String"},
848                 {"2A29", "Manufacturer Name String"},
849                 {"2A2A", "IEEE 11073-20601 Regulatory Certification Data List"},
850                 {"2A2B", "Current Time"},
851                 {"2A34", "Glucose Measurement Context"},
852                 {"2A35", "Blood Pressure Measurement"},
853                 {"2A37", "Heart Rate Measurement"},
854                 {"2A38", "Body Sensor Location"},
855                 {"2A39", "Heart Rate Control Point"},
856                 {"2A3F", "Alert Status"},
857                 {"2A46", "New Alert"},
858                 {"2A49", "Blood Pressure Feature"},
859                 {"2A4A", "HID Information"},
860                 {"2A4C", "HID Control Point"},
861                 {"2A50", "PnP ID"},
862                 {"2A51", "Glucose Feature"},
863                 {"2A52", "Record Access Control Point"},
864                 {"2A53", "RSC Measurement"},
865                 {"2A54", "RSC Feature"},
866                 {"2A55", "SC Control Point"},
867                 {"2A56", "Digital"},
868                 {"2A58", "Analog"},
869                 {"2A5A", "Aggregate"},
870                 {"2A5B", "CSC Measurement"},
871                 {"2A5C", "CSC Feature"},
872                 {"2A5D", "Sensor Location"},
873                 {"2A63", "Cycling Power Measurement"},
874                 {"2A64", "Cycling Power Vector"},
875                 {"2A65", "Cycling Power Feature"},
876                 {"2A66", "Cycling Power Control Point"},
877                 {"2A67", "Location and Speed"},
878                 {"2A68", "Navigation"},
879                 {"2A6D", "Pressure"},
880                 {"2A6E", "Temperature"},
881
882                 /* Custom uuids */
883                 {"7905F431-B5CE-4E99-A40F-4B1E122D00D0", "Apple Notification Center Service"},
884                 {"9FBF120D-6301-42D9-8C58-25E699A21DBD", "Notifications Source"},
885                 {"69D1D8F3-45E1-49A8-9821-9BBDFDAAD9D9", "Control Point"},
886                 {"22EAC6E9-24D6-4BB5-BE44-B36ACE7C7BFB", "Data Source"},
887                 {"89D3502B-0F36-433A-8EF4-C502AD55F8DC", "Apple Media Service"},
888                 {"9B3C81D8-57B1-4A8A-B8DF-0E56F7CA51C2", "Remote Command"},
889                 {"2F7CABCE-808D-411F-9A0C-BB92BA96C102", "Entity Update"},
890                 {"C6B2F38C-23AB-46D8-A6AB-A3A870BBD5D7", "Entity Attribute"},
891                 {"9A3F68E0-86CE-11E5-A309-0002A5D5C51B", "Samsung Gear Manager Service"},
892                 {"c2f2cc0f-c085-4dd4-be5a-aca3074bbc72", "Control Point"},
893                 {"cece518b-28d7-4171-92d5-76a1e249a3b9", "Notifications Source"},
894                 {"32D1955A-E5AA-4A96-9A49-08538DA8B8F6", "Samsung Gear Fit Manager Service"},
895                 {"FE53FF98-B259-4337-B56A-0EC9F82C6BAD", "Control Point"},
896                 {"C2051EE0-804D-4D50-A12C-15E243852100", "Notifications Source"},
897                 {"1ab7c24d-185a-45b9-90d4-f7ab1a71949a", "Samsung Health Service"},
898                 {"ADE3D529-C784-4F63-A987-EB69F70EE816", "IoT OIC Service"},
899                 {NULL, NULL}
900         };
901
902         if (strlen(uuid) == 36) {
903                 if (!g_ascii_strncasecmp(uuid + 9, "0000-1000-8000-00805F9B34FB", 27))
904                         offset = 4;
905                 else {
906                         offset = 0;
907                         uuid_len = 36;
908                 }
909         } else if (strlen(uuid) >= 8)
910                 offset = 4;
911
912         for (i = 0; bt_uuid_name[i].uuid; i++) {
913                 if (!g_ascii_strncasecmp(uuid + offset, bt_uuid_name[i].uuid, uuid_len))
914                         return (char *)bt_uuid_name[i].specification_name;
915         }
916
917         BT_INFO("Unknown uuid : %s", uuid);
918         return "Unknown";
919 }
920
921 const char *_bt_convert_error_to_string(int error)
922 {
923         switch (error) {
924         case BLUETOOTH_ERROR_CANCEL:
925                 return "CANCELLED";
926         case BLUETOOTH_ERROR_INVALID_PARAM:
927                 return "INVALID_PARAMETER";
928         case BLUETOOTH_ERROR_INVALID_DATA:
929                 return "INVALID DATA";
930         case BLUETOOTH_ERROR_MEMORY_ALLOCATION:
931         case BLUETOOTH_ERROR_OUT_OF_MEMORY:
932                 return "OUT_OF_MEMORY";
933         case BLUETOOTH_ERROR_TIMEOUT:
934                 return "TIMEOUT";
935         case BLUETOOTH_ERROR_NO_RESOURCES:
936                 return "NO_RESOURCES";
937         case BLUETOOTH_ERROR_INTERNAL:
938                 return "INTERNAL";
939         case BLUETOOTH_ERROR_NOT_SUPPORT:
940                 return "NOT_SUPPORT";
941         case BLUETOOTH_ERROR_DEVICE_NOT_ENABLED:
942                 return "NOT_ENABLED";
943         case BLUETOOTH_ERROR_DEVICE_ALREADY_ENABLED:
944                 return "ALREADY_ENABLED";
945         case BLUETOOTH_ERROR_DEVICE_BUSY:
946                 return "DEVICE_BUSY";
947         case BLUETOOTH_ERROR_ACCESS_DENIED:
948                 return "ACCESS_DENIED";
949         case BLUETOOTH_ERROR_MAX_CLIENT:
950                 return "MAX_CLIENT";
951         case BLUETOOTH_ERROR_NOT_FOUND:
952                 return "NOT_FOUND";
953         case BLUETOOTH_ERROR_SERVICE_SEARCH_ERROR:
954                 return "SERVICE_SEARCH_ERROR";
955         case BLUETOOTH_ERROR_PARING_FAILED:
956                 return "PARING_FAILED";
957         case BLUETOOTH_ERROR_NOT_PAIRED:
958                 return "NOT_PAIRED";
959         case BLUETOOTH_ERROR_SERVICE_NOT_FOUND:
960                 return "SERVICE_NOT_FOUND";
961         case BLUETOOTH_ERROR_NOT_CONNECTED:
962                 return "NOT_CONNECTED";
963         case BLUETOOTH_ERROR_ALREADY_CONNECT:
964                 return "ALREADY_CONNECT";
965         case BLUETOOTH_ERROR_CONNECTION_BUSY:
966                 return "CONNECTION_BUSY";
967         case BLUETOOTH_ERROR_CONNECTION_ERROR:
968                 return "CONNECTION_ERROR";
969         case BLUETOOTH_ERROR_MAX_CONNECTION:
970                 return "MAX_CONNECTION";
971         case BLUETOOTH_ERROR_NOT_IN_OPERATION:
972                 return "NOT_IN_OPERATION";
973         case BLUETOOTH_ERROR_CANCEL_BY_USER:
974                 return "CANCEL_BY_USER";
975         case BLUETOOTH_ERROR_REGISTRATION_FAILED:
976                 return "REGISTRATION_FAILED";
977         case BLUETOOTH_ERROR_IN_PROGRESS:
978                 return "IN_PROGRESS";
979         case BLUETOOTH_ERROR_AUTHENTICATION_FAILED:
980                 return "AUTHENTICATION_FAILED";
981         case BLUETOOTH_ERROR_HOST_DOWN:
982                 return "HOST_DOWN";
983         case BLUETOOTH_ERROR_END_OF_DEVICE_LIST:
984                 return "END_OF_DEVICE_LIST";
985         case BLUETOOTH_ERROR_AGENT_ALREADY_EXIST:
986                 return "AGENT_ALREADY_EXIST";
987         case BLUETOOTH_ERROR_AGENT_DOES_NOT_EXIST:
988                 return "AGENT_DOES_NOT_EXIST";
989         case BLUETOOTH_ERROR_ALREADY_INITIALIZED:
990                 return "ALREADY_INITIALIZED";
991         case BLUETOOTH_ERROR_PERMISSION_DEINED:
992                 return "PERMISSION_DEINED";
993         case BLUETOOTH_ERROR_ALREADY_DEACTIVATED:
994                 return "ALREADY_DEACTIVATED";
995         case BLUETOOTH_ERROR_NOT_INITIALIZED:
996                 return "NOT_INITIALIZED";
997         case BLUETOOTH_ERROR_AUTHENTICATION_REJECTED:
998                 return "AUTHENTICATION REJECTED";
999         default:
1000                 return "UNKNOWN";
1001         }
1002 }
1003
1004 const char *_bt_convert_disc_reason_to_string(int reason)
1005 {
1006         switch (reason) {
1007         case (int)BLUETOOTH_ERROR_PAGE_TIMEOUT:
1008                 return "Page timeout";
1009         case (int)BLUETOOTH_ERROR_CONNECTION_TIMEOUT:
1010                 return "Link loss";
1011         case (int)BLUETOOTH_ERROR_PIN_OR_KEY_MISSING:
1012                 return "PIN or Key missing";
1013         case (int)BLUETOOTH_ERROR_LOCAL_HOST_TERM:
1014                 return "Connection terminated by local host";
1015         case (int)BLUETOOTH_ERROR_REMOTE_USER_TERM:
1016         case (int)BLUETOOTH_ERROR_REMOTE_LOW_RESOURCES:
1017         case (int)BLUETOOTH_ERROR_REMOTE_POWER_OFF:
1018                 return "Remote user terminated connection";
1019         case (int)BLUETOOTH_ERROR_AUTH_FAILURE:
1020                 return "Authentication Failure";
1021         case (int)BLUETOOTH_ERROR_REPEATED_ATTEMPTS:
1022                 return "Repeated attempts";
1023         case (int)BLUETOOTH_ERROR_LMP_RESPONSE_TIMEOUT:
1024                 return "LMP response timeout";
1025         case (int)BLUETOOTH_ERROR_LMP_TRANSACTION_COLLISION:
1026                 return "LMP transaction collision";
1027         case (int)BLUETOOTH_ERROR_INSTANT_PASSED:
1028                 return "Instant passed";
1029         case (int)BLUETOOTH_ERROR_INSUFFICIENT_SECURITY:
1030                 return "Insufficient security";
1031         case (int)BLUETOOTH_ERROR_CONNECTION_TERMINATED_DUE_TO_MIC_FAILURE:
1032                 return "Connection terminated due to MIC failure";
1033         case (int)BLUETOOTH_ERROR_CONNECTION_FAILED_TO_BE_ESTABLISHED:
1034                 return "Connection failed to be established";
1035         default:
1036                 return "Unknown";
1037         }
1038 }
1039
1040 const char *_bt_convert_profile_state_to_string(bt_profile_state_t state)
1041 {
1042         switch (state) {
1043         case BT_PROFILE_STATE_UNAVAILABLE:
1044                 return "UNAVAILABLE";
1045         case BT_PROFILE_STATE_DISCONNECTED:
1046                 return "DISCONNECTED";
1047         case BT_PROFILE_STATE_CONNECTING:
1048                 return "CONNECTING";
1049         case BT_PROFILE_STATE_CONNECTED:
1050                 return "CONNECTED";
1051         case BT_PROFILE_STATE_DISCONNECTING:
1052                 return "DISCONNECTING";
1053         }
1054
1055         return NULL;
1056 }
1057
1058 void _bt_logging_connection(gboolean connect, int addr_type)
1059 {
1060         static int le_conn = 0;
1061         static int le_disc = 0;
1062         static int edr_conn = 0;
1063         static int edr_disc = 0;
1064
1065         if (connect) {
1066                 if (addr_type)
1067                         le_conn++;
1068                 else
1069                         edr_conn++;
1070         } else {
1071                 if (addr_type)
1072                         le_disc++;
1073                 else
1074                         edr_disc++;
1075         }
1076
1077         BT_INFO("[PM] Number of LE conn: %d disc: %d, Number of BR/EDR conn: %d disc: %d",
1078                         le_conn, le_disc, edr_conn, edr_disc);
1079 }
1080
1081 void _bt_swap_byte_ordering(char *data, int data_len)
1082 {
1083         char temp;
1084         int i, j;
1085         int half = data_len / 2;
1086
1087         ret_if(data == NULL);
1088         /* Swap to opposite endian */
1089         for (i = 0, j = data_len - 1; i < half; i++, j--) {
1090                 temp = data[i];
1091                 data[i] = data[j];
1092                 data[j] = temp;
1093         }
1094 }
1095
1096 int _bt_byte_arr_cmp(const char *data1, const char *data2, int data_len)
1097 {
1098         int i;
1099
1100         retv_if(data1 == NULL, -1);
1101         retv_if(data2 == NULL, -1);
1102         for (i = 0; i < data_len; i++) {
1103                 if (data1[i] != data2[i])
1104                         return data1[i] - data2[i];
1105                 }
1106         return 0;
1107 }
1108 int _bt_byte_arr_cmp_with_mask(const char *data1, const char *data2,
1109         const char *mask, int data_len)
1110 {
1111         int i;
1112         char a, b;
1113
1114         retv_if(data1 == NULL, -1);
1115         retv_if(data2 == NULL, -1);
1116         retv_if(mask == NULL, -1);
1117         for (i = 0; i < data_len; i++) {
1118                 a = data1[i] & mask[i];
1119                 b = data2[i] & mask[i];
1120                 if (a != b)
1121                         return (int)(a - b);
1122                 }
1123         return 0;
1124 }
1125
1126 int _bt_eventsystem_set_value(const char *event, const char *key, const char *value)
1127 {
1128         int ret = ES_R_OK;
1129 /* Send event system event in bt-core process because bt-service's permission is not system in now */
1130
1131 #if 0
1132         bundle *b = NULL;
1133
1134         b = bundle_create();
1135
1136         bundle_add_str(b, key, value);
1137
1138         ret = eventsystem_send_system_event(event, b);
1139
1140         BT_DBG("eventsystem_send_system_event result: %d", ret);
1141
1142         bundle_free(b);
1143 #endif
1144         return ret;
1145 }
1146
1147 void __bt_get_auth_info(GVariant *reply, char *auth_info)
1148 {
1149         int cursor;
1150         GVariant *tmp_value;
1151         char *manufacturer_data = NULL;
1152         int manufacturer_data_len;
1153         gboolean is_alias_set;
1154         GVariantIter *value_iter;
1155         guint8 m_value;
1156         int i = 0;
1157
1158         tmp_value = g_variant_lookup_value(reply, "IsAliasSet",
1159                                                                 G_VARIANT_TYPE_BOOLEAN);
1160         if (tmp_value) {
1161                 is_alias_set = g_variant_get_boolean(tmp_value);
1162                 g_variant_unref(tmp_value);
1163         } else {
1164                 is_alias_set = FALSE;
1165         }
1166         if (is_alias_set == FALSE) {
1167                 tmp_value = g_variant_lookup_value(reply, "ManufacturerDataLen",
1168                                                                 G_VARIANT_TYPE_UINT16);
1169                 if (tmp_value) {
1170                         manufacturer_data_len = g_variant_get_uint16(tmp_value);
1171                         if (manufacturer_data_len >
1172                                         BLUETOOTH_MANUFACTURER_DATA_LENGTH_MAX) {
1173                                 BT_ERR("manufacturer_data_len is too long");
1174                                 manufacturer_data_len = BLUETOOTH_MANUFACTURER_DATA_LENGTH_MAX;
1175                         }
1176                         g_variant_unref(tmp_value);
1177                 } else
1178                         manufacturer_data_len = 0;
1179
1180                 tmp_value = g_variant_lookup_value(reply, "ManufacturerData",
1181                                                                 G_VARIANT_TYPE_ARRAY);
1182                 if (tmp_value) {
1183                         if ((manufacturer_data_len == 0) ||
1184                                         manufacturer_data_len != g_variant_get_size(tmp_value)) {
1185                                 BT_ERR("manufacturer data length doesn't match");
1186                                 manufacturer_data_len = 0;
1187                                 manufacturer_data = NULL;
1188                         } else {
1189                                 manufacturer_data = g_malloc0(manufacturer_data_len);
1190                                 g_variant_get(tmp_value, "ay", &value_iter);
1191                                 while (g_variant_iter_loop(value_iter, "y", &m_value))
1192                                         manufacturer_data[i++] = m_value;
1193                         }
1194                         g_variant_unref(tmp_value);
1195                 } else {
1196                         BT_INFO("manufacture data is not a G_VARIANT_TYPE_ARRAY ");
1197                         manufacturer_data_len = 0;
1198                         manufacturer_data = NULL;
1199                 }
1200                 /*minimum Size of the samsung specific manufacturer data is greater than 30 */
1201                 if (manufacturer_data_len < 30) {
1202                         g_free(manufacturer_data);
1203                         return;
1204                 }
1205                 if (manufacturer_data[0] != 0x00 || manufacturer_data[1] != 0x75) {
1206                         BT_DBG("This is not a samsung specific manufaturer data");
1207                         g_free(manufacturer_data);
1208                         return;
1209                 }
1210
1211                 /* 2  samsung (0x00 0x75) + 1 (control and version) + 1 (service ID) +
1212                 1 (discovery version) + 1 (associated service ID)
1213                 2 (Proxamity and locality) + 2 (Device type and icon) */
1214
1215                 cursor = 10;
1216
1217                 memcpy(auth_info, &(manufacturer_data[cursor]), 5);
1218         }
1219          g_free(manufacturer_data);
1220 }
1221
1222 int _bt_convert_gerror(GError *g_error)
1223 {
1224         int ret = BLUETOOTH_ERROR_INTERNAL;
1225         gchar *str;
1226
1227         if (!g_dbus_error_strip_remote_error(g_error))
1228                 return ret;
1229
1230         str = g_error->message;
1231
1232         if (g_strcmp0(str, "Connection refused") == 0)
1233                 ret = BLUETOOTH_ERROR_AUTHENTICATION_REJECTED;
1234         else if (g_strcmp0(str, "Connection timed out") == 0)
1235                 ret = BLUETOOTH_ERROR_TIMEOUT;
1236         else if (g_strcmp0(str, "In Progress") == 0)
1237                 ret = BLUETOOTH_ERROR_IN_PROGRESS;
1238
1239         return ret;
1240 }