Mesh: Fix network proxy issue
[platform/core/connectivity/bluetooth-frwk.git] / bt-service / services / bt-request-handler.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 <string.h>
19 #include <stdio.h>
20 #include <glib.h>
21 #include <dlog.h>
22 #include <gio/gio.h>
23 #include <gio/gunixfdlist.h>
24 #include <cynara-client.h>
25 #include <cynara-creds-gdbus.h>
26 #include <systemd/sd-daemon.h>
27 #include <aul.h>
28
29 #include "bluetooth-api.h"
30 #include "bluetooth-audio-api.h"
31 #include "bluetooth-gatt-server-api.h"
32 #include "bluetooth-mesh-api.h"
33 #include "bt-request-handler.h"
34 #include "bt-service-common.h"
35 #include "bt-service-util.h"
36
37 #include "bt-service-core-adapter.h"
38 #include "bt-service-core-adapter-le.h"
39 #include "bt-service-core-device.h"
40
41 #include "bt-service-audio-common.h"
42 #include "bt-service-avrcp-tg.h"
43 #include "bt-service-avrcp-ctrl.h"
44 #include "bt-service-gatt.h"
45 #include "bt-service-mesh-main.h"
46 #include "bt-service-mesh-util.h"
47 #include "bt-service-mesh-network.h"
48 #include "bt-service-mesh-config-client.h"
49 #include "bt-service-mesh-model.h"
50 #include "bt-service-dpm.h"
51 #include "bt-service-hidhost.h"
52 #include "bt-service-rfcomm.h"
53 #include "bt-service-hdp.h"
54
55 /*Obex*/
56 #include "bt-service-obex-server.h"
57 #include "bt-service-opp-client.h"
58 #include "bt-service-map-client.h"
59 #include "bt-service-pbap.h"
60 #include "bt-service-oob.h"
61
62 #include "bt-service-battery-monitor.h"
63
64 #ifdef TIZEN_FEATURE_BT_PAN_NAP
65 #include "bt-service-network.h"
66 #endif
67
68 #ifdef TIZEN_FEATURE_BT_IPSP
69 #include "bt-service-ipsp.h"
70 #endif
71 /* For maintaining Application Sync API call requests */
72 static GSList *invocation_list = NULL;
73
74 static GDBusConnection *bt_service_conn;
75 static guint owner_id = 0;
76 static guint owner_sig_id = 0;
77 static gboolean is_le_intended = FALSE;
78
79 static cynara *p_cynara;
80 static cynara_configuration *conf;
81 static const char *requester_unique_creds = NULL;
82
83 static const gchar bt_service_introspection_xml[] =
84 "<node name='/org/projectx/bt_service'>"
85 "       <interface name='org.projectx.bt'>"
86 "               <method name='service_request'>"
87                         /* Input Parameters */
88 "                       <arg type='i' name='service_type' direction='in' />"
89 "                       <arg type='i' name='service_function' direction='in' />"
90 "                       <arg type='i' name='request_type' direction='in' />"
91 "                       <arg type='ay' name='input_param1' direction='in' />"
92 "                       <arg type='ay' name='input_param2' direction='in' />"
93 "                       <arg type='ay' name='input_param3' direction='in' />"
94 "                       <arg type='ay' name='input_param4' direction='in' />"
95 "                       <arg type='ay' name='input_param5' direction='in' />"
96                         /* Return Parameters */
97 "                       <arg type='i' name='output_param1' direction='out' />"
98 "                       <arg type='v' name='output_param2' direction='out' />"
99 "               </method>"
100 "               <method name='get_avc_mode'>"
101                         /* Out Parameters */
102 "                       <arg type='u' name='avc_mode' direction='out' />"
103 "               </method>"
104 "       </interface>"
105 "</node>";
106
107 static gboolean name_acquired = FALSE;
108
109 static char *current_sender_playing = NULL;
110
111 GDBusNodeInfo *node_info_g = NULL;
112
113 static void __bt_fill_garray_from_variant(GVariant *var, GArray *param);
114
115 static void __bt_service_method(GDBusConnection *connection,
116                 const gchar *sender,
117                 const gchar *object_path,
118                 const gchar *interface_name,
119                 const gchar *method_name,
120                 GVariant *parameters,
121                 GDBusMethodInvocation *invocation,
122                 gpointer user_data);
123
124 int __bt_bluez_request(int function_name,
125                 int request_type,
126                 int request_id,
127                 GDBusMethodInvocation *context,
128                 GVariant *in_param1,
129                 GVariant *in_param2,
130                 GVariant *in_param3,
131                 GVariant *in_param4,
132                 GArray **out_param1);
133 int __bt_obexd_request(int function_name,
134                 int request_type,
135                 int request_id,
136                 GDBusMethodInvocation *context,
137                 GVariant *in_param1,
138                 GVariant *in_param2,
139                 GVariant *in_param3,
140                 GVariant *in_param4,
141                 GArray **out_param1);
142 int __bt_agent_request(int function_name,
143                 int request_type,
144                 int request_id,
145                 GDBusMethodInvocation *context,
146                 GVariant *in_param1,
147                 GVariant *in_param2,
148                 GVariant *in_param3,
149                 GVariant *in_param4,
150                 GArray **out_param1);
151 int __bt_core_request(int function_name,
152                 int request_type,
153                 int request_id,
154                 GDBusMethodInvocation *context,
155                 GVariant *in_param1);
156
157 gboolean __bt_service_check_privilege(int function_name,
158                                         int service_type,
159                                         const char *unique_name);
160
161 /* Function definitions*/
162 GSList *_bt_get_invocation_list(void)
163 {
164         return invocation_list;
165 }
166
167 void _bt_free_info_from_invocation_list(invocation_info_t *req_info)
168 {
169         ret_if(NULL == req_info);
170         invocation_list = g_slist_remove(invocation_list, req_info);
171         g_free(req_info->sender);
172         g_free(req_info->user_data);
173         g_free(req_info);
174 }
175
176 void _bt_set_le_intended_status(gboolean value)
177 {
178         is_le_intended = value;
179 }
180
181 static void __bt_service_get_parameters(GVariant *in_param,
182                 void *value, int size)
183 {
184         void *buf = NULL;
185         buf = (void *)g_variant_get_data(in_param);
186         memcpy(value, buf, size);
187 }
188
189 static gboolean __bt_is_sync_function(int service_function)
190 {
191         /*TODO: Keep adding sync methods with expect replies from bluetooth service */
192         if (service_function == BT_GET_LOCAL_ADDRESS
193                         || service_function == BT_GET_LOCAL_NAME
194                         || service_function == BT_GET_LOCAL_VERSION
195                         || service_function == BT_GET_BONDED_DEVICES
196                         || service_function == BT_GET_BONDED_DEVICE
197                         || service_function == BT_GET_PROFILE_CONNECTED_DEVICES
198                         || service_function == BT_GET_IS_ALIAS_SET
199                         || service_function == BT_GET_CONNECTED_LINK_TYPE
200                         || service_function == BT_IS_SERVICE_USED
201                         || service_function == BT_RFCOMM_LISTEN_AND_ACCEPT
202                         || service_function == BT_RFCOMM_LISTEN
203                         || service_function == BT_HDP_REGISTER_SINK_APP
204                         || service_function == BT_HDP_UNREGISTER_SINK_APP
205                         || service_function == BT_HDP_GET_FD
206                         || service_function == BT_AVRCP_GET_TRACK_INFO
207                         || service_function == BT_AVRCP_CONTROL_GET_PROPERTY
208                         || service_function == BT_SET_ADVERTISING_DATA
209                         || service_function == BT_SET_SCAN_RESPONSE_DATA
210                         || service_function == BT_SET_ADVERTISING
211                         || service_function == BT_SET_CUSTOM_ADVERTISING
212                         || service_function == BT_GATT_SERVER_REGISTER
213                         || service_function == BT_GATT_SERVER_ADD_SERVICE
214                         || service_function == BT_GATT_SERVER_ADD_CHARACTERISTIC
215                         || service_function == BT_GATT_SERVER_ADD_DESCRIPTOR
216                         || service_function == BT_GATT_SERVER_START_SERVICE
217                         || service_function == BT_GATT_SERVER_STOP_SERVICE
218                         || service_function == BT_GATT_SERVER_DELETE_SERVICE
219                         || service_function == BT_START_LE_DISCOVERY
220                         || service_function == BT_STOP_LE_DISCOVERY
221                         || service_function == BT_GET_CONNECTABLE
222                         || service_function == BT_GATT_CLIENT_REGISTER
223                         || service_function == BT_GATT_GET_PRIMARY_SERVICES
224                         || service_function == BT_GATT_GET_SERVICE_PROPERTIES
225                         || service_function == BT_GATT_GET_INCLUDED_SERVICES
226                         || service_function == BT_GATT_GET_CHARACTERISTIC_PROPERTIES
227                         || service_function == BT_GATT_WATCH_CHARACTERISTIC
228                         || service_function == BT_GATT_ACQUIRE_WRITE
229                         || service_function == BT_AUDIO_SELECT_ROLE
230                         /* Mesh API's */
231                         || service_function == BT_MESH_INIT
232                         || service_function == BT_MESH_NETWORK_CREATE
233                         || service_function == BT_MESH_NETWORK_DESTROY
234                         || service_function == BT_MESH_NETWORK_LOAD
235                         || service_function == BT_MESH_NETWORK_SCAN
236                         || service_function == BT_MESH_NETWORK_ADD_NETKEY
237                         || service_function == BT_MESH_NETWORK_DELETE_NETKEY
238                         || service_function == BT_MESH_NETWORK_UPDATE_NETKEY
239                         || service_function == BT_MESH_NETWORK_ADD_APPKEY
240                         || service_function == BT_MESH_NETWORK_DELETE_APPKEY
241                         || service_function == BT_MESH_NETWORK_UPDATE_APPKEY)
242                 return TRUE;
243         else
244                 return FALSE;
245 }
246
247 void _bt_save_invocation_context(GDBusMethodInvocation *invocation, int result,
248                 char *sender, int service_function,
249                 gpointer invocation_data)
250 {
251         invocation_info_t *info;
252         info = g_malloc0(sizeof(invocation_info_t));
253         info->context = invocation;
254         info->result = result;
255         info->sender = g_strdup(sender);
256         info->service_function = service_function;
257         info->user_data = invocation_data;
258         invocation_list = g_slist_append(invocation_list, info);
259
260 }
261
262 static int __bt_service_get_sender_pid(const char *unique_name, pid_t *pid)
263 {
264         int ret;
265         char err_msg[256] = {0, };
266
267         retv_if(bt_service_conn == NULL, BLUETOOTH_ERROR_INTERNAL);
268
269         ret = cynara_creds_gdbus_get_pid(bt_service_conn, unique_name, pid);
270         if (ret != CYNARA_API_SUCCESS) {
271                 cynara_strerror(ret, err_msg, sizeof(err_msg));
272                 BT_ERR("Fail to get user credential: %s", err_msg);
273
274                 return BLUETOOTH_ERROR_INTERNAL;
275         }
276
277         return BLUETOOTH_ERROR_NONE;
278 }
279
280 static int __bt_bm_request_data(_bt_battery_data_t *latest)
281 {
282         int ret = _bt_bm_read_data(latest);
283         if (ret == BLUETOOTH_ERROR_NONE) {
284                 BT_DBG("Received data from bluetooth battery monitor: %ld %ld %d %d",
285                         latest->session_start_time, latest->session_end_time,
286                                 latest->session_scan_time, latest->session_connected_time);
287
288                 if (latest->atm_list == NULL) {
289                         BT_DBG("No app data transaction for this session");
290                         return ret;
291                 }
292
293                 for (GSList *l = latest->atm_list; l != NULL; l = g_slist_next(l)) {
294                         _bt_battery_app_data_t *t = (_bt_battery_app_data_t *)(l->data);
295                         BT_DBG("%ld %ld %d %d", (long int)(t->uid), (long int)(t->pid), t->rx_bytes, t->tx_bytes);
296                 }
297         }
298         else
299                 BT_ERR("Error encountered");
300         return ret;
301 }
302
303 static void __bt_service_method(GDBusConnection *connection,
304                 const gchar *sender,
305                 const gchar *object_path,
306                 const gchar *interface_name,
307                 const gchar *method_name,
308                 GVariant *parameters,
309                 GDBusMethodInvocation *invocation,
310                 gpointer user_data)
311 {
312         FN_START;
313
314         BT_DBG("Method[%s] Object Path[%s] Interface Name[%s]",
315                         method_name, object_path, interface_name);
316
317         if (g_strcmp0(method_name, "service_request") == 0) {
318                 int service_type;
319                 int service_function;
320                 int request_type;
321                 GVariant *param1 = NULL;
322                 GVariant *param2 = NULL;
323                 GVariant *param3 = NULL;
324                 GVariant *param4 = NULL;
325                 GVariant *param5 = NULL;
326                 GArray *out_param1 = NULL;
327                 GVariant *out_var = NULL;
328                 GVariant *temp = NULL;
329                 int result = 0;
330                 int request_id = -1;
331
332                 g_variant_get(parameters, "(iii@ay@ay@ay@ay@ay)", &service_type,
333                                 &service_function, &request_type,
334                                 &param1, &param2, &param3, &param4, &param5);
335
336                 out_param1 = g_array_new(FALSE, FALSE, sizeof(gchar));
337
338                 if (service_type == BT_CORE_SERVICE) {
339                         BT_DBG("No need to check privilege from bt-core");
340                 } else if (__bt_service_check_privilege(service_function,
341                                         service_type, (const char *)sender) == FALSE) {
342                         BT_ERR("Client don't have the privilege to excute this function");
343                         result = BLUETOOTH_ERROR_PERMISSION_DEINED;
344                         goto fail;
345                 }
346
347                 BT_DBG("SERVICE TYPE [%d] SERVICE FUNC [%d]",
348                                 service_type, service_function);
349                 switch (service_type) {
350                 case BT_BLUEZ_SERVICE:
351                         result = __bt_bluez_request(service_function,
352                                         request_type, request_id,
353                                         invocation, param1, param2,
354                                         param3, param4, &out_param1);
355                         break;
356                 case BT_OBEX_SERVICE:
357                         result = __bt_obexd_request(service_function,
358                                         request_type, request_id,
359                                         invocation, param1,
360                                         param2, param3,
361                                         param4, &out_param1);
362                         break;
363                 case BT_AGENT_SERVICE:
364                         result = __bt_agent_request(service_function,
365                                         request_type, request_id,
366                                         invocation, param1,
367                                         param2, param3,
368                                         param4, &out_param1);
369                         break;
370                 case BT_CORE_SERVICE:
371                         result = __bt_core_request(service_function,
372                                         request_type, request_id,
373                                         invocation, param1);
374                         break;
375                 case BT_CHECK_PRIVILEGE:
376                         result = BLUETOOTH_ERROR_NONE;
377                         break;
378                 default:
379                         BT_ERR("Unknown service type");
380                         result = BLUETOOTH_ERROR_INTERNAL;
381                         goto fail;
382                 }
383
384                 if (result != BLUETOOTH_ERROR_NONE)
385                         goto fail;
386
387                 if (service_type == BT_CHECK_PRIVILEGE)
388                         goto send_reply;
389
390                 if (service_function == BT_OPP_PUSH_FILES)
391                         goto done;
392
393                 if (request_type == BT_ASYNC_REQ ||
394                                 __bt_is_sync_function(service_function)) {
395                         /* Do not send reply to bt-api over dbus,
396                                 Invocation context is already saved in service_function */
397                         goto done;
398                 }
399
400 send_reply:
401                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
402                                 out_param1->data, out_param1->len,
403                                 TRUE, NULL, NULL);
404
405                 temp = g_variant_new("(iv)", result, out_var);
406                 g_dbus_method_invocation_return_value(invocation, temp);
407                 g_array_free(out_param1, TRUE);
408                 out_param1 = NULL;
409
410 done:
411                 g_variant_unref(param1);
412                 g_variant_unref(param2);
413                 g_variant_unref(param3);
414                 g_variant_unref(param4);
415                 g_variant_unref(param5);
416                 FN_END;
417                 return;
418 fail:
419                 BT_ERR_C("Request is failed [%s] [0x%x]",
420                                 _bt_convert_error_to_string(result), result);
421
422                 out_var = g_variant_new_from_data((const GVariantType *)"ay",
423                                 out_param1->data, out_param1->len,
424                                 TRUE, NULL, NULL);
425
426                 temp = g_variant_new("(iv)", result, out_var);
427                 g_dbus_method_invocation_return_value(invocation, temp);
428
429                 g_array_free(out_param1, TRUE);
430                 out_param1 = NULL;
431
432                 g_variant_unref(param1);
433                 g_variant_unref(param2);
434                 g_variant_unref(param3);
435                 g_variant_unref(param4);
436                 g_variant_unref(param5);
437         }
438         else if (g_strcmp0(method_name, "get_avc_mode") == 0) {
439                 unsigned int mode = 0;
440
441                 if (_bt_audio_get_avc_mode(&mode) != BLUETOOTH_ERROR_NONE)
442                         BT_ERR("Fail to get the avc mode");
443
444                 BT_DBG("Absolute Volume Control mode: %d", mode);
445
446                 g_dbus_method_invocation_return_value(invocation,
447                         g_variant_new("(u)", mode));
448         }
449
450         FN_END;
451         return;
452 }
453
454
455 static const GDBusInterfaceVTable method_table = {
456         __bt_service_method,
457         NULL,
458         NULL,
459         {0}
460 };
461
462 int __bt_bluez_request(int function_name,
463                 int request_type,
464                 int request_id,
465                 GDBusMethodInvocation *context,
466                 GVariant *in_param1,
467                 GVariant *in_param2,
468                 GVariant *in_param3,
469                 GVariant *in_param4,
470                 GArray **out_param1)
471 {
472         int result = BLUETOOTH_ERROR_NONE;
473         char *sender = NULL;
474
475         switch (function_name) {
476         case BT_ENABLE_ADAPTER: {
477                 result = _bt_enable_adapter();
478                 _bt_adapter_start_enable_timer();
479                 break;
480         }
481         case BT_DISABLE_ADAPTER: {
482                 result = _bt_disable_adapter();
483                 break;
484         }
485         case BT_RECOVER_ADAPTER:
486                  result = _bt_recover_adapter();
487                  break;
488         case BT_RESET_ADAPTER:
489                 result = _bt_reset_adapter();
490                 break;
491         case BT_BATTERY_READ_DATA: {
492                 _bt_battery_data_t *data = NULL;
493                 data = g_malloc0(sizeof(_bt_battery_data_t));
494                 result = __bt_bm_request_data(data);
495
496                 bt_battery_dbus_data_t dbus_data;
497                 memset(&dbus_data, 0, sizeof(bt_battery_dbus_data_t));
498                 dbus_data.session_start_time = data->session_start_time;
499                 dbus_data.session_end_time = data->session_end_time;
500                 dbus_data.session_scan_time = data->session_scan_time;
501                 dbus_data.session_connected_time = data->session_connected_time;
502                 dbus_data.tx_time = data->tx_time;
503                 dbus_data.rx_time = data->rx_time;
504                 dbus_data.idle_time = data->idle_time;
505
506                 /*Populating app data*/
507                 int n = 0;
508                 for (GSList *l = data->atm_list; l != NULL; l = g_slist_next(l)) {
509                         bt_battery_app_data *t = (bt_battery_app_data *)(l->data);
510                         memcpy(&dbus_data.app_data[n], t, sizeof(bt_battery_app_data));
511                         n++;
512                 }
513                 dbus_data.num_app = n;
514                 g_array_append_vals(*out_param1, &dbus_data, sizeof(bt_battery_dbus_data_t));
515                 g_slist_free_full(data->atm_list, g_free);
516                 g_free(data);
517                 data = NULL;
518                 break;
519         }
520         case BT_CHECK_ADAPTER: {
521                 int enabled = BT_ADAPTER_DISABLED;
522                 result = _bt_check_adapter(&enabled);
523
524                 g_array_append_vals(*out_param1, &enabled,
525                                 sizeof(int));
526                 break;
527         }
528         case BT_ENABLE_ADAPTER_LE:
529                 _bt_set_le_intended_status(TRUE);
530                 result = _bt_enable_adapter_le();
531                 break;
532         case BT_DISABLE_ADAPTER_LE:
533                 _bt_set_le_intended_status(FALSE);
534                 result = _bt_disable_adapter_le();
535                 break;
536         case BT_START_DISCOVERY: {
537                 unsigned short max_response;
538                 unsigned short discovery_duration;
539                 unsigned int classOfDeviceMask;
540                 uid_t uid;
541
542                 __bt_service_get_parameters(in_param1,
543                                 &max_response, sizeof(unsigned short));
544                 __bt_service_get_parameters(in_param2,
545                                 &discovery_duration, sizeof(unsigned short));
546                 __bt_service_get_parameters(in_param3,
547                                 &classOfDeviceMask, sizeof(unsigned int));
548                 __bt_service_get_parameters(in_param4, &uid, sizeof(uid_t));
549
550                 result = _bt_start_discovery(max_response, discovery_duration, classOfDeviceMask);
551
552                 if (result == BLUETOOTH_ERROR_NONE) {
553                         pid_t pid;
554
555                         sender = (char*)g_dbus_method_invocation_get_sender(context);
556
557                         if (__bt_service_get_sender_pid(sender, &pid) != BLUETOOTH_ERROR_NONE)
558                                 BT_ERR("Fail to get the sender pid");
559
560                         BT_DBG("Remeber pid / uid for the scan operation");
561                         _bt_bm_add_scan_app(SCAN_REGACY, uid, pid);
562                 }
563
564                 break;
565         }
566         case BT_START_CUSTOM_DISCOVERY: {
567                 bt_discovery_role_type_t role;
568
569                 __bt_service_get_parameters(in_param1,
570                                 &role, sizeof(bt_discovery_role_type_t));
571                 result = _bt_start_custom_discovery(role);
572
573                 break;
574         }
575         case BT_CANCEL_DISCOVERY:
576                 result = _bt_cancel_discovery();
577                 break;
578         case BT_IS_DISCOVERYING: {
579                 gboolean discovering = FALSE;
580                 discovering = _bt_is_discovering();
581                 g_array_append_vals(*out_param1,
582                                 &discovering, sizeof(gboolean));
583                 break;
584         }
585         case BT_GET_LOCAL_ADDRESS: {
586                 result = _bt_get_local_address();
587
588                 /* Save invocation */
589                 if (result == BLUETOOTH_ERROR_NONE) {
590                         sender = (char*)g_dbus_method_invocation_get_sender(context);
591                         _bt_save_invocation_context(context, result, sender,
592                                         function_name, NULL);
593                 }
594                 break;
595         }
596         case BT_GET_LOCAL_VERSION: {
597                 result = _bt_get_local_version();
598
599                 /* Save invocation */
600                 if (result == BLUETOOTH_ERROR_NONE) {
601                         sender = (char*)g_dbus_method_invocation_get_sender(context);
602                         _bt_save_invocation_context(context, result, sender,
603                                         function_name, NULL);
604                 }
605                 break;
606         }
607         case BT_GET_LOCAL_NAME: {
608                 result = _bt_get_local_name();
609
610                 /* Save invocation */
611                 if (result == BLUETOOTH_ERROR_NONE) {
612                         sender = (char*)g_dbus_method_invocation_get_sender(context);
613                         _bt_save_invocation_context(context, result, sender,
614                                         function_name, NULL);
615                 }
616                 break;
617         }
618         case BT_SET_LOCAL_NAME: {
619                 bluetooth_device_name_t local_name = { {0} };
620                 __bt_service_get_parameters(in_param1,
621                                 &local_name, sizeof(bluetooth_device_name_t));
622                 result = _bt_set_local_name(local_name.name);
623                 break;
624         }
625         case BT_GET_DISCOVERABLE_MODE: {
626                 int discoverable_mode = BLUETOOTH_DISCOVERABLE_MODE_CONNECTABLE;
627                 result = _bt_get_discoverable_mode(&discoverable_mode);
628                 g_array_append_vals(*out_param1, &discoverable_mode, sizeof(int));
629                 break;
630         }
631         case BT_GET_DISCOVERABLE_TIME: {
632                 int timeout = 0;
633
634                 result = _bt_get_timeout_value(&timeout);
635                 g_array_append_vals(*out_param1, &timeout, sizeof(int));
636                 break;
637         }
638         case BT_SET_DISCOVERABLE_MODE: {
639                 int mode = BLUETOOTH_DISCOVERABLE_MODE_CONNECTABLE;
640                 int time = 0;
641
642                 __bt_service_get_parameters(in_param1, &mode, sizeof(int));
643                 __bt_service_get_parameters(in_param2, &time, sizeof(int));
644
645                 result = _bt_set_discoverable_mode(mode, time);
646                 break;
647         }
648         case BT_IS_CONNECTABLE: {
649                 gboolean is_connectable = FALSE;
650
651                 is_connectable = _bt_is_connectable();
652                 g_array_append_vals(*out_param1, &is_connectable, sizeof(gboolean));
653                 break;
654         }
655         case BT_GET_CONNECTABLE: {
656                 result  = _bt_get_connectable();
657
658                 /* Save invocation */
659                 if (result == BLUETOOTH_ERROR_NONE) {
660                          sender = (char*)g_dbus_method_invocation_get_sender(context);
661                          _bt_save_invocation_context(context, result, sender,
662                                          function_name, NULL);
663                 }
664                 break;
665         }
666         case BT_SET_CONNECTABLE: {
667                 gboolean is_connectable;
668
669                 __bt_service_get_parameters(in_param1,
670                                 &is_connectable, sizeof(gboolean));
671                 result = _bt_set_connectable(is_connectable);
672                 break;
673         }
674         case BT_IS_SERVICE_USED: {
675                 char *uuid = NULL;
676
677                 uuid = (char *)g_variant_get_data(in_param1);
678                 BT_INFO("UUID to be searched [%s]", uuid);
679                 result = _bt_is_service_used();
680
681                 /* Save invocation */
682                 if (result == BLUETOOTH_ERROR_NONE) {
683                         sender = (char*)g_dbus_method_invocation_get_sender(context);
684                         _bt_save_invocation_context(context, result, sender,
685                                         function_name, g_strdup(uuid));
686                 }
687                 break;
688         }
689         case BT_GET_BONDED_DEVICES: {
690                 result = _bt_get_bonded_devices();
691                 /* Save invocation */
692                 if (result == BLUETOOTH_ERROR_NONE) {
693                         sender = (char*)g_dbus_method_invocation_get_sender(context);
694                         _bt_save_invocation_context(context, result, sender,
695                                         function_name, NULL);
696                 }
697                 break;
698         }
699         case BT_GET_BONDED_DEVICE: {
700                 bluetooth_device_address_t address = { {0} };
701
702                 __bt_service_get_parameters(in_param1,
703                                 &address, sizeof(bluetooth_device_address_t));
704
705                 result = _bt_get_bonded_device_info(&address);
706                 /* Save invocation */
707                 if (result == BLUETOOTH_ERROR_NONE) {
708                         char *addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
709                         if (!addr) {
710                                 result = BLUETOOTH_ERROR_MEMORY_ALLOCATION;
711                                 break;
712                         }
713
714                         _bt_convert_addr_type_to_string(addr, address.addr);
715                         sender = (char*)g_dbus_method_invocation_get_sender(context);
716                         _bt_save_invocation_context(context, result, sender,
717                                         function_name, addr);
718                 }
719                 break;
720         }
721         case BT_GET_PROFILE_CONNECTED_DEVICES: {
722                 char *uuid;
723                 uuid = (char *)g_variant_get_data(in_param1);
724                 result = _bt_get_profile_connected_devices(uuid);
725
726                 /* Save invocation */
727                 if (result == BLUETOOTH_ERROR_NONE) {
728                         sender = (char *)g_dbus_method_invocation_get_sender(context);
729                         _bt_save_invocation_context(context, result, sender,
730                                         function_name, NULL);
731                 }
732                 break;
733         }
734         case BT_SET_ALIAS: {
735                 bluetooth_device_address_t address = { {0} };
736                 const char *local_name;
737
738                 __bt_service_get_parameters(in_param1,
739                                 &address, sizeof(bluetooth_device_address_t));
740                 local_name = (const char *)g_variant_get_data(in_param2);
741
742                 result = _bt_set_alias(&address, local_name);
743                 break;
744         }
745         case BT_BOND_DEVICE: {
746                 bluetooth_device_address_t address = { {0} };
747
748                 __bt_service_get_parameters(in_param1,
749                                 &address, sizeof(bluetooth_device_address_t));
750                 result = _bt_bond_device(&address, BLUETOOTH_DEV_CONN_DEFAULT, out_param1);
751
752                 /* Save invocation */
753                 if (result == BLUETOOTH_ERROR_NONE) {
754                         char * addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
755                         _bt_convert_addr_type_to_string(addr, address.addr);
756                         sender = (char*)g_dbus_method_invocation_get_sender(context);
757                         _bt_save_invocation_context(context, result, sender,
758                                         function_name, (gpointer)addr);
759                 } else {
760                         bluetooth_device_info_t dev_info;
761
762                         memset(&dev_info, 0x00, sizeof(bluetooth_device_info_t));
763                         memcpy(&dev_info.device_address, &address,
764                                         sizeof(bluetooth_device_address_t));
765                         g_array_append_vals(*out_param1, &dev_info,
766                                         sizeof(bluetooth_device_info_t));
767                 }
768                 break;
769         }
770         case BT_BOND_DEVICE_BY_TYPE: {
771                 bluetooth_device_address_t address = { {0} };
772                 unsigned short conn_type = 0;
773
774                 __bt_service_get_parameters(in_param1,
775                                 &address, sizeof(bluetooth_device_address_t));
776                 __bt_service_get_parameters(in_param2,
777                                 &conn_type, sizeof(unsigned short));
778
779                 result = _bt_bond_device(&address, conn_type, out_param1);
780                 /* Save invocation */
781                 if (result == BLUETOOTH_ERROR_NONE) {
782                         char * addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
783                         _bt_convert_addr_type_to_string(addr, address.addr);
784                         sender = (char*)g_dbus_method_invocation_get_sender(context);
785                         _bt_save_invocation_context(context, result, sender,
786                                         function_name, (gpointer)addr);
787                 } else {
788                         bluetooth_device_info_t dev_info;
789
790                         memset(&dev_info, 0x00, sizeof(bluetooth_device_info_t));
791                         memcpy(&dev_info.device_address, &address,
792                                         sizeof(bluetooth_device_address_t));
793                         g_array_append_vals(*out_param1, &dev_info,
794                                         sizeof(bluetooth_device_info_t));
795                 }
796                 break;
797         }
798         case BT_UNBOND_DEVICE: {
799                 bluetooth_device_address_t address = { {0} };
800
801                 __bt_service_get_parameters(in_param1,
802                                 &address, sizeof(bluetooth_device_address_t));
803                 result = _bt_unbond_device(&address, out_param1);
804
805                 /* Save invocation */
806                 if (result == BLUETOOTH_ERROR_NONE) {
807                         char * addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
808                         _bt_convert_addr_type_to_string(addr, address.addr);
809                         sender = (char*)g_dbus_method_invocation_get_sender(context);
810                         _bt_save_invocation_context(context, result, sender,
811                                         function_name, (gpointer)addr);
812                 } else {
813                         g_array_append_vals(*out_param1, &address,
814                                         sizeof(bluetooth_device_address_t));
815                 }
816                 break;
817         }
818         case BT_CANCEL_BONDING:{
819                 result = _bt_cancel_bonding();
820                 break;
821         }
822         case BT_SEARCH_SERVICE: {
823                 bluetooth_device_address_t address = { {0} };
824                 __bt_service_get_parameters(in_param1,
825                                 &address, sizeof(bluetooth_device_address_t));
826                 result = _bt_search_device(&address);
827                 /* Save invocation */
828                 if (result == BLUETOOTH_ERROR_NONE) {
829                         char * addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
830                         _bt_convert_addr_type_to_string(addr, address.addr);
831                         sender = (char*)g_dbus_method_invocation_get_sender(context);
832                         _bt_save_invocation_context(context, result, sender,
833                                         function_name, (gpointer)addr);
834                 } else {
835                         bt_sdp_info_t sdp_info;
836
837                         memset(&sdp_info, 0x00, sizeof(bt_sdp_info_t));
838                         memcpy(&sdp_info.device_addr, &address,
839                                         sizeof(bluetooth_device_address_t));
840                         g_array_append_vals(*out_param1, &sdp_info, sizeof(bt_sdp_info_t));
841                 }
842                 break;
843         }
844         case BT_CANCEL_SEARCH_SERVICE: {
845                 result = _bt_cancel_search_device();
846                 break;
847         }
848         case BT_SET_PASSKEY_NOTIFICATION: {
849                 char *sender = NULL;
850                 gboolean enable;
851
852                 sender = (char *)g_dbus_method_invocation_get_sender(context);
853                 __bt_service_get_parameters(in_param1,
854                                 &enable, sizeof(gboolean));
855
856                 result = _bt_set_passkey_notification(sender, enable);
857                 break;
858         }
859         case BT_SET_PIN_CODE: {
860                 bluetooth_device_address_t address = { {0} };
861                 bluetooth_device_pin_code_t pin_code = { {0} };
862
863                 __bt_service_get_parameters(in_param1,
864                                 &address, sizeof(bluetooth_device_address_t));
865                 __bt_service_get_parameters(in_param2,
866                                 &pin_code, sizeof(bluetooth_device_pin_code_t));
867
868                 result = _bt_set_pin_code(&address, &pin_code);
869                 break;
870         }
871         case BT_UNSET_PIN_CODE: {
872                 bluetooth_device_address_t address = { {0} };
873
874                 __bt_service_get_parameters(in_param1,
875                                 &address, sizeof(bluetooth_device_address_t));
876
877                 result = _bt_unset_pin_code(&address);
878                 break;
879         }
880         case BT_PASSKEY_REPLY: {
881                 const char *passkey = NULL;
882                 gboolean authentication_reply = FALSE;
883                 passkey = g_variant_get_data(in_param1);
884                 __bt_service_get_parameters(in_param2,
885                                 &authentication_reply, sizeof(gboolean));
886                 result = _bt_passkey_reply(passkey, authentication_reply);
887                 break;
888         }
889         case BT_PASSKEY_CONFIRMATION_REPLY: {
890                 gboolean confirmation_reply = FALSE;
891                 __bt_service_get_parameters(in_param1,
892                                 &confirmation_reply, sizeof(gboolean));
893                 result = _bt_passkey_confirmation_reply(confirmation_reply);
894                 break;
895         }
896         case BT_GET_IS_ALIAS_SET: {
897                 bluetooth_device_address_t address = { {0} };
898
899                 __bt_service_get_parameters(in_param1,
900                                 &address, sizeof(bluetooth_device_address_t));
901
902                 result = _bt_is_alias_set(&address);
903                 if (result == BLUETOOTH_ERROR_NONE) {
904                         char *addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
905                         if (!addr) {
906                                 result = BLUETOOTH_ERROR_MEMORY_ALLOCATION;
907                                 break;
908                         }
909
910                         _bt_convert_addr_type_to_string(addr, address.addr);
911                         sender = (char*)g_dbus_method_invocation_get_sender(context);
912                         _bt_save_invocation_context(context, result, sender,
913                                         function_name, addr);
914                 }
915                 break;
916         }
917         case BT_SET_AUTHORIZATION: {
918                 bluetooth_device_address_t address = { {0} };
919                 gboolean authorize;
920                 __bt_service_get_parameters(in_param1,
921                                 &address, sizeof(bluetooth_device_address_t));
922                 __bt_service_get_parameters(in_param2,
923                                 &authorize, sizeof(gboolean));
924                 result = _bt_set_authorization(&address, authorize);
925                 break;
926         }
927         case BT_SET_LE_PRIVACY: {
928                gboolean set_privacy;
929                __bt_service_get_parameters(in_param1, &set_privacy,
930                                 sizeof(gboolean));
931                result = _bt_set_le_privacy(set_privacy);
932                break;
933         }
934         case BT_ADD_WHITE_LIST: {
935                 bluetooth_device_address_t address = { {0} };
936                 int address_type = 0;
937                 bool is_add = true;
938                 __bt_service_get_parameters(in_param1,
939                                 &address, sizeof(bluetooth_device_address_t));
940                 __bt_service_get_parameters(in_param2,
941                                 &address_type, sizeof(int));
942                 result = _bt_set_white_list(&address, address_type, is_add);
943                 break;
944         }
945         case BT_REMOVE_WHITE_LIST: {
946                 bluetooth_device_address_t address = { {0} };
947                 int address_type = 0;
948                 bool is_add = false;
949                 __bt_service_get_parameters(in_param1,
950                                 &address, sizeof(bluetooth_device_address_t));
951                 __bt_service_get_parameters(in_param2,
952                                 &address_type, sizeof(int));
953                 result = _bt_set_white_list(&address, address_type, is_add);
954                 break;
955         }
956         case BT_UPDATE_LE_CONNECTION_MODE: {
957                 char *sender = NULL;
958                 bluetooth_device_address_t remote_address = { { 0 } };
959                 bluetooth_le_connection_param_t parameters = { 0 };
960                 bluetooth_le_connection_mode_t mode = BLUETOOTH_LE_CONNECTION_MODE_BALANCED;
961
962                 __bt_service_get_parameters(in_param1, &remote_address,
963                                 sizeof(bluetooth_device_address_t));
964                 __bt_service_get_parameters(in_param2, &mode,
965                                 sizeof(bluetooth_le_connection_mode_t));
966
967                 result = _bt_get_le_connection_parameter(mode, &parameters);
968                 if (result != BLUETOOTH_ERROR_NONE)
969                         break;
970
971                 sender = (char *)g_dbus_method_invocation_get_sender(context);
972
973                 result = _bt_le_connection_update(sender,
974                                 remote_address.addr,
975                                 parameters.interval_min,
976                                 parameters.interval_max,
977                                 parameters.latency,
978                                 parameters.timeout);
979                 break;
980         }
981         case BT_SET_MANUFACTURER_DATA: {
982                 bluetooth_manufacturer_data_t m_data = { 0 };
983                 __bt_service_get_parameters(in_param1,
984                                 &m_data, sizeof(bluetooth_manufacturer_data_t));
985                 result = _bt_set_manufacturer_data(&m_data);
986                 break;
987         }
988
989         case BT_IS_DEVICE_CONNECTED: {
990                 bluetooth_device_address_t address = { {0} };
991                 gboolean connected = FALSE;
992                 int service_type;
993
994                 __bt_service_get_parameters(in_param1,
995                                 &address, sizeof(bluetooth_device_address_t));
996                 __bt_service_get_parameters(in_param2,
997                                 &service_type, sizeof(int));
998
999 #if defined(TIZEN_FEATURE_BT_PAN_NAP)
1000                 if ((service_type == BLUETOOTH_NAP_SERVICE) || (service_type == BLUETOOTH_NAP_SERVER_SERVICE))
1001                         connected = _bt_is_nap_panu_device_connected(&address, service_type);
1002                 else
1003                         connected = _bt_is_device_connected(&address, service_type);
1004 #else
1005                 connected = _bt_is_device_connected(&address, service_type);
1006 #endif
1007                 BT_INFO("is_connected: %d", connected);
1008                 g_array_append_vals(*out_param1, &connected, sizeof(gboolean));
1009                 break;
1010         }
1011         case BT_GET_CONNECTED_LINK_TYPE: {
1012                 bluetooth_device_address_t address = { {0} };
1013
1014                 __bt_service_get_parameters(in_param1,
1015                                 &address, sizeof(bluetooth_device_address_t));
1016
1017                 result = _bt_get_connected_link(&address);
1018                 if (result == BLUETOOTH_ERROR_NONE) {
1019                         char *addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
1020                         if (!addr) {
1021                                 result = BLUETOOTH_ERROR_MEMORY_ALLOCATION;
1022                                 break;
1023                         }
1024
1025                         _bt_convert_addr_type_to_string(addr, address.addr);
1026                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1027                         _bt_save_invocation_context(context, result, sender,
1028                                         function_name, addr);
1029                 }
1030                 break;
1031         }
1032         case BT_IS_SCAN_FILTER_SUPPORTED:{
1033                 int is_supported = 0;
1034
1035                 if (_bt_is_scan_filter_supported() == TRUE)
1036                         is_supported = 1;
1037
1038                 g_array_append_vals(*out_param1,
1039                                 &is_supported, sizeof(int));
1040
1041                 break;
1042         }
1043         case BT_ENABLE_RSSI: {
1044                 bluetooth_device_address_t bd_addr;
1045                 int link_type;
1046                 bt_rssi_threshold_t rssi_threshold;
1047                 int low_threshold;
1048                 int in_range_threshold;
1049                 int high_threshold;
1050
1051                 BT_DBG("Enable RSSI");
1052
1053                 __bt_service_get_parameters(in_param1,
1054                                 &bd_addr, sizeof(bluetooth_device_address_t));
1055                 __bt_service_get_parameters(in_param2,
1056                                 &link_type, sizeof(int));
1057                 __bt_service_get_parameters(in_param3,
1058                                 &rssi_threshold, sizeof(bt_rssi_threshold_t));
1059
1060                 low_threshold = rssi_threshold.low_threshold;
1061                 in_range_threshold = rssi_threshold.in_range_threshold;
1062                 high_threshold = rssi_threshold.high_threshold;
1063
1064                 result = _bt_enable_rssi(&bd_addr, link_type, low_threshold,
1065                                 in_range_threshold, high_threshold);
1066                 break;
1067         }
1068         case BT_GET_RSSI: {
1069                 int link_type;
1070                 bluetooth_device_address_t bd_addr;
1071
1072                 BT_DBG("Get RSSI Strength");
1073
1074                 __bt_service_get_parameters(in_param1,
1075                                 &bd_addr, sizeof(bluetooth_device_address_t));
1076                 __bt_service_get_parameters(in_param2,
1077                                 &link_type, sizeof(int));
1078
1079                 result = _bt_get_rssi_strength(&bd_addr, link_type);
1080                 break;
1081         }
1082         case BT_SET_PROFILE_TRUSTED: {
1083                 bluetooth_device_address_t bd_addr = { {0} };
1084                 int profile;
1085                 int trust;
1086
1087                 __bt_service_get_parameters(in_param1, &bd_addr,
1088                                 sizeof(bluetooth_device_address_t));
1089                 __bt_service_get_parameters(in_param2, &profile, sizeof(int));
1090                 __bt_service_get_parameters(in_param3, &trust, sizeof(int));
1091
1092                 result = _bt_set_trust_profile(&bd_addr, profile, trust);
1093                 break;
1094         }
1095         case BT_GET_PROFILE_TRUSTED: {
1096                 bluetooth_device_address_t bd_addr = { {0} };
1097                 int profile;
1098                 guint trusted_profile = 0;
1099
1100                 __bt_service_get_parameters(in_param1, &bd_addr,
1101                                 sizeof(bluetooth_device_address_t));
1102                 __bt_service_get_parameters(in_param2, &profile, sizeof(int));
1103
1104                 result = _bt_get_trust_profile(&bd_addr, profile, &trusted_profile);
1105                 BT_DBG("TRUST %d", trusted_profile);
1106                 if (result == BLUETOOTH_ERROR_NONE) {
1107                         g_array_append_vals(*out_param1, &trusted_profile,
1108                                         sizeof(guint));
1109                 }
1110
1111                 break;
1112         }
1113         case BT_HID_CONNECT: {
1114                 bluetooth_device_address_t address = { {0} };
1115
1116                 __bt_service_get_parameters(in_param1,
1117                                 &address, sizeof(bluetooth_device_address_t));
1118
1119                 result = _bt_hid_connect(&address);
1120                 if (result != BLUETOOTH_ERROR_NONE) {
1121                         g_array_append_vals(*out_param1, &address,
1122                                         sizeof(bluetooth_device_address_t));
1123                 } else {
1124                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1125                         _bt_convert_addr_type_to_string(addr, address.addr);
1126                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1127                         _bt_save_invocation_context(context, result, sender,
1128                                         function_name, (gpointer)addr);
1129                 }
1130                 break;
1131         }
1132         case BT_HID_DISCONNECT: {
1133                 bluetooth_device_address_t address = { {0} };
1134
1135                 __bt_service_get_parameters(in_param1,
1136                                 &address, sizeof(bluetooth_device_address_t));
1137
1138                 result = _bt_hid_disconnect(&address);
1139                 if (result != BLUETOOTH_ERROR_NONE) {
1140                         g_array_append_vals(*out_param1, &address,
1141                                         sizeof(bluetooth_device_address_t));
1142                 } else {
1143                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1144                         _bt_convert_addr_type_to_string(addr, address.addr);
1145                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1146                         _bt_save_invocation_context(context, result, sender,
1147                                         function_name, (gpointer)addr);
1148                 }
1149                 break;
1150         }
1151         case BT_DPM_SET_ALLOW_BT_MODE: {
1152                 dpm_bt_allow_t value = DPM_BT_ERROR;
1153
1154                 __bt_service_get_parameters(in_param1, &value,
1155                                 sizeof(int));
1156
1157                 result = _bt_dpm_set_allow_bluetooth_mode(value);
1158                 break;
1159         }
1160         case BT_DPM_GET_ALLOW_BT_MODE: {
1161                 int value = DPM_BT_ERROR;
1162
1163                 result = _bt_dpm_get_allow_bluetooth_mode(&value);
1164                 g_array_append_vals(*out_param1, &value, sizeof(int));
1165                 break;
1166         }
1167         case BT_DPM_SET_DEVICE_RESTRITION: {
1168                 dpm_status_t value = DPM_STATUS_ERROR;
1169
1170                 __bt_service_get_parameters(in_param1, &value,
1171                                 sizeof(int));
1172
1173                 result = _bt_dpm_activate_bluetooth_device_restriction(value);
1174                 break;
1175         }
1176         case BT_DPM_GET_DEVICE_RESTRITION: {
1177                 int value = DPM_STATUS_ERROR;
1178
1179                 result = _bt_dpm_is_bluetooth_device_restriction_active(&value);
1180                 g_array_append_vals(*out_param1, &value, sizeof(int));
1181                 break;
1182         }
1183         case BT_DPM_SET_UUID_RESTRITION: {
1184                 dpm_status_t value = DPM_STATUS_ERROR;
1185
1186                 __bt_service_get_parameters(in_param1, &value,
1187                                 sizeof(int));
1188
1189                 result = _bt_dpm_activate_bluetoooth_uuid_restriction(value);
1190                 break;
1191         }
1192         case BT_DPM_GET_UUID_RESTRITION: {
1193                 int value = DPM_STATUS_ERROR;
1194
1195                 result = _bt_dpm_is_bluetooth_uuid_restriction_active(&value);
1196                 g_array_append_vals(*out_param1, &value, sizeof(int));
1197                 break;
1198         }
1199         case BT_DPM_ADD_DEVICES_BLACKLIST: {
1200                 bluetooth_device_address_t address = { {0} };
1201
1202                 __bt_service_get_parameters(in_param1, &address,
1203                         sizeof(bluetooth_device_address_t));
1204
1205                 result = _bt_dpm_add_bluetooth_devices_to_blacklist(&address);
1206                 break;
1207         }
1208         case BT_DPM_ADD_DEVICES_WHITELIST: {
1209                 bluetooth_device_address_t address = { {0} };
1210
1211                 __bt_service_get_parameters(in_param1, &address,
1212                         sizeof(bluetooth_device_address_t));
1213
1214                 result = _bt_dpm_add_bluetooth_devices_to_whitelist(&address);
1215                 break;
1216         }
1217         case BT_DPM_ADD_UUIDS_BLACKLIST: {
1218                 const char *uuid = NULL;
1219
1220                 uuid = g_variant_get_data(in_param1);
1221
1222                 result = _bt_dpm_add_bluetooth_uuids_to_blacklist(uuid);
1223                 break;
1224         }
1225         case BT_DPM_ADD_UUIDS_WHITELIST: {
1226                 const char *uuid = NULL;
1227
1228                 uuid = g_variant_get_data(in_param1);
1229
1230                 result = _bt_dpm_add_bluetooth_uuids_to_whitelist(uuid);
1231                 break;
1232         }
1233         case BT_DPM_CLEAR_DEVICES_BLACKLIST: {
1234                 result = _bt_dpm_clear_bluetooth_devices_from_blacklist();
1235                 break;
1236         }
1237         case BT_DPM_CLEAR_DEVICES_WHITELIST: {
1238                 result = _bt_dpm_clear_bluetooth_devices_from_whitelist();
1239                 break;
1240         }
1241         case BT_DPM_CLEAR_UUIDS_BLACKLIST: {
1242                 result = _bt_dpm_clear_bluetooth_uuids_from_blacklist();
1243                 break;
1244         }
1245         case BT_DPM_CLEAR_UUIDS_WHITELIST: {
1246                 result = _bt_dpm_clear_bluetooth_uuids_from_whitelist();
1247                 break;
1248         }
1249         case BT_DPM_REMOVE_DEVICE_BLACKLIST: {
1250                 bluetooth_device_address_t address = { {0} };
1251
1252                 __bt_service_get_parameters(in_param1, &address,
1253                         sizeof(bluetooth_device_address_t));
1254
1255                 result = _bt_dpm_remove_bluetooth_devices_from_blacklist(&address);
1256                 break;
1257         }
1258         case BT_DPM_REMOVE_DEVICE_WHITELIST: {
1259                 bluetooth_device_address_t address = { {0} };
1260
1261                 __bt_service_get_parameters(in_param1, &address,
1262                         sizeof(bluetooth_device_address_t));
1263
1264                 result = _bt_dpm_remove_bluetooth_devices_from_whitelist(&address);
1265                 break;
1266         }
1267         case BT_DPM_REMOVE_UUID_BLACKLIST: {
1268                 const char *uuid = NULL;
1269
1270                 uuid = g_variant_get_data(in_param1);
1271
1272                 result = _bt_dpm_remove_bluetooth_uuids_from_blacklist(uuid);
1273                 break;
1274         }
1275         case BT_DPM_REMOVE_UUID_WHITELIST: {
1276                 const char *uuid = NULL;
1277
1278                 uuid = g_variant_get_data(in_param1);
1279
1280                 result = _bt_dpm_remove_bluetooth_uuids_from_whitelist(uuid);
1281
1282                 break;
1283         }
1284         case BT_DPM_GET_DEVICES_BLACKLIST: {
1285                 result = _bt_dpm_get_bluetooth_devices_from_blacklist(out_param1);
1286                 break;
1287         }
1288         case BT_DPM_GET_DEVICES_WHITELIST: {
1289                 result = _bt_dpm_get_bluetooth_devices_from_whitelist(out_param1);
1290                 break;
1291         }
1292         case BT_DPM_GET_UUIDS_BLACKLIST: {
1293                 result = _bt_dpm_get_bluetooth_uuids_from_blacklist(out_param1);
1294                 break;
1295         }
1296         case BT_DPM_GET_UUIDS_WHITELIST: {
1297                 result = _bt_dpm_get_bluetooth_uuids_from_whitelist(out_param1);
1298                 break;
1299         }
1300         case BT_DPM_SET_ALLOW_OUTGOING_CALL: {
1301                 dpm_status_t value = DPM_STATUS_ERROR;
1302
1303                 __bt_service_get_parameters(in_param1, &value,
1304                                 sizeof(int));
1305
1306                 result = _bt_dpm_set_allow_bluetooth_outgoing_call(value);
1307
1308                 break;
1309         }
1310         case BT_DPM_GET_ALLOW_OUTGOING_CALL: {
1311                 int value = DPM_STATUS_ERROR;
1312
1313                 result = _bt_dpm_get_allow_bluetooth_outgoing_call(&value);
1314                 g_array_append_vals(*out_param1, &value, sizeof(int));
1315                 break;
1316         }
1317         case BT_DPM_SET_PAIRING_STATE: {
1318                 dpm_status_t value = DPM_STATUS_ERROR;
1319
1320                 __bt_service_get_parameters(in_param1, &value,
1321                                 sizeof(int));
1322
1323                 result = _bt_dpm_set_bluetooth_pairing_state(value);
1324
1325                 break;
1326         }
1327         case BT_DPM_GET_PAIRING_STATE: {
1328                 int value = DPM_STATUS_ERROR;
1329
1330                 result = _bt_dpm_get_bluetooth_pairing_state(&value);
1331                 g_array_append_vals(*out_param1, &value, sizeof(int));
1332                 break;
1333         }
1334         case BT_DPM_SET_PROFILE_STATE: {
1335                 int value = DPM_STATUS_ERROR;
1336                 int profile = DPM_PROFILE_NONE;
1337
1338                 __bt_service_get_parameters(in_param1, &profile,
1339                                 sizeof(int));
1340                 __bt_service_get_parameters(in_param2, &value,
1341                                 sizeof(int));
1342
1343                 result = _bt_dpm_set_bluetooth_profile_state(profile, value);
1344
1345                 break;
1346         }
1347         case BT_DPM_GET_PROFILE_STATE: {
1348                 int value = DPM_STATUS_ERROR;
1349                 int profile = DPM_PROFILE_NONE;
1350
1351                 __bt_service_get_parameters(in_param1, &profile,
1352                                 sizeof(int));
1353
1354                 result = _bt_dpm_get_bluetooth_profile_state(profile, &value);
1355                 g_array_append_vals(*out_param1, &value, sizeof(int));
1356                 break;
1357         }
1358         case BT_DPM_SET_DESKROP_CONNECTIVITY_STATE: {
1359                 int value = DPM_BT_ERROR;
1360
1361                 __bt_service_get_parameters(in_param1, &value,
1362                                 sizeof(int));
1363
1364                 result = _bt_dpm_set_bluetooth_desktop_connectivity_state(value);
1365
1366                 break;
1367         }
1368         case BT_DPM_GET_DESKROP_CONNECTIVITY_STATE: {
1369                 int value = DPM_STATUS_ERROR;
1370
1371                 result = _bt_dpm_get_bluetooth_desktop_connectivity_state(&value);
1372                 g_array_append_vals(*out_param1, &value, sizeof(int));
1373                 break;
1374         }
1375         case BT_DPM_SET_DISCOVERABLE_STATE: {
1376                 int value = DPM_STATUS_ERROR;
1377
1378                 __bt_service_get_parameters(in_param1, &value,
1379                                 sizeof(int));
1380
1381                 result = _bt_dpm_set_bluetooth_discoverable_state(value);
1382
1383                 break;
1384         }
1385         case BT_DPM_GET_DISCOVERABLE_STATE: {
1386                 int value = DPM_STATUS_ERROR;
1387
1388                 result = _bt_dpm_get_bluetooth_discoverable_state(&value);
1389                 g_array_append_vals(*out_param1, &value, sizeof(int));
1390                 break;
1391         }
1392         case BT_DPM_SET_LIMITED_DISCOVERABLE_STATE: {
1393                 int value = DPM_STATUS_ERROR;
1394
1395                 __bt_service_get_parameters(in_param1, &value,
1396                                 sizeof(int));
1397
1398                 result = _bt_dpm_set_bluetooth_limited_discoverable_state(value);
1399
1400                 break;
1401         }
1402         case BT_DPM_GET_LIMITED_DISCOVERABLE_STATE: {
1403                 int value = DPM_STATUS_ERROR;
1404
1405                 result = _bt_dpm_get_bluetooth_limited_discoverable_state(&value);
1406                 g_array_append_vals(*out_param1, &value, sizeof(int));
1407                 break;
1408         }
1409         case BT_DPM_SET_DATA_TRANSFER_STATE: {
1410                 int value = DPM_STATUS_ERROR;
1411
1412                 __bt_service_get_parameters(in_param1, &value,
1413                                 sizeof(int));
1414
1415                 result = _bt_dpm_set_bluetooth_data_transfer_state(value);
1416
1417                 break;
1418         }
1419         case BT_DPM_GET_DATA_TRANSFER_STATE: {
1420                 int value = DPM_STATUS_ERROR;
1421
1422                 result = _bt_dpm_get_allow_bluetooth_data_transfer_state(&value);
1423                 g_array_append_vals(*out_param1, &value, sizeof(int));
1424                 break;
1425         }
1426         case BT_RFCOMM_CLIENT_CONNECT: {
1427                 bluetooth_device_address_t address = { {0} };
1428                 char *input_string;
1429                 int connect_type;
1430
1431                 __bt_service_get_parameters(in_param1,
1432                                 &address, sizeof(bluetooth_device_address_t));
1433                 input_string = (char *)g_variant_get_data(in_param2);
1434                 __bt_service_get_parameters(in_param3, &connect_type, sizeof(int));
1435
1436                 if (connect_type == BT_RFCOMM_UUID)
1437                         result = _bt_rfcomm_connect_using_uuid(&address, input_string);
1438                 else
1439                         result = _bt_rfcomm_connect_using_channel(&address, input_string);
1440
1441                 if (result != BLUETOOTH_ERROR_NONE) {
1442                         bluetooth_rfcomm_connection_t conn_info;
1443
1444                         BT_ERR("BT_RFCOMM_CLIENT_CONNECT failed, send error");
1445                         memset(&conn_info, 0x00, sizeof(bluetooth_rfcomm_connection_t));
1446                         if (connect_type == BT_RFCOMM_UUID)
1447                                 g_strlcpy(conn_info.uuid, input_string, BLUETOOTH_UUID_STRING_MAX);
1448                         else
1449                                 g_strlcpy(conn_info.uuid, "not_used", BLUETOOTH_UUID_STRING_MAX);
1450
1451                         conn_info.device_role = RFCOMM_ROLE_CLIENT;
1452                         conn_info.socket_fd = -1;
1453                         g_array_append_vals(*out_param1, &conn_info,
1454                                         sizeof(bluetooth_rfcomm_connection_t));
1455                 } else {
1456                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1457                         _bt_convert_addr_type_to_string(addr, address.addr);
1458                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1459                         _bt_save_invocation_context(context, result, sender, function_name, addr);
1460                 }
1461                 break;
1462         }
1463         case BT_RFCOMM_SOCKET_DISCONNECT: {
1464                 /*
1465                  * Bluetooth RFCOMM socket disconnection will be done from bt-api, call to bt-service
1466                  * is only used for privilege check, so return BLUETOOTH_ERROR_NONE from here.
1467                  */
1468                 result = BLUETOOTH_ERROR_NONE;
1469                 break;
1470         }
1471         case BT_RFCOMM_SOCKET_WRITE: {
1472                 /*
1473                  * This call to bt-service is only used for privilege check, so return
1474                  * BLUETOOTH_ERROR_NONE from here.
1475                  */
1476                 result = BLUETOOTH_ERROR_NONE;
1477                 break;
1478         }
1479         case BT_RFCOMM_CREATE_SOCKET: {
1480                 /*
1481                  * This call to bt-service is only used for privilege check, so return
1482                  * BLUETOOTH_ERROR_NONE from here.
1483                  */
1484                 result = BLUETOOTH_ERROR_NONE;
1485                 break;
1486         }
1487         case BT_RFCOMM_LISTEN_AND_ACCEPT: {
1488                 char *uuid;
1489                 int socket_fd = -1;
1490
1491                 sender = (char *)g_dbus_method_invocation_get_sender(context);
1492                 uuid = (char *)g_variant_get_data(in_param1);
1493
1494                 result = _bt_rfcomm_socket_listen(sender, uuid, true);
1495                 if (result > 0) {
1496                         result = BLUETOOTH_ERROR_NONE;
1497                         _bt_save_invocation_context(context,
1498                                         result, sender, function_name, NULL);
1499                 } else {
1500                         g_array_append_vals(*out_param1, &socket_fd, sizeof(int));
1501                 }
1502                 break;
1503         }
1504         case BT_RFCOMM_LISTEN: {
1505                 char *uuid;
1506                 int socket_fd = -1;
1507
1508                 sender = (char *)g_dbus_method_invocation_get_sender(context);
1509                 uuid = (char *)g_variant_get_data(in_param1);
1510
1511                 result = _bt_rfcomm_socket_listen(sender, uuid, false);
1512                 if (result > 0) {
1513                         result = BLUETOOTH_ERROR_NONE;
1514                         _bt_save_invocation_context(context,
1515                                         result, sender, function_name, NULL);
1516                 } else {
1517                         g_array_append_vals(*out_param1, &socket_fd, sizeof(int));
1518                 }
1519                 break;
1520         }
1521         case BT_RFCOMM_ACCEPT_CONNECTION: {
1522                 char *address;
1523
1524                 address = (char *)g_variant_get_data(in_param1);
1525                 result = _bt_rfcomm_reply_conn_authorization(address, TRUE);
1526                 break;
1527         }
1528         case BT_RFCOMM_REJECT_CONNECTION: {
1529                 char *address;
1530
1531                 address = (char *)g_variant_get_data(in_param1);
1532                 result = _bt_rfcomm_reply_conn_authorization(address, FALSE);
1533                 break;
1534         }
1535         case BT_RFCOMM_REMOVE_SOCKET: {
1536                 /*
1537                  * This call to bt-service is only used for privilege check, so return
1538                  * BLUETOOTH_ERROR_NONE from here.
1539                  */
1540                 result = BLUETOOTH_ERROR_NONE;
1541                 break;
1542         }
1543         case BT_RFCOMM_SEND_RX_DETAILS: {
1544                 uid_t uid;
1545                 pid_t pid;
1546                 int size;
1547                 __bt_service_get_parameters(in_param1, &uid, sizeof(uid_t));
1548                 __bt_service_get_parameters(in_param2, &pid, sizeof(pid_t));
1549                 __bt_service_get_parameters(in_param3, &size, sizeof(unsigned int));
1550                 _bt_bm_add_transaction_details(uid, pid, size, RX_DATA);
1551                 break;
1552         }
1553         case BT_RFCOMM_SEND_TX_DETAILS: {
1554                 uid_t uid;
1555                 pid_t pid;
1556                 int size;
1557                 __bt_service_get_parameters(in_param1, &uid, sizeof(uid_t));
1558                 __bt_service_get_parameters(in_param2, &pid, sizeof(pid_t));
1559                 __bt_service_get_parameters(in_param3, &size, sizeof(unsigned int));
1560                 _bt_bm_add_transaction_details(uid, pid, size, TX_DATA);
1561                 break;
1562         }
1563         case BT_RFCOMM_UPDATE_CONNECTION_INFO: {
1564                 gboolean connected = FALSE;
1565                 int socket_fd = -1;
1566                 int role = RFCOMM_ROLE_SERVER;
1567
1568                 sender = (char *)g_dbus_method_invocation_get_sender(context);
1569
1570                 __bt_service_get_parameters(in_param1, &role, sizeof(int));
1571                 __bt_service_get_parameters(in_param2, &connected, sizeof(gboolean));
1572                 __bt_service_get_parameters(in_param3, &socket_fd, sizeof(int));
1573
1574                 if (connected == TRUE)
1575                         result = _bt_rfcomm_conn_added(sender, role, socket_fd);
1576                 else
1577                         result = _bt_rfcomm_conn_removed(sender, role, socket_fd);
1578
1579                 break;
1580         }
1581         case BT_AUDIO_SELECT_ROLE: {
1582                 bluetooth_audio_role_t role;
1583
1584                 __bt_service_get_parameters(in_param1,
1585                                 &role, sizeof(bluetooth_audio_role_t));
1586
1587                 result = _bt_audio_select_role(role);
1588                 if (result == BLUETOOTH_ERROR_NONE) {
1589                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1590                         _bt_save_invocation_context(context, result, sender,
1591                                         function_name, NULL);
1592                 }
1593                 break;
1594         }
1595         case BT_AUDIO_SET_ABSOLUTE_VOLUME: {
1596                 unsigned int volume = 0;
1597
1598                 __bt_service_get_parameters(in_param1,
1599                                 &volume, sizeof(unsigned int));
1600
1601                 result = _bt_audio_set_absolute_volume(volume);
1602                 break;
1603         }
1604         case BT_AUDIO_GET_ABSOLUTE_VOLUME: {
1605                 unsigned int volume = 0;
1606
1607                 result = _bt_audio_get_absolute_volume(&volume);
1608                 g_array_append_vals(*out_param1, &volume, sizeof(unsigned int));
1609                 break;
1610         }
1611         case BT_AUDIO_IS_AVC_ACTIVATED: {
1612                 bool activated = 0;
1613
1614                 result = _bt_audio_is_avc_activated(&activated);
1615                 g_array_append_vals(*out_param1, &activated, sizeof(bool));
1616                 break;
1617         }
1618         case BT_AV_CONNECT: {
1619                 bluetooth_device_address_t address = { {0} };
1620                 __bt_service_get_parameters(in_param1,
1621                                 &address, sizeof(bluetooth_device_address_t));
1622
1623                 result = _bt_audio_connect(BT_AUDIO_A2DP, &address);
1624
1625                 if (result != BLUETOOTH_ERROR_NONE) {
1626                         char addr[BT_ADDRESS_STRING_SIZE];
1627                         _bt_convert_addr_type_to_string(addr, address.addr);
1628                         g_array_append_vals(*out_param1, addr, BT_ADDRESS_STRING_SIZE);
1629                 } else {
1630                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1631                         _bt_convert_addr_type_to_string(addr, address.addr);
1632                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1633                         _bt_save_invocation_context(context, result, sender,
1634                                         function_name, (gpointer)addr);
1635                 }
1636                 break;
1637         }
1638         case BT_AUDIO_CONNECT: {
1639                 bluetooth_device_address_t address = { {0} };
1640                 __bt_service_get_parameters(in_param1,
1641                                 &address, sizeof(bluetooth_device_address_t));
1642
1643                 result = _bt_audio_connect(BT_AUDIO_ALL, &address);
1644
1645                 if (result != BLUETOOTH_ERROR_NONE) {
1646                         char addr[BT_ADDRESS_STRING_SIZE];
1647                         _bt_convert_addr_type_to_string(addr, address.addr);
1648                         g_array_append_vals(*out_param1, addr, BT_ADDRESS_STRING_SIZE);
1649                 } else {
1650                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1651                         _bt_convert_addr_type_to_string(addr, address.addr);
1652                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1653                         _bt_save_invocation_context(context, result, sender,
1654                                         function_name, (gpointer)addr);
1655                 }
1656                 break;
1657         }
1658         case BT_AUDIO_DISCONNECT: {
1659                 bluetooth_device_address_t address = { {0} };
1660                 __bt_service_get_parameters(in_param1,
1661                                 &address, sizeof(bluetooth_device_address_t));
1662
1663                 result = _bt_audio_disconnect(BT_AUDIO_ALL, &address);
1664
1665                 if (result != BLUETOOTH_ERROR_NONE) {
1666                         char addr[BT_ADDRESS_STRING_SIZE];
1667                         _bt_convert_addr_type_to_string(addr, address.addr);
1668                         g_array_append_vals(*out_param1, addr, BT_ADDRESS_STRING_SIZE);
1669                 } else {
1670                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1671                         _bt_convert_addr_type_to_string(addr, address.addr);
1672                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1673                         _bt_save_invocation_context(context, result, sender,
1674                                         function_name, (gpointer)addr);
1675                 }
1676                 break;
1677         }
1678         case BT_AV_DISCONNECT: {
1679                 bluetooth_device_address_t address = { {0} };
1680                 __bt_service_get_parameters(in_param1,
1681                                 &address, sizeof(bluetooth_device_address_t));
1682
1683                 result = _bt_audio_disconnect(BT_AUDIO_A2DP, &address);
1684
1685                 if (result != BLUETOOTH_ERROR_NONE) {
1686                         char addr[BT_ADDRESS_STRING_SIZE];
1687                         _bt_convert_addr_type_to_string(addr, address.addr);
1688                         g_array_append_vals(*out_param1, addr, BT_ADDRESS_STRING_SIZE);
1689                 } else {
1690                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1691                         _bt_convert_addr_type_to_string(addr, address.addr);
1692                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1693                         _bt_save_invocation_context(context, result, sender,
1694                                         function_name, (gpointer)addr);
1695                 }
1696                 break;
1697         }
1698         case BT_AG_CONNECT: {
1699                 bluetooth_device_address_t address = { {0} };
1700                 __bt_service_get_parameters(in_param1,
1701                                 &address, sizeof(bluetooth_device_address_t));
1702
1703                 result = _bt_audio_connect(BT_AUDIO_HSP, &address);
1704
1705                 if (result != BLUETOOTH_ERROR_NONE) {
1706                         char addr[BT_ADDRESS_STRING_SIZE];
1707                         _bt_convert_addr_type_to_string(addr, address.addr);
1708                         g_array_append_vals(*out_param1, addr, BT_ADDRESS_STRING_SIZE);
1709                 } else {
1710                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1711                         _bt_convert_addr_type_to_string(addr, address.addr);
1712                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1713                         _bt_save_invocation_context(context, result, sender,
1714                                         function_name, (gpointer)addr);
1715                 }
1716                 break;
1717         }
1718         case BT_AG_DISCONNECT: {
1719                 bluetooth_device_address_t address = { {0} };
1720
1721                 __bt_service_get_parameters(in_param1,
1722                                 &address, sizeof(bluetooth_device_address_t));
1723
1724                 result = _bt_audio_disconnect(BT_AUDIO_HSP, &address);
1725
1726                 if (result != BLUETOOTH_ERROR_NONE) {
1727                         char addr[BT_ADDRESS_STRING_SIZE];
1728                         _bt_convert_addr_type_to_string(addr, address.addr);
1729                         g_array_append_vals(*out_param1, addr, BT_ADDRESS_STRING_SIZE);
1730                 } else {
1731                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1732                         _bt_convert_addr_type_to_string(addr, address.addr);
1733                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1734                         _bt_save_invocation_context(context, result, sender,
1735                                         function_name, (gpointer)addr);
1736                 }
1737                 break;
1738         }
1739         case BT_AV_SOURCE_CONNECT: {
1740                 bluetooth_device_address_t address = { {0} };
1741
1742                 __bt_service_get_parameters(in_param1,
1743                                 &address, sizeof(bluetooth_device_address_t));
1744
1745                 result = _bt_audio_connect(BT_AUDIO_A2DP_SOURCE, &address);
1746                 if (result != BLUETOOTH_ERROR_NONE) {
1747                         char addr[BT_ADDRESS_STRING_SIZE];
1748                         _bt_convert_addr_type_to_string(addr, address.addr);
1749                         g_array_append_vals(*out_param1, addr, BT_ADDRESS_STRING_SIZE);
1750                 } else {
1751                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1752                         _bt_convert_addr_type_to_string(addr, address.addr);
1753                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1754                         _bt_save_invocation_context(context, result, sender,
1755                                         function_name, (gpointer)addr);
1756                 }
1757                 break;
1758         }
1759         case BT_AV_SOURCE_DISCONNECT: {
1760                 bluetooth_device_address_t address = { {0} };
1761
1762                 __bt_service_get_parameters(in_param1,
1763                                 &address, sizeof(bluetooth_device_address_t));
1764
1765                 result = _bt_audio_disconnect(BT_AUDIO_A2DP_SOURCE, &address);
1766                 if (result != BLUETOOTH_ERROR_NONE) {
1767                         char addr[BT_ADDRESS_STRING_SIZE];
1768                         _bt_convert_addr_type_to_string(addr, address.addr);
1769                         g_array_append_vals(*out_param1, addr, BT_ADDRESS_STRING_SIZE);
1770                 } else {
1771                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1772                         _bt_convert_addr_type_to_string(addr, address.addr);
1773                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1774                         _bt_save_invocation_context(context, result, sender,
1775                                         function_name, (gpointer)addr);
1776                 }
1777                 break;
1778         }
1779         case BT_HF_CONNECT: {
1780                 bluetooth_device_address_t address = { {0} };
1781
1782                 __bt_service_get_parameters(in_param1,
1783                                 &address, sizeof(bluetooth_device_address_t));
1784
1785                 result = _bt_hf_connect(&address);
1786                 if (result != BLUETOOTH_ERROR_NONE) {
1787                         char addr[BT_ADDRESS_STRING_SIZE];
1788                         _bt_convert_addr_type_to_string(addr, address.addr);
1789                         g_array_append_vals(*out_param1, addr, BT_ADDRESS_STRING_SIZE);
1790                 } else {
1791                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1792                         _bt_convert_addr_type_to_string(addr, address.addr);
1793                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1794                         _bt_save_invocation_context(context, result, sender,
1795                                         function_name, (gpointer)addr);
1796                 }
1797                 break;
1798         }
1799         case BT_HF_DISCONNECT: {
1800                 bluetooth_device_address_t address = { {0} };
1801
1802                 __bt_service_get_parameters(in_param1,
1803                                 &address, sizeof(bluetooth_device_address_t));
1804
1805                 result = _bt_hf_disconnect(&address);
1806                 if (result != BLUETOOTH_ERROR_NONE) {
1807                         char addr[BT_ADDRESS_STRING_SIZE];
1808                         _bt_convert_addr_type_to_string(addr, address.addr);
1809                         g_array_append_vals(*out_param1, addr, BT_ADDRESS_STRING_SIZE);
1810                 } else {
1811                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1812                         _bt_convert_addr_type_to_string(addr, address.addr);
1813                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1814                         _bt_save_invocation_context(context, result, sender,
1815                                         function_name, (gpointer)addr);
1816                 }
1817                 break;
1818         }
1819         case BT_AVRCP_TARGET_CONNECT: {
1820                 bluetooth_device_address_t address = { {0} };
1821
1822                 __bt_service_get_parameters(in_param1,
1823                                 &address, sizeof(bluetooth_device_address_t));
1824
1825                 result = _bt_audio_connect(BT_AVRCP_TARGET, &address);
1826                 if (result != BLUETOOTH_ERROR_NONE) {
1827                         char addr[BT_ADDRESS_STRING_SIZE];
1828                         _bt_convert_addr_type_to_string(addr, address.addr);
1829                         g_array_append_vals(*out_param1, addr, BT_ADDRESS_STRING_SIZE);
1830                 } else {
1831                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1832                         _bt_convert_addr_type_to_string(addr, address.addr);
1833                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1834                         _bt_save_invocation_context(context, result, sender,
1835                                         function_name, (gpointer)addr);
1836                 }
1837                 break;
1838         }
1839         case BT_AVRCP_TARGET_DISCONNECT: {
1840                 bluetooth_device_address_t address = { {0} };
1841
1842                 __bt_service_get_parameters(in_param1,
1843                                 &address, sizeof(bluetooth_device_address_t));
1844
1845                 result = _bt_audio_disconnect(BT_AVRCP_TARGET, &address);
1846                 if (result != BLUETOOTH_ERROR_NONE) {
1847                         char addr[BT_ADDRESS_STRING_SIZE];
1848                         _bt_convert_addr_type_to_string(addr, address.addr);
1849                         g_array_append_vals(*out_param1, addr, BT_ADDRESS_STRING_SIZE);
1850                 } else {
1851                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1852                         _bt_convert_addr_type_to_string(addr, address.addr);
1853                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1854                         _bt_save_invocation_context(context, result, sender,
1855                                         function_name, (gpointer)addr);
1856                 }
1857                 break;
1858         }
1859         case BT_AVRCP_CONTROL_CONNECT: {
1860                 bluetooth_device_address_t address = { {0} };
1861
1862                 __bt_service_get_parameters(in_param1,
1863                                 &address, sizeof(bluetooth_device_address_t));
1864
1865                 result = _bt_audio_connect(BT_AVRCP, &address);
1866                 if (result != BLUETOOTH_ERROR_NONE) {
1867                         char addr[BT_ADDRESS_STRING_SIZE];
1868                         _bt_convert_addr_type_to_string(addr, address.addr);
1869                         g_array_append_vals(*out_param1, addr, BT_ADDRESS_STRING_SIZE);
1870                 } else {
1871                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1872                         _bt_convert_addr_type_to_string(addr, address.addr);
1873                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1874                         _bt_save_invocation_context(context, result, sender,
1875                                         function_name, (gpointer)addr);
1876                 }
1877                 break;
1878         }
1879         case BT_AVRCP_CONTROL_DISCONNECT: {
1880                 bluetooth_device_address_t address = { {0} };
1881
1882                 __bt_service_get_parameters(in_param1,
1883                                 &address, sizeof(bluetooth_device_address_t));
1884
1885                 result = _bt_audio_disconnect(BT_AVRCP, &address);
1886                 if (result != BLUETOOTH_ERROR_NONE) {
1887                         char addr[BT_ADDRESS_STRING_SIZE];
1888                         _bt_convert_addr_type_to_string(addr, address.addr);
1889                         g_array_append_vals(*out_param1, addr, BT_ADDRESS_STRING_SIZE);
1890                 } else {
1891                         char *addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
1892                         _bt_convert_addr_type_to_string(addr, address.addr);
1893                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1894                         _bt_save_invocation_context(context, result, sender,
1895                                         function_name, (gpointer)addr);
1896                 }
1897                 break;
1898         }
1899         case BT_AVRCP_HANDLE_CONTROL: {
1900                 int key_code;
1901                 __bt_service_get_parameters(in_param1, &key_code, sizeof(int));
1902                 result = _bt_avrcp_control_cmd(key_code);
1903                 break;
1904         }
1905         case BT_AVRCP_HANDLE_CONTROL_TO_DEST: {
1906                 int key_code;
1907                 bluetooth_device_address_t address = { { 0 } };
1908
1909                 __bt_service_get_parameters(in_param1, &key_code, sizeof(int));
1910                 __bt_service_get_parameters(in_param2,
1911                                                 &address, sizeof(bluetooth_device_address_t));
1912
1913                 result = _bt_avrcp_control_cmd_to_dest(key_code, &address);
1914                 break;
1915         }
1916         case BT_AVRCP_CONTROL_SET_PROPERTY: {
1917                 int type;
1918                 unsigned int value;
1919
1920                 __bt_service_get_parameters(in_param1,
1921                                 &type, sizeof(int));
1922                 __bt_service_get_parameters(in_param2,
1923                                 &value, sizeof(unsigned int));
1924
1925                 result = _bt_avrcp_control_set_property(type, value);
1926                 break;
1927         }
1928         case BT_AVRCP_TRANSPORT_SET_PROPERTY: {
1929                 int type;
1930                 unsigned int value;
1931                 BT_DBG("+");
1932
1933                 __bt_service_get_parameters(in_param1,
1934                                 &type, sizeof(int));
1935                 __bt_service_get_parameters(in_param2,
1936                                 &value, sizeof(unsigned int));
1937
1938                 result = _bt_avrcp_transport_set_property(type, value);
1939                 BT_DBG("-");
1940                 break;
1941         }
1942         case BT_AVRCP_CONTROL_GET_PROPERTY: {
1943                 int type;
1944
1945                 __bt_service_get_parameters(in_param1, &type, sizeof(int));
1946
1947                 result = _bt_avrcp_control_get_property(type);
1948                 /* Save invocation */
1949                 if (result == BLUETOOTH_ERROR_NONE) {
1950                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1951                         _bt_save_invocation_context(context, result, sender,
1952                                         function_name, g_memdup(&type, sizeof(int)));
1953                 }
1954                 break;
1955         }
1956         case BT_AVRCP_GET_TRACK_INFO: {
1957                 result = _bt_avrcp_control_get_track_info();
1958                 /* Save invocation */
1959                 if (result == BLUETOOTH_ERROR_NONE) {
1960                         sender = (char*)g_dbus_method_invocation_get_sender(context);
1961                         _bt_save_invocation_context(context, result, sender,
1962                                         function_name, NULL);
1963                 }
1964                 break;
1965         }
1966         case BT_HDP_REGISTER_SINK_APP: {
1967                 unsigned short data_type;
1968                 bt_hdp_role_type_t role;
1969                 bt_hdp_qos_type_t channel_type;
1970                 int *app_id = g_new0(int, 1);
1971
1972                 __bt_service_get_parameters(in_param1,
1973                                 &data_type, sizeof(short));
1974                 __bt_service_get_parameters(in_param2,
1975                                 &role, sizeof(bt_hdp_role_type_t));
1976                 __bt_service_get_parameters(in_param3,
1977                                 &channel_type, sizeof(bt_hdp_qos_type_t));
1978                 sender = (char*)g_dbus_method_invocation_get_sender(context);
1979
1980                 result = _bt_hdp_app_register(role,
1981                                 channel_type, data_type, sender, app_id);
1982                 if (result != BLUETOOTH_ERROR_NONE) {
1983                         g_array_append_vals(*out_param1, &app_id, sizeof(app_id));
1984                         g_free(app_id);
1985                 } else {
1986                         _bt_save_invocation_context(context, result, sender,
1987                                         function_name, (gpointer)app_id);
1988                 }
1989                 break;
1990         }
1991         case BT_HDP_UNREGISTER_SINK_APP: {
1992                 char *app_handle;
1993                 int *app_id = g_new0(int, 1);
1994
1995                 app_handle = (char *)g_variant_get_data(in_param1);
1996                 sscanf(app_handle, "health_app_%d", app_id);
1997                 result = _bt_hdp_app_unregister(*app_id);
1998                 if (result != BLUETOOTH_ERROR_NONE) {
1999                         g_free(app_id);
2000                 } else {
2001                         sender = (char*)g_dbus_method_invocation_get_sender(context);
2002                         _bt_save_invocation_context(context, result, sender,
2003                                         function_name, (gpointer)app_id);
2004                 }
2005                 break;
2006         }
2007         case BT_HDP_CONNECT: {
2008                 int app_id = -1;
2009                 char *app_handle;
2010
2011                 bt_hdp_connected_t *conn_info = NULL;
2012
2013                 conn_info = g_malloc0(sizeof(bt_hdp_connected_t));
2014
2015                 app_handle = (char *)g_variant_get_data(in_param1);
2016                 conn_info->app_handle = app_handle;
2017                 sscanf(app_handle, "health_app_%d", &app_id);
2018
2019                 __bt_service_get_parameters(in_param2,
2020                                 &(conn_info->type), sizeof(bt_hdp_qos_type_t));
2021                 __bt_service_get_parameters(in_param3,
2022                                 &(conn_info->device_address),
2023                                 sizeof(bluetooth_device_address_t));
2024
2025                 result = _bt_hdp_connect(app_id, &(conn_info->device_address),
2026                                 conn_info->type, (int *)(&(conn_info->channel_id)));
2027                 if (result != BLUETOOTH_ERROR_NONE) {
2028                         g_array_append_vals(*out_param1, conn_info,
2029                                         sizeof(bt_hdp_connected_t));
2030                         g_free(conn_info);
2031                 } else {
2032                         sender = (char*)g_dbus_method_invocation_get_sender(context);
2033                         _bt_save_invocation_context(context, result, sender,
2034                                         function_name, (gpointer)conn_info);
2035                 }
2036                 break;
2037         }
2038         case BT_HDP_DISCONNECT: {
2039                 bt_hdp_disconnected_t *hdp_disconn_info = NULL;
2040
2041                 hdp_disconn_info = g_malloc0(sizeof(bt_hdp_disconnected_t));
2042
2043                 __bt_service_get_parameters(in_param1,
2044                                 &(hdp_disconn_info->channel_id), sizeof(int));
2045                 __bt_service_get_parameters(in_param2,
2046                                 &(hdp_disconn_info->device_address),
2047                                 sizeof(bluetooth_device_address_t));
2048
2049                 result = _bt_hdp_disconnect(hdp_disconn_info->channel_id);
2050                 if (result != BLUETOOTH_ERROR_NONE) {
2051                         g_array_append_vals(*out_param1, hdp_disconn_info,
2052                                         sizeof(bt_hdp_disconnected_t));
2053                         g_free(hdp_disconn_info);
2054                 } else {
2055                         sender = (char*)g_dbus_method_invocation_get_sender(context);
2056                         _bt_save_invocation_context(context, result, sender,
2057                                         function_name, (gpointer)hdp_disconn_info);
2058                 }
2059                 break;
2060         }
2061         case BT_HDP_GET_FD: {
2062                 int *channel_id = g_new0(int, 1);
2063
2064                 __bt_service_get_parameters(in_param1, channel_id, sizeof(int));
2065
2066                 result = _bt_hdp_get_fd(*channel_id);
2067                 if (result != BLUETOOTH_ERROR_NONE) {
2068                         g_free(channel_id);
2069                 } else {
2070                         sender = (char*)g_dbus_method_invocation_get_sender(context);
2071                         _bt_save_invocation_context(context, result, sender,
2072                                         function_name, (gpointer)channel_id);
2073                 }
2074                 break;
2075         }
2076         case BT_HDP_SEND_DATA: {
2077                 /*
2078                  * This call to bt-service is only used for privilege check, so return
2079                  * BLUETOOTH_ERROR_NONE from here.
2080                  */
2081                 result = BLUETOOTH_ERROR_NONE;
2082                 break;
2083         }
2084         case BT_OOB_READ_LOCAL_DATA: {  //208
2085                 bt_oob_data_t local_oob_data;
2086
2087                 memset(&local_oob_data, 0x00, sizeof(bt_oob_data_t));
2088                 result = _bt_oob_read_local_data(&local_oob_data);
2089
2090                 g_array_append_vals(*out_param1, &local_oob_data,
2091                                 sizeof(bt_oob_data_t));
2092
2093                 break;
2094         }
2095         case BT_OOB_ADD_REMOTE_DATA: {   //209
2096                 bluetooth_device_address_t address = { {0} };
2097                 unsigned short address_type;
2098                 bt_oob_data_t remote_oob_data;
2099
2100                 __bt_service_get_parameters(in_param1,
2101                                 &address, sizeof(bluetooth_device_address_t));
2102                 __bt_service_get_parameters(in_param2,
2103                                 &address_type, sizeof(unsigned short));
2104                 __bt_service_get_parameters(in_param3,
2105                                 &remote_oob_data, sizeof(bt_oob_data_t));
2106
2107                 result = _bt_oob_add_remote_data(&address, address_type, &remote_oob_data);
2108
2109                 break;
2110         }
2111         case BT_OOB_REMOVE_REMOTE_DATA: {       //210
2112                 bluetooth_device_address_t address = { {0} };
2113
2114                 __bt_service_get_parameters(in_param1,
2115                                 &address, sizeof(bluetooth_device_address_t));
2116
2117                 result = _bt_oob_remove_remote_data(&address);
2118
2119                 break;
2120         }
2121         case BT_LE_OOB_READ_LOCAL_DATA: {
2122                 bt_oob_data_t local_oob_data;
2123                 bt_oob_data_t *local_oob_cache_data;
2124
2125                 local_oob_cache_data = _bt_le_oob_get_local_cache_data();
2126                 if (local_oob_cache_data && local_oob_cache_data->eir_len) {
2127                         g_array_append_vals(*out_param1, local_oob_cache_data,
2128                                 sizeof(bt_oob_data_t));
2129                         return BLUETOOTH_ERROR_NONE;
2130                 }
2131
2132                 /* We should modify this logic in later */
2133                 if (_bt_is_le_static_random_address_enabled() == false) {
2134                         /* Seperate BT & LE address */
2135                         _bt_set_le_static_random_address(TRUE);
2136                 }
2137
2138                 result = _bt_le_oob_read_local_data(&local_oob_data);
2139                 _bt_le_oob_set_local_cache_data(&local_oob_data);
2140
2141                 g_array_append_vals(*out_param1, &local_oob_data,
2142                                 sizeof(bt_oob_data_t));
2143
2144                 break;
2145         }
2146         case BT_LE_OOB_ADD_REMOTE_DATA: {
2147                 bluetooth_device_address_t address = { {0} };
2148                 unsigned short address_type;
2149                 bt_oob_data_t remote_oob_data;
2150
2151                 __bt_service_get_parameters(in_param1,
2152                                 &address, sizeof(bluetooth_device_address_t));
2153                 __bt_service_get_parameters(in_param2,
2154                                 &address_type, sizeof(unsigned short));
2155                 __bt_service_get_parameters(in_param3,
2156                                 &remote_oob_data, sizeof(bt_oob_data_t));
2157
2158                 result = _bt_oob_add_remote_data(&address, address_type, &remote_oob_data);
2159
2160                 break;
2161         }
2162         case BT_AVRCP_SET_TRACK_INFO: {
2163                 media_metadata_t data;
2164                 media_metadata_attributes_t meta_data;
2165
2166                 memset(&data, 0x00, sizeof(media_metadata_t));
2167                 memset(&meta_data, 0x00, sizeof(media_metadata_attributes_t));
2168
2169                 __bt_service_get_parameters(in_param1,
2170                                 &data, sizeof(media_metadata_t));
2171
2172                 meta_data.title = g_strdup(data.title);
2173                 meta_data.artist = g_strdup(data.artist);
2174                 meta_data.album = g_strdup(data.album);
2175                 meta_data.genre = g_strdup(data.genre);
2176                 meta_data.total_tracks = data.total_tracks;
2177                 meta_data.number = data.number;
2178                 meta_data.duration = (int64_t) data.duration;
2179
2180                 result = _bt_avrcp_set_track_info(&meta_data);
2181
2182                 g_free((gpointer)meta_data.title);
2183                 g_free((gpointer)meta_data.artist);
2184                 g_free((gpointer)meta_data.album);
2185                 g_free((gpointer)meta_data.genre);
2186
2187                 break;
2188         }
2189         case BT_AVRCP_SET_PROPERTY: {
2190                 int type;
2191                 unsigned int value;
2192
2193                 sender = (char *)g_dbus_method_invocation_get_sender(context);
2194
2195                 __bt_service_get_parameters(in_param1,
2196                                 &type, sizeof(int));
2197                 __bt_service_get_parameters(in_param2,
2198                                 &value, sizeof(unsigned int));
2199
2200                 if (value == STATUS_PLAYING) {
2201                         if (current_sender_playing)
2202                                 g_free(current_sender_playing);
2203                         current_sender_playing = g_strdup(sender);
2204                 }
2205                 if (g_strcmp0(sender, current_sender_playing) == 0 ||
2206                         current_sender_playing == NULL) {
2207                         BT_INFO("Current Player Status %d type %d Sender %s", value, type, sender);
2208                 } else {
2209                         BT_INFO("Current Player and this sender (%s) are different", sender);
2210                         result = BLUETOOTH_ERROR_NONE;
2211                         break;
2212                 }
2213                 result = _bt_avrcp_set_property(type, value);
2214
2215                 break;
2216         }
2217         case BT_AVRCP_SET_PROPERTIES: {
2218                 media_player_settings_t properties;
2219
2220                 memset(&properties, 0x00, sizeof(media_player_settings_t));
2221                 __bt_service_get_parameters(in_param1,
2222                                 &properties, sizeof(media_player_settings_t));
2223
2224                 result = _bt_avrcp_set_properties(&properties);
2225
2226                 break;
2227         }
2228         case BT_SET_ADVERTISING_DATA: {
2229                 char *app = NULL;
2230                 int *adv_handle;
2231                 bluetooth_advertising_data_t adv = { {0} };
2232                 int length;
2233                 gboolean use_reserved_slot = FALSE;
2234
2235                 app = (char *)g_dbus_method_invocation_get_sender(context);
2236                 adv_handle = g_malloc0(sizeof(int));
2237
2238                 __bt_service_get_parameters(in_param1,
2239                                 adv_handle, sizeof(int));
2240                 __bt_service_get_parameters(in_param3,
2241                                 &length, sizeof(int));
2242                 __bt_service_get_parameters(in_param2,
2243                                 &adv, length);
2244                 __bt_service_get_parameters(in_param4,
2245                                 &use_reserved_slot, sizeof(gboolean));
2246                 result = _bt_set_advertising_data(app, *adv_handle,
2247                                 &adv, length, use_reserved_slot);
2248                 if (result != BLUETOOTH_ERROR_NONE) {
2249                         BT_ERR("Set Advertising data failed!!");
2250                         g_free(adv_handle);
2251                 } else {
2252                         _bt_save_invocation_context(context, result, app,
2253                                         function_name, (gpointer)adv_handle);
2254                 }
2255                 break;
2256         }
2257         case BT_SET_SCAN_RESPONSE_DATA: {
2258                 char *app = NULL;
2259                 int *adv_handle;
2260                 bluetooth_scan_resp_data_t rsp = { {0} };
2261                 int length;
2262                 gboolean use_reserved_slot = FALSE;
2263
2264                 app = (char *)g_dbus_method_invocation_get_sender(context);
2265                 adv_handle = g_malloc0(sizeof(int));
2266
2267                 __bt_service_get_parameters(in_param1,
2268                                 adv_handle, sizeof(int));
2269                 __bt_service_get_parameters(in_param3,
2270                                 &length, sizeof(int));
2271                 __bt_service_get_parameters(in_param2,
2272                                 &rsp, length);
2273                 __bt_service_get_parameters(in_param4,
2274                                 &use_reserved_slot, sizeof(gboolean));
2275
2276                 result = _bt_set_scan_response_data(app, *adv_handle,
2277                                 &rsp, length, use_reserved_slot);
2278
2279                 if (result != BLUETOOTH_ERROR_NONE) {
2280                         BT_ERR("Set Scan Response Data failed!!");
2281                         g_free(adv_handle);
2282                 } else {
2283                         _bt_save_invocation_context(context, result, app,
2284                                         function_name, (gpointer)adv_handle);
2285                 }
2286                 break;
2287         }
2288         case BT_SET_ADVERTISING: {
2289                 char *app = NULL;
2290                 int *adv_handle;
2291                 gboolean enable = FALSE;
2292                 gboolean use_reserved_slot = FALSE;
2293
2294                 adv_handle = g_malloc0(sizeof(int));
2295                 __bt_service_get_parameters(in_param1,
2296                                 adv_handle, sizeof(int));
2297                 __bt_service_get_parameters(in_param2,
2298                                 &enable, sizeof(gboolean));
2299                 __bt_service_get_parameters(in_param3,
2300                                 &use_reserved_slot, sizeof(gboolean));
2301
2302                 app = (char *)g_dbus_method_invocation_get_sender(context);
2303
2304                 result = _bt_set_advertising(app, *adv_handle,
2305                                 enable, use_reserved_slot);
2306                 if (result != BLUETOOTH_ERROR_NONE) {
2307                         BT_ERR("Start Advertising failed!!");
2308                         g_free(adv_handle);
2309                 } else {
2310                         _bt_save_invocation_context(context, result, app,
2311                                         function_name, (gpointer)adv_handle);
2312                 }
2313                 break;
2314         }
2315         case BT_SET_CUSTOM_ADVERTISING: {
2316                 char *app = NULL;
2317                 int *adv_handle;
2318                 gboolean enable = FALSE;
2319                 bluetooth_advertising_params_t adv_params;
2320                 gboolean use_reserved_slot = FALSE;
2321
2322                 app = (char *)g_dbus_method_invocation_get_sender(context);
2323                 adv_handle = g_malloc0(sizeof(int));
2324
2325                 __bt_service_get_parameters(in_param1, adv_handle,
2326                                 sizeof(int));
2327                 __bt_service_get_parameters(in_param2, &enable,
2328                                 sizeof(gboolean));
2329                 __bt_service_get_parameters(in_param3, &adv_params,
2330                                 sizeof(bluetooth_advertising_params_t));
2331                 __bt_service_get_parameters(in_param4, &use_reserved_slot,
2332                                 sizeof(gboolean));
2333
2334                 BT_DBG("bluetooth_advertising_params_t [%f %f %d %d %d]",
2335                                 adv_params.interval_min, adv_params.interval_max,
2336                                 adv_params.filter_policy, adv_params.type, adv_params.tx_power_level);
2337                 result = _bt_set_custom_advertising(app, *adv_handle,
2338                                 enable, &adv_params, use_reserved_slot);
2339                 if (result != BLUETOOTH_ERROR_NONE) {
2340                         BT_ERR("Start Custom Advertising failed!!");
2341                         g_free(adv_handle);
2342                 } else {
2343                         _bt_save_invocation_context(context, result, app,
2344                                         function_name, (gpointer)adv_handle);
2345                 }
2346                 break;
2347         }
2348         case BT_GET_SCAN_RESPONSE_DATA: {
2349                 bluetooth_scan_resp_data_t rsp = { {0} };
2350                 char *app = NULL;
2351                 int length = 0;
2352                 int adv_handle;
2353                 app = (char *)g_dbus_method_invocation_get_sender(context);
2354
2355                 __bt_service_get_parameters(in_param1, &adv_handle,
2356                                 sizeof(int));
2357
2358                 result = _bt_get_scan_response_data(app, adv_handle, &rsp, &length);
2359                 if (result == BLUETOOTH_ERROR_NONE)
2360                         g_array_append_vals(*out_param1, rsp.data, length);
2361
2362                 break;
2363         }
2364         case BT_GET_ADVERTISING_DATA: {
2365                 bluetooth_advertising_data_t adv = { {0} };
2366                 char *app = NULL;
2367                 int length = 0;
2368                 int adv_handle;
2369                 app = (char *)g_dbus_method_invocation_get_sender(context);
2370
2371                 __bt_service_get_parameters(in_param1, &adv_handle,
2372                                 sizeof(int));
2373
2374                 result = _bt_get_advertising_data(app, adv_handle, &adv, &length);
2375                 if (result == BLUETOOTH_ERROR_NONE)
2376                         g_array_append_vals(*out_param1, adv.data, length);
2377
2378                 break;
2379         }
2380         case BT_GATT_REGISTER_APPLICATION: {
2381                 BT_DBG("Register GATT application:Unhandled!!");
2382                 break;
2383         }
2384         case BT_GATT_SERVER_REGISTER: {
2385                 BT_DBG("GATT Server instance initialization");
2386                 char *app;
2387
2388                 app = (char *)g_dbus_method_invocation_get_sender(context);
2389                 BT_DBG("GATT Server Unique Name [%s]", app);
2390
2391                 /* No ADV handle: Set 0 */
2392                 result = _bt_register_server_instance(app, 0);
2393
2394                 if (result != BLUETOOTH_ERROR_NONE) {
2395                         BT_ERR("GATT Server registration failed. result %d", result);
2396                 } else {
2397                         _bt_save_invocation_context(context, result, app,
2398                                         function_name, NULL);
2399                 }
2400                 break;
2401         }
2402         case BT_GATT_SERVER_DEREGISTER: {
2403                 char *app;
2404                 app = (char*)g_dbus_method_invocation_get_sender(context);
2405
2406                 result = _bt_unregister_server_instance(app, 0/* Adv Handle*/);
2407                 break;
2408         }
2409         case BT_GATT_SERVER_ADD_SERVICE: {
2410                 BT_DBG("GATT Server Add Service");
2411                 int service_type;
2412                 int num_handles;
2413                 char *svc_uuid;
2414                 int instance_id;
2415                 char *app;
2416                 int *tmp_inst_id = NULL;
2417
2418                 app = (char *)g_dbus_method_invocation_get_sender(context);
2419
2420                 __bt_service_get_parameters(in_param1, &service_type,
2421                                 sizeof(int));
2422                 __bt_service_get_parameters(in_param2, &num_handles,
2423                                 sizeof(int));
2424                 svc_uuid = (char *)g_variant_get_data(in_param3);
2425                 __bt_service_get_parameters(in_param4, &instance_id,
2426                                 sizeof(int));
2427
2428                 result = _bt_gatt_server_add_service(app, service_type, num_handles, svc_uuid, instance_id);
2429                 if (result != BLUETOOTH_ERROR_NONE) {
2430                         BT_ERR("GATT Server Add Service failed!!");
2431                 } else {
2432                         tmp_inst_id = g_malloc0(sizeof(int));
2433                         *tmp_inst_id = instance_id;
2434                         _bt_save_invocation_context(context, result, app,
2435                                         function_name, (gpointer)tmp_inst_id);
2436                 }
2437                 break;
2438         }
2439         case BT_GATT_SERVER_ADD_CHARACTERISTIC: {
2440                 BT_DBG("GATT Server Add Characteristic");
2441                 char *char_uuid;
2442                 char *app;
2443                 int *tmp_inst_id = NULL;
2444                 bluetooth_gatt_server_attribute_params_t param;
2445                 memset(&param, 0, sizeof(bluetooth_gatt_server_attribute_params_t));
2446
2447                 app = (char*)g_dbus_method_invocation_get_sender(context);
2448
2449                 __bt_service_get_parameters(in_param1, &param,
2450                                 sizeof(bluetooth_gatt_server_attribute_params_t));
2451                 char_uuid = (char *)g_variant_get_data(in_param2);
2452
2453                 result = _bt_gatt_server_add_characteristic(app, char_uuid, &param);
2454                 if (result != BLUETOOTH_ERROR_NONE) {
2455                         BT_ERR("GATT Server Add Service failed!!");
2456                 } else {
2457                         tmp_inst_id = g_malloc0(sizeof(int));
2458                         *tmp_inst_id = param.instance_id;
2459
2460                         _bt_save_invocation_context(context, result, app,
2461                                         function_name, (gpointer)tmp_inst_id);
2462                 }
2463                 break;
2464         }
2465         case BT_GATT_SERVER_ADD_DESCRIPTOR: {
2466                 BT_DBG("GATT Server Add Descriptor");
2467                 char *desc_uuid;
2468                 int instance_id;
2469                 int service_handle;
2470                 bt_gatt_permission_t perm;
2471                 char *app;
2472                 int *tmp_inst_id = NULL;
2473                 memset(&perm, 0, sizeof(bt_gatt_permission_t));
2474
2475                 app = (char *)g_dbus_method_invocation_get_sender(context);
2476
2477                 __bt_service_get_parameters(in_param1, &service_handle,
2478                                 sizeof(int));
2479                 __bt_service_get_parameters(in_param2, &instance_id,
2480                                 sizeof(int));
2481                 desc_uuid = (char *)g_variant_get_data(in_param4);
2482                 __bt_service_get_parameters(in_param3, &perm,
2483                                 sizeof(bt_gatt_permission_t));
2484
2485                 result = _bt_gatt_server_add_descriptor(app, desc_uuid, &perm, service_handle, instance_id);
2486                 if (result != BLUETOOTH_ERROR_NONE) {
2487                         BT_ERR("GATT Server Add Service failed!!");
2488                 } else {
2489                         tmp_inst_id = g_malloc0(sizeof(int));
2490                         *tmp_inst_id = instance_id;
2491                         _bt_save_invocation_context(context, result, app,
2492                                         function_name, (gpointer)tmp_inst_id);
2493                 }
2494                 break;
2495         }
2496         case BT_GATT_SERVER_START_SERVICE: {
2497                 int service_handle;
2498                 int instance_id;
2499
2500                 char *app;
2501                 int *tmp_inst_id = NULL;
2502                 app = (char*)g_dbus_method_invocation_get_sender(context);
2503
2504                 __bt_service_get_parameters(in_param1, &service_handle,
2505                                 sizeof(int));
2506                 __bt_service_get_parameters(in_param2, &instance_id,
2507                                 sizeof(int));
2508
2509                 result = _bt_gatt_server_start_service(app, service_handle, instance_id);
2510
2511                 if (BLUETOOTH_ERROR_NONE == result) {
2512                         tmp_inst_id = g_malloc0(sizeof(int));
2513                         *tmp_inst_id = instance_id;
2514                         _bt_save_invocation_context(context, result, app,
2515                                         function_name, (gpointer)tmp_inst_id);
2516                 }
2517                 break;
2518         }
2519         case BT_GATT_SERVER_STOP_SERVICE: {
2520                 int service_handle;
2521                 int instance_id;
2522                 char *app;
2523                 int *tmp_inst_id = NULL;
2524                 app = (char*)g_dbus_method_invocation_get_sender(context);
2525
2526                 __bt_service_get_parameters(in_param1, &service_handle,
2527                                 sizeof(int));
2528                 __bt_service_get_parameters(in_param2, &instance_id,
2529                                 sizeof(int));
2530
2531                 result = _bt_gatt_server_stop_service(app, service_handle, instance_id);
2532
2533                 if (BLUETOOTH_ERROR_NONE == result) {
2534                         tmp_inst_id = g_malloc0(sizeof(int));
2535                         *tmp_inst_id = instance_id;
2536                         _bt_save_invocation_context(context, result, app,
2537                                         function_name, (gpointer)tmp_inst_id);
2538                 }
2539                 break;
2540         }
2541         case BT_GATT_SERVER_DELETE_SERVICE: {
2542                 int service_handle;
2543                 int instance_id;
2544                 int *tmp_inst_id = NULL;
2545                 char *app;
2546                 app = (char*)g_dbus_method_invocation_get_sender(context);
2547
2548                 __bt_service_get_parameters(in_param1, &service_handle,
2549                                 sizeof(int));
2550                 __bt_service_get_parameters(in_param2, &instance_id,
2551                                 sizeof(int));
2552
2553                 result = _bt_gatt_server_delete_service(app, service_handle, instance_id);
2554
2555                 if (BLUETOOTH_ERROR_NONE == result) {
2556                         tmp_inst_id = g_malloc0(sizeof(int));
2557                         *tmp_inst_id = instance_id;
2558                         _bt_save_invocation_context(context, result, app,
2559                                         function_name, (gpointer)tmp_inst_id);
2560                 }
2561                 break;
2562         }
2563         case BT_GATT_SERVER_SEND_RESPONSE: {
2564                 bluetooth_gatt_server_response_params_t param;
2565                 bluetooth_gatt_att_data_t data;
2566                 char *app;
2567
2568                 memset(&param, 0x00, sizeof(bluetooth_gatt_server_response_params_t));
2569                 memset(&data, 0x00, sizeof(bluetooth_gatt_att_data_t));
2570
2571                 app = (char*)g_dbus_method_invocation_get_sender(context);
2572
2573                 __bt_service_get_parameters(in_param1, &data,
2574                                 sizeof(bluetooth_gatt_att_data_t));
2575                 __bt_service_get_parameters(in_param2, &param,
2576                                 sizeof(bluetooth_gatt_server_response_params_t));
2577
2578                 result = _bt_gatt_server_send_response(app, &data, &param);
2579
2580                 break;
2581         }
2582         case BT_GATT_SERVER_ACQURE_WRITE_RESPONSE: {
2583
2584                 bluetooth_gatt_server_acquire_response_params_t param;
2585                 char *app;
2586                 GDBusMessage *msg;
2587                 msg = g_dbus_method_invocation_get_message(context);
2588                 GUnixFDList *fd_list;
2589                 int fd  = -1;;
2590                 int *fd_list_array;
2591                 int len;
2592
2593                 fd_list = g_dbus_message_get_unix_fd_list(msg);
2594
2595                 memset(&param, 0x00, sizeof(bluetooth_gatt_server_acquire_response_params_t));
2596
2597                 app = (char*)g_dbus_method_invocation_get_sender(context);
2598
2599                 __bt_service_get_parameters(in_param1, &param,
2600                                 sizeof(bluetooth_gatt_server_acquire_response_params_t));
2601
2602                 fd_list_array = (int *)g_unix_fd_list_peek_fds(fd_list, &len);
2603                 BT_DBG("Num fds in fd_list is : %d, fd_list[0]: %d", len, fd_list_array[0]);
2604                 fd = fd_list_array[0];
2605
2606                 param.fd = fd;
2607                 result = _bt_gatt_server_acquire_send_response(app, &param, fd_list);
2608
2609                 break;
2610         }
2611         case BT_GATT_SERVER_ACQUIRE_NOTIFY_RESPONSE: {
2612
2613                 bluetooth_gatt_server_acquire_response_params_t param;
2614                 char *app;
2615                 GDBusMessage *msg;
2616                 msg = g_dbus_method_invocation_get_message(context);
2617                 GUnixFDList *fd_list;
2618                 int fd  = -1;
2619                 int *fd_list_array;
2620                 int len;
2621
2622                 fd_list = g_dbus_message_get_unix_fd_list(msg);
2623
2624                 memset(&param, 0x00, sizeof(bluetooth_gatt_server_acquire_response_params_t));
2625
2626                 app = (char*)g_dbus_method_invocation_get_sender(context);
2627
2628                 __bt_service_get_parameters(in_param1, &param,
2629                                 sizeof(bluetooth_gatt_server_acquire_response_params_t));
2630
2631                 fd_list_array = (int *)g_unix_fd_list_peek_fds(fd_list, &len);
2632                 BT_DBG("Num fds in fd_list is : %d, fd_list[0]: %d", len, fd_list_array[0]);
2633                 fd = fd_list_array[0];
2634
2635                 param.fd = fd;
2636                 result = _bt_gatt_server_acquire_send_response(app, &param, fd_list);
2637
2638                 break;
2639         }
2640         case BT_GATT_SERVER_SEND_INDICATION: {
2641                 bluetooth_gatt_server_indication_params_t param;
2642                 bluetooth_gatt_att_data_t data;
2643                 bluetooth_device_address_t address;
2644
2645                 char *app;
2646                 app = (char*)g_dbus_method_invocation_get_sender(context);
2647
2648                 memset(&param, 0x00, sizeof(bluetooth_gatt_server_indication_params_t));
2649                 memset(&data, 0x00, sizeof(bluetooth_gatt_att_data_t));
2650                 memset(&address, 0x00, sizeof(bluetooth_device_address_t));
2651
2652                 __bt_service_get_parameters(in_param1, &data,
2653                                 sizeof(bluetooth_gatt_att_data_t));
2654                 __bt_service_get_parameters(in_param2, &param,
2655                                 sizeof(bluetooth_gatt_server_indication_params_t));
2656                 __bt_service_get_parameters(in_param3, &address,
2657                                 sizeof(bluetooth_device_address_t));
2658
2659                 result = _bt_gatt_server_send_indication(app, &address, &data, &param);
2660
2661                 break;
2662         }
2663         case BT_GATT_SERVER_UPDATE_VALUE: {
2664                 bluetooth_gatt_server_update_value_t param;
2665                 int instance_id;
2666                 char *app;
2667
2668                 memset(&param, 0x00, sizeof(bluetooth_gatt_server_update_value_t));
2669
2670                 app = (char*)g_dbus_method_invocation_get_sender(context);
2671
2672                 __bt_service_get_parameters(in_param1, &instance_id,
2673                                 sizeof(int));
2674                 __bt_service_get_parameters(in_param2, &param,
2675                                 sizeof(bluetooth_gatt_server_update_value_t));
2676
2677                 result = _bt_gatt_server_update_attribute_value(app, instance_id, &param);
2678                 break;
2679         }
2680         case BT_GET_ATT_MTU: {
2681                 bluetooth_device_address_t address = { {0} };
2682                 unsigned int mtu = 0;
2683
2684                 __bt_service_get_parameters(in_param1,
2685                                 &address, sizeof(bluetooth_device_address_t));
2686                 result = _bt_get_att_mtu(&address, &mtu);
2687                 BT_DBG("MTU: %d", mtu);
2688
2689                 if (result == BLUETOOTH_ERROR_NONE) {
2690                         g_array_append_vals(*out_param1, &mtu,
2691                                         sizeof(unsigned int));
2692                 }
2693                 break;
2694         }
2695         case BT_REQ_ATT_MTU: {
2696                 bluetooth_device_address_t address = { {0} };
2697                 unsigned int mtu;
2698                 char *addr;
2699
2700                 sender = (char*)g_dbus_method_invocation_get_sender(context);
2701
2702                 __bt_service_get_parameters(in_param1,
2703                                 &address, sizeof(bluetooth_device_address_t));
2704                 __bt_service_get_parameters(in_param2,
2705                                 &mtu, sizeof(unsigned int));
2706                 BT_DBG("BT_REQ_ATT_MTU: %d", mtu);
2707                 result = _bt_request_att_mtu(&address, mtu);
2708                 if (BLUETOOTH_ERROR_NONE == result) {
2709                         addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
2710
2711                         _bt_convert_addr_type_to_string(addr, address.addr);
2712
2713                         /* Save the informations to invocation */
2714                         _bt_save_invocation_context(context, result, sender,
2715                                         function_name, (gpointer)addr);
2716                 } else {
2717                         g_array_append_vals(*out_param1, &address,
2718                                         sizeof(bluetooth_device_address_t));
2719                 }
2720                 break;
2721         }
2722         case BT_GET_DEVICE_IDA: {
2723                 bluetooth_device_address_t address = { {0} };
2724                 bluetooth_device_address_t id_addr = { {0} };
2725
2726                 __bt_service_get_parameters(in_param1,
2727                                 &address, sizeof(bluetooth_device_address_t));
2728
2729                 result = _bt_device_get_ida(&address, &id_addr);
2730
2731                 if (result == BLUETOOTH_ERROR_NONE) {
2732                         g_array_append_vals(*out_param1, &id_addr,
2733                                         sizeof(bluetooth_device_address_t));
2734                 }
2735                 break;
2736         }
2737         case BT_SET_LE_STATIC_RANDOM_ADDRESS: {
2738                 gboolean is_enable;
2739
2740                 __bt_service_get_parameters(in_param1, &is_enable,
2741                                 sizeof(gboolean));
2742
2743                 result = _bt_set_le_static_random_address(is_enable);
2744
2745                 break;
2746         }
2747         /* Local Async */
2748         case BT_GATT_CLIENT_REGISTER: {
2749                 bluetooth_device_address_t address = { {0} };
2750                 char *addr;
2751
2752                 sender = (char*)g_dbus_method_invocation_get_sender(context);
2753
2754                 __bt_service_get_parameters(in_param1,
2755                                 &address, sizeof(bluetooth_device_address_t));
2756
2757                 result = _bt_register_gatt_client_instance(sender, &address);
2758                 if (BLUETOOTH_ERROR_NONE == result) {
2759                         addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
2760
2761                         _bt_convert_addr_type_to_string(addr, address.addr);
2762
2763                         /* Save the informations to invocation */
2764                         _bt_save_invocation_context(context, result, sender,
2765                                         function_name, (gpointer)addr);
2766                 }
2767                 break;
2768         }
2769         /* Sync */
2770         case BT_GATT_CLIENT_UNREGISTER: {
2771                 int client_id;
2772
2773                 sender = (char*)g_dbus_method_invocation_get_sender(context);
2774                 __bt_service_get_parameters(in_param1,
2775                                 &client_id, sizeof(int));
2776
2777                 result = _bt_unregister_gatt_client_instance(sender, client_id);
2778                 break;
2779         }
2780
2781         /* Async: Remote Interaction  */
2782         case BT_GATT_ACQUIRE_WRITE: {
2783
2784                 int fd = -1;
2785                 int mtu = -1;
2786                 bluetooth_gatt_client_char_prop_info_t param;
2787
2788                 sender = (char*)g_dbus_method_invocation_get_sender(context);
2789
2790                 __bt_service_get_parameters(in_param1, &param,
2791                                         sizeof(bluetooth_gatt_client_char_prop_info_t));
2792
2793
2794                 result   = _bt_gatt_acquire_write(&param , &fd, &mtu);
2795
2796                 g_array_append_vals(*out_param1, &mtu, sizeof(int));
2797
2798                 if (BLUETOOTH_ERROR_NONE == result)
2799                         BT_DBG("GATT Client: Save Invocation data for characteristic props app[%s] fd[ %d]", sender, fd);
2800                 else {
2801                         BT_ERR("GATT Client: gatt acquire write failed");
2802                         break;
2803                 }
2804
2805                 GUnixFDList *fd_list = NULL;
2806                 GError *error = NULL;
2807
2808                 /* Add socket fd to unix_fd_list */
2809                 fd_list = g_unix_fd_list_new();
2810                 g_unix_fd_list_append(fd_list, fd, &error);
2811                 g_assert_no_error(error);
2812
2813                 _bt_service_method_return_with_unix_fd_list(
2814                                 context, *out_param1, result, fd_list);
2815
2816                 close(fd);
2817                 g_object_unref(fd_list);
2818
2819                 break;
2820         }
2821         /* Async: Remote Interaction  */
2822         case BT_CONNECT_LE: {
2823                 bluetooth_device_address_t address = { {0} };
2824                 gboolean auto_connect;
2825                 char *addr;
2826                 int client_id;
2827
2828                 sender = (char*)g_dbus_method_invocation_get_sender(context);
2829
2830                 __bt_service_get_parameters(in_param1,
2831                                 &address, sizeof(bluetooth_device_address_t));
2832                 __bt_service_get_parameters(in_param2,
2833                                 &auto_connect, sizeof(gboolean));
2834                 __bt_service_get_parameters(in_param3,
2835                                 &client_id, sizeof(int));
2836
2837                 BT_DBG("GATT Client: client_id[%d]", client_id);
2838                 result = _bt_connect_le_device(&address, auto_connect, client_id);
2839                 if (BLUETOOTH_ERROR_NONE == result) {
2840                         addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
2841                         _bt_convert_addr_type_to_string(addr, address.addr);
2842
2843                         /* Save the informations to invocation */
2844                         _bt_save_invocation_context(context, result, sender,
2845                                         function_name, (gpointer)addr);
2846
2847                         if (auto_connect)
2848                                 _bt_handle_invocation_context(function_name, (void *)addr);
2849                 } else {
2850                         BT_ERR("GATT Client: gatt connect failed. client_id[%d]", client_id);
2851                         g_array_append_vals(*out_param1, &address,
2852                                         sizeof(bluetooth_device_address_t));
2853                 }
2854                 break;
2855         }
2856         /* Async: Remote Interaction  */
2857         case BT_DISCONNECT_LE: {
2858                 bluetooth_device_address_t address = { {0} };
2859                 char *addr;
2860                 int client_id;
2861
2862                 sender = (char*)g_dbus_method_invocation_get_sender(context);
2863
2864                 __bt_service_get_parameters(in_param1,
2865                                 &address, sizeof(bluetooth_device_address_t));
2866                 __bt_service_get_parameters(in_param2,
2867                                 &client_id, sizeof(int));
2868
2869                 BT_INFO("GATT Disconnect using client Interface [%d]", client_id);
2870                 result = _bt_disconnect_le_device(&address, client_id);
2871                 if (BLUETOOTH_ERROR_NONE == result) {
2872                         addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
2873
2874                         _bt_convert_addr_type_to_string(addr, address.addr);
2875
2876                         /* Save the informations to invocation */
2877                         _bt_save_invocation_context(context, result, sender,
2878                                         function_name, (gpointer)addr);
2879                 } else {
2880                         g_array_append_vals(*out_param1, &address,
2881                                         sizeof(bluetooth_device_address_t));
2882                 }
2883                 break;
2884         }
2885         /* Sync */
2886         case BT_GET_GATT_DATA_BATCHING_AVAILABLE_PACKETS: {
2887                 guint available_packets = 0;
2888
2889                 result = _bt_gatt_get_data_batching_available_packets(&available_packets);
2890                 BT_DBG("LE batching available packets %u", available_packets);
2891                 if (result == BLUETOOTH_ERROR_NONE) {
2892                         g_array_append_vals(*out_param1, &available_packets,
2893                                         sizeof(guint));
2894                 }
2895
2896                 break;
2897         }
2898         /* Sync */
2899         case BT_ENABLE_GATT_DATA_BATCHING: {
2900                 bluetooth_device_address_t address = { {0} };
2901                 int packet_threshold;
2902                 int timeout;
2903
2904                 __bt_service_get_parameters(in_param1,
2905                                 &address, sizeof(bluetooth_device_address_t));
2906                 __bt_service_get_parameters(in_param2,
2907                                 &packet_threshold, sizeof(int));
2908                 __bt_service_get_parameters(in_param3,
2909                                 &timeout, sizeof(int));
2910                 result = _bt_gatt_enable_data_batching(&address, packet_threshold, timeout);
2911
2912                 break;
2913         }
2914         /* Sync */
2915         case BT_DISABLE_GATT_DATA_BATCHING: {
2916                 bluetooth_device_address_t address = { {0} };
2917
2918                 __bt_service_get_parameters(in_param1,
2919                                 &address, sizeof(bluetooth_device_address_t));
2920                 result = _bt_gatt_disable_data_batching(&address);
2921
2922                 break;
2923         }
2924
2925         case BT_GATT_GET_PRIMARY_SERVICES: {
2926                 char *addr;
2927
2928                 sender = (char*)g_dbus_method_invocation_get_sender(context);
2929                 bluetooth_device_address_t address = { {0} };
2930
2931                 __bt_service_get_parameters(in_param1, &address,
2932                                 sizeof(bluetooth_device_address_t));
2933
2934                 addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
2935                 _bt_convert_addr_type_to_string(addr, address.addr);
2936
2937                 result = _bt_gatt_get_primary_services(addr);
2938                 if (BLUETOOTH_ERROR_NONE == result) {
2939                         _bt_save_invocation_context(context, result, sender,
2940                                         function_name, (gpointer)addr);
2941                 } else
2942                         g_free(addr);
2943                 break;
2944         }
2945         /* Local Async */
2946         case BT_GATT_GET_SERVICE_PROPERTIES: {
2947                 bluetooth_gatt_client_svc_prop_info_t param;
2948
2949                 sender = (char*)g_dbus_method_invocation_get_sender(context);
2950                 memset(&param, 0x00, sizeof(bluetooth_gatt_client_svc_prop_info_t));
2951
2952                 __bt_service_get_parameters(in_param1, &param,
2953                                 sizeof(bluetooth_gatt_client_svc_prop_info_t));
2954
2955                 result = _bt_gatt_get_all_characteristic(&param);
2956                 if (BLUETOOTH_ERROR_NONE == result) {
2957                         /* Save the informations to invocation */
2958                         _bt_save_invocation_context(context, result, sender,
2959                                         function_name,
2960                                         (gpointer)g_memdup(&param, sizeof(bluetooth_gatt_client_svc_prop_info_t)));
2961                 }
2962                 break;
2963         }
2964         case BT_GATT_GET_CHARACTERISTIC_PROPERTIES: {
2965                 bluetooth_gatt_client_char_prop_info_t param;
2966
2967                 sender = (char*)g_dbus_method_invocation_get_sender(context);
2968                 memset(&param, 0x00, sizeof(bluetooth_gatt_client_char_prop_info_t));
2969
2970                 __bt_service_get_parameters(in_param1, &param,
2971                                 sizeof(bluetooth_gatt_client_char_prop_info_t));
2972
2973                 result = _bt_gatt_get_all_characteristic_properties(&param);
2974                 if (BLUETOOTH_ERROR_NONE == result) {
2975                         /* Save the informations to invocation */
2976                         _bt_save_invocation_context(context, result, sender,
2977                                         function_name,
2978                                         (gpointer)g_memdup(&param, sizeof(bluetooth_gatt_client_char_prop_info_t)));
2979                 }
2980                 break;
2981         }
2982         /* Async: Remote Interaction  */
2983         case BT_GATT_READ_CHARACTERISTIC: {
2984                 bluetooth_gatt_client_char_prop_info_t param;
2985
2986                 sender = (char*)g_dbus_method_invocation_get_sender(context);
2987                 memset(&param, 0x00, sizeof(bluetooth_gatt_client_char_prop_info_t));
2988
2989                 __bt_service_get_parameters(in_param1, &param,
2990                                 sizeof(bluetooth_gatt_client_char_prop_info_t));
2991
2992                 result = _bt_gatt_read_characteristic_value(&param);
2993                 if (BLUETOOTH_ERROR_NONE == result) {
2994                         /* Save the informations to invocation */
2995                         _bt_save_invocation_context(context, result, sender,
2996                                         function_name,
2997                                         (gpointer)g_memdup(&param, sizeof(bluetooth_gatt_client_char_prop_info_t)));
2998                 }
2999                 break;
3000         }
3001         /* Async: Remote Interaction  */
3002         case BT_GATT_READ_DESCRIPTOR_VALUE: {
3003                 bluetooth_gatt_client_desc_prop_info_t param;
3004
3005                 sender = (char*)g_dbus_method_invocation_get_sender(context);
3006                 memset(&param, 0x00, sizeof(bluetooth_gatt_client_desc_prop_info_t));
3007
3008                 __bt_service_get_parameters(in_param1, &param,
3009                                 sizeof(bluetooth_gatt_client_desc_prop_info_t));
3010
3011                 result = _bt_gatt_read_descriptor_value(&param);
3012                 if (BLUETOOTH_ERROR_NONE == result) {
3013                         /* Save the informations to invocation */
3014                         _bt_save_invocation_context(context, result, sender,
3015                                         function_name,
3016                                         (gpointer)g_memdup(&param, sizeof(bluetooth_gatt_client_desc_prop_info_t)));
3017                 }
3018                 break;
3019         }
3020         /* Async: Remote Interaction  */
3021         case BT_GATT_WRITE_CHARACTERISTIC_VALUE_BY_TYPE: {
3022                 bluetooth_gatt_client_char_prop_info_t param;
3023                 bluetooth_gatt_att_data_t data;
3024                 bluetooth_gatt_write_type_e write_type;
3025
3026                 sender = (char*)g_dbus_method_invocation_get_sender(context);
3027
3028                 memset(&data, 0x00, sizeof(bluetooth_gatt_att_data_t));
3029                 memset(&param, 0x00, sizeof(bluetooth_gatt_client_char_prop_info_t));
3030
3031                 __bt_service_get_parameters(in_param1, &param,
3032                                 sizeof(bluetooth_gatt_client_char_prop_info_t));
3033                 __bt_service_get_parameters(in_param2, &data,
3034                                 sizeof(bluetooth_gatt_att_data_t));
3035                 __bt_service_get_parameters(in_param3, &write_type,
3036                                 sizeof(bluetooth_gatt_write_type_e));
3037
3038                 result = _bt_gatt_write_characteristic_value_by_type(&param , &data, write_type);
3039                 if (BLUETOOTH_ERROR_NONE == result) {
3040                         /* Save the informations to invocation */
3041                         _bt_save_invocation_context(context, result, sender,
3042                                         function_name,
3043                                         (gpointer)g_memdup(&param, sizeof(bluetooth_gatt_client_char_prop_info_t)));
3044                 }
3045                 break;
3046         }
3047         /* Async: Remote Interaction  */
3048         case BT_GATT_WRITE_DESCRIPTOR_VALUE: {
3049                 bluetooth_gatt_client_desc_prop_info_t param;
3050                 bluetooth_gatt_att_data_t data;
3051                 bluetooth_gatt_write_type_e write_type;
3052
3053                 sender = (char*)g_dbus_method_invocation_get_sender(context);
3054                 memset(&data, 0x00, sizeof(bluetooth_gatt_att_data_t));
3055                 memset(&param, 0x00, sizeof(bluetooth_gatt_client_desc_prop_info_t));
3056
3057                 __bt_service_get_parameters(in_param1, &param,
3058                                 sizeof(bluetooth_gatt_client_desc_prop_info_t));
3059                 __bt_service_get_parameters(in_param2, &data,
3060                                 sizeof(bluetooth_gatt_att_data_t));
3061                 __bt_service_get_parameters(in_param3, &write_type,
3062                                 sizeof(bluetooth_gatt_write_type_e));
3063
3064                 result = _bt_gatt_write_descriptor_value_by_type(&param, &data, write_type);
3065                 if (BLUETOOTH_ERROR_NONE == result) {
3066                         /* Save the informations to invocation */
3067                         _bt_save_invocation_context(context, result, sender,
3068                                         function_name,
3069                                         (gpointer)g_memdup(&param, sizeof(bluetooth_gatt_client_desc_prop_info_t)));
3070                 }
3071                 break;
3072         }
3073         /* Local Async */
3074         case BT_GATT_WATCH_CHARACTERISTIC: {
3075                 bluetooth_gatt_client_char_prop_info_t param;
3076                 int client_id;
3077                 gboolean is_notify;
3078                 int fd = -1;
3079                 int mtu = 0;
3080                 gboolean is_indicate;
3081
3082
3083                 memset(&param, 0x00, sizeof(bluetooth_gatt_client_char_prop_info_t));
3084
3085                 sender = (char*)g_dbus_method_invocation_get_sender(context);
3086
3087                 __bt_service_get_parameters(in_param1, &param,
3088                                 sizeof(bluetooth_gatt_client_char_prop_info_t));
3089                 __bt_service_get_parameters(in_param2, &client_id,
3090                                 sizeof(int));
3091                 __bt_service_get_parameters(in_param3, &is_notify,
3092                                 sizeof(gboolean));
3093                 __bt_service_get_parameters(in_param4, &is_indicate,
3094                                 sizeof(gboolean));
3095
3096 #ifdef TIZEN_FEATURE_BT_GATT_CLIENT_FD_DISABLE
3097                 goto normal;
3098 #endif
3099
3100                 if (is_indicate == false) {
3101                         result   = _bt_gatt_acquire_notify(&param , &fd, &mtu);
3102                         if (BLUETOOTH_ERROR_NONE == result && fd > -1) {
3103                                 BT_DBG("GATT Client: Save Invocation data for characteristic props app[%s] fd[ %d]", sender, fd);
3104
3105                                 GUnixFDList *fd_list = NULL;
3106                                 GError *error = NULL;
3107
3108                                 g_array_append_vals(*out_param1, &mtu, sizeof(int));
3109                                 /* Add socket fd to unix_fd_list */
3110                                 fd_list = g_unix_fd_list_new();
3111                                 g_unix_fd_list_append(fd_list, fd, &error);
3112                                 g_assert_no_error(error);
3113                                 close(fd);
3114                                 _bt_service_method_return_with_unix_fd_list(
3115                                 context, *out_param1, result, fd_list);
3116
3117                                 g_object_unref(fd_list);
3118                         } else
3119                                 goto normal;
3120                 } else {
3121
3122 normal:
3123                         result = _bt_gatt_watch_characteristic(&param , client_id, is_notify);
3124                         if (BLUETOOTH_ERROR_NONE == result) {
3125                                 /* Save the informations to invocation */
3126                                 _bt_save_invocation_context(context, result, sender, function_name,
3127                                          (gpointer)g_memdup(&param, sizeof(bluetooth_gatt_client_char_prop_info_t)));
3128                         }
3129                 }
3130                 break;
3131         }
3132         case BT_GATT_WATCH_SERVICE_CHANGED_INDICATION: {
3133                 gboolean is_enabled;
3134                 bluetooth_device_address_t address;
3135
3136                 sender = (char*)g_dbus_method_invocation_get_sender(context);
3137
3138                 __bt_service_get_parameters(in_param1,
3139                                 &address, sizeof(bluetooth_device_address_t));
3140                 __bt_service_get_parameters(in_param2, &is_enabled,
3141                                 sizeof(gboolean));
3142                 result = _bt_gatt_watch_service_changed_indication(sender, &address, is_enabled);
3143                 BT_INFO("Service changed indication from app [%s]", sender);
3144
3145                 break;
3146         }
3147         case BT_LE_CONN_UPDATE: {
3148                 char *sender = NULL;
3149                 bluetooth_device_address_t local_address = { {0} };
3150                 bluetooth_le_connection_param_t parameters = {0};
3151
3152                 sender = (char *)g_dbus_method_invocation_get_sender(context);
3153
3154                 __bt_service_get_parameters(in_param1, &local_address,
3155                                 sizeof(bluetooth_device_address_t));
3156                 __bt_service_get_parameters(in_param2, &parameters,
3157                                 sizeof(bluetooth_le_connection_param_t));
3158
3159                 result = _bt_le_connection_update(sender,
3160                                         local_address.addr,
3161                                         parameters.interval_min,
3162                                         parameters.interval_max,
3163                                         parameters.latency,
3164                                         parameters.timeout);
3165                 break;
3166         }
3167         case BT_START_LE_DISCOVERY: {
3168                 uid_t uid = 0;
3169                 pid_t pid = 0;
3170
3171                 __bt_service_get_parameters(in_param1, &uid, sizeof(uid_t));
3172
3173                 sender = (char *)g_dbus_method_invocation_get_sender(context);
3174
3175                 if (__bt_service_get_sender_pid(sender, &pid) != BLUETOOTH_ERROR_NONE)
3176                         BT_ERR("Fail to get the sender pid");
3177
3178                 result = _bt_start_le_scan(sender, uid, pid);
3179                 if (result == BLUETOOTH_ERROR_NONE) {
3180                         _bt_save_invocation_context(context, result, sender,
3181                                         function_name, NULL);
3182
3183                         BT_DBG("Remeber pid / uid for the scan operation");
3184                         _bt_bm_add_scan_app(SCAN_LE, uid, pid);
3185                 }
3186                 break;
3187         }
3188         case BT_STOP_LE_DISCOVERY: {
3189                 uid_t uid = 0;
3190                 pid_t pid = 0;
3191
3192                 __bt_service_get_parameters(in_param1, &uid, sizeof(uid_t));
3193
3194                 sender = (char *)g_dbus_method_invocation_get_sender(context);
3195
3196                 if (__bt_service_get_sender_pid(sender, &pid) != BLUETOOTH_ERROR_NONE)
3197                         BT_ERR("Fail to get the sender pid");
3198
3199                 result = _bt_stop_le_scan(sender);
3200                 if (result == BLUETOOTH_ERROR_NONE) {
3201                         _bt_save_invocation_context(context, result, sender,
3202                                         function_name, NULL);
3203                 }
3204
3205                 BT_DBG("Remove pid / uid for the scan operation");
3206                 _bt_bm_remove_scan_app(SCAN_LE, uid, pid);
3207
3208                 break;
3209         }
3210         case BT_IS_LE_DISCOVERYING: {
3211                 gboolean le_discovering = FALSE;
3212
3213                 le_discovering = _bt_is_le_scanning();
3214                 g_array_append_vals(*out_param1,
3215                                 &le_discovering, sizeof(gboolean));
3216                 break;
3217         }
3218         case BT_SET_SCAN_PARAMETERS: {
3219                 bluetooth_le_scan_params_t scan_params;
3220
3221                 __bt_service_get_parameters(in_param1, &scan_params,
3222                                 sizeof(bluetooth_le_scan_params_t));
3223
3224                 BT_DBG("bluetooth_le_scan_params_t [%f %f %d]",
3225                                 scan_params.interval, scan_params.window,
3226                                 scan_params.type);
3227
3228                 result = _bt_prepare_scan_parameters(&scan_params, 0);
3229                 break;
3230         }
3231         case BT_SET_SCAN_TYPE: {
3232                 int scan_type = 0;
3233                 __bt_service_get_parameters(in_param1, &scan_type, sizeof(int));
3234
3235                 BT_DBG("bluetooth_le_scan_type [%d]", scan_type);
3236                 result = _bt_prepare_scan_parameters(NULL, scan_type);
3237                 break;
3238         }
3239 #ifdef TIZEN_FEATURE_BT_PAN_NAP
3240         case BT_NETWORK_ACTIVATE:
3241                 BT_DBG("BT_NETWORK_ACTIVATE Request recieved Request Handler ");
3242                 result = _bt_network_activate();
3243                 break;
3244         case BT_NETWORK_DEACTIVATE:
3245                 result = _bt_network_deactivate();
3246                 break;
3247         case BT_NETWORK_CONNECT: {
3248                 bluetooth_device_address_t address = { {0} };
3249                 int role;
3250
3251                 __bt_service_get_parameters(in_param1,
3252                                 &address, sizeof(bluetooth_device_address_t));
3253                 __bt_service_get_parameters(in_param2,
3254                                 &role, sizeof(int));
3255
3256                 result = _bt_network_connect(request_id, role, &address);
3257                 if (result != BLUETOOTH_ERROR_NONE) {
3258                         g_array_append_vals(*out_param1, &address,
3259                                         sizeof(bluetooth_device_address_t));
3260                 }
3261                 break;
3262         }
3263         case BT_NETWORK_DISCONNECT: {
3264                 bluetooth_device_address_t address = { {0} };
3265
3266                 __bt_service_get_parameters(in_param1,
3267                                 &address, sizeof(bluetooth_device_address_t));
3268
3269                 result = _bt_network_disconnect(request_id, &address);
3270                 if (result != BLUETOOTH_ERROR_NONE) {
3271                         g_array_append_vals(*out_param1, &address,
3272                                         sizeof(bluetooth_device_address_t));
3273                 }
3274                 break;
3275         }
3276         case BT_NETWORK_SERVER_DISCONNECT: {
3277                 bluetooth_device_address_t address = { {0} };
3278
3279                 __bt_service_get_parameters(in_param1,
3280                                 &address, sizeof(bluetooth_device_address_t));
3281
3282                 result = _bt_network_server_disconnect(request_id, &address);
3283                 if (result != BLUETOOTH_ERROR_NONE) {
3284                         g_array_append_vals(*out_param1, &address,
3285                                         sizeof(bluetooth_device_address_t));
3286                 }
3287                 break;
3288         }
3289
3290 #endif
3291 #ifdef TIZEN_FEATURE_BT_IPSP
3292         case BT_LE_IPSP_INIT:
3293                 result = _bt_initialize_ipsp();
3294                 break;
3295         case BT_LE_IPSP_DEINIT:
3296                 result = _bt_deinitialize_ipsp();
3297                 break;
3298         case BT_LE_IPSP_CONNECT: {
3299                 bluetooth_device_address_t address = { {0} };
3300                 __bt_service_get_parameters(in_param1, &address,
3301                                 sizeof(bluetooth_device_address_t));
3302                 result = _bt_connect_le_ipsp_device(&address);
3303                 break;
3304         }
3305         case BT_LE_IPSP_DISCONNECT: {
3306                 bluetooth_device_address_t address = { {0} };
3307                 __bt_service_get_parameters(in_param1, &address,
3308                                 sizeof(bluetooth_device_address_t));
3309                 result = _bt_disconnect_le_ipsp_device(&address);
3310                 break;
3311         }
3312 #endif
3313         case BT_IS_ADVERTISING: {
3314                 gboolean advertising = FALSE;
3315                 advertising = _bt_is_advertising();
3316                 g_array_append_vals(*out_param1, &advertising,
3317                                 sizeof(gboolean));
3318                 break;
3319         }
3320         case BT_IS_LE_2M_PHY_SUPPORTED: {
3321                 gboolean is_2m_phy_supported = FALSE;
3322
3323                 is_2m_phy_supported = _bt_is_le_2m_phy_supported();
3324                 g_array_append_vals(*out_param1, &is_2m_phy_supported, sizeof(gboolean));
3325                 break;
3326         }
3327         case BT_IS_LE_CODED_PHY_SUPPORTED: {
3328                 gboolean is_coded_phy_supported = FALSE;
3329
3330                 is_coded_phy_supported = _bt_is_le_coded_phy_supported();
3331                 g_array_append_vals(*out_param1, &is_coded_phy_supported, sizeof(gboolean));
3332                 break;
3333         }
3334         case BT_DISCONNECT_DEVICE: {
3335                 bluetooth_device_address_t address = { {0} };
3336
3337                 __bt_service_get_parameters(in_param1,
3338                                 &address, sizeof(bluetooth_device_address_t));
3339
3340                 result = _bt_disconnect_device(&address);
3341                 break;
3342         }
3343         case BT_REGISTER_SCAN_FILTER: {
3344                 bluetooth_le_scan_filter_t scan_filter;
3345
3346                 sender = (char*)g_dbus_method_invocation_get_sender(context);
3347                 __bt_service_get_parameters(in_param1, &scan_filter,
3348                                 sizeof(bluetooth_le_scan_filter_t));
3349
3350                 BT_DBG("bluetooth_le_scan_filter_t [features : 0x%.2x]",
3351                                 scan_filter.added_features);
3352
3353                 result = _bt_register_scan_filter(sender, &scan_filter);
3354
3355                 break;
3356         }
3357
3358         case BT_MESH_INIT:
3359                 result = _bt_mesh_init();
3360                 /* Save invocation */
3361                 if (result == BLUETOOTH_ERROR_NONE) {
3362                         BT_INFO("Mesh: Save Invoation");
3363                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3364                         _bt_save_invocation_context(context,
3365                                         result, sender,
3366                                         function_name, NULL);
3367                 }
3368                 break;
3369
3370         case BT_MESH_DEINIT:
3371                 result = _bt_mesh_deinit();
3372                 break;
3373
3374         case BT_MESH_NETWORK_CREATE: {
3375                 bluetooth_mesh_node_t node;
3376                 GSList *model_list = NULL;
3377                 int total_models = 0;
3378                 GArray *param3;
3379                 int i = 0;
3380                 const char *network_name = NULL;
3381                 bluetooth_mesh_network_t *network;
3382
3383                 memset(&node, 0x00, sizeof(bluetooth_mesh_node_t));
3384                 sender = (char*)g_dbus_method_invocation_get_sender(context);
3385
3386                 __bt_service_get_parameters(in_param1,
3387                                 &node, sizeof(bluetooth_mesh_node_t));
3388                 network_name = (const char *)g_variant_get_data(in_param2);
3389                 BT_INFO("MESH: Network name [%s]", network_name);
3390
3391                 param3 = g_array_new(TRUE, TRUE, sizeof(gchar));
3392                 __bt_fill_garray_from_variant(in_param3, param3);
3393
3394                 total_models = (param3->len) / sizeof(bluetooth_mesh_model_t);
3395                 for (i = 0; i < total_models; i++) {
3396                         bluetooth_mesh_model_t *info = NULL;
3397                         bluetooth_mesh_model_t *mod = NULL;
3398
3399                         info = &g_array_index(param3,
3400                                         bluetooth_mesh_model_t, i);
3401
3402                         mod = g_memdup(info, sizeof(bluetooth_mesh_model_t));
3403
3404                         if (mod)
3405                                 model_list = g_slist_append(model_list,
3406                                                         (gpointer)mod);
3407                 }
3408                 result = _bt_mesh_network_create(requester_unique_creds,
3409                                 sender, network_name,  &node, model_list);
3410
3411                  /* Save invocation */
3412                 if (result == BLUETOOTH_ERROR_NONE) {
3413                         BT_INFO("Mesh: Save Invoation");
3414                         network =  g_malloc0(sizeof(bluetooth_mesh_network_t));
3415
3416                         /* Save Network name & UUID, Token will be received in event */
3417                         _bt_mesh_util_convert_hex_to_string(
3418                                         (uint8_t *) node.uuid, 16,
3419                                         network->uuid,
3420                                         BLUETOOTH_MESH_NETWORK_UUID_STRING_LENGTH + 1);
3421                         BT_INFO("Mesh: Mesh Netwok UUID [%s]", network->uuid);
3422                         g_strlcpy(network->name.name, network_name,
3423                                 sizeof(network->name.name));
3424                         g_strlcpy(network->app_cred,
3425                                 requester_unique_creds,
3426                                 sizeof(network->app_cred));
3427                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3428                         _bt_save_invocation_context(context,
3429                                         result, sender,
3430                                         function_name, (gpointer)network);
3431                 } else {
3432                         g_array_append_vals(*out_param1, &node, sizeof(bluetooth_mesh_node_t));
3433                         BT_ERR("Mesh: Mesh Network creation schedule failed");
3434                         g_slist_free_full(model_list, g_free);
3435                 }
3436
3437                 /* Cleanup */
3438                 BT_INFO("Mesh: Cleanup");
3439                 g_free((gpointer)requester_unique_creds);
3440                 g_array_free(param3, TRUE);
3441                 BT_INFO("Mesh: Cleanup Done");
3442                 break;
3443         }
3444         case BT_MESH_NETWORK_DESTROY: {
3445                 bluetooth_mesh_network_t network;
3446                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
3447
3448                 __bt_service_get_parameters(in_param1,
3449                                 &network, sizeof(bluetooth_mesh_network_t));
3450
3451                 BT_INFO("Mesh: Destroy Network");
3452                 result = _bt_mesh_network_destroy(requester_unique_creds,
3453                                 sender, &network);
3454
3455                 if (result != BLUETOOTH_ERROR_NONE) {
3456                         g_array_append_vals(*out_param1,
3457                                 &network, sizeof(bluetooth_mesh_network_t));
3458                 } else {
3459                         BT_INFO("Mesh: Destroy Network scheduled: add invocation");
3460                         bluetooth_mesh_network_t *net =  \
3461                                         g_memdup(&network, sizeof(bluetooth_mesh_network_t));
3462
3463                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3464                         _bt_save_invocation_context(context, result, sender,
3465                                         function_name, (gpointer)net);
3466                 }
3467                 break;
3468         }
3469         case BT_MESH_NETWORK_LOAD: {
3470                 char *token = NULL;
3471                 bluetooth_mesh_network_t *network;
3472                 token = (char *)g_variant_get_data(in_param1);
3473                 BT_INFO("MESH: Network Load: Token string [%s]", token);
3474                 result = _bt_mesh_network_load(requester_unique_creds, sender, token);
3475                 /* Save invocation */
3476                 if (result == BLUETOOTH_ERROR_NONE) {
3477                         network =  g_malloc0(sizeof(bluetooth_mesh_network_t));
3478                         g_strlcpy(network->token.token, token, strlen(token));
3479                         g_strlcpy(network->app_cred, requester_unique_creds, strlen(requester_unique_creds));
3480
3481                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3482                         _bt_save_invocation_context(context, result, sender,
3483                                         function_name, (gpointer)network);
3484                 }
3485                 g_free((gpointer)requester_unique_creds);
3486                 break;
3487         }
3488         case BT_MESH_NETWORK_SCAN: {
3489                 bluetooth_mesh_network_t network;
3490                 bluetooth_mesh_scan_param_t param;
3491                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
3492                 memset(&param, 0x00, sizeof(bluetooth_mesh_scan_param_t));
3493
3494                 __bt_service_get_parameters(in_param1,
3495                                 &network, sizeof(bluetooth_mesh_network_t));
3496
3497                 __bt_service_get_parameters(in_param2,
3498                                 &param, sizeof(bluetooth_mesh_scan_param_t));
3499
3500                 result = _bt_mesh_network_scan(requester_unique_creds,
3501                                 sender, &network, &param);
3502
3503                 if (result != BLUETOOTH_ERROR_NONE) {
3504                         g_array_append_vals(*out_param1,
3505                                 &network, sizeof(bluetooth_mesh_network_t));
3506                 } else {
3507                         bluetooth_mesh_network_t *net =  \
3508                                         g_memdup(&network, sizeof(bluetooth_mesh_network_t));
3509
3510                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3511                         _bt_save_invocation_context(context, result, sender,
3512                                         function_name, (gpointer)net);
3513                 }
3514                 break;
3515         }
3516         case BT_MESH_NETWORK_CANCEL_SCAN: {
3517                 bluetooth_mesh_network_t network;
3518                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
3519
3520                 __bt_service_get_parameters(in_param1,
3521                                 &network, sizeof(bluetooth_mesh_network_t));
3522
3523                 result = _bt_mesh_network_scan_cancel(requester_unique_creds,
3524                         sender, &network);
3525
3526                 if (result != BLUETOOTH_ERROR_NONE)
3527                         g_array_append_vals(*out_param1,
3528                                 &network, sizeof(bluetooth_mesh_network_t));
3529                 break;
3530         }
3531         case BT_MESH_NETWORK_SET_CAPABILITIES: {
3532                 bluetooth_mesh_network_t network;
3533                 bluetooth_mesh_provisioner_caps_t caps;
3534                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
3535                 memset(&caps, 0x00, sizeof(bluetooth_mesh_provisioner_caps_t));
3536
3537                 __bt_service_get_parameters(in_param1,
3538                                 &network, sizeof(bluetooth_mesh_network_t));
3539
3540                 __bt_service_get_parameters(in_param2,
3541                                 &caps, sizeof(bluetooth_mesh_provisioner_caps_t));
3542
3543                 result = _bt_mesh_network_set_provisioner_caps(
3544                                 requester_unique_creds, sender, &network, &caps);
3545
3546                 break;
3547         }
3548         case BT_MESH_NETWORK_PROVISION_DEVICE: {
3549                 bluetooth_mesh_provisioning_request_t req;
3550                 memset(&req, 0x00, sizeof(bluetooth_mesh_provisioning_request_t));
3551
3552                 __bt_service_get_parameters(in_param1,
3553                                 &req, sizeof(bluetooth_mesh_provisioning_request_t));
3554
3555                 BT_INFO("Mesh: Provision Device UUID [%s]", req.dev_uuid);
3556                 BT_INFO("Mesh: Provision Device in network[%s]", req.net_uuid);
3557
3558                 result = _bt_mesh_network_provision_device(
3559                                 requester_unique_creds, sender, &req);
3560
3561                 /* Save invocation */
3562                 if (result != BLUETOOTH_ERROR_NONE) {
3563                         g_array_append_vals(*out_param1, &req,
3564                                 sizeof(bluetooth_mesh_provisioning_request_t));
3565                 } else {
3566                         bluetooth_mesh_provisioning_request_t *param =  \
3567                                 g_memdup(&req, sizeof(bluetooth_mesh_provisioning_request_t));
3568
3569                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3570                         _bt_save_invocation_context(context, result, sender,
3571                                         function_name, (gpointer)param);
3572                 }
3573                 break;
3574         }
3575         case BT_MESH_AUTHENTICATION_REPLY: {
3576                 BT_INFO("Mesh: BT_MESH_AUTHENTICATION_REPLY");
3577                 const char *auth_value = NULL;
3578                 gboolean authentication_reply = FALSE;
3579                 int auth_type;
3580                 auth_value = g_variant_get_data(in_param2);
3581                 __bt_service_get_parameters(in_param3,
3582                                 &authentication_reply, sizeof(gboolean));
3583                 __bt_service_get_parameters(in_param1,
3584                                 &auth_type, sizeof(int));
3585                 BT_INFO("Mesh: Auth Reply Type [%d]", auth_type);
3586                 BT_INFO("Mesh: Auth Value [%s]", auth_value);
3587                 BT_INFO("Mesh: Auth Accept [%d]", authentication_reply);
3588                 result = _bt_mesh_authentication_reply(auth_type,
3589                                 auth_value, authentication_reply);
3590                 break;
3591         }
3592         case BT_MESH_NETWORK_SET_NAME: {
3593                 bluetooth_mesh_network_t network;
3594                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
3595
3596                 __bt_service_get_parameters(in_param1,
3597                                 &network, sizeof(bluetooth_mesh_network_t));
3598
3599                 result = _bt_mesh_network_set_name(requester_unique_creds, sender, &network);
3600
3601                 break;
3602         }
3603         case BT_MESH_NETWORK_ADD_NETKEY: {
3604                 bluetooth_mesh_network_t network;
3605                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
3606
3607                 __bt_service_get_parameters(in_param1,
3608                                 &network, sizeof(bluetooth_mesh_network_t));
3609
3610                 result = _bt_mesh_network_add_netkey(requester_unique_creds,
3611                         sender, &network);
3612
3613                 if (result != BLUETOOTH_ERROR_NONE) {
3614                         g_array_append_vals(*out_param1, &network, sizeof(bluetooth_mesh_network_t));
3615                 } else {
3616                         bluetooth_mesh_network_t *net =  g_memdup(&network, sizeof(bluetooth_mesh_network_t));
3617
3618                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3619                         _bt_save_invocation_context(context, result, sender,
3620                                         function_name, (gpointer)net);
3621                 }
3622                 break;
3623         }
3624         case BT_MESH_NETWORK_DELETE_NETKEY: {
3625                 bluetooth_mesh_network_t network;
3626                 uint16_t index;
3627
3628                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
3629
3630                 __bt_service_get_parameters(in_param1,
3631                                 &network, sizeof(bluetooth_mesh_network_t));
3632                 __bt_service_get_parameters(in_param2,
3633                                 &index, sizeof(guint16));
3634
3635                 result = _bt_mesh_network_delete_netkey(requester_unique_creds,
3636                                 sender, &network, index);
3637
3638                 if (result != BLUETOOTH_ERROR_NONE) {
3639                         g_array_append_vals(*out_param1, &network, sizeof(bluetooth_mesh_network_t));
3640                 } else {
3641                         bluetooth_mesh_network_t *net =  g_memdup(&network, sizeof(bluetooth_mesh_network_t));
3642
3643                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3644                         _bt_save_invocation_context(context, result, sender,
3645                                         function_name, (gpointer)net);
3646                 }
3647                 break;
3648         }
3649         case BT_MESH_NETWORK_UPDATE_NETKEY: {
3650                 bluetooth_mesh_network_t network;
3651                 uint16_t index;
3652
3653                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
3654
3655                 __bt_service_get_parameters(in_param1,
3656                                 &network, sizeof(bluetooth_mesh_network_t));
3657                 __bt_service_get_parameters(in_param2,
3658                                 &index, sizeof(guint16));
3659
3660                 result = _bt_mesh_network_update_netkey(requester_unique_creds,
3661                                 sender, &network, index);
3662
3663                 if (result != BLUETOOTH_ERROR_NONE) {
3664                         g_array_append_vals(*out_param1, &network, sizeof(bluetooth_mesh_network_t));
3665                 } else {
3666                         bluetooth_mesh_network_t *net =  g_memdup(&network, sizeof(bluetooth_mesh_network_t));
3667
3668                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3669                         _bt_save_invocation_context(context, result, sender,
3670                                         function_name, (gpointer)net);
3671                 }
3672                 break;
3673         }
3674         case BT_MESH_NETWORK_ADD_APPKEY: {
3675                 bluetooth_mesh_network_t network;
3676                 uint16_t net_idx;
3677
3678                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
3679
3680                 __bt_service_get_parameters(in_param1,
3681                                 &network, sizeof(bluetooth_mesh_network_t));
3682                 __bt_service_get_parameters(in_param2,
3683                                 &net_idx, sizeof(guint16));
3684
3685                 result = _bt_mesh_network_add_appkey(requester_unique_creds,
3686                                 sender, &network, net_idx);
3687
3688                 if (result != BLUETOOTH_ERROR_NONE) {
3689                         g_array_append_vals(*out_param1, &network, sizeof(bluetooth_mesh_network_t));
3690                 } else {
3691                         bluetooth_mesh_network_t *net =  g_memdup(&network, sizeof(bluetooth_mesh_network_t));
3692
3693                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3694                         _bt_save_invocation_context(context, result, sender,
3695                                         function_name, (gpointer)net);
3696                 }
3697                 break;
3698         }
3699         case BT_MESH_NETWORK_UPDATE_APPKEY: {
3700                 bluetooth_mesh_network_t network;
3701                 uint16_t net_idx;
3702                 uint16_t app_idx;
3703
3704                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
3705
3706                 __bt_service_get_parameters(in_param1,
3707                                 &network, sizeof(bluetooth_mesh_network_t));
3708                 __bt_service_get_parameters(in_param2,
3709                                 &net_idx, sizeof(guint16));
3710                 __bt_service_get_parameters(in_param3,
3711                                 &app_idx, sizeof(guint16));
3712
3713                 result = _bt_mesh_network_update_appkey(requester_unique_creds,
3714                                 sender, &network, net_idx, app_idx);
3715
3716                 if (result != BLUETOOTH_ERROR_NONE) {
3717                         g_array_append_vals(*out_param1, &network, sizeof(bluetooth_mesh_network_t));
3718                 } else {
3719                         bluetooth_mesh_network_t *net =  g_memdup(&network, sizeof(bluetooth_mesh_network_t));
3720
3721                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3722                         _bt_save_invocation_context(context, result, sender,
3723                                         function_name, (gpointer)net);
3724                 }
3725                 break;
3726         }
3727         case BT_MESH_NETWORK_DELETE_APPKEY: {
3728                 bluetooth_mesh_network_t network;
3729                 uint16_t net_idx;
3730                 uint16_t app_idx;
3731
3732                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
3733
3734                 __bt_service_get_parameters(in_param1,
3735                                 &network, sizeof(bluetooth_mesh_network_t));
3736                 __bt_service_get_parameters(in_param2,
3737                                 &net_idx, sizeof(guint16));
3738                 __bt_service_get_parameters(in_param3,
3739                                 &app_idx, sizeof(guint16));
3740
3741                 result = _bt_mesh_network_delete_appkey(requester_unique_creds,
3742                                 sender, &network, net_idx, app_idx);
3743
3744                 if (result != BLUETOOTH_ERROR_NONE) {
3745                         g_array_append_vals(*out_param1, &network, sizeof(bluetooth_mesh_network_t));
3746                 } else {
3747                         bluetooth_mesh_network_t *net =  g_memdup(&network, sizeof(bluetooth_mesh_network_t));
3748
3749                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3750                         _bt_save_invocation_context(context, result, sender,
3751                                         function_name, (gpointer)net);
3752                 }
3753                 break;
3754         }
3755         case BT_MESH_NETWORK_GET_NETKEYS: {
3756                 bluetooth_mesh_network_t network;
3757                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
3758                 __bt_service_get_parameters(in_param1,
3759                                 &network, sizeof(bluetooth_mesh_network_t));
3760                 result = _bt_mesh_network_get_netkeys(requester_unique_creds,
3761                                 sender, &network, out_param1);
3762                 break;
3763         }
3764         case BT_MESH_NETWORK_GET_APPKEYS: {
3765                 bluetooth_mesh_network_t network;
3766                 uint16_t net_idx;
3767
3768                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
3769                 __bt_service_get_parameters(in_param1,
3770                                 &network, sizeof(bluetooth_mesh_network_t));
3771                 __bt_service_get_parameters(in_param2,
3772                                 &net_idx, sizeof(guint16));
3773                 result = _bt_mesh_network_get_appkeys(
3774                                 requester_unique_creds, sender,
3775                                         &network, net_idx, out_param1);
3776                 break;
3777         }
3778         case BT_MESH_NETWORK_GET_NODES: {
3779                 bluetooth_mesh_network_t network;
3780                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
3781                 __bt_service_get_parameters(in_param1,
3782                                 &network, sizeof(bluetooth_mesh_network_t));
3783                 result = _bt_mesh_network_get_nodes(
3784                                 requester_unique_creds, sender,
3785                                         &network, out_param1);
3786                 break;
3787         }
3788         case BT_MESH_ELEMENT_GET_MODELS: {
3789                 bluetooth_mesh_network_t network;
3790                 uint16_t node_addr;
3791                 int elem_idx;
3792
3793                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
3794                 __bt_service_get_parameters(in_param1,
3795                                 &network, sizeof(bluetooth_mesh_network_t));
3796                 __bt_service_get_parameters(in_param2,
3797                                 &node_addr, sizeof(guint16));
3798                 __bt_service_get_parameters(in_param3,
3799                                 &elem_idx, sizeof(int));
3800                 result = _bt_mesh_element_get_models(requester_unique_creds, sender,
3801                                 &network, node_addr, elem_idx, out_param1);
3802                 break;
3803         }
3804         case BT_MESH_NODE_BROWSE: {
3805                 bluetooth_mesh_node_discover_t req;
3806                 memset(&req, 0x00, sizeof(bluetooth_mesh_node_discover_t));
3807
3808                 __bt_service_get_parameters(in_param1,
3809                                 &req, sizeof(bluetooth_mesh_node_discover_t));
3810
3811                 result = _bt_mesh_browse_remote_node(
3812                                 requester_unique_creds, sender, &req);
3813
3814                 /* Save invocation */
3815                 if (result != BLUETOOTH_ERROR_NONE) {
3816                         g_array_append_vals(*out_param1, &req,
3817                                 sizeof(bluetooth_mesh_node_discover_t));
3818                 } else {
3819                         bluetooth_mesh_node_discover_t *param = \
3820                                 g_memdup(&req, sizeof(bluetooth_mesh_node_discover_t));
3821
3822                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3823                         _bt_save_invocation_context(context, result, sender,
3824                                         function_name, (gpointer)param);
3825                 }
3826                 break;
3827         }
3828         case BT_MESH_NODE_GET_VENDOR_FEATURES: {
3829                 bluetooth_mesh_node_features_t req;
3830                 memset(&req, 0x00, sizeof(bluetooth_mesh_node_features_t));
3831
3832                 __bt_service_get_parameters(in_param1,
3833                                 &req, sizeof(bluetooth_mesh_node_features_t));
3834
3835                 result = _bt_mesh_node_discover_vendor_features(
3836                                 requester_unique_creds, sender, &req);
3837
3838                 /* Save invocation */
3839                 if (result != BLUETOOTH_ERROR_NONE) {
3840                         g_array_append_vals(*out_param1,
3841                                 &req, sizeof(bluetooth_mesh_node_features_t));
3842                 } else {
3843                         bluetooth_mesh_node_features_t *param =  \
3844                                 g_memdup(&req, sizeof(bluetooth_mesh_node_features_t));
3845
3846                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3847                         _bt_save_invocation_context(context, result, sender,
3848                                         function_name, (gpointer)param);
3849                 }
3850                 break;
3851         }
3852         case BT_MESH_NODE_CONFIGURE_KEY: {
3853                 bluetooth_mesh_key_configure_t req;
3854
3855                 memset(&req, 0x00, sizeof(bluetooth_mesh_key_configure_t));
3856
3857                 __bt_service_get_parameters(in_param1,
3858                                 &req, sizeof(bluetooth_mesh_key_configure_t));
3859
3860                 result = _bt_mesh_node_configure_key(
3861                                 requester_unique_creds, sender, &req);
3862
3863                 /* Save invocation */
3864                 if (result != BLUETOOTH_ERROR_NONE) {
3865                         g_array_append_vals(*out_param1,
3866                                 &req, sizeof(bluetooth_mesh_key_configure_t));
3867                 } else {
3868                         bluetooth_mesh_key_configure_t *param = \
3869                                 g_memdup(&req, sizeof(bluetooth_mesh_key_configure_t));
3870
3871                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3872                         _bt_save_invocation_context(context, result, sender,
3873                                         function_name, (gpointer)param);
3874                 }
3875                 break;
3876         }
3877         case BT_MESH_NODE_TTL_EXECUTE: {
3878                 bluetooth_mesh_node_ttl_info_t req;
3879
3880                 memset(&req, 0x00, sizeof(bluetooth_mesh_node_ttl_info_t));
3881
3882                 __bt_service_get_parameters(in_param1,
3883                                 &req, sizeof(bluetooth_mesh_node_ttl_info_t));
3884
3885                 result = _bt_mesh_ttl_execute_remote_node(
3886                                 requester_unique_creds, sender, &req);
3887
3888                 /* Save invocation */
3889                 if (result != BLUETOOTH_ERROR_NONE) {
3890                         g_array_append_vals(*out_param1, &req, sizeof(bluetooth_mesh_node_ttl_info_t));
3891                 } else {
3892                         bluetooth_mesh_node_ttl_info_t *param =  \
3893                                 g_memdup(&req, sizeof(bluetooth_mesh_node_ttl_info_t));
3894
3895                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3896                         _bt_save_invocation_context(context, result, sender,
3897                                         function_name, (gpointer)param);
3898                 }
3899                 break;
3900         }
3901         case BT_MESH_MODEL_CONFIGURE_APPKEY: {
3902                 bluetooth_mesh_model_configure_t req;
3903
3904                 memset(&req, 0x00, sizeof(bluetooth_mesh_model_configure_t));
3905
3906                 __bt_service_get_parameters(in_param1,
3907                                 &req, sizeof(bluetooth_mesh_model_configure_t));
3908
3909                 result = _bt_mesh_node_model_appkey_execute(
3910                                 requester_unique_creds, sender, &req);
3911
3912                 /* Save invocation */
3913                 if (result != BLUETOOTH_ERROR_NONE) {
3914                         g_array_append_vals(*out_param1, &req, sizeof(bluetooth_mesh_model_configure_t));
3915                 } else {
3916                         bluetooth_mesh_model_configure_t *param =  \
3917                                 g_memdup(&req, sizeof(bluetooth_mesh_model_configure_t));
3918
3919                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3920                         _bt_save_invocation_context(context, result, sender,
3921                                         function_name, (gpointer)param);
3922                 }
3923                 break;
3924         }
3925         case BT_MESH_MODEL_EXECUTE_MSG: {
3926                 bluetooth_mesh_model_msg_t req;
3927
3928                 memset(&req, 0x00, sizeof(bluetooth_mesh_model_msg_t));
3929
3930                 __bt_service_get_parameters(in_param1,
3931                                 &req, sizeof(bluetooth_mesh_model_msg_t));
3932
3933                 result = _bt_mesh_model_execute_msg(
3934                                 requester_unique_creds, sender, &req);
3935
3936                 /* Save invocation */
3937                 if (result != BLUETOOTH_ERROR_NONE) {
3938                         g_array_append_vals(*out_param1, &req, sizeof(bluetooth_mesh_model_msg_t));
3939                 } else {
3940                         bluetooth_mesh_model_msg_t *param =  \
3941                                 g_memdup(&req, sizeof(bluetooth_mesh_model_msg_t));
3942
3943                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3944                         _bt_save_invocation_context(context, result, sender,
3945                                         function_name, (gpointer)param);
3946                 }
3947                 break;
3948         }
3949         case BT_MESH_NODE_GET_NETKEYS: {
3950                 bluetooth_mesh_node_discover_t node;
3951                 memset(&node, 0x00, sizeof(bluetooth_mesh_node_discover_t));
3952                 __bt_service_get_parameters(in_param1,
3953                                 &node, sizeof(bluetooth_mesh_node_discover_t));
3954                 result = _bt_mesh_network_node_get_netkeys(
3955                                 requester_unique_creds, &node, out_param1);
3956                 break;
3957         }
3958         case BT_MESH_NODE_GET_APPKEYS: {
3959                 bluetooth_mesh_node_discover_t node;
3960                 memset(&node, 0x00, sizeof(bluetooth_mesh_node_discover_t));
3961                 __bt_service_get_parameters(in_param1,
3962                                 &node, sizeof(bluetooth_mesh_node_discover_t));
3963                 result = _bt_mesh_network_node_get_appkeys(
3964                                 requester_unique_creds, sender, &node, out_param1);
3965                 break;
3966         }
3967         case BT_MESH_NODE_RESET: {
3968                 bluetooth_mesh_node_info_t node;
3969                 memset(&node, 0x00, sizeof(bluetooth_mesh_node_info_t));
3970
3971                 __bt_service_get_parameters(in_param1,
3972                                 &node, sizeof(bluetooth_mesh_node_info_t));
3973
3974                 BT_INFO("Mesh: Reset the Node");
3975                 result = _bt_mesh_network_reset_node(requester_unique_creds,
3976                                 sender, &node);
3977
3978                 break;
3979         }
3980         case BT_MESH_MODEL_GET_APPKEY_LIST: {
3981                 bluetooth_mesh_model_configure_t req;
3982
3983                 memset(&req, 0x00, sizeof(bluetooth_mesh_model_configure_t));
3984
3985                 __bt_service_get_parameters(in_param1,
3986                                 &req, sizeof(bluetooth_mesh_model_configure_t));
3987
3988                 result = _bt_mesh_node_model_get_appkey_list(
3989                                         requester_unique_creds, sender, &req);
3990
3991                 /* Save invocation */
3992                 if (result != BLUETOOTH_ERROR_NONE) {
3993                         g_array_append_vals(*out_param1, &req, sizeof(bluetooth_mesh_model_configure_t));
3994                 } else {
3995                         bluetooth_mesh_model_configure_t *param = \
3996                                 g_memdup(&req, sizeof(bluetooth_mesh_model_configure_t));
3997
3998                         sender = (char*)g_dbus_method_invocation_get_sender(context);
3999                         _bt_save_invocation_context(context, result, sender,
4000                                         function_name, (gpointer)param);
4001                 }
4002                 break;
4003         }
4004         case BT_MESH_MODEL_GET_SUBSCRIPTION_LIST: {
4005                 bluetooth_mesh_model_configure_t req;
4006
4007                 memset(&req, 0x00, sizeof(bluetooth_mesh_model_configure_t));
4008
4009                 __bt_service_get_parameters(in_param1,
4010                                 &req, sizeof(bluetooth_mesh_model_configure_t));
4011
4012                 result = _bt_mesh_node_model_get_subscription_list(
4013                                 requester_unique_creds, sender, &req);
4014
4015                 /* Save invocation */
4016                 if (result != BLUETOOTH_ERROR_NONE) {
4017                         g_array_append_vals(*out_param1, &req, sizeof(bluetooth_mesh_model_configure_t));
4018                 } else {
4019                         bluetooth_mesh_model_configure_t *param =  \
4020                                 g_memdup(&req, sizeof(bluetooth_mesh_model_configure_t));
4021
4022                         sender = (char*)g_dbus_method_invocation_get_sender(context);
4023                         _bt_save_invocation_context(context, result, sender,
4024                                         function_name, (gpointer)param);
4025                 }
4026
4027                 break;
4028         }
4029         case BT_MESH_NETWORK_CREATE_GROUP: {
4030                 bluetooth_mesh_network_t net;
4031                 bluetooth_mesh_network_group_info_t res;
4032                 gboolean is_virtual;
4033                 uint16_t grp_addr;
4034
4035                 memset(&net, 0x00, sizeof(bluetooth_mesh_network_t));
4036                 memset(&res, 0x00, sizeof(bluetooth_mesh_network_group_info_t));
4037
4038                 __bt_service_get_parameters(in_param1,
4039                                 &net, sizeof(bluetooth_mesh_network_t));
4040                 __bt_service_get_parameters(in_param2,
4041                                 &is_virtual, sizeof(gboolean));
4042                 __bt_service_get_parameters(in_param3,
4043                                 &grp_addr, sizeof(guint16));
4044
4045                 result = _bt_mesh_network_create_group(
4046                                 requester_unique_creds, sender, &net,
4047                                         is_virtual, grp_addr, &res);
4048
4049                 if (result == BLUETOOTH_ERROR_NONE)
4050                         g_array_append_vals(*out_param1, &res,
4051                                 sizeof(bluetooth_mesh_network_group_info_t));
4052                 break;
4053         }
4054         case BT_MESH_NETWORK_REMOVE_GROUP: {
4055                 bluetooth_mesh_network_t net;
4056                 bluetooth_mesh_network_group_info_t req;
4057
4058                 memset(&net, 0x00, sizeof(bluetooth_mesh_network_t));
4059                 memset(&req, 0x00, sizeof(bluetooth_mesh_network_group_info_t));
4060
4061                 __bt_service_get_parameters(in_param1,
4062                                 &net, sizeof(bluetooth_mesh_network_t));
4063                 __bt_service_get_parameters(in_param2,
4064                                 &req, sizeof(bluetooth_mesh_network_group_info_t));
4065
4066                 result = _bt_mesh_network_remove_group(
4067                                 requester_unique_creds, sender, &net, &req);
4068
4069                 break;
4070         }
4071         case BT_MESH_MODEL_CONFIG_GROUP_SUB: {
4072                 bluetooth_mesh_model_configure_t req;
4073
4074                 memset(&req, 0x00, sizeof(bluetooth_mesh_model_configure_t));
4075
4076                 __bt_service_get_parameters(in_param1,
4077                                 &req, sizeof(bluetooth_mesh_model_configure_t));
4078
4079                 result = _bt_mesh_model_configure_group_subscription(
4080                                 requester_unique_creds, sender, &req);
4081
4082                 /* Save invocation */
4083                 if (result != BLUETOOTH_ERROR_NONE) {
4084                         g_array_append_vals(*out_param1,
4085                                 &req, sizeof(bluetooth_mesh_model_configure_t));
4086                 } else {
4087                         bluetooth_mesh_model_configure_t *param =  \
4088                                 g_memdup(&req, sizeof(bluetooth_mesh_model_configure_t));
4089
4090                         sender = (char*)g_dbus_method_invocation_get_sender(context);
4091                         _bt_save_invocation_context(context, result, sender,
4092                                         function_name, (gpointer)param);
4093                 }
4094                 break;
4095         }
4096         case BT_MESH_MODEL_CONFIG_VIRTUAL_GROUP_SUB: {
4097                 bluetooth_mesh_model_configure_t req;
4098
4099                 memset(&req, 0x00, sizeof(bluetooth_mesh_model_configure_t));
4100
4101                 __bt_service_get_parameters(in_param1,
4102                                 &req, sizeof(bluetooth_mesh_model_configure_t));
4103
4104                 result = _bt_mesh_model_configure_virtual_group_subscription(
4105                                 requester_unique_creds, sender, &req);
4106
4107                 /* Save invocation */
4108                 if (result != BLUETOOTH_ERROR_NONE) {
4109                         g_array_append_vals(*out_param1, &req, sizeof(bluetooth_mesh_model_configure_t));
4110                 } else {
4111                         bluetooth_mesh_model_configure_t *param =  \
4112                                 g_memdup(&req, sizeof(bluetooth_mesh_model_configure_t));
4113
4114                         sender = (char*)g_dbus_method_invocation_get_sender(context);
4115                         _bt_save_invocation_context(context, result, sender,
4116                                         function_name, (gpointer)param);
4117                 }
4118                 break;
4119         }
4120         case BT_MESH_MODEL_SET_PUBLICATION: {
4121                 bluetooth_mesh_model_configure_t req;
4122
4123                 memset(&req, 0x00, sizeof(bluetooth_mesh_model_configure_t));
4124
4125                 __bt_service_get_parameters(in_param1,
4126                                 &req, sizeof(bluetooth_mesh_model_configure_t));
4127
4128                 result = _bt_mesh_model_set_publication(
4129                                 requester_unique_creds, sender, &req);
4130
4131                 /* Save invocation */
4132                 if (result != BLUETOOTH_ERROR_NONE) {
4133                         g_array_append_vals(*out_param1, &req, sizeof(bluetooth_mesh_model_configure_t));
4134                 } else {
4135                         bluetooth_mesh_model_configure_t *param = g_memdup(&req, sizeof(bluetooth_mesh_model_configure_t));
4136
4137                         sender = (char*)g_dbus_method_invocation_get_sender(context);
4138                         _bt_save_invocation_context(context, result, sender,
4139                                         function_name, (gpointer)param);
4140                 }
4141                 break;
4142         }
4143         case BT_MESH_MODEL_GET_PUBLICATION: {
4144                 bluetooth_mesh_model_configure_t req;
4145
4146                 memset(&req, 0x00, sizeof(bluetooth_mesh_model_configure_t));
4147
4148                 __bt_service_get_parameters(in_param1,
4149                                 &req, sizeof(bluetooth_mesh_model_configure_t));
4150
4151                 result = _bt_mesh_model_get_publication(
4152                                         requester_unique_creds, sender, &req);
4153
4154                 /* Save invocation */
4155                 if (result != BLUETOOTH_ERROR_NONE) {
4156                         g_array_append_vals(*out_param1,
4157                                 &req, sizeof(bluetooth_mesh_model_configure_t));
4158                 } else {
4159                         bluetooth_mesh_model_configure_t *param =  \
4160                                 g_memdup(&req, sizeof(bluetooth_mesh_model_configure_t));
4161
4162                         sender = (char*)g_dbus_method_invocation_get_sender(context);
4163                         _bt_save_invocation_context(context, result, sender,
4164                                         function_name, (gpointer)param);
4165                 }
4166                 break;
4167         }
4168         case BT_MESH_NETWORK_GET_GROUPS: {
4169                 bluetooth_mesh_network_t network;
4170                 memset(&network, 0x00, sizeof(bluetooth_mesh_network_t));
4171                 __bt_service_get_parameters(in_param1,
4172                                 &network, sizeof(bluetooth_mesh_network_t));
4173                 BT_INFO("Mesh: Request:: Get Groups");
4174                 result = _bt_mesh_network_get_groups(
4175                                 requester_unique_creds, sender, &network, out_param1);
4176                 break;
4177         }
4178         default:
4179                 BT_INFO("UnSupported function [%d]", function_name);
4180                 result = BLUETOOTH_ERROR_NOT_SUPPORT;
4181                 break;
4182         }
4183
4184         return result;
4185 }
4186 #ifdef TIZEN_FEATURE_BT_OBEX
4187 /* Function definitions*/
4188 static void __bt_fill_garray_from_variant(GVariant *var, GArray *param)
4189 {
4190         char *data;
4191         int size;
4192
4193         size = g_variant_get_size(var);
4194         if (size > 0) {
4195                 data = (char *)g_variant_get_data(var);
4196                 if (data)
4197                         param = g_array_append_vals(param, data, size);
4198
4199         }
4200 }
4201 #endif
4202
4203 int __bt_obexd_request(int function_name,
4204                 int request_type,
4205                 int request_id,
4206                 GDBusMethodInvocation *context,
4207                 GVariant *in_param1,
4208                 GVariant *in_param2,
4209                 GVariant *in_param3,
4210                 GVariant *in_param4,
4211                 GArray **out_param1)
4212 {
4213         BT_DBG("+");
4214
4215         int result = BLUETOOTH_ERROR_NONE;
4216
4217         BT_DBG("function_name : %x", function_name);
4218
4219         switch (function_name) {
4220         case BT_OPP_PUSH_FILES: {
4221                 BT_DBG("BT_OPP_PUSH_FILES");
4222                 int i;
4223                 bluetooth_device_address_t address = { {0} };
4224                 bt_file_path_t *path;
4225                 char **file_path;
4226                 int file_count;
4227                 GArray *param2;
4228
4229                 __bt_service_get_parameters(in_param1, &address,
4230                                 sizeof(bluetooth_device_address_t));
4231                 __bt_service_get_parameters(in_param3, &file_count,
4232                                 sizeof(int));
4233
4234                 file_path = g_new0(char *, file_count + 1);
4235
4236                 param2 = g_array_new(TRUE, TRUE, sizeof(gchar));
4237                 __bt_fill_garray_from_variant(in_param2, param2);
4238
4239                 for (i = 0; i < file_count; i++) {
4240                         path = &g_array_index(param2, bt_file_path_t, i);
4241                         file_path[i] = g_strdup(path->path);
4242                 }
4243                 BT_DBG("_bt_opp_client_push_files");
4244                 result = _bt_opp_client_push_files(request_id, context,
4245                                                 &address, file_path,
4246                                                 file_count);
4247
4248                 for (i = 0; i < file_count; i++)
4249                         g_free(file_path[i]);
4250
4251                 g_free(file_path);
4252                 g_array_free(param2, TRUE);
4253
4254                 break;
4255         }
4256         case BT_OPP_CANCEL_PUSH: {
4257                 result = _bt_opp_client_cancel_push();
4258
4259                 break;
4260         }
4261         case BT_OPP_IS_PUSHING_FILES: {
4262                 gboolean is_sending = FALSE;
4263
4264                 result = _bt_opp_client_is_sending(&is_sending);
4265
4266                 g_array_append_vals(*out_param1, &is_sending,
4267                                 sizeof(gboolean));
4268                 break;
4269         }
4270         case BT_OPP_GET_TRANSFER_PROGRESS: {
4271                 int direction;
4272                 int transfer_id;
4273                 guint8 progress = 0;
4274
4275                 __bt_service_get_parameters(in_param1, &direction,
4276                                 sizeof(int));
4277                 __bt_service_get_parameters(in_param2, &transfer_id,
4278                                 sizeof(int));
4279                 if (direction)
4280                         result = _bt_opp_get_client_progress(&progress);
4281                 else
4282                         result = _bt_opp_get_server_progress(transfer_id, &progress);
4283
4284                 g_array_append_vals(*out_param1, &progress,
4285                                 sizeof(guint8));
4286
4287                 break;
4288         }
4289
4290         case BT_MAP_CREATE_SESSION: {
4291                 BT_DBG("BT_MAP_CREATE_SESSION");
4292                 char *address = (char *)g_variant_get_data(in_param1);
4293                 char *session_id = NULL;
4294                 result = _bt_create_session_sync(address, &session_id);
4295                 if (result == BLUETOOTH_ERROR_NONE)
4296                         g_array_append_vals(*out_param1, session_id, strlen(session_id)+1);
4297                 break;
4298         }
4299
4300         case BT_MAP_DESTROY_SESSION: {
4301                 BT_DBG("BT_MAP_DESTROY_SESSION");
4302                 char* session_id = (char *)g_variant_get_data(in_param1);
4303                 result = _bt_destroy_session_sync(session_id);
4304                 if (result == BLUETOOTH_ERROR_NONE)
4305                         BT_DBG("successfully destroyed session");
4306                 break;
4307         }
4308
4309         case BT_MAP_SET_FOLDER: {
4310                 BT_DBG("BT_MAP_SET_FOLDER");
4311                 char *session_id = (char *)g_variant_get_data(in_param1);
4312                 char *name = (char *)g_variant_get_data(in_param2);
4313                 result = _bt_map_client_set_folder(session_id, name);
4314                 break;
4315         }
4316
4317         case BT_MAP_LIST_FOLDERS: {
4318                 BT_DBG("BT_MAP_LIST_FOLDERS");
4319
4320                 char* session_id = (char *)g_variant_get_data(in_param1);
4321                 char* filter_serialized = (char*)g_variant_get_data(in_param2);
4322
4323                 result = _bt_map_client_list_folders(request_id, context, session_id, filter_serialized);
4324                 if (result == BLUETOOTH_ERROR_NONE)
4325                         BT_DBG("_bt_map_client_list_folders succeed");
4326
4327                 break;
4328         }
4329
4330         case BT_MAP_LIST_FILTER_FIELDS: {
4331                 BT_DBG("BT_MAP_LIST_FILTER_FIELDS");
4332
4333                 char* session_id = (char *)g_variant_get_data(in_param1);
4334
4335                 result = _bt_map_client_list_filter_fields(request_id, context, session_id);
4336                 if (result == BLUETOOTH_ERROR_NONE)
4337                         BT_DBG("_bt_map_client_list_filter_fields succeed");
4338
4339                 break;
4340         }
4341
4342         case BT_MAP_LIST_MESSAGES: {
4343                 BT_DBG("BT_MAP_LIST_MESSAGES");
4344
4345                 char* session_id = (char*)g_variant_get_data(in_param1);
4346                 char* folder = (char*)g_variant_get_data(in_param2);
4347                 char* filter_serialized = (char*)g_variant_get_data(in_param3);
4348
4349                 result = _bt_map_client_list_messages(request_id, context, session_id, folder, filter_serialized);
4350                 if (result == BLUETOOTH_ERROR_NONE)
4351                         BT_DBG("_bt_map_client_list_messages succeed");
4352                 else
4353                         BT_DBG("_bt_map_client_list_messages failed");
4354
4355                 break;
4356         }
4357
4358         case BT_MAP_UPDATE_INBOX: {
4359                 BT_DBG("BT_MAP_UPDATE_INBOX");
4360                 char* session_id = (char *)g_variant_get_data(in_param1);
4361                 result = _bt_map_client_update_inbox(session_id);
4362                 break;
4363         }
4364
4365         case BT_MAP_PUSH_MESSAGE: {
4366                 BT_DBG("BT_MAP_PUSH_MESSAGE");
4367
4368                 char* session_id = (char *)g_variant_get_data(in_param1);
4369                 char* source_file = (char *)g_variant_get_data(in_param2);
4370                 char* folder = (char *)g_variant_get_data(in_param3);
4371                 char* args_serialized = (char *)g_variant_get_data(in_param4);
4372
4373                 result = _bt_map_client_push_message(
4374                                 request_id, context, session_id, source_file, folder, args_serialized);
4375                 if (result == BLUETOOTH_ERROR_NONE)
4376                         BT_DBG("_bt_map_client_push_message succeed");
4377                 else
4378                         BT_ERR("_bt_map_client_push_message failed");
4379
4380                 break;
4381         }
4382
4383         case BT_MAP_GET_MESSAGE: {
4384                 BT_DBG("BT_MAP_GET_MESSAGE");
4385                 // TODO session currently is not used, but should be valid
4386                 //char* session_id = (char *)g_variant_get_data(in_param1);
4387                 char* message_object = (char *)g_variant_get_data(in_param2);
4388                 char* target_file = (char *)g_variant_get_data(in_param3);
4389                 bool attachment = false;
4390                 __bt_service_get_parameters(in_param4, &attachment, sizeof(bool));
4391
4392                 result = _bt_map_client_get_message(request_id, context, message_object,
4393                                 target_file, attachment);
4394                 if (result == BLUETOOTH_ERROR_NONE)
4395                         BT_DBG("_bt_map_client_get_message succeed");
4396
4397                 break;
4398         }
4399
4400         case BT_OBEX_SERVER_ALLOCATE: {
4401                 int app_pid;
4402                 gboolean is_native;
4403                 char *path;
4404                 char *sender;
4405
4406                 sender = (char *)g_dbus_method_invocation_get_sender(context);
4407
4408                 path = (char *)g_variant_get_data(in_param1);
4409                 __bt_service_get_parameters(in_param2, &is_native,
4410                                 sizeof(gboolean));
4411                 __bt_service_get_parameters(in_param3, &app_pid,
4412                                 sizeof(int));
4413
4414                 result = _bt_obex_server_allocate(sender,
4415                                 path, app_pid, is_native);
4416
4417                 break;
4418         }
4419         case BT_OBEX_SERVER_DEALLOCATE: {
4420                 int app_pid;
4421                 gboolean is_native;
4422
4423                 __bt_service_get_parameters(in_param1, &is_native,
4424                                 sizeof(gboolean));
4425                 __bt_service_get_parameters(in_param2, &app_pid,
4426                                 sizeof(int));
4427
4428                 result = _bt_obex_server_deallocate(app_pid, is_native);
4429                 break;
4430         }
4431         case BT_OBEX_SERVER_IS_ACTIVATED: {
4432                 gboolean is_activated = FALSE;
4433
4434                 result = _bt_obex_server_is_activated(&is_activated);
4435
4436                 g_array_append_vals(*out_param1, &is_activated,
4437                                 sizeof(gboolean));
4438
4439                 break;
4440         }
4441         case BT_OBEX_SERVER_ACCEPT_CONNECTION: {
4442                 result = _bt_obex_server_accept_connection(request_id);
4443
4444                 break;
4445         }
4446         case BT_OBEX_SERVER_REJECT_CONNECTION: {
4447                 result = _bt_obex_server_reject_connection();
4448
4449                 break;
4450         }
4451         case BT_OBEX_SERVER_ACCEPT_FILE: {
4452                 char *file_name;
4453
4454                 file_name = (char *)g_variant_get_data(in_param1);
4455
4456                 result = _bt_obex_server_accept_authorize(file_name, TRUE);
4457
4458                 break;
4459         }
4460         case BT_OBEX_SERVER_REJECT_FILE: {
4461                 result = _bt_obex_server_reject_authorize();
4462
4463                 break;
4464         }
4465         case BT_OBEX_SERVER_SET_PATH: {
4466                 gboolean is_native;
4467                 char *destination_path;
4468
4469                 destination_path = (char *)g_variant_get_data(in_param1);
4470                 __bt_service_get_parameters(in_param2, &is_native,
4471                                 sizeof(gboolean));
4472
4473                 result = _bt_obex_server_set_destination_path(destination_path,
4474                                                         is_native);
4475
4476                 break;
4477         }
4478         case BT_OBEX_SERVER_SET_ROOT: {
4479                 char *root;
4480
4481                 root = (char *)g_variant_get_data(in_param1);
4482
4483                 result = _bt_obex_server_set_root(root);
4484
4485                 break;
4486         }
4487         case BT_OBEX_SERVER_CANCEL_TRANSFER: {
4488                 int transfer_id;
4489
4490                 __bt_service_get_parameters(in_param1, &transfer_id,
4491                                 sizeof(int));
4492
4493                 result = _bt_obex_server_cancel_transfer(transfer_id);
4494
4495                 break;
4496         }
4497         case BT_OBEX_SERVER_CANCEL_ALL_TRANSFERS: {
4498                 result = _bt_obex_server_cancel_all_transfers();
4499
4500                 break;
4501         }
4502         case BT_OBEX_SERVER_IS_RECEIVING: {
4503                 gboolean is_receiving = FALSE;
4504
4505                 result = _bt_obex_server_is_receiving(&is_receiving);
4506
4507                 g_array_append_vals(*out_param1, &is_receiving,
4508                                 sizeof(gboolean));
4509                 break;
4510         }
4511         case BT_PBAP_CONNECT: {
4512                 bluetooth_device_address_t address = { {0} };
4513
4514                 __bt_service_get_parameters(in_param1, &address,
4515                                 sizeof(bluetooth_device_address_t));
4516
4517                 result = _bt_pbap_connect(&address);
4518                 break;
4519         }
4520         case BT_PBAP_DISCONNECT: {
4521                 bluetooth_device_address_t address = { {0} };
4522
4523                 __bt_service_get_parameters(in_param1, &address,
4524                                 sizeof(bluetooth_device_address_t));
4525
4526                 result = _bt_pbap_disconnect(&address);
4527                 break;
4528         }
4529         case BT_PBAP_GET_PHONEBOOK_SIZE: {
4530                 bluetooth_device_address_t address = { {0} };
4531                 bt_pbap_folder_t folder = { 0, };
4532
4533                 __bt_service_get_parameters(in_param1, &address,
4534                                 sizeof(bluetooth_device_address_t));
4535                 __bt_service_get_parameters(in_param2, &folder,
4536                                 sizeof(bt_pbap_folder_t));
4537
4538                 result = _bt_pbap_get_phonebook_size(&address,
4539                                 folder.addressbook, folder.folder_type);
4540                 break;
4541         }
4542         case BT_PBAP_GET_PHONEBOOK: {
4543                 bluetooth_device_address_t address = { {0} };
4544                 bt_pbap_folder_t folder = { 0, };
4545                 bt_pbap_pull_parameters_t app_param = { 0, };
4546
4547                 __bt_service_get_parameters(in_param1, &address,
4548                                 sizeof(bluetooth_device_address_t));
4549                 __bt_service_get_parameters(in_param2, &folder,
4550                                 sizeof(bt_pbap_folder_t));
4551                 __bt_service_get_parameters(in_param3, &app_param,
4552                                 sizeof(bt_pbap_pull_parameters_t));
4553
4554                 result = _bt_pbap_get_phonebook(&address, folder.addressbook,
4555                                 folder.folder_type, &app_param);
4556                 break;
4557         }
4558         case BT_PBAP_GET_LIST: {
4559                 bluetooth_device_address_t address = { {0} };
4560                 bt_pbap_folder_t folder = { 0, };
4561                 bt_pbap_list_parameters_t app_param = { 0, };
4562
4563                 __bt_service_get_parameters(in_param1, &address,
4564                                 sizeof(bluetooth_device_address_t));
4565                 __bt_service_get_parameters(in_param2, &folder,
4566                                 sizeof(bt_pbap_folder_t));
4567                 __bt_service_get_parameters(in_param3, &app_param,
4568                                 sizeof(bt_pbap_list_parameters_t));
4569
4570                 result = _bt_pbap_get_list(&address, folder.addressbook,
4571                                 folder.folder_type, &app_param);
4572                 break;
4573         }
4574         case BT_PBAP_PULL_VCARD: {
4575                 bluetooth_device_address_t address = { {0} };
4576                 bt_pbap_folder_t folder = { 0, };
4577                 bt_pbap_pull_vcard_parameters_t app_param = { 0, };
4578
4579                 __bt_service_get_parameters(in_param1, &address,
4580                                 sizeof(bluetooth_device_address_t));
4581                 __bt_service_get_parameters(in_param2, &folder,
4582                                 sizeof(bt_pbap_folder_t));
4583                 __bt_service_get_parameters(in_param3, &app_param,
4584                                 sizeof(bt_pbap_pull_vcard_parameters_t));
4585
4586                 result = _bt_pbap_pull_vcard(&address, folder.addressbook,
4587                                 folder.folder_type, &app_param);
4588                 break;
4589         }
4590         case BT_PBAP_PHONEBOOK_SEARCH: {
4591                 bluetooth_device_address_t address = { {0} };
4592                 bt_pbap_folder_t folder = { 0, };
4593                 bt_pbap_search_parameters_t app_param = { 0, };
4594
4595                 __bt_service_get_parameters(in_param1, &address,
4596                                 sizeof(bluetooth_device_address_t));
4597                 __bt_service_get_parameters(in_param2, &folder,
4598                                 sizeof(bt_pbap_folder_t));
4599                 __bt_service_get_parameters(in_param3, &app_param,
4600                                 sizeof(bt_pbap_search_parameters_t));
4601
4602                 result = _bt_pbap_phonebook_search(&address, folder.addressbook,
4603                                 folder.folder_type, &app_param);
4604                 break;
4605         }
4606
4607         default:
4608                 BT_ERR("Unknown function!");
4609                 result = BLUETOOTH_ERROR_INTERNAL;
4610                 break;
4611         }
4612
4613         FN_END;
4614
4615         return result;
4616 }
4617
4618 int __bt_agent_request(int function_name,
4619                 int request_type,
4620                 int request_id,
4621                 GDBusMethodInvocation *context,
4622                 GVariant *in_param1,
4623                 GVariant *in_param2,
4624                 GVariant *in_param3,
4625                 GVariant *in_param4,
4626                 GArray **out_param1)
4627 {
4628         int result;
4629         switch (function_name) {
4630         case BT_SET_AUTHORIZATION: {
4631                 int type;
4632                 char *uuid;
4633                 char *path;
4634                 int fd;
4635                 char *sender;
4636
4637                 sender = (char *)g_dbus_method_invocation_get_sender(context);
4638                 __bt_service_get_parameters(in_param1, &type, sizeof(int));
4639                 uuid = (char *)g_variant_get_data(in_param2);
4640                 path = (char *)g_variant_get_data(in_param3);
4641                 __bt_service_get_parameters(in_param4, &fd, sizeof(int));
4642
4643                 result = _bt_register_osp_server_in_agent(sender, type, uuid, path, fd);
4644                 break;
4645         }
4646         case BT_UNSET_AUTHORIZATION: {
4647                 int type;
4648                 char *uuid;
4649
4650                 __bt_service_get_parameters(in_param1, &type, sizeof(int));
4651                 uuid = (char *)g_variant_get_data(in_param2);
4652
4653                 result = _bt_unregister_osp_server_in_agent(type, uuid);
4654                 break;
4655         }
4656         default:
4657                 BT_ERR("Unknown function!");
4658                 result = BLUETOOTH_ERROR_INTERNAL;
4659                 break;
4660         }
4661
4662         return result;
4663 }
4664
4665 int __bt_core_request(int function_name,
4666                 int request_type,
4667                 int request_id,
4668                 GDBusMethodInvocation *context,
4669                 GVariant *in_param1)
4670 {
4671         int result;
4672
4673         switch (function_name) {
4674         case BT_ENABLE_ADAPTER:
4675         {
4676                 bt_status_t status;
4677                 _bt_set_adapter_request_state(TRUE);
4678                 status = _bt_adapter_get_status();
4679
4680                 if (status == BT_ACTIVATING) {
4681                         BT_DBG("Enabling in progress");
4682                         result = BLUETOOTH_ERROR_IN_PROGRESS;
4683                 } else if (status == BT_ACTIVATED) {
4684                         BT_DBG("Already enabled");
4685                         result = BLUETOOTH_ERROR_DEVICE_ALREADY_ENABLED;
4686                 } else {
4687                         _bt_adapter_set_status(BT_ACTIVATING);
4688                         result = BLUETOOTH_ERROR_NONE;
4689                 }
4690
4691                 break;
4692         }
4693         case BT_DISABLE_ADAPTER:
4694         {
4695                 bt_status_t status;
4696
4697                 status = _bt_adapter_get_status();
4698                 if (status == BT_DEACTIVATING) {
4699                                 BT_DBG("Disabling in progress");
4700                                 result = BLUETOOTH_ERROR_IN_PROGRESS;
4701                 } else if (status == BT_DEACTIVATED) {
4702                                 BT_DBG("Already disabled");
4703                                 result = BLUETOOTH_ERROR_DEVICE_NOT_ENABLED;
4704                 } else {
4705                         _bt_adapter_set_status(BT_DEACTIVATING);
4706                         result = BLUETOOTH_ERROR_NONE;
4707                 }
4708
4709                 break;
4710         }
4711         case BT_ENABLE_ADAPTER_LE:
4712         {
4713                 bt_le_status_t le_status;
4714                 _bt_set_le_request_state(TRUE);
4715                 le_status = _bt_adapter_get_le_status();
4716                 if (le_status == BT_LE_ACTIVATING) {
4717                         BT_DBG("Enabling in progress");
4718                         result = BLUETOOTH_ERROR_IN_PROGRESS;
4719                 } else if (le_status == BT_LE_ACTIVATED) {
4720                         BT_DBG("Already enabled");
4721                         result = BLUETOOTH_ERROR_DEVICE_ALREADY_ENABLED;
4722                 } else {
4723                         _bt_adapter_set_le_status(BT_LE_ACTIVATING);
4724                         result = BLUETOOTH_ERROR_NONE;
4725                 }
4726
4727                 break;
4728         }
4729         case BT_DISABLE_ADAPTER_LE:
4730         {
4731                 bt_le_status_t le_status;
4732
4733                 le_status = _bt_adapter_get_le_status();
4734                 if (le_status == BT_LE_DEACTIVATING) {
4735                                 BT_DBG("Disabling in progress");
4736                                 result = BLUETOOTH_ERROR_IN_PROGRESS;
4737                 } else if (le_status == BT_LE_DEACTIVATED) {
4738                                 BT_DBG("Already disabled");
4739                                 result = BLUETOOTH_ERROR_DEVICE_NOT_ENABLED;
4740                 } else {
4741                         _bt_adapter_set_le_status(BT_LE_DEACTIVATING);
4742                         result = BLUETOOTH_ERROR_NONE;
4743                 }
4744
4745                 break;
4746         }
4747         default:
4748                 BT_ERR("Unknown function!");
4749                 result = BLUETOOTH_ERROR_INTERNAL;
4750                 break;
4751         }
4752
4753         return result;
4754 }
4755
4756 static int __bt_service_get_requester_app_id(const char *unique_name, char *app_id, int len)
4757 {
4758         int ret;
4759         pid_t pid = 0;
4760
4761         retv_if(bt_service_conn == NULL, BLUETOOTH_ERROR_INTERNAL);
4762         retv_if(unique_name == NULL, BLUETOOTH_ERROR_INVALID_PARAM);
4763
4764         ret = __bt_service_get_sender_pid(unique_name, &pid);
4765         if (ret != BLUETOOTH_ERROR_NONE) {
4766                 BT_ERR("Fail to get the sender pid");
4767                 return ret;
4768         }
4769
4770         ret = aul_app_get_appid_bypid(pid, app_id, len);
4771         if (ret != AUL_R_OK) {
4772                 BT_ERR("app_id not found");
4773                 return BLUETOOTH_ERROR_NOT_SUPPORT;
4774         }
4775         BT_DBG("Sender app_id: %s", app_id);
4776
4777         return BLUETOOTH_ERROR_NONE;
4778 }
4779
4780 gboolean __bt_service_check_privilege(int function_name,
4781                                         int service_type,
4782                                         const char *unique_name)
4783 {
4784         int ret_val;
4785         gboolean result = TRUE;
4786         char *client_creds = NULL;
4787         char *user_creds = NULL;
4788         char *client_session = "";
4789         enum cynara_client_creds client_creds_method = CLIENT_METHOD_SMACK;
4790         enum cynara_user_creds user_creds_method = USER_METHOD_UID;
4791         char err_msg[256] = {0, };
4792
4793         retv_if(unique_name == NULL, FALSE);
4794         retv_if(bt_service_conn == NULL, FALSE);
4795
4796         ret_val = cynara_creds_get_default_client_method(&client_creds_method);
4797         if (ret_val != CYNARA_API_SUCCESS) {
4798                 cynara_strerror(ret_val, err_msg, sizeof(err_msg));
4799                 BT_ERR("Fail to get default client method: %s", err_msg);
4800                 return FALSE;
4801         }
4802
4803         ret_val = cynara_creds_get_default_user_method(&user_creds_method);
4804         if (ret_val != CYNARA_API_SUCCESS) {
4805                 cynara_strerror(ret_val, err_msg, sizeof(err_msg));
4806                 BT_ERR("Fail to get default user method: %s", err_msg);
4807                 return FALSE;
4808         }
4809
4810         ret_val = cynara_creds_gdbus_get_client(bt_service_conn, unique_name, client_creds_method, &client_creds);
4811         if (ret_val != CYNARA_API_SUCCESS) {
4812                 cynara_strerror(ret_val, err_msg, sizeof(err_msg));
4813                 BT_ERR("Fail to get client credential: %s", err_msg);
4814                 return FALSE;
4815         }
4816
4817         ret_val = cynara_creds_gdbus_get_user(bt_service_conn, unique_name, user_creds_method, &user_creds);
4818         if (ret_val != CYNARA_API_SUCCESS) {
4819                 cynara_strerror(ret_val, err_msg, sizeof(err_msg));
4820                 BT_ERR("Fail to get user credential: %s", err_msg);
4821                 if (client_creds)
4822                         free(client_creds);
4823                 return FALSE;
4824         }
4825
4826         BT_DBG("%s, %s, %s", unique_name, client_creds, user_creds);
4827
4828         switch (function_name) {
4829         case BT_SET_LOCAL_NAME:
4830         case BT_START_DISCOVERY:
4831         case BT_START_CUSTOM_DISCOVERY:
4832         case BT_CANCEL_DISCOVERY:
4833         case BT_OOB_ADD_REMOTE_DATA:
4834         case BT_OOB_REMOVE_REMOTE_DATA:
4835         case BT_OOB_READ_LOCAL_DATA:
4836         case BT_SET_ADVERTISING:
4837         case BT_SET_CUSTOM_ADVERTISING:
4838         case BT_SET_ADVERTISING_PARAMETERS:
4839         case BT_START_LE_DISCOVERY:
4840         case BT_STOP_LE_DISCOVERY:
4841         case BT_SET_SCAN_PARAMETERS:
4842         case BT_SET_SCAN_TYPE:
4843
4844         case BT_BOND_DEVICE:
4845         case BT_CANCEL_BONDING:
4846         case BT_UNBOND_DEVICE:
4847         case BT_SET_ALIAS:
4848         case BT_SET_AUTHORIZATION:
4849         case BT_UNSET_AUTHORIZATION:
4850         case BT_SEARCH_SERVICE:
4851
4852         case BT_RFCOMM_CLIENT_CONNECT:
4853                 if (function_name == BT_RFCOMM_CLIENT_CONNECT)
4854                         BT_PERMANENT_LOG("Connect socket");
4855         case BT_RFCOMM_CLIENT_CANCEL_CONNECT:
4856         case BT_RFCOMM_SOCKET_DISCONNECT:
4857                 if (function_name == BT_RFCOMM_SOCKET_DISCONNECT)
4858                         BT_PERMANENT_LOG("Disconnect socket");
4859         case BT_RFCOMM_SOCKET_WRITE:
4860         case BT_RFCOMM_CREATE_SOCKET:
4861         case BT_RFCOMM_REMOVE_SOCKET:
4862         case BT_RFCOMM_SEND_RX_DETAILS:
4863         case BT_RFCOMM_SEND_TX_DETAILS:
4864         case BT_RFCOMM_UPDATE_CONNECTION_INFO:
4865
4866         case BT_OPP_PUSH_FILES:
4867         case BT_OPP_CANCEL_PUSH:
4868         /* TODO: MAP? MAP functions, see above */
4869
4870         case BT_OBEX_SERVER_ACCEPT_CONNECTION:
4871         case BT_OBEX_SERVER_REJECT_CONNECTION:
4872         case BT_OBEX_SERVER_ACCEPT_FILE:
4873         case BT_OBEX_SERVER_REJECT_FILE:
4874         case BT_OBEX_SERVER_SET_PATH:
4875         case BT_OBEX_SERVER_SET_ROOT:
4876         case BT_OBEX_SERVER_CANCEL_TRANSFER:
4877         case BT_OBEX_SERVER_CANCEL_ALL_TRANSFERS:
4878
4879         case BT_AUDIO_SELECT_ROLE:
4880         case BT_AUDIO_CONNECT:
4881         case BT_AUDIO_DISCONNECT:
4882         case BT_AG_CONNECT:
4883         case BT_AG_DISCONNECT:
4884         case BT_AV_CONNECT:
4885         case BT_AV_DISCONNECT:
4886         case BT_AV_SOURCE_CONNECT:
4887         case BT_AV_SOURCE_DISCONNECT:
4888         case BT_AVRCP_TARGET_CONNECT:
4889         case BT_AVRCP_TARGET_DISCONNECT:
4890         case BT_AVRCP_CONTROL_CONNECT:
4891         case BT_AVRCP_CONTROL_DISCONNECT:
4892         case BT_AVRCP_HANDLE_CONTROL:
4893         case BT_AVRCP_SET_TRACK_INFO:
4894         case BT_AVRCP_SET_PROPERTY:
4895         case BT_AVRCP_SET_PROPERTIES:
4896         case BT_AVRCP_CONTROL_SET_PROPERTY:
4897
4898         case BT_AUDIO_SET_ABSOLUTE_VOLUME:
4899         case BT_AUDIO_GET_ABSOLUTE_VOLUME:
4900         case BT_AUDIO_IS_AVC_ACTIVATED:
4901
4902         case BT_HF_CONNECT:
4903         case BT_HF_DISCONNECT:
4904
4905         case BT_HID_CONNECT:
4906         case BT_HID_DISCONNECT:
4907
4908         case BT_HID_DEVICE_ACTIVATE:
4909         case BT_HID_DEVICE_DEACTIVATE:
4910         case BT_HID_DEVICE_CONNECT:
4911         case BT_HID_DEVICE_DISCONNECT:
4912         case BT_HID_DEVICE_SEND_MOUSE_EVENT:
4913         case BT_HID_DEVICE_SEND_KEY_EVENT:
4914         case BT_HID_DEVICE_SEND_REPLY_TO_REPORT:
4915         case BT_HID_DEVICE_SEND_CUSTOM_EVENT:
4916
4917         case BT_CONNECT_LE:
4918         case BT_DISCONNECT_LE:
4919
4920         case BT_SET_ADVERTISING_DATA:
4921         case BT_SET_SCAN_RESPONSE_DATA:
4922
4923         case BT_HDP_CONNECT:
4924         case BT_HDP_DISCONNECT:
4925         case BT_HDP_SEND_DATA:
4926         case BT_HDP_REGISTER_SINK_APP:
4927         case BT_HDP_UNREGISTER_SINK_APP:
4928         case BT_HDP_GET_FD:
4929
4930         case BT_DPM_SET_ALLOW_BT_MODE:
4931         case BT_DPM_GET_ALLOW_BT_MODE:
4932         case BT_DPM_SET_DEVICE_RESTRITION:
4933         case BT_DPM_GET_DEVICE_RESTRITION:
4934         case BT_DPM_SET_UUID_RESTRITION:
4935         case BT_DPM_GET_UUID_RESTRITION:
4936         case BT_DPM_ADD_DEVICES_BLACKLIST:
4937         case BT_DPM_ADD_DEVICES_WHITELIST:
4938         case BT_DPM_ADD_UUIDS_BLACKLIST:
4939         case BT_DPM_ADD_UUIDS_WHITELIST:
4940         case BT_DPM_CLEAR_DEVICES_BLACKLIST:
4941         case BT_DPM_CLEAR_DEVICES_WHITELIST:
4942         case BT_DPM_CLEAR_UUIDS_BLACKLIST:
4943         case BT_DPM_CLEAR_UUIDS_WHITELIST:
4944         case BT_DPM_REMOVE_DEVICE_BLACKLIST:
4945         case BT_DPM_REMOVE_DEVICE_WHITELIST:
4946         case BT_DPM_REMOVE_UUID_BLACKLIST:
4947         case BT_DPM_REMOVE_UUID_WHITELIST:
4948         case BT_DPM_GET_DEVICES_BLACKLIST:
4949         case BT_DPM_GET_DEVICES_WHITELIST:
4950         case BT_DPM_GET_UUIDS_BLACKLIST:
4951         case BT_DPM_GET_UUIDS_WHITELIST:
4952         case BT_DPM_SET_ALLOW_OUTGOING_CALL:
4953         case BT_DPM_GET_ALLOW_OUTGOING_CALL:
4954         case BT_DPM_SET_PAIRING_STATE:
4955         case BT_DPM_GET_PAIRING_STATE:
4956         case BT_DPM_SET_PROFILE_STATE:
4957         case BT_DPM_GET_PROFILE_STATE:
4958         case BT_DPM_SET_DESKROP_CONNECTIVITY_STATE:
4959         case BT_DPM_GET_DESKROP_CONNECTIVITY_STATE:
4960         case BT_DPM_SET_DISCOVERABLE_STATE:
4961         case BT_DPM_GET_DISCOVERABLE_STATE:
4962         case BT_DPM_SET_LIMITED_DISCOVERABLE_STATE:
4963         case BT_DPM_GET_LIMITED_DISCOVERABLE_STATE:
4964         case BT_DPM_SET_DATA_TRANSFER_STATE:
4965         case BT_DPM_GET_DATA_TRANSFER_STATE:
4966
4967         case BT_NETWORK_ACTIVATE:
4968         case BT_NETWORK_DEACTIVATE:
4969         case BT_NETWORK_CONNECT:
4970         case BT_NETWORK_DISCONNECT:
4971         case BT_NETWORK_SERVER_DISCONNECT:
4972
4973         case BT_GATT_GET_PRIMARY_SERVICES:
4974         case BT_GATT_GET_SERVICE_PROPERTIES:             /* GATT Client */
4975         case BT_GATT_GET_CHARACTERISTIC_PROPERTIES:      /* GATT Client */
4976         case BT_GATT_WATCH_SERVICE_CHANGED_INDICATION:   /* GATT Client */
4977         case BT_GATT_DISCOVER_CHARACTERISTICS:
4978         case BT_GATT_SET_PROPERTY_REQUEST:
4979         case BT_GATT_READ_CHARACTERISTIC:
4980         case BT_GATT_READ_DESCRIPTOR_VALUE:              /* GATT Client */
4981         case BT_GATT_WRITE_CHARACTERISTIC_VALUE_BY_TYPE: /* GATT Client */
4982         case BT_GATT_ACQUIRE_WRITE:
4983         case BT_GATT_WRITE_DESCRIPTOR_VALUE:             /* GATT Client */
4984         case BT_GATT_WATCH_CHARACTERISTIC:               /* GATT Client */
4985         case BT_GATT_CLIENT_REGISTER:                    /* GATT Client */
4986         case BT_GATT_CLIENT_UNREGISTER:                   /* GATT Client */
4987         case BT_GATT_DISCOVER_CHARACTERISTICS_DESCRIPTOR:
4988         case BT_GATT_REGISTER_APPLICATION:
4989         case BT_GATT_REGISTER_SERVICE:
4990         case BT_GATT_SEND_RESPONSE:
4991 #ifndef GATT_DIRECT
4992         case BT_GATT_SERVER_REGISTER:
4993         case BT_GATT_SERVER_ADD_SERVICE:
4994         case BT_GATT_SERVER_ADD_CHARACTERISTIC:
4995         case BT_GATT_SERVER_ADD_DESCRIPTOR:
4996         case BT_GATT_SERVER_START_SERVICE:
4997         case BT_GATT_SERVER_STOP_SERVICE:
4998         case BT_GATT_SERVER_DELETE_SERVICE:
4999         case BT_GATT_SERVER_SEND_RESPONSE:
5000         case BT_GATT_SERVER_ACQURE_WRITE_RESPONSE:
5001         case BT_GATT_SERVER_ACQUIRE_NOTIFY_RESPONSE:
5002         case BT_GATT_SERVER_SEND_INDICATION:
5003         case BT_GATT_SERVER_UPDATE_VALUE:
5004         case BT_GATT_SERVER_DEREGISTER:
5005 #endif
5006         case BT_REQ_ATT_MTU:
5007         case BT_PBAP_CONNECT:
5008         case BT_PBAP_DISCONNECT:
5009         case BT_PBAP_GET_PHONEBOOK_SIZE:
5010         case BT_PBAP_GET_PHONEBOOK:
5011         case BT_PBAP_GET_LIST:
5012         case BT_PBAP_PULL_VCARD:
5013         case BT_PBAP_PHONEBOOK_SEARCH:
5014
5015         case BT_RFCOMM_LISTEN_AND_ACCEPT:
5016
5017         ret_val = cynara_check(p_cynara, client_creds, client_session, user_creds,
5018                                                 BT_PRIVILEGE_PUBLIC);
5019
5020         BT_INFO("Client Credentials [%s]", client_creds);
5021         if (ret_val != CYNARA_API_ACCESS_ALLOWED) {
5022                 BT_ERR("Fail to access: %s", BT_PRIVILEGE_PUBLIC);
5023                 result = FALSE;
5024         }
5025
5026         /* Need to check mediastorage privilege */
5027         if (function_name == BT_PBAP_GET_PHONEBOOK ||
5028                 function_name == BT_PBAP_PULL_VCARD) {
5029                 ret_val = cynara_check(p_cynara, client_creds, client_session, user_creds,
5030                                                         MEDIASTORAGE_PRIVILEGE);
5031
5032                 if (ret_val != CYNARA_API_ACCESS_ALLOWED) {
5033                 BT_ERR("Fail to access: %s", MEDIASTORAGE_PRIVILEGE);
5034                 result = FALSE;
5035                 }
5036         }
5037         break;
5038
5039         case BT_ENABLE_ADAPTER:
5040         case BT_DISABLE_ADAPTER:
5041         case BT_RESET_ADAPTER:
5042         case BT_RECOVER_ADAPTER:
5043         case BT_BATTERY_READ_DATA:
5044         case BT_ENABLE_ADAPTER_LE:
5045         case BT_DISABLE_ADAPTER_LE:
5046         case BT_SET_CONNECTABLE:
5047         case BT_SET_DISCOVERABLE_MODE:
5048         case BT_ADD_WHITE_LIST:
5049         case BT_REMOVE_WHITE_LIST:
5050         case BT_CLEAR_WHITE_LIST:
5051         case BT_SET_MANUFACTURER_DATA:
5052
5053         case BT_CANCEL_SEARCH_SERVICE:
5054         case BT_ENABLE_RSSI:
5055         case BT_DISCONNECT_DEVICE:
5056
5057         case BT_RFCOMM_ACCEPT_CONNECTION:
5058         case BT_RFCOMM_REJECT_CONNECTION:
5059         case BT_RFCOMM_LISTEN:
5060
5061         case BT_HID_ENABLE_BARCODE_FEATURE:
5062
5063         case BT_AVRCP_CONTROL_GET_PROPERTY:
5064         case BT_AVRCP_GET_TRACK_INFO:
5065         case BT_AVRCP_TRANSPORT_SET_PROPERTY:
5066         case BT_AVRCP_HANDLE_CONTROL_TO_DEST:
5067
5068         case BT_SET_CONTENT_PROTECT:
5069         case BT_BOND_DEVICE_BY_TYPE:
5070         case BT_SET_LE_PRIVACY:
5071         case BT_SET_LE_STATIC_RANDOM_ADDRESS:
5072         case BT_LE_CONN_UPDATE:
5073         case BT_UPDATE_LE_CONNECTION_MODE:
5074         case BT_GET_DEVICE_IDA:
5075         case BT_LE_READ_MAXIMUM_DATA_LENGTH:
5076         case BT_LE_WRITE_HOST_SUGGESTED_DATA_LENGTH:
5077         case BT_LE_READ_HOST_SUGGESTED_DATA_LENGTH:
5078         case BT_LE_SET_DATA_LENGTH:
5079         case BT_LE_OOB_READ_LOCAL_DATA:
5080         case BT_LE_OOB_ADD_REMOTE_DATA:
5081
5082         case BT_GET_GATT_DATA_BATCHING_AVAILABLE_PACKETS:
5083         case BT_ENABLE_GATT_DATA_BATCHING:
5084         case BT_DISABLE_GATT_DATA_BATCHING:
5085
5086         case BT_LE_IPSP_INIT:
5087         case BT_LE_IPSP_DEINIT:
5088         case BT_LE_IPSP_CONNECT:
5089         case BT_LE_IPSP_DISCONNECT:
5090         case BT_PXP_MONITOR_SET_PROPERTY:
5091         case BT_PXP_MONITOR_GET_PROPERTY:
5092         case BT_PXP_MONITOR_GET_SUPPORTED_SERIVCES:
5093         case BT_PXP_REPORTER_REGISTER:
5094         case BT_PXP_REPORTER_UNREGISTER:
5095         case BT_PXP_REPORTER_GET_PROPERTY:
5096
5097         /* TDS */
5098         case BT_TDS_PROVIDER_REGISTER:
5099         case BT_TDS_PROVIDER_UNREGISTER:
5100         case BT_TDS_PROVIDER_SET_MANUF_DATA:
5101         case BT_TDS_PROVIDER_CREATE:
5102         case BT_TDS_PROVIDER_DESTROY:
5103         case BT_TDS_PROVIDER_SET_TRANSPORT_DATA:
5104         case BT_TDS_SEND_ACTIVATION_RESPONSE:
5105         case BT_TDS_READ_TRANSPORT_DATA:
5106         case BT_TDS_ENABLE_CONTROL_POINT:
5107         case BT_TDS_ACTIVATE_CONTROL_POINT:
5108
5109         /* OTP Server */
5110         case BT_OTP_SERVER_INIT:
5111         case BT_OTP_SERVER_DEINIT:
5112         case BT_OTP_READ_VALUE:
5113         case BT_OTP_ENABLE_NOTIFICATION:
5114         case BT_OTP_WRITE_VALUE:
5115         case BT_LE_OTC_CONNECT:
5116         case BT_LE_OTC_DISCONNECT:
5117
5118         case BT_MAP_CREATE_SESSION:
5119         case BT_MAP_DESTROY_SESSION:
5120         case BT_MAP_SET_FOLDER:
5121         case BT_MAP_LIST_FOLDERS:
5122         case BT_MAP_LIST_FILTER_FIELDS:
5123         case BT_MAP_LIST_MESSAGES:
5124         case BT_MAP_UPDATE_INBOX:
5125         case BT_MAP_PUSH_MESSAGE:
5126         case BT_MAP_GET_MESSAGE:
5127
5128         case BT_MESH_INIT:
5129         case BT_MESH_DEINIT:
5130         case BT_MESH_NETWORK_CREATE:
5131         case BT_MESH_NETWORK_DESTROY:
5132         case BT_MESH_NETWORK_LOAD:
5133         case BT_MESH_NETWORK_SCAN:
5134         case BT_MESH_NETWORK_CANCEL_SCAN:
5135         case BT_MESH_NETWORK_SET_CAPABILITIES:
5136         case BT_MESH_NETWORK_PROVISION_DEVICE:
5137         case BT_MESH_AUTHENTICATION_REPLY:
5138         case BT_MESH_NETWORK_SET_NAME:
5139         case BT_MESH_NETWORK_ADD_NETKEY:
5140         case BT_MESH_NETWORK_DELETE_NETKEY:
5141         case BT_MESH_NETWORK_UPDATE_NETKEY:
5142         case BT_MESH_NETWORK_ADD_APPKEY:
5143         case BT_MESH_NETWORK_DELETE_APPKEY:
5144         case BT_MESH_NETWORK_UPDATE_APPKEY:
5145         case BT_MESH_NETWORK_GET_NETKEYS:
5146         case BT_MESH_NETWORK_GET_APPKEYS:
5147         case BT_MESH_NETWORK_GET_NODES:
5148         case BT_MESH_ELEMENT_GET_MODELS:
5149         case BT_MESH_NODE_BROWSE:
5150         case BT_MESH_NODE_GET_VENDOR_FEATURES:
5151         case BT_MESH_NODE_CONFIGURE_KEY:
5152         case BT_MESH_NODE_TTL_EXECUTE:
5153         case BT_MESH_NODE_GET_NETKEYS:
5154         case BT_MESH_NODE_GET_APPKEYS:
5155         case BT_MESH_NODE_RESET:
5156         case BT_MESH_MODEL_CONFIGURE_APPKEY:
5157         case BT_MESH_MODEL_GET_APPKEY_LIST:
5158         case BT_MESH_MODEL_EXECUTE_MSG:
5159         case BT_MESH_NETWORK_CREATE_GROUP:
5160         case BT_MESH_NETWORK_REMOVE_GROUP:
5161         case BT_MESH_MODEL_CONFIG_GROUP_SUB:
5162         case BT_MESH_MODEL_CONFIG_VIRTUAL_GROUP_SUB:
5163         case BT_MESH_MODEL_GET_SUBSCRIPTION_LIST:
5164         case BT_MESH_MODEL_SET_PUBLICATION:
5165         case BT_MESH_MODEL_GET_PUBLICATION:
5166         case BT_MESH_NETWORK_GET_GROUPS:
5167
5168         ret_val = cynara_check(p_cynara, client_creds, client_session, user_creds,
5169                                 BT_PRIVILEGE_PLATFORM);
5170
5171         if (ret_val != CYNARA_API_ACCESS_ALLOWED) {
5172                 BT_ERR("Fail to access: %s", BT_PRIVILEGE_PLATFORM);
5173                 result = FALSE;
5174         }
5175         break;
5176
5177         case BT_CHECK_ADAPTER:
5178         case BT_GET_RSSI:
5179
5180         case BT_GET_LOCAL_NAME:
5181         case BT_GET_LOCAL_ADDRESS:
5182         case BT_GET_LOCAL_VERSION:
5183         case BT_IS_SERVICE_USED:
5184         case BT_GET_DISCOVERABLE_MODE:
5185         case BT_GET_DISCOVERABLE_TIME:
5186         case BT_IS_DISCOVERYING:
5187         case BT_IS_LE_DISCOVERYING:
5188         case BT_IS_CONNECTABLE:
5189         case BT_GET_CONNECTABLE:
5190         case BT_GET_BONDED_DEVICES:
5191         case BT_GET_PROFILE_CONNECTED_DEVICES:
5192         case BT_GET_BONDED_DEVICE:
5193         case BT_PASSKEY_REPLY:
5194         case BT_PASSKEY_CONFIRMATION_REPLY:
5195         case BT_GET_IS_ALIAS_SET:
5196         case BT_IS_DEVICE_CONNECTED:
5197         case BT_GET_CONNECTED_LINK_TYPE:
5198         case BT_SET_PROFILE_TRUSTED:
5199         case BT_GET_PROFILE_TRUSTED:
5200         case BT_GET_SPEAKER_GAIN:
5201         case BT_SET_SPEAKER_GAIN:
5202         case BT_RFCOMM_CLIENT_IS_CONNECTED:
5203         case BT_RFCOMM_IS_UUID_AVAILABLE:
5204         case BT_GET_ADVERTISING_DATA:
5205         case BT_GET_SCAN_RESPONSE_DATA:
5206         case BT_IS_ADVERTISING:
5207         case BT_IS_LE_2M_PHY_SUPPORTED:
5208         case BT_IS_LE_CODED_PHY_SUPPORTED:
5209         case BT_REGISTER_SCAN_FILTER:
5210         case BT_IS_SCAN_FILTER_SUPPORTED:
5211         case BT_GET_ATT_MTU:
5212
5213         case BT_OBEX_SERVER_ALLOCATE:
5214         case BT_OBEX_SERVER_DEALLOCATE:
5215         case BT_OBEX_SERVER_IS_ACTIVATED:
5216         case BT_OPP_GET_TRANSFER_PROGRESS:
5217                 /* Non-privilege control */
5218                 break;
5219         default:
5220                 BT_ERR("Unknown function!");
5221                 result = FALSE;
5222                 break;
5223         }
5224
5225         if (function_name >= BT_FUNC_MESH_BASE) {
5226                 BT_INFO("MESH Function called");
5227                 char app_id[256] = { 0, };
5228
5229                 if (BLUETOOTH_ERROR_NONE == __bt_service_get_requester_app_id(unique_name,
5230                                         app_id, sizeof(app_id))) {
5231                         requester_unique_creds = g_strdup(app_id);
5232                 } else {
5233                         BT_DBG("Requester app_id not found, use client creds");
5234                         requester_unique_creds = g_strdup(client_creds);
5235                 }
5236                 BT_DBG("Requester unique_creds: %s", requester_unique_creds);
5237         } else {
5238                 BT_INFO("Non MESH Function called client creds [%s]", client_creds);
5239         }
5240
5241         if (client_creds)
5242                 free(client_creds);
5243
5244         if (user_creds)
5245                 free(user_creds);
5246
5247         return result;
5248 }
5249
5250 GDBusNodeInfo *__bt_service_create_method_node_info
5251                                         (const gchar *introspection_data)
5252 {
5253         GError *err = NULL;
5254         GDBusNodeInfo *node_info = NULL;
5255
5256         if (introspection_data == NULL) {
5257                 BT_ERR("Introspection XML not present");
5258                 return NULL;
5259         }
5260
5261         node_info = g_dbus_node_info_new_for_xml(introspection_data, &err);
5262
5263         if (err) {
5264                 BT_ERR("Unable to create node: %s", err->message);
5265                 g_clear_error(&err);
5266         }
5267         return node_info;
5268 }
5269
5270 int __bt_service_register_object(GDBusConnection *conn,
5271                 GDBusNodeInfo *node_info, gboolean reg)
5272 {
5273         static guint service_id = 0;
5274         GError *error = NULL;
5275
5276         if (reg) {
5277                 if (node_info == NULL)
5278                         return -1;
5279
5280                 service_id = g_dbus_connection_register_object(conn,
5281                                 BT_SERVICE_PATH,
5282                                 node_info->interfaces[0],
5283                                 &method_table,
5284                                 NULL, NULL, &error);
5285                 if (service_id == 0)
5286                         return -1;
5287         } else {
5288                 if (service_id > 0) {
5289                         g_dbus_connection_unregister_object(conn,
5290                                         service_id);
5291                         service_id = 0;
5292                 }
5293         }
5294
5295         return 0;
5296 }
5297
5298 static void __name_owner_changed(GDBusConnection *connection,
5299                 const gchar *sender_name,
5300                 const gchar *object_path,
5301                 const gchar *interface_name,
5302                 const gchar *signal_name,
5303                 GVariant *parameters,
5304                 gpointer user_data)
5305 {
5306         const char *name = NULL;
5307         const char *old_owner = NULL;
5308         const char *new_owner = NULL;
5309
5310         g_variant_get(parameters, "(&s&s&s)", &name, &old_owner, &new_owner);
5311         if (*new_owner != '\0')
5312                 return;
5313
5314         _bt_check_hdp_app_termination(name);
5315
5316         /* Advertising App Termination */
5317         _bt_check_adv_app_termination(name);
5318
5319         /* Check if le_scanning app is terminated */
5320         _bt_check_le_scanner_app_termination(name);
5321
5322         /* Check if RFCOMM app is terminated */
5323         _bt_rfcomm_check_termination(name);
5324 }
5325
5326 static void __bt_service_bus_acquired_handler(GDBusConnection *connection,
5327                 const gchar *name, gpointer user_data)
5328 {
5329         GDBusNodeInfo *node_info = NULL;
5330
5331         BT_INFO("bus acquired");
5332
5333         ret_if(connection == NULL);
5334
5335         node_info = __bt_service_create_method_node_info(
5336                         bt_service_introspection_xml);
5337         ret_if(node_info == NULL);
5338
5339         __bt_service_register_object(connection, node_info, TRUE);
5340         g_dbus_node_info_unref(node_info);
5341
5342         bt_service_conn = connection;
5343 }
5344
5345 static void __bt_service_name_acquired_handler(GDBusConnection *connection,
5346                 const gchar *name, gpointer user_data)
5347 {
5348         BT_INFO("name acquired");
5349         name_acquired = TRUE;
5350 }
5351
5352 static void __bt_service_name_lost_handler(GDBusConnection *connection,
5353                 const gchar *name, gpointer user_data)
5354 {
5355         BT_INFO("name lost");
5356         name_acquired = FALSE;
5357 }
5358
5359 gboolean _is_name_acquired(void)
5360 {
5361         return name_acquired;
5362 }
5363
5364 void _bt_service_unref_connection(void)
5365 {
5366         BT_INFO("+");
5367
5368         if (bt_service_conn) {
5369                 g_dbus_connection_flush_sync(bt_service_conn, NULL, NULL);
5370                 g_object_unref(bt_service_conn);
5371                 bt_service_conn = NULL;
5372         }
5373
5374         BT_INFO("-");
5375 }
5376
5377 int _bt_service_register(void)
5378 {
5379         GDBusConnection *conn;
5380         GError *err = NULL;
5381
5382         conn = g_bus_get_sync(G_BUS_TYPE_SYSTEM, NULL, &err);
5383         retv_if(conn == NULL, BLUETOOTH_ERROR_INTERNAL);
5384         bt_service_conn = conn;
5385
5386         owner_id = g_bus_own_name(G_BUS_TYPE_SYSTEM,
5387                                 BT_SERVICE_NAME,
5388                                 G_BUS_NAME_OWNER_FLAGS_NONE,
5389                                 __bt_service_bus_acquired_handler,
5390                                 __bt_service_name_acquired_handler,
5391                                 __bt_service_name_lost_handler,
5392                                 NULL, NULL);
5393         BT_DBG("owner_id is [%d]", owner_id);
5394         if (owner_id == 0)
5395                 goto fail;
5396
5397         /* Subscribe for name owner changed signal */
5398         owner_sig_id = g_dbus_connection_signal_subscribe(conn,
5399                         BT_FREEDESKTOP_SERVICE, BT_FREEDESKTOP_INTERFACE,
5400                         BT_NAME_OWNER_CHANGED, NULL, NULL, G_DBUS_SIGNAL_FLAGS_NONE,
5401                         __name_owner_changed, NULL, NULL);
5402         BT_INFO("owner_sig_id: %d", owner_sig_id);
5403
5404         return BLUETOOTH_ERROR_NONE;
5405
5406 fail:
5407         if (bt_service_conn) {
5408                 g_object_unref(bt_service_conn);
5409                 bt_service_conn = NULL;
5410         }
5411
5412         return BLUETOOTH_ERROR_INTERNAL;
5413 }
5414
5415 void _bt_service_unregister(void)
5416 {
5417         if (bt_service_conn) {
5418                 sd_notify(0, "STOPPING=1");
5419
5420                 if (owner_sig_id > 0) {
5421                         g_dbus_connection_signal_unsubscribe(
5422                                         bt_service_conn, owner_sig_id);
5423                         owner_sig_id = 0;
5424                 }
5425
5426                 if (owner_id > 0) {
5427                         g_bus_unown_name(owner_id);
5428                         owner_id = 0;
5429                 }
5430
5431                 __bt_service_register_object(bt_service_conn, NULL, FALSE);
5432         }
5433 }
5434
5435 int _bt_service_cynara_init(void)
5436 {
5437         int result;
5438         char err_msg[256] = {0, };
5439
5440         retv_if(p_cynara != NULL, BLUETOOTH_ERROR_ALREADY_INITIALIZED);
5441
5442         result = cynara_initialize(&p_cynara, conf);
5443
5444         if (result != CYNARA_API_SUCCESS) {
5445                 cynara_strerror(result, err_msg, sizeof(err_msg));
5446                 BT_ERR("Fail to initialize cynara: [%s]", err_msg);
5447                 return BLUETOOTH_ERROR_INTERNAL;
5448         }
5449
5450         return BLUETOOTH_ERROR_NONE;
5451 }
5452
5453 void _bt_service_cynara_deinit(void)
5454 {
5455         int result;
5456         char err_msg[256] = {0, };
5457
5458         ret_if(p_cynara == NULL);
5459
5460         result = cynara_finish(p_cynara);
5461
5462         if (result != CYNARA_API_SUCCESS) {
5463                 cynara_strerror(result, err_msg, sizeof(err_msg));
5464                 BT_ERR("Fail to finish cynara: [%s]", err_msg);
5465                 return;
5466         }
5467
5468         p_cynara = NULL;
5469         conf = NULL;
5470 }
5471
5472 void _bt_service_method_return(GDBusMethodInvocation *invocation,
5473                 GArray *out_param, int result)
5474 {
5475         GVariant *out_var;
5476         BT_DBG("");
5477         out_var = g_variant_new_from_data((const GVariantType *)"ay",
5478                         out_param->data, out_param->len, TRUE, NULL, NULL);
5479
5480         g_dbus_method_invocation_return_value(invocation,
5481                         g_variant_new("(iv)", result, out_var));
5482 }
5483
5484 void _bt_service_method_return_with_unix_fd_list(GDBusMethodInvocation *invocation,
5485                 GArray *out_param, int result, GUnixFDList *fd_list)
5486 {
5487         GVariant *out_var;
5488         BT_DBG("");
5489         out_var = g_variant_new_from_data((const GVariantType *)"ay",
5490                         out_param->data, out_param->len, TRUE, NULL, NULL);
5491
5492         g_dbus_method_invocation_return_value_with_unix_fd_list(invocation,
5493                         g_variant_new("(iv)", result, out_var), fd_list);
5494 }