Fix the build warnings and typo error
[platform/core/connectivity/bluetooth-frwk.git] / bt-service-adaptation / services / bt-request-handler.c
index 22e6ea1..28a950a 100644 (file)
@@ -222,6 +222,15 @@ static gboolean __bt_is_sync_function(int service_function)
                        || service_function == BT_GATT_SERVER_DELETE_SERVICE
                        || service_function == BT_START_LE_DISCOVERY
                        || service_function == BT_STOP_LE_DISCOVERY
+#ifdef TIZEN_GATT_CLIENT
+                       || service_function == BT_GATT_CLIENT_REGISTER
+                       || service_function == BT_GATT_GET_PRIMARY_SERVICES
+                       || service_function == BT_GATT_GET_SERVICE_PROPERTIES
+                       || service_function == BT_GATT_GET_INCLUDED_SERVICES
+                       || service_function == BT_GATT_GET_CHARACTERISTIC_PROPERTIES
+                       || service_function == BT_GATT_WATCH_CHARACTERISTIC
+                       || service_function == BT_GATT_ACQUIRE_WRITE
+#endif
                        || service_function == BT_AUDIO_SELECT_ROLE
                        || service_function == BT_OBEX_SERVER_ACCEPT_CONNECTION)
                return TRUE;
@@ -273,7 +282,6 @@ static void __bt_service_method(GDBusConnection *connection,
                GVariant *temp = NULL;
                int result = 0;
                int request_id = -1;
-               const char *sender = NULL;
 
                g_variant_get(parameters, "(iii@ay@ay@ay@ay@ay)", &service_type,
                                &service_function, &request_type,
@@ -281,8 +289,6 @@ static void __bt_service_method(GDBusConnection *connection,
 
                out_param1 = g_array_new(FALSE, FALSE, sizeof(gchar));
 
-               sender = g_dbus_method_invocation_get_sender(invocation);
-
                if (service_type == BT_CORE_SERVICE) {
                        BT_DBG("No need to check privilege from bt-core");
                } else if (__bt_service_check_privilege(service_function,
@@ -834,7 +840,7 @@ int __bt_bluez_request(int function_name,
 #else
                connected = _bt_is_device_connected(&address, service_type);
 #endif
-               BT_DBG("is_connected: %d", connected);
+               BT_INFO("is_connected: %d", connected);
                g_array_append_vals(*out_param1, &connected, sizeof(gboolean));
                break;
        }
@@ -1620,6 +1626,20 @@ int __bt_bluez_request(int function_name,
                result = _bt_avrcp_control_set_property(type, value);
                break;
        }
+       case BT_AVRCP_TRANSPORT_SET_PROPERTY: {
+               int type;
+               unsigned int value;
+               BT_DBG("+");
+
+               __bt_service_get_parameters(in_param1,
+                               &type, sizeof(int));
+               __bt_service_get_parameters(in_param2,
+                               &value, sizeof(unsigned int));
+
+               result = _bt_avrcp_transport_set_property(type, value);
+               BT_DBG("-");
+               break;
+       }
        case BT_AVRCP_CONTROL_GET_PROPERTY: {
                int type;
 
@@ -2237,6 +2257,72 @@ int __bt_bluez_request(int function_name,
 
                break;
        }
+       case BT_GATT_SERVER_ACQURE_WRITE_RESPONSE: {
+
+               bluetooth_gatt_server_acquire_response_params_t param;
+               char *app;
+               GDBusMessage *msg;
+               msg = g_dbus_method_invocation_get_message(context);
+               GUnixFDList *fd_list;
+               int fd  = -1;;
+               int *fd_list_array;
+               int len;
+
+               BT_ERR("sending acquire write  respose \n");
+
+               fd_list = g_dbus_message_get_unix_fd_list(msg);
+
+               memset(&param, 0x00, sizeof(bluetooth_gatt_server_acquire_response_params_t));
+
+               app = (char*)g_dbus_method_invocation_get_sender(context);
+
+               __bt_service_get_parameters(in_param1, &param,
+                               sizeof(bluetooth_gatt_server_acquire_response_params_t));
+
+               BT_ERR("sending acquire write  respose sent \n  ");
+
+               fd_list_array = (int *)g_unix_fd_list_peek_fds(fd_list, &len);
+               BT_INFO("Num fds in fd_list is : %d, fd_list[0]: %d", len, fd_list_array[0]);
+               fd = fd_list_array[0];
+
+               param.fd = fd;
+               result = _bt_gatt_server_acquire_send_response(app, &param, fd_list);
+
+               break;
+       }
+       case BT_GATT_SERVER_ACQUIRE_NOTIFY_RESPONSE: {
+
+               bluetooth_gatt_server_acquire_response_params_t param;
+               char *app;
+               GDBusMessage *msg;
+               msg = g_dbus_method_invocation_get_message(context);
+               GUnixFDList *fd_list;
+               int fd  = -1;
+               int *fd_list_array;
+               int len;
+
+               BT_ERR("sending acquire write  respose \n");
+
+               fd_list = g_dbus_message_get_unix_fd_list(msg);
+
+               memset(&param, 0x00, sizeof(bluetooth_gatt_server_acquire_response_params_t));
+
+               app = (char*)g_dbus_method_invocation_get_sender(context);
+
+               __bt_service_get_parameters(in_param1, &param,
+                               sizeof(bluetooth_gatt_server_acquire_response_params_t));
+
+               BT_ERR("sending acquire write  respose sent \n  ");
+
+               fd_list_array = (int *)g_unix_fd_list_peek_fds(fd_list, &len);
+               BT_INFO("Num fds in fd_list is : %d, fd_list[0]: %d", len, fd_list_array[0]);
+               fd = fd_list_array[0];
+
+               param.fd = fd;
+               result = _bt_gatt_server_acquire_send_response(app, &param, fd_list);
+
+               break;
+       }
        case BT_GATT_SERVER_SEND_INDICATION: {
                bluetooth_gatt_server_indication_params_t param;
                bluetooth_gatt_att_data_t data;
@@ -2292,6 +2378,403 @@ int __bt_bluez_request(int function_name,
                }
                break;
        }
+#ifdef TIZEN_GATT_CLIENT
+       /* Local Async */
+       case BT_GATT_CLIENT_REGISTER: {
+               bluetooth_device_address_t address = { {0} };
+               char *addr;
+
+               sender = (char*)g_dbus_method_invocation_get_sender(context);
+
+               __bt_service_get_parameters(in_param1,
+                               &address, sizeof(bluetooth_device_address_t));
+
+               result = _bt_register_gatt_client_instance(sender, &address);
+               if (BLUETOOTH_ERROR_NONE == result) {
+                       addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
+
+                       _bt_convert_addr_type_to_string(addr, address.addr);
+                       BT_INFO("GATT Client: Save Invocation data GATT CLient Register app[%s] address [%s]", sender, addr);
+
+                       /* Save the informations to invocation */
+                       _bt_save_invocation_context(context, result, sender,
+                                       function_name, (gpointer)addr);
+               }
+               break;
+       }
+       /* Sync */
+       case BT_GATT_CLIENT_UNREGISTER: {
+               int client_id;
+
+               sender = (char*)g_dbus_method_invocation_get_sender(context);
+               __bt_service_get_parameters(in_param1,
+                               &client_id, sizeof(int));
+
+               result = _bt_unregister_gatt_client_instance(sender, client_id);
+               break;
+       }
+
+       /* Async: Remote Interaction  */
+       case BT_GATT_ACQUIRE_WRITE: {
+
+               int fd = -1;
+               int mtu = -1;
+               bluetooth_gatt_client_char_prop_info_t param;
+
+               BT_INFO("GATT Client ACQUIRE WRITE recived");
+
+               sender = (char*)g_dbus_method_invocation_get_sender(context);
+
+               __bt_service_get_parameters(in_param1, &param,
+                                       sizeof(bluetooth_gatt_client_char_prop_info_t));
+
+
+               result   = _bt_gatt_acquire_write(&param , &fd, &mtu);
+
+               g_array_append_vals(*out_param1, &mtu, sizeof(int));
+
+               if (BLUETOOTH_ERROR_NONE == result)
+                       BT_INFO("GATT Client: Save Invocation data for characteristic props app[%s] fd[ %d]", sender, fd);
+               else {
+                       BT_ERR("Gatt Client Acqure Write");
+                       break;
+               }
+
+               GUnixFDList *fd_list = NULL;
+               GError *error = NULL;
+
+               /* Add socket fd to unix_fd_list */
+               fd_list = g_unix_fd_list_new();
+               g_unix_fd_list_append(fd_list, fd, &error);
+
+               _bt_service_method_return_with_unix_fd_list(
+                               context, *out_param1, result, fd_list);
+
+               close(fd);
+               g_object_unref(fd_list);
+
+               break;
+       }
+       /* Async: Remote Interaction  */
+       case BT_CONNECT_LE: {
+               bluetooth_device_address_t address = { {0} };
+               gboolean auto_connect;
+               char *addr;
+               int client_id;
+
+               sender = (char*)g_dbus_method_invocation_get_sender(context);
+
+               __bt_service_get_parameters(in_param1,
+                               &address, sizeof(bluetooth_device_address_t));
+               __bt_service_get_parameters(in_param2,
+                               &auto_connect, sizeof(gboolean));
+               __bt_service_get_parameters(in_param3,
+                               &client_id, sizeof(int));
+
+               BT_INFO("GATT Client: client_id[%d]", client_id);
+               result = _bt_connect_le_device(&address, auto_connect, client_id);
+               if (BLUETOOTH_ERROR_NONE == result) {
+
+                       addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
+                       BT_INFO("GATT Client: Save Invocation data Connect LE app[%s]", sender);
+
+                       _bt_convert_addr_type_to_string(addr, address.addr);
+
+                       /* Save the informations to invocation */
+                       _bt_save_invocation_context(context, result, sender,
+                                       function_name, (gpointer)addr);
+               } else {
+                       BT_INFO("GATT Client: gatt connect failed");
+                       g_array_append_vals(*out_param1, &address,
+                                       sizeof(bluetooth_device_address_t));
+               }
+               break;
+       }
+       /* Async: Remote Interaction  */
+       case BT_DISCONNECT_LE: {
+               bluetooth_device_address_t address = { {0} };
+               char *addr;
+               int client_id;
+
+               sender = (char*)g_dbus_method_invocation_get_sender(context);
+
+               __bt_service_get_parameters(in_param1,
+                               &address, sizeof(bluetooth_device_address_t));
+               __bt_service_get_parameters(in_param2,
+                               &client_id, sizeof(int));
+
+               BT_INFO("GATT Disconnect using client Interface [%d]", client_id);
+               result = _bt_disconnect_le_device(&address, client_id);
+               if (BLUETOOTH_ERROR_NONE == result) {
+                       addr = g_malloc0(BT_ADDRESS_STRING_SIZE);
+                       BT_INFO("GATT Client: Save Invocation data DisConnect LE app[%s]", sender);
+
+                       _bt_convert_addr_type_to_string(addr, address.addr);
+
+                       /* Save the informations to invocation */
+                       _bt_save_invocation_context(context, result, sender,
+                                       function_name, (gpointer)addr);
+               } else {
+                       g_array_append_vals(*out_param1, &address,
+                                       sizeof(bluetooth_device_address_t));
+               }
+               break;
+       }
+       case BT_GATT_GET_PRIMARY_SERVICES: {
+               char *addr;
+
+               sender = (char*)g_dbus_method_invocation_get_sender(context);
+               bluetooth_device_address_t address = { {0} };
+
+               __bt_service_get_parameters(in_param1, &address,
+                               sizeof(bluetooth_device_address_t));
+
+               addr = g_malloc0(sizeof(char) * BT_ADDRESS_STRING_SIZE);
+               _bt_convert_addr_type_to_string(addr, address.addr);
+
+               result = _bt_gatt_get_primary_services(addr);
+               if (BLUETOOTH_ERROR_NONE == result) {
+                       BT_INFO("GATT Client: Save Remote GATT Server address addr [%s] app[%s]",
+                                       addr, sender);
+                       _bt_save_invocation_context(context, result, sender,
+                                       function_name, (gpointer)addr);
+               } else
+                       g_free(addr);
+               break;
+       }
+       /* Local Async */
+       case BT_GATT_GET_SERVICE_PROPERTIES: {
+               bluetooth_gatt_client_svc_prop_info_t param;
+
+               sender = (char*)g_dbus_method_invocation_get_sender(context);
+               memset(&param, 0x00, sizeof(bluetooth_gatt_client_svc_prop_info_t));
+
+               __bt_service_get_parameters(in_param1, &param,
+                               sizeof(bluetooth_gatt_client_svc_prop_info_t));
+
+               result = _bt_gatt_get_all_characteristic(&param);
+               if (BLUETOOTH_ERROR_NONE == result) {
+                       BT_INFO("GATT Client: Save Invocation data for Service props app[%s]", sender);
+
+                       /* Save the informations to invocation */
+                       _bt_save_invocation_context(context, result, sender,
+                                       function_name,
+                                       (gpointer)g_memdup(&param, sizeof(bluetooth_gatt_client_svc_prop_info_t)));
+               }
+               break;
+       }
+       case BT_GATT_GET_CHARACTERISTIC_PROPERTIES: {
+               bluetooth_gatt_client_char_prop_info_t param;
+
+               sender = (char*)g_dbus_method_invocation_get_sender(context);
+               memset(&param, 0x00, sizeof(bluetooth_gatt_client_char_prop_info_t));
+
+               __bt_service_get_parameters(in_param1, &param,
+                               sizeof(bluetooth_gatt_client_char_prop_info_t));
+
+               result = _bt_gatt_get_all_characteristic_properties(&param);
+               if (BLUETOOTH_ERROR_NONE == result) {
+                       BT_INFO("GATT Client: Save Invocation data for characteristic props app[%s]", sender);
+
+                       /* Save the informations to invocation */
+                       _bt_save_invocation_context(context, result, sender,
+                                       function_name,
+                                       (gpointer)g_memdup(&param, sizeof(bluetooth_gatt_client_char_prop_info_t)));
+               }
+               break;
+       }
+       /* Async: Remote Interaction  */
+       case BT_GATT_READ_CHARACTERISTIC: {
+               bluetooth_gatt_client_char_prop_info_t param;
+
+               sender = (char*)g_dbus_method_invocation_get_sender(context);
+               memset(&param, 0x00, sizeof(bluetooth_gatt_client_char_prop_info_t));
+
+               __bt_service_get_parameters(in_param1, &param,
+                               sizeof(bluetooth_gatt_client_char_prop_info_t));
+
+               result = _bt_gatt_read_characteristic_value(&param);
+               if (BLUETOOTH_ERROR_NONE == result) {
+                       BT_INFO("GATT Client: Save Invocation data for characteristic props app[%s]", sender);
+
+                       /* Save the informations to invocation */
+                       _bt_save_invocation_context(context, result, sender,
+                                       function_name,
+                                       (gpointer)g_memdup(&param, sizeof(bluetooth_gatt_client_char_prop_info_t)));
+               }
+               break;
+       }
+       /* Async: Remote Interaction  */
+       case BT_GATT_READ_DESCRIPTOR_VALUE: {
+               bluetooth_gatt_client_desc_prop_info_t param;
+
+               sender = (char*)g_dbus_method_invocation_get_sender(context);
+               memset(&param, 0x00, sizeof(bluetooth_gatt_client_desc_prop_info_t));
+
+               __bt_service_get_parameters(in_param1, &param,
+                               sizeof(bluetooth_gatt_client_desc_prop_info_t));
+
+               result = _bt_gatt_read_descriptor_value(&param);
+               if (BLUETOOTH_ERROR_NONE == result) {
+                       BT_INFO("GATT Client: Save Invocation data for Descriptor's props app[%s]", sender);
+
+                       /* Save the informations to invocation */
+                       _bt_save_invocation_context(context, result, sender,
+                                       function_name,
+                                       (gpointer)g_memdup(&param, sizeof(bluetooth_gatt_client_desc_prop_info_t)));
+               }
+               break;
+       }
+       /* Async: Remote Interaction  */
+       case BT_GATT_WRITE_CHARACTERISTIC_VALUE_BY_TYPE: {
+               bluetooth_gatt_client_char_prop_info_t param;
+               bluetooth_gatt_att_data_t data;
+               bluetooth_gatt_write_type_e write_type;
+
+               sender = (char*)g_dbus_method_invocation_get_sender(context);
+
+               memset(&data, 0x00, sizeof(bluetooth_gatt_att_data_t));
+               memset(&param, 0x00, sizeof(bluetooth_gatt_client_char_prop_info_t));
+
+               __bt_service_get_parameters(in_param1, &param,
+                               sizeof(bluetooth_gatt_client_char_prop_info_t));
+               __bt_service_get_parameters(in_param2, &data,
+                               sizeof(bluetooth_gatt_att_data_t));
+               __bt_service_get_parameters(in_param3, &write_type,
+                               sizeof(bluetooth_gatt_write_type_e));
+
+               result = _bt_gatt_write_characteristic_value_by_type(&param , &data, write_type);
+               if (BLUETOOTH_ERROR_NONE == result) {
+                       BT_INFO("GATT Client: Save Invocation data for characteristic props app[%s]", sender);
+
+                       /* Save the informations to invocation */
+                       _bt_save_invocation_context(context, result, sender,
+                                       function_name,
+                                       (gpointer)g_memdup(&param, sizeof(bluetooth_gatt_client_char_prop_info_t)));
+               }
+               break;
+       }
+       /* Async: Remote Interaction  */
+       case BT_GATT_WRITE_DESCRIPTOR_VALUE: {
+               bluetooth_gatt_client_desc_prop_info_t param;
+               bluetooth_gatt_att_data_t data;
+               bluetooth_gatt_write_type_e write_type;
+
+               sender = (char*)g_dbus_method_invocation_get_sender(context);
+               memset(&data, 0x00, sizeof(bluetooth_gatt_att_data_t));
+               memset(&param, 0x00, sizeof(bluetooth_gatt_client_desc_prop_info_t));
+
+               __bt_service_get_parameters(in_param1, &param,
+                               sizeof(bluetooth_gatt_client_desc_prop_info_t));
+               __bt_service_get_parameters(in_param2, &data,
+                               sizeof(bluetooth_gatt_att_data_t));
+               __bt_service_get_parameters(in_param3, &write_type,
+                               sizeof(bluetooth_gatt_write_type_e));
+
+               result = _bt_gatt_write_descriptor_value_by_type(&param, &data, write_type);
+               if (BLUETOOTH_ERROR_NONE == result) {
+                       BT_INFO("GATT Client: Save Invocation data for descriptor props app[%s]", sender);
+
+                       /* Save the informations to invocation */
+                       _bt_save_invocation_context(context, result, sender,
+                                       function_name,
+                                       (gpointer)g_memdup(&param, sizeof(bluetooth_gatt_client_desc_prop_info_t)));
+               }
+               break;
+       }
+       /* Local Async */
+       case BT_GATT_WATCH_CHARACTERISTIC: {
+               bluetooth_gatt_client_char_prop_info_t param;
+               int client_id;
+               gboolean is_notify;
+               int fd = -1;
+               int mtu = 0;
+               gboolean is_indicate;
+
+
+               memset(&param, 0x00, sizeof(bluetooth_gatt_client_char_prop_info_t));
+
+               sender = (char*)g_dbus_method_invocation_get_sender(context);
+
+               __bt_service_get_parameters(in_param1, &param,
+                               sizeof(bluetooth_gatt_client_char_prop_info_t));
+               __bt_service_get_parameters(in_param2, &client_id,
+                               sizeof(int));
+               __bt_service_get_parameters(in_param3, &is_notify,
+                               sizeof(gboolean));
+               __bt_service_get_parameters(in_param4, &is_indicate,
+                               sizeof(gboolean));
+
+               if (is_indicate == false) {
+                       result   = _bt_gatt_acquire_notify(&param , &fd, &mtu);
+                       if (BLUETOOTH_ERROR_NONE == result && fd > -1) {
+                               BT_INFO("GATT Client: Save Invocation data for characteristic props app[%s] fd[ %d]", sender, fd);
+
+                               GUnixFDList *fd_list = NULL;
+                               GError *error = NULL;
+
+                               g_array_append_vals(*out_param1, &mtu, sizeof(int));
+                               /* Add socket fd to unix_fd_list */
+                               fd_list = g_unix_fd_list_new();
+                               g_unix_fd_list_append(fd_list, fd, &error);
+                               g_assert_no_error(error);
+                               close(fd);
+                               _bt_service_method_return_with_unix_fd_list(
+                               context, *out_param1, result, fd_list);
+
+                               g_object_unref(fd_list);
+                       } else
+                               goto normal;
+               } else {
+
+normal:
+                       result = _bt_gatt_watch_characteristic(&param , client_id, is_notify);
+                       if (BLUETOOTH_ERROR_NONE == result) {
+                               BT_INFO("GATT Client: Save Invocation data for characteristic props app[%s]", sender);
+
+                               /* Save the informations to invocation */
+                               _bt_save_invocation_context(context, result, sender, function_name,
+                                        (gpointer)g_memdup(&param, sizeof(bluetooth_gatt_client_char_prop_info_t)));
+                       }
+               }
+               break;
+       }
+       case BT_GATT_WATCH_SERVICE_CHANGED_INDICATION: {
+               gboolean is_enabled;
+               bluetooth_device_address_t address;
+
+               sender = (char*)g_dbus_method_invocation_get_sender(context);
+
+               __bt_service_get_parameters(in_param1,
+                               &address, sizeof(bluetooth_device_address_t));
+               __bt_service_get_parameters(in_param2, &is_enabled,
+                               sizeof(gboolean));
+               result = _bt_gatt_watch_service_changed_indication(sender, &address, is_enabled);
+               BT_INFO("Service changed indication from app [%s]", sender);
+
+               break;
+       }
+       case BT_LE_CONN_UPDATE: {
+               char *sender = NULL;
+               bluetooth_device_address_t local_address = { {0} };
+               bluetooth_le_connection_param_t parameters = {0};
+
+               sender = (char *)g_dbus_method_invocation_get_sender(context);
+
+               __bt_service_get_parameters(in_param1, &local_address,
+                               sizeof(bluetooth_device_address_t));
+               __bt_service_get_parameters(in_param2, &parameters,
+                               sizeof(bluetooth_le_connection_param_t));
+
+               result = _bt_le_connection_update(sender,
+                                       local_address.addr,
+                                       parameters.interval_min,
+                                       parameters.interval_max,
+                                       parameters.latency,
+                                       parameters.timeout);
+               break;
+       }
+#endif
        case BT_START_LE_DISCOVERY: {
                sender = (char *)g_dbus_method_invocation_get_sender(context);
                result = _bt_start_le_scan(sender);
@@ -2403,6 +2886,27 @@ int __bt_bluez_request(int function_name,
                break;
        }
 #endif
+       case BT_IS_ADVERTISING: {
+               gboolean advertising = FALSE;
+               advertising = _bt_is_advertising();
+               g_array_append_vals(*out_param1, &advertising,
+                               sizeof(gboolean));
+               break;
+       }
+       case BT_IS_LE_2M_PHY_SUPPORTED: {
+               gboolean is_2m_phy_supported = FALSE;
+
+               is_2m_phy_supported = _bt_is_le_2m_phy_supported();
+               g_array_append_vals(*out_param1, &is_2m_phy_supported, sizeof(gboolean));
+               break;
+       }
+       case BT_IS_LE_CODED_PHY_SUPPORTED: {
+               gboolean is_coded_phy_supported = FALSE;
+
+               is_coded_phy_supported = _bt_is_le_coded_phy_supported();
+               g_array_append_vals(*out_param1, &is_coded_phy_supported, sizeof(gboolean));
+               break;
+       }
        default:
                BT_INFO("UnSupported function [%d]", function_name);
                result = BLUETOOTH_ERROR_NOT_SUPPORT;
@@ -3168,9 +3672,23 @@ gboolean __bt_service_check_privilege(int function_name,
        case BT_NETWORK_SERVER_DISCONNECT:
 
        case BT_GATT_GET_PRIMARY_SERVICES:
+#ifdef TIZEN_GATT_CLIENT
+       case BT_GATT_GET_SERVICE_PROPERTIES:             /* GATT Client */
+       case BT_GATT_GET_CHARACTERISTIC_PROPERTIES:      /* GATT Client */
+       case BT_GATT_WATCH_SERVICE_CHANGED_INDICATION:   /* GATT Client */
+#endif
        case BT_GATT_DISCOVER_CHARACTERISTICS:
        case BT_GATT_SET_PROPERTY_REQUEST:
        case BT_GATT_READ_CHARACTERISTIC:
+#ifdef TIZEN_GATT_CLIENT
+       case BT_GATT_READ_DESCRIPTOR_VALUE:              /* GATT Client */
+       case BT_GATT_WRITE_CHARACTERISTIC_VALUE_BY_TYPE: /* GATT Client */
+       case BT_GATT_ACQUIRE_WRITE:
+       case BT_GATT_WRITE_DESCRIPTOR_VALUE:             /* GATT Client */
+       case BT_GATT_WATCH_CHARACTERISTIC:               /* GATT Client */
+       case BT_GATT_CLIENT_REGISTER:                    /* GATT Client */
+       case BT_GATT_CLIENT_UNREGISTER:                   /* GATT Client */
+#endif
        case BT_GATT_DISCOVER_CHARACTERISTICS_DESCRIPTOR:
        case BT_GATT_REGISTER_APPLICATION:
        case BT_GATT_REGISTER_SERVICE:
@@ -3184,6 +3702,8 @@ gboolean __bt_service_check_privilege(int function_name,
        case BT_GATT_SERVER_STOP_SERVICE:
        case BT_GATT_SERVER_DELETE_SERVICE:
        case BT_GATT_SERVER_SEND_RESPONSE:
+       case BT_GATT_SERVER_ACQURE_WRITE_RESPONSE:
+       case BT_GATT_SERVER_ACQUIRE_NOTIFY_RESPONSE:
        case BT_GATT_SERVER_SEND_INDICATION:
        case BT_GATT_SERVER_UPDATE_VALUE:
        case BT_GATT_SERVER_DEREGISTER:
@@ -3340,6 +3860,8 @@ gboolean __bt_service_check_privilege(int function_name,
        case BT_GET_ADVERTISING_DATA:
        case BT_GET_SCAN_RESPONSE_DATA:
        case BT_IS_ADVERTISING:
+       case BT_IS_LE_2M_PHY_SUPPORTED:
+       case BT_IS_LE_CODED_PHY_SUPPORTED:
        case BT_REGISTER_SCAN_FILTER:
        case BT_UNREGISTER_SCAN_FILTER:
        case BT_UNREGISTER_ALL_SCAN_FILTERS: